SlideShare a Scribd company logo
1 of 55
Rich web stories
With Paragraphs and Islandora DAMS
Alex Bridge / Tassos Koutlas
Who we are
Alex Bridge
alexb@cogapp.com
Tassos Koutlas
tassosk@cogapp.com
Overview
About the project
Drupal and Islandora DAMS
Create rich web stories
Discussion
Baseball Hall of Fame
Serves as the central point for the study of the history of baseball in the
United States and beyond.
Stats last month
Pageviews: ~ 765,000
Sessions: ~ 305,000
Active users: ~ 250,000
Cogapp development
9 content types
93 template files (.tpl.php)
647 taxonomy terms
45 contrib modules
9 custom modules
19 features
Project scope
Present the vast archive of content BHoF has, create connections that bring
data to life and drive user engagement.
DAMS
What is a DAMS?
Digital Asset Management System
Used for long­term storage and management of digital assets
Manages metadata associated with these assets
Popular DAMS
Free/Open source
DSpace
ResourceSpace
Fedora Commons
...
Proprietary
Piction
WebDAM
Bynder
...
Fedora Commons
Best­of­breed object repository for storing, managing, and accessing
digital content
Well­thought­out structures for long­term storage
Java/Tomcat­based
Fedora features
content is managed as data objects, represented using XML
allows complex relationships between data objects
each object contains a number of datastreams
provides ability for virtual datastreams or behaviors of the object
Why not just use Fedora?
Very technical to administrate
Requires a lot of customisation
Islandora
Not a stand­alone software package
Fedora Commons backend
Suite of Drupal modules providing:
management interface to Fedora
common data types
import/export capabilities
various other features
Islandora features
Provides solution packs meeting common needs
Metadata support
Archival­specific features
Islandora features (contd.)
REST API
Faceted search and browse (Solr)
Ability to sync content to Drupal nodes
Whylandora?
Single system for managing archival & web content
Archival content stored in best­of­breed system/format, even if website
moves from Drupal in future (other front­ends to Fedora are available)
Multiple ways to integrate DAMS content with web
Web integration
Open DAMS as read­only to web
Islandora Sync to nodes
Reference Islandora objects in Drupal
Approach chosen for Baseball Hall of Fame site
Used   module to deliver images from FedoraImagecache External
Getting started with Islandora
Sandbox
Virtual machine image
Chef cookbook
Manual install
http://sandbox.islandora.ca/
http://alpha.library.yorku.ca/releases/7.x­1.4/Islandora_7x­14.ova
https://github.com/ryersonlibrary/islandora_chef
https://wiki.duraspace.org/display/ISLANDORA714/Chapter+8+­
++Installing+Islandora
Rich web stories
Rich web stories
Three main components contribute to the methodology we have developed:
A way to deliver content (paragraphs)
A way to integrate content (entity references)
A way to present content (entity view modes)
Deliver content with Paragraphs
A new way to deliver content
No WYSIWYG editor to create content in
Create paragraph types and define any fields in them (they are entities)
Paragraph types can be anything from a simple piece of text to a complex
assortment of fields
So how are they used?
Step 1
Add paragraph field to the content type
Step 2
Create paragraph bundles (paragraph types)
Step 3
Add a paragraph type to your content
Step 4
Add content
Step 5
Review result
What do we get out of using it
An extendable content area
Complex content with paragraph types
Drag and drop functionality
Easily create structural parts of the page (eg. subtitles, promotions, etc)
Bring together diverse content within the CMS
Finer control over html output
Paragraph templates
Ability to control markup within the node (every paragraph bundle gets a
different template).
<node>
<!--paragraphs-item--para-text.tpl.php-->
<paragraph_item>TEXT</paragraph_item>
<!--paragraphs-item--para-subtitle.tpl.php-->
<paragraph_item>RELATEDHALLOFFAMERS</paragraph_item>
<!--paragraphs-item--para-hof.tpl.php-->
<paragraph_item>HALLOFFAMERSWIDGET</paragraph_item>
<!--paragraphs-item--para-promos.tpl.php-->
<paragraph_item>PROMO</paragraph_item>
</node>
Paragraphs vs Field collections
Paragraphs have multiple bundles (types)
Paragraph bundles are accessible through the interface
Different types in a single paragraph field
Paragraph types are exportable with features
Integrate content with entity
references
What we were aiming at:
Reach content regardless of source (images vs dams_assets)
Support onward user journeys (reach other content)
Support social media sharing (assets and content)
Preprocessing per node type
functionnbbhof_preprocess_node(&$variables){
...
//Createpreprocessfunctionspercontenttype.
$function=__FUNCTION__.'_'.$node->type;
if(function_exists($function)){
$function($variables);
}
}
functionnbbhof_preprocess_node_hof_dams_asset(&$variables){
//Codethatisspecifictothiscontenttype
}
It enables us
To have finer control on content (eg. create inline table of contents)
To interchangably use locally hosted images and DAMS assets
as hero images
as sidebar images
as full size images on content
as slideshows
To create different twitter cards based on type
To integrate other sources of content from the CMS
Paragraphs and entity references
Two types of Paragraph types
Paragraph types that contain entity references
Paragraph types that contain other fields (textfields, etc)
So far
We have an extensible way to reach and deliver content through
paragraphs.
Wouldn't it be nice to control how referenced content is presented in the
same way we control paragraph types?
What we have so far
<node>
<paragraph_item>TEXT</paragraph_item><!--wehavetemplatesforthis-->
<paragraph_item>RELATEDHALLOFFAMERS</paragraph_item><!--andthis-->
<paragraph_item>
<!--whataboutthese?-->
<referenced_entity>HALLOFFAMER</referenced_entity>
<referenced_entity>HALLOFFAMER</referenced_entity>
<referenced_entity>HALLOFFAMER</referenced_entity>
</paragraph_item>
<paragraph_item>
<!--orthis?-->
<referenced_entity>PROMO</referenced_entity>
</paragraph_item>
</node>
Present content with entity view
modes
View modes provide entities with a mechanism to select which fields to
display and a way to display them through templates.
Enabling view modes
A simple function call in D7 (through the interface in D8).
functionbhof_view_modes_entity_info_alter(&$entity_info){
//Createaparagraphviewmode.
$entity_info['node']['viewmodes']['paragraph']=array(
'label'=>t('Paragraph'),
'customsettings'=>TRUE,
);
...
}
Availability on content type
Result
Use on paragraph type
Use on paragraph type
Use on paragraph type
Use on paragraph type
Now
<node>
<paragraph_item>TEXT</paragraph_item><!--wehavetemplatesforthis-->
<paragraph_item>RELATEDHALLOFFAMERS</paragraph_item><!--andthis-->
<paragraph_item>
<!--node--hof--paragraph.tpl.phpforeach-->
<referenced_entity>HALLOFFAMER</referenced_entity>
<referenced_entity>HALLOFFAMER</referenced_entity>
<referenced_entity>HALLOFFAMER</referenced_entity>
</paragraph_item>
<paragraph_item>
<!--node--hof-promo--paragraph.tpl.php-->
<referenced_entity>PROMO</referenced_entity>
</paragraph_item>
</node>
Why do we use them
Each view mode has its own display fields
Each view mode has its own template file
Apply logic depending on the view mode (slideshows, full images, etc)
Front­end work with templates rather than drupal theming system
Discussion
Paragraphs provide an extensible model to deliver content
Entity references in paragraphs allows us to bridge content (incl. DAMS
assets)
Entity view modes provide finer control over markup
Questions?
We're hiring!
Senior front­end developer
Graduate developer

More Related Content

Viewers also liked

EBP-Workshop SV 2013
EBP-Workshop SV 2013EBP-Workshop SV 2013
EBP-Workshop SV 2013EnigmaBizPro
 
EasySDO - система дистанционного обучения
EasySDO - система дистанционного обученияEasySDO - система дистанционного обучения
EasySDO - система дистанционного обученияEasynstein Pictures
 
Novo viagem ao_tempo_castelos
Novo viagem ao_tempo_castelosNovo viagem ao_tempo_castelos
Novo viagem ao_tempo_castelosbibliotecap
 
Trabalho de história . 9ºe
Trabalho de história . 9ºeTrabalho de história . 9ºe
Trabalho de história . 9ºeCarla Teixeira
 
Deberes formales del Impuesto a las Tierras Rurales
Deberes formales del Impuesto a las Tierras RuralesDeberes formales del Impuesto a las Tierras Rurales
Deberes formales del Impuesto a las Tierras RuralesNéstor Toro-Hinostroza
 

Viewers also liked (10)

Integrales en la economia keyla
Integrales en la economia keylaIntegrales en la economia keyla
Integrales en la economia keyla
 
онлайн заказ
онлайн заказонлайн заказ
онлайн заказ
 
Canis lupus familiares
Canis lupus familiaresCanis lupus familiares
Canis lupus familiares
 
EBP-Workshop SV 2013
EBP-Workshop SV 2013EBP-Workshop SV 2013
EBP-Workshop SV 2013
 
What's new?
What's new?What's new?
What's new?
 
EasySDO - система дистанционного обучения
EasySDO - система дистанционного обученияEasySDO - система дистанционного обучения
EasySDO - система дистанционного обучения
 
Novo viagem ao_tempo_castelos
Novo viagem ao_tempo_castelosNovo viagem ao_tempo_castelos
Novo viagem ao_tempo_castelos
 
Trabalho de história . 9ºe
Trabalho de história . 9ºeTrabalho de história . 9ºe
Trabalho de história . 9ºe
 
Deberes formales del Impuesto a las Tierras Rurales
Deberes formales del Impuesto a las Tierras RuralesDeberes formales del Impuesto a las Tierras Rurales
Deberes formales del Impuesto a las Tierras Rurales
 
Memorias.- Derecho Procesal Civil II
Memorias.- Derecho Procesal Civil IIMemorias.- Derecho Procesal Civil II
Memorias.- Derecho Procesal Civil II
 

Similar to Rich storytelling with Drupal, Paragraphs and Islandora DAMS

Hopsworks in the cloud Berlin Buzzwords 2019
Hopsworks in the cloud Berlin Buzzwords 2019 Hopsworks in the cloud Berlin Buzzwords 2019
Hopsworks in the cloud Berlin Buzzwords 2019 Jim Dowling
 
Hadoop and Beyond
Hadoop and BeyondHadoop and Beyond
Hadoop and BeyondPaco Nathan
 
160606 data lifecycle project outline
160606 data lifecycle project outline160606 data lifecycle project outline
160606 data lifecycle project outlineIan Duncan
 
Drupal: Content Management and Community for your Library
Drupal: Content Management and Community for your LibraryDrupal: Content Management and Community for your Library
Drupal: Content Management and Community for your Libraryguest5e78e
 
Databricks Platform.pptx
Databricks Platform.pptxDatabricks Platform.pptx
Databricks Platform.pptxAlex Ivy
 
Introducción a la arquitectura Data Lake con Azure
Introducción a la arquitectura Data Lake con AzureIntroducción a la arquitectura Data Lake con Azure
Introducción a la arquitectura Data Lake con AzurePlain Concepts
 
How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...
How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...
How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...4Science
 
Dropbox Talk at Netflix ML Platform Meetup Spe 2019
Dropbox Talk at Netflix ML Platform Meetup Spe 2019Dropbox Talk at Netflix ML Platform Meetup Spe 2019
Dropbox Talk at Netflix ML Platform Meetup Spe 2019Faisal Siddiqi
 
Shaping the Role of a Data Lake in a Modern Data Fabric Architecture
Shaping the Role of a Data Lake in a Modern Data Fabric ArchitectureShaping the Role of a Data Lake in a Modern Data Fabric Architecture
Shaping the Role of a Data Lake in a Modern Data Fabric ArchitectureDenodo
 
Cloud Databases in Research and Practice
Cloud Databases in Research and PracticeCloud Databases in Research and Practice
Cloud Databases in Research and PracticeFelix Gessert
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeDan Brickley
 
Boosting Machine Learning with Redis Modules and Spark
Boosting Machine Learning with Redis Modules and SparkBoosting Machine Learning with Redis Modules and Spark
Boosting Machine Learning with Redis Modules and SparkDvir Volk
 
Spark Summit EU talk by Shay Nativ and Dvir Volk
Spark Summit EU talk by Shay Nativ and Dvir VolkSpark Summit EU talk by Shay Nativ and Dvir Volk
Spark Summit EU talk by Shay Nativ and Dvir VolkSpark Summit
 
Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...
Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...
Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...Digital Transformation EXPO Event Series
 
Big Data Architecture Workshop - Vahid Amiri
Big Data Architecture Workshop -  Vahid AmiriBig Data Architecture Workshop -  Vahid Amiri
Big Data Architecture Workshop - Vahid Amiridatastack
 
Sailing the Digital Serial Seas: Charting a New Course with CONTENTdm
Sailing the Digital Serial Seas: Charting a New Course with CONTENTdmSailing the Digital Serial Seas: Charting a New Course with CONTENTdm
Sailing the Digital Serial Seas: Charting a New Course with CONTENTdmNASIG
 
การประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กร
การประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กรการประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กร
การประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กรDr. Thiti Vacharasintopchai, ATSI-DX, CISA
 

Similar to Rich storytelling with Drupal, Paragraphs and Islandora DAMS (20)

Hopsworks in the cloud Berlin Buzzwords 2019
Hopsworks in the cloud Berlin Buzzwords 2019 Hopsworks in the cloud Berlin Buzzwords 2019
Hopsworks in the cloud Berlin Buzzwords 2019
 
Hadoop and Beyond
Hadoop and BeyondHadoop and Beyond
Hadoop and Beyond
 
Science & technology (s&t) cloud2
Science & technology (s&t) cloud2Science & technology (s&t) cloud2
Science & technology (s&t) cloud2
 
160606 data lifecycle project outline
160606 data lifecycle project outline160606 data lifecycle project outline
160606 data lifecycle project outline
 
Drupal: Content Management and Community for your Library
Drupal: Content Management and Community for your LibraryDrupal: Content Management and Community for your Library
Drupal: Content Management and Community for your Library
 
Databricks Platform.pptx
Databricks Platform.pptxDatabricks Platform.pptx
Databricks Platform.pptx
 
Introducción a la arquitectura Data Lake con Azure
Introducción a la arquitectura Data Lake con AzureIntroducción a la arquitectura Data Lake con Azure
Introducción a la arquitectura Data Lake con Azure
 
OMEKA
OMEKAOMEKA
OMEKA
 
How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...
How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...
How to enhance your DSpace repository: use cases for DSpace-CRIS, DSpace-RDM,...
 
Dropbox Talk at Netflix ML Platform Meetup Spe 2019
Dropbox Talk at Netflix ML Platform Meetup Spe 2019Dropbox Talk at Netflix ML Platform Meetup Spe 2019
Dropbox Talk at Netflix ML Platform Meetup Spe 2019
 
Shaping the Role of a Data Lake in a Modern Data Fabric Architecture
Shaping the Role of a Data Lake in a Modern Data Fabric ArchitectureShaping the Role of a Data Lake in a Modern Data Fabric Architecture
Shaping the Role of a Data Lake in a Modern Data Fabric Architecture
 
Cloud Databases in Research and Practice
Cloud Databases in Research and PracticeCloud Databases in Research and Practice
Cloud Databases in Research and Practice
 
SemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in PracticeSemWeb Fundamentals - Info Linking & Layering in Practice
SemWeb Fundamentals - Info Linking & Layering in Practice
 
Let Your Data Flow with EmbARK
Let Your Data Flow with EmbARKLet Your Data Flow with EmbARK
Let Your Data Flow with EmbARK
 
Boosting Machine Learning with Redis Modules and Spark
Boosting Machine Learning with Redis Modules and SparkBoosting Machine Learning with Redis Modules and Spark
Boosting Machine Learning with Redis Modules and Spark
 
Spark Summit EU talk by Shay Nativ and Dvir Volk
Spark Summit EU talk by Shay Nativ and Dvir VolkSpark Summit EU talk by Shay Nativ and Dvir Volk
Spark Summit EU talk by Shay Nativ and Dvir Volk
 
Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...
Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...
Unleashing the Potential of Object Storage & Accelerating Cloud-First Initiat...
 
Big Data Architecture Workshop - Vahid Amiri
Big Data Architecture Workshop -  Vahid AmiriBig Data Architecture Workshop -  Vahid Amiri
Big Data Architecture Workshop - Vahid Amiri
 
Sailing the Digital Serial Seas: Charting a New Course with CONTENTdm
Sailing the Digital Serial Seas: Charting a New Course with CONTENTdmSailing the Digital Serial Seas: Charting a New Course with CONTENTdm
Sailing the Digital Serial Seas: Charting a New Course with CONTENTdm
 
การประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กร
การประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กรการประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กร
การประยุกต์ใช้ DSpace Open Source ในการจัดการความรู้ขององค์กร
 

Recently uploaded

VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsstephieert
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirtrahman018755
 
VIP Call Girls Pune Madhuri 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Madhuri 8617697112 Independent Escort Service PuneVIP Call Girls Pune Madhuri 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Madhuri 8617697112 Independent Escort Service PuneCall girls in Ahmedabad High profile
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 

Recently uploaded (20)

VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girls
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
 
VIP Call Girls Pune Madhuri 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Madhuri 8617697112 Independent Escort Service PuneVIP Call Girls Pune Madhuri 8617697112 Independent Escort Service Pune
VIP Call Girls Pune Madhuri 8617697112 Independent Escort Service Pune
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 

Rich storytelling with Drupal, Paragraphs and Islandora DAMS