SlideShare una empresa de Scribd logo
1 de 40
Descargar para leer sin conexión
Hello Drupal

Created by Acquia Learning Services
(http://training.acquia.com/)
Want to take this course online? http://bit.ly/hello2014
What we'll do in this course
Depends on how much time we have!

Learn concepts
Watch demos
Try it yourself
Getting to know you

About me

Why I use Drupal
What I do with Drupal

About you!

What other systems have you
used?
What you absolutely must
know
1.
2.
3.
4.

What is Drupal?
Admin tour: Managing content with Drupal
Thinking like Drupal: The Drupal Magic Trick
Extending Drupal: The Big Three
Readiness check!

Tools you need

Nice to have

1. A working copy of Drupal 7 1. Browser inspection tool, such
Local install (Try Dev
as Firebug for Firefox; or
Desktop) OR
"Developer mode" in Chrome
Acquia Free Tier OR
2. Lorem ipsum generator
Account on Drupal
Gardens
2. Online exercises.
1. What is 
Drupal?
Why do we have CMSs?

Old days: just HTML To database-driven!
Sites were mainly text and
images
Hierarchical site structure.
Sites were assumed to be
accessed mainly from their
front pages.
Site maintenance consisted of
updating text files.

Templating languages like
PHP.
Separate data and business
logic separated from display.
Users, logging in and
interacting.
Non technical staff managing
websites
In comes Drupal!

Photo by Kathleen Murtagh Dries' State of Drupal keynote
(http://www.flickr.com/photos/ceardach/4540450692)
(CC BY 2.0) (http://creativecommons.org/licenses/by/2.0/deed.en_GB)
Used worldwide—many cases

Publishing, Community, Apps, Web presence
See more at drupalshowcase.com (http://drupalshowcase.com)

Economist.com, Dev.twitter.com, Whitehouse.gov, The King
Center
What does Drupal run on?

LAMP stack is most widely used and tested.

Requirements and flexibility

Details drupal.org/requirements
(https://drupal.org/requirements)
Built in PHP, HTML, CSS, JS.
Other OSs, other servers, other DBs possible (in green)
Building with Drupal

Drupal functionality is easily extended with contributed and
custom code

About 80-90% of a typical project is done with contributed code!
Drupal.org (http://drupal.org)
How many developers have contributed to Drupal? (Hint: check
"d.o")

Drupal.org (http://drupal.org) is the canonical location for
collaboration, support, downloading code, accessing
documentation and connecting to regional and working groups.
Referred to as "d.o"
Drupal is built by people
Drupal is software but also a community.

All photos by Kathleen Murtagh code sprints (http://www.flickr.com/photos/ceardach/)
(CC BY 2.0) (http://creativecommons.org/licenses/by/2.0/deed.en_GB)
DrupalCon

Held in Europe, North America and Australia
From 1500-3000 people
5 days of learning and collaboration
Affordable ticket prices; also Scholarships!

Where's the next DrupalCon?

Hint! Check association.drupal.org/drupalcon
(https://association.drupal.org/drupalcon)
Connect locally

Attend meet-ups, DrupalCamps (local conferences) and training

Drupical (http://drupical.com) hosts and up to date listing of
events across the world.
2. The Drupal 
Admin Tour!
Drupal as a CMS

Demos by your Drupal guide; you try the tasks.

In Drupal 7, most of the editing in the admin area is done in the
"overlay".
Managing content with Drupal
Demo

1. A quick tour of the admin UI,
the overlay and menus.
2. How to add content?
3. Where to find content?

Tasks

1.
2.
3.
4.
5.

Change your site title!
Add a basic page
Add an article
Bonus: Main menu link
Bonus: Comments
How did you do?

Which of these tasks did you complete?
1. Changed site title.
2. Added a Basic page titled “About”.
3. Created an article with tags.
4. Bonus: Added a comment.
5. Bonus: Added link to Main menu.
Important to know!

The Drupal content editing experience can (and should) be
customized by the developers for users.
1. Custom administration pages
2. Improved UI for editing content
3. WYSIWYG configuration
3. Thinking like 
Drupal
Assembling your website

Your mental model might be like this.
You use Drupal to assemble sites with data.
Drupal surprises users who expect "structure first". Drupal is
"data first".
The computing metaphor of "folders" and "documents" is
compelling. Beware!
Structured data

Compare these two data models. How can you control content
input and display with either?

Unstructured text on the left, structured data (fields) on the right.
Introducing Views!

Views is a query builder.
It's the most popular contributed module.

This shows the Views wizard screen which we'll use in the demo.
Drupal Magic Trick!

Demo
1.
2.
3.
4.

Tasks

Add a content type
1. Use Views!
Add an imagefield
2. Make a page of articles at
Create content (add a node)
/articles
Create lists of content with
Views
5. Place a block into a region
6. Fix the imagestyle
How did you do?

Which of these tasks did you complete?
1. Created a view
2. Added a page of articles at /articles
3. Bonus: Did you try something else?
Important to know!

Contributed modules extend what Drupal can do.

Many modules like Views slideshow extend Views. Guess what it
does?
4. Extending 
Drupal: 
The Big 3
First: 
Site Building

Site building is everything you can do in the UI layer of Drupal
What is Site Building?

Selecting and configuring contributed modules.
Modeling content types, users, etc with fields.
Configuring display of content, users, terms, etc.
Configuring lists (views) of content, users, terms, etc.
Second: 
Layout and theming

Layout and theming combines Drupal site building and coding in
PHP/HTML/CSS/JS.
What is Layout and theming?
1. Layout: Where things appear on the screen
2. Theming: How they look
Tasks include:
Various approaches for different use cases.
Contributed modules for configuring layout.
Extending base themes
Creating custom themes
Third: 
Custom coding with modules

Modules answer questions such as "Can Drupal do X?"
What is module development?
Knowing the landscape of contributed modules and
roadmaps.
Extending existing modules and contributing patches.
Use Drupal's API to write new modules in
PHP/HTML/CSS/JavaScript/etc.
Custom modules for new functionality and integrations.
Drupal emphasizes flexibility

Drupal 7
Tips on module selection
Reputation

Maintainers other contributions and involvement,
IRC, word of mouth, appearance in case studies and blog posts.

Reach

Community around module?
Related modules?
Number of installations?
Integrate with other modules?

Currency

Recent commits (last 4-6 weeks)?
Recent release? (green/stable)
Issue queue responsiveness and maintenance?
Reading a project page
Demo

Task

1. Compatible version for
1. Come up with an idea for
Drupal 7?
some functionality you'd like
2. How many installations?
on your site. (No ideas? How
3. Who maintains this?
about allowing users login
4. What are current issues?
with Facebook.)
5. Is Documentation available? 2. Search for a module.
3. Evaluate it against the criteria
we used: Reputation, reach,
currency
A basic theme

This is the bare minimum you need for a theme in Drupal 7.
What will happen?

What do you think the site will display when we enable this
theme?

Enable themes under "Appearance"
What will happen?

What do you think the site will display when we enable this
theme?

Enable themes under "Appearance"

Más contenido relacionado

La actualidad más candente

presentation 2
presentation 2 presentation 2
presentation 2
stoliros
 
Elin media evaluation question 6
Elin media evaluation  question 6Elin media evaluation  question 6
Elin media evaluation question 6
elinjones2
 
Tutorial PHP and Dreamweaver CS3
Tutorial PHP and Dreamweaver CS3Tutorial PHP and Dreamweaver CS3
Tutorial PHP and Dreamweaver CS3
Halizah Ahmad
 

La actualidad más candente (20)

SynapseIndia wordpress installation training module
SynapseIndia wordpress installation training moduleSynapseIndia wordpress installation training module
SynapseIndia wordpress installation training module
 
Wordpress Intro
Wordpress IntroWordpress Intro
Wordpress Intro
 
Joomla 3.0 Made Easy | Free E-book
Joomla 3.0 Made Easy | Free E-book Joomla 3.0 Made Easy | Free E-book
Joomla 3.0 Made Easy | Free E-book
 
Joomla Explained - As Easy as 1, 2, 3
Joomla Explained - As Easy as 1, 2, 3Joomla Explained - As Easy as 1, 2, 3
Joomla Explained - As Easy as 1, 2, 3
 
Joomla 15 Quickstart
Joomla 15 QuickstartJoomla 15 Quickstart
Joomla 15 Quickstart
 
Wordpress for Beginners: 10 Must Knows
Wordpress for Beginners: 10 Must KnowsWordpress for Beginners: 10 Must Knows
Wordpress for Beginners: 10 Must Knows
 
Joomla
JoomlaJoomla
Joomla
 
presentation 2
presentation 2 presentation 2
presentation 2
 
Why wordpress
Why wordpressWhy wordpress
Why wordpress
 
Elin media evaluation question 6
Elin media evaluation  question 6Elin media evaluation  question 6
Elin media evaluation question 6
 
Evaluation question 6
Evaluation question 6Evaluation question 6
Evaluation question 6
 
Tutorial PHP and Dreamweaver CS3
Tutorial PHP and Dreamweaver CS3Tutorial PHP and Dreamweaver CS3
Tutorial PHP and Dreamweaver CS3
 
Evaluation question 6
Evaluation question 6Evaluation question 6
Evaluation question 6
 
Drupal content manahment system - manual
Drupal content manahment system - manualDrupal content manahment system - manual
Drupal content manahment system - manual
 
Web Design: WordPress Platform
Web Design: WordPress PlatformWeb Design: WordPress Platform
Web Design: WordPress Platform
 
Comparing Blogger And Wordpress
Comparing Blogger And WordpressComparing Blogger And Wordpress
Comparing Blogger And Wordpress
 
WordPress for Beginners
WordPress for BeginnersWordPress for Beginners
WordPress for Beginners
 
Advantages & Disadvantages of Wordpress
Advantages & Disadvantages of WordpressAdvantages & Disadvantages of Wordpress
Advantages & Disadvantages of Wordpress
 
Joomla Presentations
Joomla PresentationsJoomla Presentations
Joomla Presentations
 
Advantages And Disadvantages Of Joomla
Advantages And Disadvantages Of JoomlaAdvantages And Disadvantages Of Joomla
Advantages And Disadvantages Of Joomla
 

Destacado

Michael jordan
Michael jordanMichael jordan
Michael jordan
skuryan
 
Drupal for Project Managers, Part 3: Launching
Drupal for Project Managers, Part 3: LaunchingDrupal for Project Managers, Part 3: Launching
Drupal for Project Managers, Part 3: Launching
Acquia
 
Drupal for Marketers
Drupal for MarketersDrupal for Marketers
Drupal for Marketers
Acquia
 
Introduction To Drupal
Introduction To DrupalIntroduction To Drupal
Introduction To Drupal
Lauren Roth
 

Destacado (17)

Introductie Drupal development
Introductie Drupal developmentIntroductie Drupal development
Introductie Drupal development
 
Drupal introductie voor beheerders
Drupal introductie voor beheerdersDrupal introductie voor beheerders
Drupal introductie voor beheerders
 
Drupal workshop 10-03-2011
Drupal workshop 10-03-2011Drupal workshop 10-03-2011
Drupal workshop 10-03-2011
 
KOGK - Wat is drupal? - Baris Wanschers
KOGK - Wat is drupal? - Baris WanschersKOGK - Wat is drupal? - Baris Wanschers
KOGK - Wat is drupal? - Baris Wanschers
 
De Nieuwe Antwerpenaar
De Nieuwe AntwerpenaarDe Nieuwe Antwerpenaar
De Nieuwe Antwerpenaar
 
Introduction to Drupal Distributions
Introduction to Drupal DistributionsIntroduction to Drupal Distributions
Introduction to Drupal Distributions
 
Michael jordan
Michael jordanMichael jordan
Michael jordan
 
Drupal for Project Managers, Part 3: Launching
Drupal for Project Managers, Part 3: LaunchingDrupal for Project Managers, Part 3: Launching
Drupal for Project Managers, Part 3: Launching
 
Drupal for Marketers
Drupal for MarketersDrupal for Marketers
Drupal for Marketers
 
What is Drupal? An Introduction to Drupal 8
What is Drupal? An Introduction to Drupal 8What is Drupal? An Introduction to Drupal 8
What is Drupal? An Introduction to Drupal 8
 
Introduction To Drupal
Introduction To DrupalIntroduction To Drupal
Introduction To Drupal
 
Drupal 8 Quick Start: An Overview of Lightning
Drupal 8 Quick Start: An Overview of LightningDrupal 8 Quick Start: An Overview of Lightning
Drupal 8 Quick Start: An Overview of Lightning
 
General Drupal presentation in Dutch
General Drupal  presentation in DutchGeneral Drupal  presentation in Dutch
General Drupal presentation in Dutch
 
Drupal 7 vs. Drupal 8: A Contrast of Multilingual Support
Drupal 7 vs. Drupal 8: A Contrast of Multilingual SupportDrupal 7 vs. Drupal 8: A Contrast of Multilingual Support
Drupal 7 vs. Drupal 8: A Contrast of Multilingual Support
 
Business Benefits of Drupal 8: Empower Digital Innovation with the Newest Ver...
Business Benefits of Drupal 8: Empower Digital Innovation with the Newest Ver...Business Benefits of Drupal 8: Empower Digital Innovation with the Newest Ver...
Business Benefits of Drupal 8: Empower Digital Innovation with the Newest Ver...
 
An Introduction to Drupal
An Introduction to DrupalAn Introduction to Drupal
An Introduction to Drupal
 
Acquia Cloud Extend: une offre exclusive pour héberger vos sites Drupal en Fr...
Acquia Cloud Extend: une offre exclusive pour héberger vos sites Drupal en Fr...Acquia Cloud Extend: une offre exclusive pour héberger vos sites Drupal en Fr...
Acquia Cloud Extend: une offre exclusive pour héberger vos sites Drupal en Fr...
 

Similar a Hello Drupal!

Drupal Conference
Drupal ConferenceDrupal Conference
Drupal Conference
ChanHan Hy
 
Drupal seminar at DDIT Nadiad
Drupal seminar at DDIT NadiadDrupal seminar at DDIT Nadiad
Drupal seminar at DDIT Nadiad
karmraj
 
Drupal theming 101
Drupal theming 101Drupal theming 101
Drupal theming 101
Exove
 
Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012
mtlgirlgeeks
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
Rachel Vacek
 

Similar a Hello Drupal! (20)

Drupal 6x Installation
Drupal 6x Installation Drupal 6x Installation
Drupal 6x Installation
 
Building User-Centred Websites with Drupal
Building User-Centred Websites with DrupalBuilding User-Centred Websites with Drupal
Building User-Centred Websites with Drupal
 
Drupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal ConceptsDrupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal Concepts
 
Drupal training-by-ruchiwebsolutions
Drupal training-by-ruchiwebsolutionsDrupal training-by-ruchiwebsolutions
Drupal training-by-ruchiwebsolutions
 
Sample You Tube tutorial for Drupal
Sample You Tube tutorial for DrupalSample You Tube tutorial for Drupal
Sample You Tube tutorial for Drupal
 
Drupal Conference
Drupal ConferenceDrupal Conference
Drupal Conference
 
Drupal Experience Sharing at Prime College
Drupal Experience Sharing at Prime CollegeDrupal Experience Sharing at Prime College
Drupal Experience Sharing at Prime College
 
Drupal Experience Sharing At Prime College
Drupal Experience Sharing At Prime CollegeDrupal Experience Sharing At Prime College
Drupal Experience Sharing At Prime College
 
Drupal seminar at DDIT Nadiad
Drupal seminar at DDIT NadiadDrupal seminar at DDIT Nadiad
Drupal seminar at DDIT Nadiad
 
Intro to drupal
Intro to drupalIntro to drupal
Intro to drupal
 
Drupal theming 101
Drupal theming 101Drupal theming 101
Drupal theming 101
 
Lazy Coder Camp Edition 1
Lazy Coder Camp Edition 1Lazy Coder Camp Edition 1
Lazy Coder Camp Edition 1
 
Why drupal should power your next web project
Why drupal should power your next web projectWhy drupal should power your next web project
Why drupal should power your next web project
 
Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012Girl geek-drupal-intro-jan23-2012
Girl geek-drupal-intro-jan23-2012
 
Intro to Drupal
Intro to DrupalIntro to Drupal
Intro to Drupal
 
Montreal Girl Geeks: Intro to Drupal
Montreal Girl Geeks: Intro to DrupalMontreal Girl Geeks: Intro to Drupal
Montreal Girl Geeks: Intro to Drupal
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
 
Beginner's guide to drupal
Beginner's guide to drupalBeginner's guide to drupal
Beginner's guide to drupal
 
Theme customisation for beginners
Theme customisation for beginnersTheme customisation for beginners
Theme customisation for beginners
 
Hands On Drupal - SchipulCon 09
Hands On Drupal - SchipulCon 09Hands On Drupal - SchipulCon 09
Hands On Drupal - SchipulCon 09
 

Más 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
 

Más 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

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
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...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 

Hello Drupal!