SlideShare uma empresa Scribd logo
1 de 79
Baixar para ler offline
Drupal 8 Preview
Angie “webchick” Byron
2013-12-09
Tuesday, 10 December, 13
About Me

Tuesday, 10 December, 13
Agenda

•

What's coming in Drupal 8 for…
o
o
o

•
•
•

o

End users and clients?
Site builders?
Designers and themers?
Developers?

...where possible, with live demos! :)
When can I use it?
What can I do now to prepare?

Tuesday, 10 December, 13
Changes for
end-users
and clients

Tuesday, 10 December, 13
Authoring Experience Improvements

Tuesday, 10 December, 13
Tuesday, 10 December, 13
WYSIWYG in Core!

Tuesday, 10 December, 13
In-Place Editing

Tuesday, 10 December, 13
In-Place Editing

Tuesday, 10 December, 13
New Content Creation Page

Tuesday, 10 December, 13
Real Previews (in progress)

http://drupal.org/node/1510544
Tuesday, 10 December, 13
Let’s see it in action!

Tuesday, 10 December, 13
Mobile Improvements

Tuesday, 10 December, 13
"Mobile First"

Tuesday, 10 December, 13
Responsive themes, images, and
breakpoints

Tuesday, 10 December, 13
Responsive themes, images, and
breakpoints

Tuesday, 10 December, 13
Mobile-friendly administration

Tuesday, 10 December, 13
Mobile-friendly administration

Tuesday, 10 December, 13
Mobile-friendly administration

Tuesday, 10 December, 13
Responsive Preview Bar
(in progress)

https://drupal.org/node/1741498
Tuesday, 10 December, 13
Responsive Preview Bar
(in progress)

Tuesday, 10 December, 13
Accessibility

http://www.youtube.com/watch?v=ipOc1km2uEc
Tuesday, 10 December, 13
Accessibility

http://www.youtube.com/watch?v=ipOc1km2uEc
Tuesday, 10 December, 13
Mobile-first “overlay”

Tuesday, 10 December, 13
Let’s see it in action!

Tuesday, 10 December, 13
Changes for
site builders

Tuesday, 10 December, 13
Improved Data Modeling Tools:
New field types
Entity Reference

Date/Datetime

…plus, Link, Phone, Email, Comments!

Tuesday, 10 December, 13
Improved Data Modeling Tools:
New entity types
Fieldable blocks

Tuesday, 10 December, 13

Fieldable contact forms
Form displays: customize the look
and feel of data entry forms

Tuesday, 10 December, 13
Views in Core!

Tuesday, 10 December, 13
Views = fully customizable...

•
•
•
•
•
•

Admin listings
Sidebar content
Image galleries
Slideshows
REST output
...with 0 lines of code!

Tuesday, 10 December, 13
Restyled administration interface
(in progress)

https://drupal.org/node/1986434
Tuesday, 10 December, 13
Multilingual Improvements

Tuesday, 10 December, 13
Community translation downloads

Tuesday, 10 December, 13
Language data tracking expanded

Tuesday, 10 December, 13
Translation on (almost) everything

Tuesday, 10 December, 13
Changes for
designers
and themers

Tuesday, 10 December, 13
Tuesday, 10 December, 13
HTML5 Form Elements

Tuesday, 10 December, 13
New front-end libraries

Tuesday, 10 December, 13
Twig Example: node.html.twig
<article id="node-{{ node.id }}" class="{{ attributes.class }}
clearfix"{{ attributes }}>
{{ title_prefix }}
{% if not page %}

<h2{{ title_attributes }}>

<a href="{{ node_url }}" rel="bookmark">{{ label }}</a>

</h2>
{% endif %}
{{ title_suffix }}
{% if display_submitted %}

<footer>

{{ user_picture }}

<p class="submitted">{{ submitted }}</p>

</footer>
{% endif %}
<div{{ content_attributes }}>

{# We hide links now so that we can render them later. #}

{% hide(content.links) %}

{{ content }}
</div>
{{ content.links }}
</article>
Tuesday, 10 December, 13

1. HTML5 tags
2. {{ print a variable }}
3. {# comments #}
4. {% logic(stuff) %}
Native Schema.org Output

Tuesday, 10 December, 13
Killed support for IE 6 & 7
(and most of 8)

Tuesday, 10 December, 13
Changes for
developers

010001000111001001
110101011100000110
000101101100001000
0000111000
Tuesday, 10 December, 13
Configuration Management

dev

Tuesday, 10 December, 13

stage

prod
live

dev

Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Let’s see it in action!

Tuesday, 10 December, 13
Drush integration for automation!

Tuesday, 10 December, 13
Web Services

Tuesday, 10 December, 13
Symfony Framework

•
•
•
•
•
•
Tuesday, 10 December, 13

HttpFoundation
HttpKernel
Dependency
Injection
EventDispatcher
Routing
Yaml
GETting data out of Drupal:
RESTful Web Services module

Tuesday, 10 December, 13
GETting data into Drupal: Guzzle
$client = Drupal::httpClient();
$config = Drupal::config('3rdparty.settings');
// Format arguments for passing in URL.
$arg = urlencode($argument);
// Pull data from 3rd party's REST API.
$api_key = $config->get('api_key');
$request =
$client->get("http://3rdparty.com/$arg/?key=$api_key");
// Get the response and do something with it.
$response = $request->send();
$json = $response->json();
...

Tuesday, 10 December, 13
"Getting off the island"

Tuesday, 10 December, 13
•
•
•

Much more modern, object-oriented code
(classes, inheritance, interfaces, etc.)
Embracing latest PHP standards
(e.g. PSR-0, namespaces, traits)
Using many “best of breed” external
libraries: Composer, PHPUnit, Guzzle, Zend
Feed Component, Assetic...

Tuesday, 10 December, 13
Catch all of the changes!

https://drupal.org/list-changes
Tuesday, 10 December, 13
Tuesday, 10 December, 13
Ok, so when can I use this awesome
stuff?!

"WHEN
IT'S
READY."
Tuesday, 10 December, 13
Drupal 8 Timeline

Tuesday, 10 December, 13
When is "When it's ready?"

•
•
•

When we have 0
critical issues, we roll
a release candidate.
When we’ve shipped
a release candidate
that didn’t add new
criticals, we ship 8.0!
Hoping for 8.0
mid-2014, but still
lots to do.

Tuesday, 10 December, 13
Where do we need help?

•
•
•
•
•
•
•
•

Finish API conversions
Performance
Developer Experience
Migration path
DOCUMENTATION!
EXAMPLES!
TOOLS!
TESTING, TESTING,
TESTING!

https://drupal.org/contribute
Tuesday, 10 December, 13
When should I use Drupal 8?
Keep your eyes on https://drupal.org/project/usage/drupal:

Module Developer

Alphas, aka *right now*!
(still have time to
fix APIs!)
Tuesday, 10 December, 13

Early Adopter /
Launch in
mid-2014+

Late Adopter /
Launch in late
2014+

Betas/RCs
(~early-mid
2014)

Once these lines
cross
(~2015)

Conservative

Platform’s proven,
but community’s
looking forward to
Drupal 9.
New release proposal (in progress)

https://drupal.org/node/2135189
Tuesday, 10 December, 13
What about the upgrade path?

•
•
•
•
•

Work actively ongoing to add content migration
path from both D6 and D7 to D8 ("Migrate in
core"): https://groups.drupal.org/imp
To check status of contrib module upgrades,
see: https://drupal.org/project/upgrade_status
For help w/ custom module upgrades, see:
https://drupal.org/project/coder
To avoid upgrade pain, stick to well-vetted
contributed modules over custom code.
Other tips: https://www.acquia.com/blog/

getting-your-site-ready-drupal-8

Tuesday, 10 December, 13
D8 Readiness Resources
•

D8 Blogs – With “how-to” topics ranging from “This week
in Core”, OOP in D8, Migration, Spark and much more!
http://www.acquia.com/blog/drupal-8

•

D8 Webinars – Learn more about Multi-lingual, OOP etc in
D8 http://www.acquia.com/resources/recorded_webinars

•

D8 Live Panel Discussions with Google Hangouts – http://

•

D8 Updates – Get the latest and the greatest in D8 on our developer
page –
http://www.acquia.com/drupal-developers

www.acquia.com/resources/podcasts/acquia-podcast-93-power-php-meetmichelangelo-van-dam

65

Tuesday, 10 December, 13
Thank you!
Questions?
Tuesday, 10 December, 13

Mais conteúdo relacionado

Destaque

Intro to Commons, Part 2: How to Customize Your Commons Site
Intro to Commons, Part 2: How to Customize Your Commons SiteIntro to Commons, Part 2: How to Customize Your Commons Site
Intro to Commons, Part 2: How to Customize Your Commons Site
Acquia
 
Hello Drupal!
Hello Drupal!Hello Drupal!
Hello Drupal!
Acquia
 
Drupal Essentials: Comment Management in Drupal 7
Drupal Essentials: Comment Management in Drupal 7Drupal Essentials: Comment Management in Drupal 7
Drupal Essentials: Comment Management in Drupal 7
Acquia
 
D7 10 modules-in-20mins v2 copy
D7 10 modules-in-20mins v2 copyD7 10 modules-in-20mins v2 copy
D7 10 modules-in-20mins v2 copy
Acquia
 
Intro to Commons, Part 1: How to Manage Your Online Community
Intro to Commons, Part 1: How to Manage Your Online CommunityIntro to Commons, Part 1: How to Manage Your Online Community
Intro to Commons, Part 1: How to Manage Your Online Community
Acquia
 
How to Migrate, Manage and Centralize your Web Infrastructure with Drupal
How to Migrate, Manage and Centralize your Web Infrastructure with DrupalHow to Migrate, Manage and Centralize your Web Infrastructure with Drupal
How to Migrate, Manage and Centralize your Web Infrastructure with Drupal
Acquia
 
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The StartPreventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
Acquia
 
Best Practices for Drupal Integrations
Best Practices for Drupal IntegrationsBest Practices for Drupal Integrations
Best Practices for Drupal Integrations
Acquia
 
Going Full Throttle: How to Speed Time to Market on Marketing Campaign Sites
Going Full Throttle: How to Speed Time to Market on Marketing Campaign SitesGoing Full Throttle: How to Speed Time to Market on Marketing Campaign Sites
Going Full Throttle: How to Speed Time to Market on Marketing Campaign Sites
Acquia
 
Best Practices in Website Management, Part 2: How to Make Your Site Personal ...
Best Practices in Website Management, Part 2: How to Make Your Site Personal ...Best Practices in Website Management, Part 2: How to Make Your Site Personal ...
Best Practices in Website Management, Part 2: How to Make Your Site Personal ...
Acquia
 
Multilingual Improvements for Drupal 8
Multilingual Improvements for Drupal 8Multilingual Improvements for Drupal 8
Multilingual Improvements for Drupal 8
Acquia
 
Tell the Right Story to the Right People at the Right Time: Integrating Conte...
Tell the Right Story to the Right People at the Right Time: Integrating Conte...Tell the Right Story to the Right People at the Right Time: Integrating Conte...
Tell the Right Story to the Right People at the Right Time: Integrating Conte...
Acquia
 
Create a Symfony Application from a Drupal Perspective
Create a Symfony Application from a Drupal PerspectiveCreate a Symfony Application from a Drupal Perspective
Create a Symfony Application from a Drupal Perspective
Acquia
 
Eine praktische Anleitung zur Auswahl eines CMS
Eine praktische Anleitung zur Auswahl eines CMSEine praktische Anleitung zur Auswahl eines CMS
Eine praktische Anleitung zur Auswahl eines CMS
Acquia
 

Destaque (20)

Intro to Commons, Part 2: How to Customize Your Commons Site
Intro to Commons, Part 2: How to Customize Your Commons SiteIntro to Commons, Part 2: How to Customize Your Commons Site
Intro to Commons, Part 2: How to Customize Your Commons Site
 
Hello Drupal!
Hello Drupal!Hello Drupal!
Hello Drupal!
 
Drupal Essentials: Comment Management in Drupal 7
Drupal Essentials: Comment Management in Drupal 7Drupal Essentials: Comment Management in Drupal 7
Drupal Essentials: Comment Management in Drupal 7
 
D7 10 modules-in-20mins v2 copy
D7 10 modules-in-20mins v2 copyD7 10 modules-in-20mins v2 copy
D7 10 modules-in-20mins v2 copy
 
Intro to Commons, Part 1: How to Manage Your Online Community
Intro to Commons, Part 1: How to Manage Your Online CommunityIntro to Commons, Part 1: How to Manage Your Online Community
Intro to Commons, Part 1: How to Manage Your Online Community
 
How to Gain Market Intelligence Through Communities
How to Gain Market Intelligence Through CommunitiesHow to Gain Market Intelligence Through Communities
How to Gain Market Intelligence Through Communities
 
How to Migrate, Manage and Centralize your Web Infrastructure with Drupal
How to Migrate, Manage and Centralize your Web Infrastructure with DrupalHow to Migrate, Manage and Centralize your Web Infrastructure with Drupal
How to Migrate, Manage and Centralize your Web Infrastructure with Drupal
 
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The StartPreventing Drupal Headaches: Establishing Flexible File Paths From The Start
Preventing Drupal Headaches: Establishing Flexible File Paths From The Start
 
Best Practices for Drupal Integrations
Best Practices for Drupal IntegrationsBest Practices for Drupal Integrations
Best Practices for Drupal Integrations
 
Acquia digital entertainment masterclass 26.11.2013
Acquia   digital entertainment masterclass 26.11.2013Acquia   digital entertainment masterclass 26.11.2013
Acquia digital entertainment masterclass 26.11.2013
 
How to Personalize Content to Drive Customer Action
How to Personalize Content to Drive Customer ActionHow to Personalize Content to Drive Customer Action
How to Personalize Content to Drive Customer Action
 
Going Full Throttle: How to Speed Time to Market on Marketing Campaign Sites
Going Full Throttle: How to Speed Time to Market on Marketing Campaign SitesGoing Full Throttle: How to Speed Time to Market on Marketing Campaign Sites
Going Full Throttle: How to Speed Time to Market on Marketing Campaign Sites
 
Making the Switch, Part 1: Top 5 Things to Consider When Evaluating Drupal
Making the Switch, Part 1: Top 5 Things to Consider When Evaluating DrupalMaking the Switch, Part 1: Top 5 Things to Consider When Evaluating Drupal
Making the Switch, Part 1: Top 5 Things to Consider When Evaluating Drupal
 
Best Practices in Website Management, Part 2: How to Make Your Site Personal ...
Best Practices in Website Management, Part 2: How to Make Your Site Personal ...Best Practices in Website Management, Part 2: How to Make Your Site Personal ...
Best Practices in Website Management, Part 2: How to Make Your Site Personal ...
 
Multilingual Improvements for Drupal 8
Multilingual Improvements for Drupal 8Multilingual Improvements for Drupal 8
Multilingual Improvements for Drupal 8
 
Assembling Great Digital Experiences
Assembling Great Digital ExperiencesAssembling Great Digital Experiences
Assembling Great Digital Experiences
 
Tell the Right Story to the Right People at the Right Time: Integrating Conte...
Tell the Right Story to the Right People at the Right Time: Integrating Conte...Tell the Right Story to the Right People at the Right Time: Integrating Conte...
Tell the Right Story to the Right People at the Right Time: Integrating Conte...
 
Create a Symfony Application from a Drupal Perspective
Create a Symfony Application from a Drupal PerspectiveCreate a Symfony Application from a Drupal Perspective
Create a Symfony Application from a Drupal Perspective
 
Webinar-Serie: Digital Experiences, Teil 1: Innovative Konzepte
Webinar-Serie: Digital Experiences, Teil 1: Innovative KonzepteWebinar-Serie: Digital Experiences, Teil 1: Innovative Konzepte
Webinar-Serie: Digital Experiences, Teil 1: Innovative Konzepte
 
Eine praktische Anleitung zur Auswahl eines CMS
Eine praktische Anleitung zur Auswahl eines CMSEine praktische Anleitung zur Auswahl eines CMS
Eine praktische Anleitung zur Auswahl eines CMS
 

Mais de Acquia

Taking Your Multi-Site Management at Scale to the Next Level
Taking Your Multi-Site Management at Scale to the Next LevelTaking Your Multi-Site Management at Scale to the Next Level
Taking Your Multi-Site Management at Scale to the Next Level
Acquia
 

Mais de Acquia (20)

Acquia_Adcetera Webinar_Marketing Automation.pdf
Acquia_Adcetera Webinar_Marketing Automation.pdfAcquia_Adcetera Webinar_Marketing Automation.pdf
Acquia_Adcetera Webinar_Marketing Automation.pdf
 
Acquia Webinar Deck - 9_13 .pdf
Acquia Webinar Deck - 9_13 .pdfAcquia Webinar Deck - 9_13 .pdf
Acquia Webinar Deck - 9_13 .pdf
 
Taking Your Multi-Site Management at Scale to the Next Level
Taking Your Multi-Site Management at Scale to the Next LevelTaking Your Multi-Site Management at Scale to the Next Level
Taking Your Multi-Site Management at Scale to the Next Level
 
CDP for Retail Webinar with Appnovation - Q2 2022.pdf
CDP for Retail Webinar with Appnovation - Q2 2022.pdfCDP for Retail Webinar with Appnovation - Q2 2022.pdf
CDP for Retail Webinar with Appnovation - Q2 2022.pdf
 
May Partner Bootcamp 2022
May Partner Bootcamp 2022May Partner Bootcamp 2022
May Partner Bootcamp 2022
 
April Partner Bootcamp 2022
April Partner Bootcamp 2022April Partner Bootcamp 2022
April Partner Bootcamp 2022
 
How to Unify Brand Experience: A Hootsuite Story
How to Unify Brand Experience: A Hootsuite Story How to Unify Brand Experience: A Hootsuite Story
How to Unify Brand Experience: A Hootsuite Story
 
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CXUsing Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
 
Improve Code Quality and Time to Market: 100% Cloud-Based Development Workflow
Improve Code Quality and Time to Market: 100% Cloud-Based Development WorkflowImprove Code Quality and Time to Market: 100% Cloud-Based Development Workflow
Improve Code Quality and Time to Market: 100% Cloud-Based Development Workflow
 
September Partner Bootcamp
September Partner BootcampSeptember Partner Bootcamp
September Partner Bootcamp
 
August partner bootcamp
August partner bootcampAugust partner bootcamp
August partner bootcamp
 
July 2021 Partner Bootcamp
July  2021 Partner BootcampJuly  2021 Partner Bootcamp
July 2021 Partner Bootcamp
 
May Partner Bootcamp
May Partner BootcampMay Partner Bootcamp
May Partner Bootcamp
 
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASYDRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
 
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead MachineWork While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
 
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B LeadsAcquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
 
April partner bootcamp deck cookieless future
April partner bootcamp deck  cookieless futureApril partner bootcamp deck  cookieless future
April partner bootcamp deck cookieless future
 
How to enhance cx through personalised, automated solutions
How to enhance cx through personalised, automated solutionsHow to enhance cx through personalised, automated solutions
How to enhance cx through personalised, automated solutions
 
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
 
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021
 

Último

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Drupal 8 Preview: What to Expect