SlideShare a Scribd company logo
+
Disclaimer:
This is my first speaking/presenting
gig. I’m pretty sure I’m going to do
fine, but if I talk really fast and
there’s a lot of time left then we’ll
talk amongst ourselves.
Luckily, if I talk too slowly & run out
of time, the slides are set up to be
totally self-explanatory. So you can
peruse them later.
+
So let’s talk about Drupal.
It’s a thing, and it does stuff.
+
But first, let’s talk about me for a
second
 My name is Sarah Shealy
 I’m the Front End Web Developer at
Richland Library here in Columbia,
SC
 www.richlandlibrary.com
 I have a background in Art History
and Library Science
 These are my cats.
 All Drupal presentations
should have at least one cat
picture – I learned this at my
first DrupalCamp and now I
pass it on to you.
+
My Drupal Story & the seed of this
presentation
 0 web development skills (ZERO- I barely knew what HTML
and CSS were)
 Only volunteered with the team because I wanted a librarian
job at Richland Library & it would look good
 Really frustrated that as I got into Drupal, people would talk
way over my head when I just wanted the basics.
 I remember wishing that this presentation existed when I went
to my first DrupalCamp. So if it’s too simplistic or doesn’t cover
enough higher level stuff, I’m sorry.
+
You can find me in random places
online
 I really only use Twitter,
Instagram, & Pinterest
 @Sarah_Shealy (Twit)
 SarahHShealy (Insta)
 Shealysh (Pint)
 Sarahsassandsurcees.com
 This is my real-life, personal
blog. Not tech, and updated
about once a week. Don’t go
here for advice, go here to
waste some time.
 But somehow I have 3 email
addresses:
 Sarah.Shealy@gmail.com
 Sarah.Shealy@outlook.com
 Sshealy@richlandlibrary.com
 Shealysh.me
 Literally nothing there at the
moment except working
social media links, but will be
up and running in the next
few weeks. It will be fabulous.
+
Now, let’s talk about you for a
second
 For a lot of you, this is going to be a “duh” sort of presentation,
but I’m really speaking to the person who sort of stumbled onto
Drupal and knows what it does but doesn’t know things like
“node” or “content type”. Those are my people.
 If this is not you, feel free to doodle, answer email, take a nap
(but please not if you snore), and generally keep yourself
entertained.
+
So Drupal is a thing, right?
 Open Source
 Basically, you can use Drupal for free.
 There isn’t an enterprise behind Drupal – even though people are
paid to develop for Drupal, there isn’t a conglomerate dictating that
development.
 Community Based
 Drupal is all about community.
 Even if Bob develops a module that his site uses, he’ll probably
contribute that module back to the community.
 I’ve never had a problem reaching out to a Drupal person for help –
if they can’t help me, they’ll refer me to someone who can.
+
Function vs. Beauty
 Function
 More important than beauty
 Honestly.
 As long as it works for you,
keep it simple.
 Remember that you can
always add beauty based
skills as you master
functional ones
 You can also change how
things function as you learn –
you don’t have to be perfect
right away
 Beauty
 Totally important
 But not the end all be all
 If someone says “Your site is
gorgeous, but I have no idea
what I’m supposed to
do/what you’re selling/what
you do” you should rethink
your strategy.
 Shiny things are fun, but
concrete will keep your house
standing.
+
A few terms you should have a
handle on
 Node - A single piece of content on your site. Every node also
belongs to a particular content type.
 Content Type – A content type basically tells Drupal how to render
your content. It defines the fields used, the layout created, and the
input form the creator uses.
 Page - One of the two basic content types that are packaged with
Drupal core. Generally, pages are used for static content that is to
be linked into the main navigation bar. Not all nodes are pages,
but all pages are nodes.
 Article – The other content type that comes with Core. Usually
used for content that changes or isn’t permanent. Like blog posts
or marketing releases.
+
Yay terms!
 Theme – Basically the files that define how your site looks. A
theme can override all the looks of modules, etc. They can be
as simple as defining colors or can be drastically customized to
control every element of the design. Themes regulate what
goes where.
 Region - Areas of a node where content can be placed.
Sidebars, headers, footers, etc are all placed in regions.
 Term – This is basically the Drupal term for keyword. You
attach keywords to content in order to link content with other
content.
 Vocabulary – A collection of terms.
+
Last slide o’ terms
 Core - The files and modules included with the basic Drupal
install.
 Clean URL - A URL that does not contain code. Drupal puts
snippets of code in URLs, and clean ones remove that code.
Makes them much easier to remember.
 Ninja/guru/rock star/super hero/etc – ridiculous ways to say
you’re good at your job.
 Druplicon - The Drupal mascot. It’s basically a raindrop with a
face on it.
+
Modules: a disclaimer
Please, for the love of all things, do not go back to work and insist
everyone on the team uses all of the modules that I’m about to go
over. Unless you are the whole team, in which case go for it.
If you see something that may solve a problem better than you’re
currently solving it, suggest the team looks into it.
Don’t be that guy (or girl).
+
Views!
*everyone’s 1st recommendation*
 You need Views if
 You like the default front page view, but you find you want to sort it
differently.
 You like the default taxonomy/term view, but you find you want to
sort it differently; for example, alphabetically.
 You want a way to display a block with the 5 most recent posts of
some particular type.
 Views basically gives you an alternative way to display content,
and restrict that display to specific content types or taxonomy
terms. It’s even possible to restrict to a certain user’s content.
Steep learning curve, though.
**This is from the Views module page with some modification**
+
Panels!
 Lets you create customized layouts for your site.
 It’s a drag and drop content manager that lets you design your
layout and place content in it. It’s a way to control the layout
without using theme files.
 Learning curve is pretty steep. Much like views.
 While Panels integrates with Views, people are generally in
either the Views camp or the Panels camp. But there are plenty
of sites that use both.
**Basic ideas came from the Panels module page – much modified**
+
Pathauto!
 The Pathauto module automatically creates URLs and path
aliases for content without the user having to make one up
themselves. This keeps the sites’ URLs consistent.
 You can specify how each content type is given an alias. For
example all events on your site can be given a pattern with
“events” so each event is mysite.com/events/event-title
** Pathauto is a pretty excellent module, and you should check it
out.**
+
Git
 Git is a version control system
 Github keeps your code on the interwebs, you copy that code
base onto your computer, and then you can muck about in the
copy while not injuring your current production-level code.
 There are TONS of tutorials out there, and the best place to start is
GitHub
 But there are a lot of Git users out there and they have really
excellent advice about how to use Git in the best way.
 Try not to wing it when using Git, you can break some stuff.
Like your corner of the internet.
+
Drush
 An awesome program for managing Drupal from the command line.
It allows a site admin to do things by typing in a few commands
instead of clicking through multiple steps to accomplish the same
goal.
 My favorite commands:
 Drush en | Drush dis
 Enables and disables modules
 Drush cc all
 This clears the cache of all the styles and applies new ones that
I’ve created.
+
Where to get help
 Google. It’s legit, you guys. Got a weird error message?
Google.
 Drupal.org is always a good place to go – the search is
unwieldy, though.
 Stack Exchange
 Stack Overflow
 But really, Google will get you blog posts from people who have
had your exact problem as well as every other site’s answers.
+
Awesome Places for Training (free)
 YouTube
 Just search for whatever you need help with.
 There are videos of presentations, tutorials, etc.
 Google.
 There are several million tutorials out there that really want to help
you out.
 DrupalCamp 24x7
+
Awesome Places for Training ($)
 Udemy has a course for an Intro to Drupal.
 Drupal.org has a listing of a bunch of places that provide
training.
 I can vouch for
 Acquia
 Build a Module
 Isovera
 Lullabot (drupalize.me)
 Lynda

More Related Content

What's hot (20)

ODP
SW Drupal Summit - Upgrading 6 to 7
Amye Scavarda
 
PPTX
Question 4
therealdrcrazy
 
PPT
How to Build an Unsuccessful Start-Up
Hugh McGuire
 
PPTX
Ccc sum inst11_googlification1 f
katherine watson
 
POT
More Than Facebook
NewLegacyChick
 
PDF
Drupal Aware Design: Good Techniques for Better Themes
nyccamp
 
PPT
Use of ict
imogenlaw12
 
PPTX
E learn12 googlificationf
katherine watson
 
PPTX
Never Use a USB Key Again: How to Manage your Files in the Cloud
Rafael Scapin, Ph.D.
 
PPTX
David's Top 10 Google Tips
dcarmichael79
 
PPTX
What have you learnt about technologies from the process of constructing this...
MarvellousAyy
 
PPTX
A Year of Blogging
NewEnglishBlog
 
PDF
Word camp c bus 2016
Bobby Bryant
 
PPTX
Optimizing your presence online km eb
Evelyn Neale
 
PPTX
Open Ed 2018 - The Free, Open, Decentralized OER publishing platform
btopro
 
PDF
RSCON 3 Slideshow: Teaching in a messy classroom
tblanchet
 
PDF
C++ notes 2 tutorials duniya
TutorialsDuniya.com
 
PDF
C++ notes tutorials duniya
TutorialsDuniya.com
 
PPTX
Email ettiquette
St John
 
PPT
ALL YOUR BASE (THEMES) ARE BELONG TO US
nyccamp
 
SW Drupal Summit - Upgrading 6 to 7
Amye Scavarda
 
Question 4
therealdrcrazy
 
How to Build an Unsuccessful Start-Up
Hugh McGuire
 
Ccc sum inst11_googlification1 f
katherine watson
 
More Than Facebook
NewLegacyChick
 
Drupal Aware Design: Good Techniques for Better Themes
nyccamp
 
Use of ict
imogenlaw12
 
E learn12 googlificationf
katherine watson
 
Never Use a USB Key Again: How to Manage your Files in the Cloud
Rafael Scapin, Ph.D.
 
David's Top 10 Google Tips
dcarmichael79
 
What have you learnt about technologies from the process of constructing this...
MarvellousAyy
 
A Year of Blogging
NewEnglishBlog
 
Word camp c bus 2016
Bobby Bryant
 
Optimizing your presence online km eb
Evelyn Neale
 
Open Ed 2018 - The Free, Open, Decentralized OER publishing platform
btopro
 
RSCON 3 Slideshow: Teaching in a messy classroom
tblanchet
 
C++ notes 2 tutorials duniya
TutorialsDuniya.com
 
C++ notes tutorials duniya
TutorialsDuniya.com
 
Email ettiquette
St John
 
ALL YOUR BASE (THEMES) ARE BELONG TO US
nyccamp
 

Viewers also liked (11)

PPTX
Bubbl.ua
Olga_vybornova
 
PPTX
Guardería "LOS PATITOS"
AlbaDelPozo
 
PDF
Creative Investment Concepts LLC Presents:
Creative Investment Concepts LLC
 
PDF
Creative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC
 
PPSX
Maletacd Cyclic Distillation
Dr. Volodymyr
 
PDF
Sync Apps With Couchbase
Doru Chiulan
 
PPT
OER: Good News/Bad News
edcc-polsci
 
PDF
Paid, owned and earned slideshare
Gem Griff
 
PDF
Tray Dividing Wall Columns
Dr. Volodymyr
 
PDF
DrupalCon Amsterdam Closing Session
DrupalAssociation
 
PDF
Drupal 8 - A Brief Introduction
Jeff Geerling
 
Bubbl.ua
Olga_vybornova
 
Guardería "LOS PATITOS"
AlbaDelPozo
 
Creative Investment Concepts LLC Presents:
Creative Investment Concepts LLC
 
Creative Investment Concepts LLC Presents: Must Have Real Estate Apps
Creative Investment Concepts LLC
 
Maletacd Cyclic Distillation
Dr. Volodymyr
 
Sync Apps With Couchbase
Doru Chiulan
 
OER: Good News/Bad News
edcc-polsci
 
Paid, owned and earned slideshare
Gem Griff
 
Tray Dividing Wall Columns
Dr. Volodymyr
 
DrupalCon Amsterdam Closing Session
DrupalAssociation
 
Drupal 8 - A Brief Introduction
Jeff Geerling
 
Ad

Similar to Intro to Drupal Slides - DrupalCampSC 2014 (20)

PPTX
drupal theme developer in hyderabad
php2ranjan
 
PPT
Synapseindia drupal intro 0
saritasingh19866
 
PPTX
Drupal introduction
Jin Castor
 
PPT
Drupal - Introduction to Drupal and Web Content Management
Vibrant Technologies & Computers
 
PDF
DrupalCon Austin - Absolute Beginner's Guide to Drupal
Rod Martin
 
PDF
Montreal Girl Geeks: Intro to Drupal
Suzanne Dergacheva
 
PDF
Girl geek-drupal-intro-jan23-2012
mtlgirlgeeks
 
PDF
Intro to Drupal
mtlgirlgeeks
 
PPT
Drupal101
Rachel Vacek
 
PPT
Drupal - Introduction to Drupal Menu and Theme Management
Vibrant Technologies & Computers
 
PDF
Absolute Beginners Guide to Drupal
Rod Martin
 
PPTX
Basic Introduction to Drupal
Murtaza Alvi
 
PPT
Drupal intro
Antonio Perez
 
PPT
Drupal intro
Geetanjali Srivastava
 
PPTX
Drupal8 corporate training in Hyderabad
php2ranjan
 
PPT
Drupal -Introduction to Drupal
Vibrant Technologies & Computers
 
PDF
Drupal Recipe
hernanibf
 
PPT
Drupal intro (1)
abhineshsharma
 
PDF
Fastest Way to DRUPAL
Brahm
 
PPTX
Drupal Skils Lab 302Labs
Ahmad Mohamad Zain
 
drupal theme developer in hyderabad
php2ranjan
 
Synapseindia drupal intro 0
saritasingh19866
 
Drupal introduction
Jin Castor
 
Drupal - Introduction to Drupal and Web Content Management
Vibrant Technologies & Computers
 
DrupalCon Austin - Absolute Beginner's Guide to Drupal
Rod Martin
 
Montreal Girl Geeks: Intro to Drupal
Suzanne Dergacheva
 
Girl geek-drupal-intro-jan23-2012
mtlgirlgeeks
 
Intro to Drupal
mtlgirlgeeks
 
Drupal101
Rachel Vacek
 
Drupal - Introduction to Drupal Menu and Theme Management
Vibrant Technologies & Computers
 
Absolute Beginners Guide to Drupal
Rod Martin
 
Basic Introduction to Drupal
Murtaza Alvi
 
Drupal intro
Antonio Perez
 
Drupal intro
Geetanjali Srivastava
 
Drupal8 corporate training in Hyderabad
php2ranjan
 
Drupal -Introduction to Drupal
Vibrant Technologies & Computers
 
Drupal Recipe
hernanibf
 
Drupal intro (1)
abhineshsharma
 
Fastest Way to DRUPAL
Brahm
 
Drupal Skils Lab 302Labs
Ahmad Mohamad Zain
 
Ad

Recently uploaded (20)

PPTX
internet básico presentacion es una red global
70965857
 
PPTX
一比一原版(SUNY-Albany毕业证)纽约州立大学奥尔巴尼分校毕业证如何办理
Taqyea
 
PPTX
本科硕士学历佛罗里达大学毕业证(UF毕业证书)24小时在线办理
Taqyea
 
PPTX
Research Design - Report on seminar in thesis writing. PPTX
arvielobos1
 
PPTX
PE introd.pptxfrgfgfdgfdgfgrtretrt44t444
nepmithibai2024
 
PDF
DevOps Design for different deployment options
henrymails
 
PPTX
PM200.pptxghjgfhjghjghjghjghjghjghjghjghjghj
breadpaan921
 
PDF
𝐁𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓
hokimamad0
 
PPTX
原版西班牙莱昂大学毕业证(León毕业证书)如何办理
Taqyea
 
PDF
Web Hosting for Shopify WooCommerce etc.
Harry_Phoneix Harry_Phoneix
 
PPT
introductio to computers by arthur janry
RamananMuthukrishnan
 
PPTX
unit 2_2 copy right fdrgfdgfai and sm.pptx
nepmithibai2024
 
PPT
Agilent Optoelectronic Solutions for Mobile Application
andreashenniger2
 
PPTX
L1A Season 1 Guide made by A hegy Eng Grammar fixed
toszolder91
 
PPTX
Optimization_Techniques_ML_Presentation.pptx
farispalayi
 
PPT
introduction to networking with basics coverage
RamananMuthukrishnan
 
PPTX
Presentation3gsgsgsgsdfgadgsfgfgsfgagsfgsfgzfdgsdgs.pptx
SUB03
 
PPTX
INTEGRATION OF ICT IN LEARNING AND INCORPORATIING TECHNOLOGY
kvshardwork1235
 
PPTX
西班牙武康大学毕业证书{UCAMOfferUCAM成绩单水印}原版制作
Taqyea
 
PPT
Computer Securityyyyyyyy - Chapter 2.ppt
SolomonSB
 
internet básico presentacion es una red global
70965857
 
一比一原版(SUNY-Albany毕业证)纽约州立大学奥尔巴尼分校毕业证如何办理
Taqyea
 
本科硕士学历佛罗里达大学毕业证(UF毕业证书)24小时在线办理
Taqyea
 
Research Design - Report on seminar in thesis writing. PPTX
arvielobos1
 
PE introd.pptxfrgfgfdgfdgfgrtretrt44t444
nepmithibai2024
 
DevOps Design for different deployment options
henrymails
 
PM200.pptxghjgfhjghjghjghjghjghjghjghjghjghj
breadpaan921
 
𝐁𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓
hokimamad0
 
原版西班牙莱昂大学毕业证(León毕业证书)如何办理
Taqyea
 
Web Hosting for Shopify WooCommerce etc.
Harry_Phoneix Harry_Phoneix
 
introductio to computers by arthur janry
RamananMuthukrishnan
 
unit 2_2 copy right fdrgfdgfai and sm.pptx
nepmithibai2024
 
Agilent Optoelectronic Solutions for Mobile Application
andreashenniger2
 
L1A Season 1 Guide made by A hegy Eng Grammar fixed
toszolder91
 
Optimization_Techniques_ML_Presentation.pptx
farispalayi
 
introduction to networking with basics coverage
RamananMuthukrishnan
 
Presentation3gsgsgsgsdfgadgsfgfgsfgagsfgsfgzfdgsdgs.pptx
SUB03
 
INTEGRATION OF ICT IN LEARNING AND INCORPORATIING TECHNOLOGY
kvshardwork1235
 
西班牙武康大学毕业证书{UCAMOfferUCAM成绩单水印}原版制作
Taqyea
 
Computer Securityyyyyyyy - Chapter 2.ppt
SolomonSB
 

Intro to Drupal Slides - DrupalCampSC 2014

  • 1. + Disclaimer: This is my first speaking/presenting gig. I’m pretty sure I’m going to do fine, but if I talk really fast and there’s a lot of time left then we’ll talk amongst ourselves. Luckily, if I talk too slowly & run out of time, the slides are set up to be totally self-explanatory. So you can peruse them later.
  • 2. + So let’s talk about Drupal. It’s a thing, and it does stuff.
  • 3. + But first, let’s talk about me for a second  My name is Sarah Shealy  I’m the Front End Web Developer at Richland Library here in Columbia, SC  www.richlandlibrary.com  I have a background in Art History and Library Science  These are my cats.  All Drupal presentations should have at least one cat picture – I learned this at my first DrupalCamp and now I pass it on to you.
  • 4. + My Drupal Story & the seed of this presentation  0 web development skills (ZERO- I barely knew what HTML and CSS were)  Only volunteered with the team because I wanted a librarian job at Richland Library & it would look good  Really frustrated that as I got into Drupal, people would talk way over my head when I just wanted the basics.  I remember wishing that this presentation existed when I went to my first DrupalCamp. So if it’s too simplistic or doesn’t cover enough higher level stuff, I’m sorry.
  • 5. + You can find me in random places online  I really only use Twitter, Instagram, & Pinterest  @Sarah_Shealy (Twit)  SarahHShealy (Insta)  Shealysh (Pint)  Sarahsassandsurcees.com  This is my real-life, personal blog. Not tech, and updated about once a week. Don’t go here for advice, go here to waste some time.  But somehow I have 3 email addresses:  [email protected][email protected][email protected]  Shealysh.me  Literally nothing there at the moment except working social media links, but will be up and running in the next few weeks. It will be fabulous.
  • 6. + Now, let’s talk about you for a second  For a lot of you, this is going to be a “duh” sort of presentation, but I’m really speaking to the person who sort of stumbled onto Drupal and knows what it does but doesn’t know things like “node” or “content type”. Those are my people.  If this is not you, feel free to doodle, answer email, take a nap (but please not if you snore), and generally keep yourself entertained.
  • 7. + So Drupal is a thing, right?  Open Source  Basically, you can use Drupal for free.  There isn’t an enterprise behind Drupal – even though people are paid to develop for Drupal, there isn’t a conglomerate dictating that development.  Community Based  Drupal is all about community.  Even if Bob develops a module that his site uses, he’ll probably contribute that module back to the community.  I’ve never had a problem reaching out to a Drupal person for help – if they can’t help me, they’ll refer me to someone who can.
  • 8. + Function vs. Beauty  Function  More important than beauty  Honestly.  As long as it works for you, keep it simple.  Remember that you can always add beauty based skills as you master functional ones  You can also change how things function as you learn – you don’t have to be perfect right away  Beauty  Totally important  But not the end all be all  If someone says “Your site is gorgeous, but I have no idea what I’m supposed to do/what you’re selling/what you do” you should rethink your strategy.  Shiny things are fun, but concrete will keep your house standing.
  • 9. + A few terms you should have a handle on  Node - A single piece of content on your site. Every node also belongs to a particular content type.  Content Type – A content type basically tells Drupal how to render your content. It defines the fields used, the layout created, and the input form the creator uses.  Page - One of the two basic content types that are packaged with Drupal core. Generally, pages are used for static content that is to be linked into the main navigation bar. Not all nodes are pages, but all pages are nodes.  Article – The other content type that comes with Core. Usually used for content that changes or isn’t permanent. Like blog posts or marketing releases.
  • 10. + Yay terms!  Theme – Basically the files that define how your site looks. A theme can override all the looks of modules, etc. They can be as simple as defining colors or can be drastically customized to control every element of the design. Themes regulate what goes where.  Region - Areas of a node where content can be placed. Sidebars, headers, footers, etc are all placed in regions.  Term – This is basically the Drupal term for keyword. You attach keywords to content in order to link content with other content.  Vocabulary – A collection of terms.
  • 11. + Last slide o’ terms  Core - The files and modules included with the basic Drupal install.  Clean URL - A URL that does not contain code. Drupal puts snippets of code in URLs, and clean ones remove that code. Makes them much easier to remember.  Ninja/guru/rock star/super hero/etc – ridiculous ways to say you’re good at your job.  Druplicon - The Drupal mascot. It’s basically a raindrop with a face on it.
  • 12. + Modules: a disclaimer Please, for the love of all things, do not go back to work and insist everyone on the team uses all of the modules that I’m about to go over. Unless you are the whole team, in which case go for it. If you see something that may solve a problem better than you’re currently solving it, suggest the team looks into it. Don’t be that guy (or girl).
  • 13. + Views! *everyone’s 1st recommendation*  You need Views if  You like the default front page view, but you find you want to sort it differently.  You like the default taxonomy/term view, but you find you want to sort it differently; for example, alphabetically.  You want a way to display a block with the 5 most recent posts of some particular type.  Views basically gives you an alternative way to display content, and restrict that display to specific content types or taxonomy terms. It’s even possible to restrict to a certain user’s content. Steep learning curve, though. **This is from the Views module page with some modification**
  • 14. + Panels!  Lets you create customized layouts for your site.  It’s a drag and drop content manager that lets you design your layout and place content in it. It’s a way to control the layout without using theme files.  Learning curve is pretty steep. Much like views.  While Panels integrates with Views, people are generally in either the Views camp or the Panels camp. But there are plenty of sites that use both. **Basic ideas came from the Panels module page – much modified**
  • 15. + Pathauto!  The Pathauto module automatically creates URLs and path aliases for content without the user having to make one up themselves. This keeps the sites’ URLs consistent.  You can specify how each content type is given an alias. For example all events on your site can be given a pattern with “events” so each event is mysite.com/events/event-title ** Pathauto is a pretty excellent module, and you should check it out.**
  • 16. + Git  Git is a version control system  Github keeps your code on the interwebs, you copy that code base onto your computer, and then you can muck about in the copy while not injuring your current production-level code.  There are TONS of tutorials out there, and the best place to start is GitHub  But there are a lot of Git users out there and they have really excellent advice about how to use Git in the best way.  Try not to wing it when using Git, you can break some stuff. Like your corner of the internet.
  • 17. + Drush  An awesome program for managing Drupal from the command line. It allows a site admin to do things by typing in a few commands instead of clicking through multiple steps to accomplish the same goal.  My favorite commands:  Drush en | Drush dis  Enables and disables modules  Drush cc all  This clears the cache of all the styles and applies new ones that I’ve created.
  • 18. + Where to get help  Google. It’s legit, you guys. Got a weird error message? Google.  Drupal.org is always a good place to go – the search is unwieldy, though.  Stack Exchange  Stack Overflow  But really, Google will get you blog posts from people who have had your exact problem as well as every other site’s answers.
  • 19. + Awesome Places for Training (free)  YouTube  Just search for whatever you need help with.  There are videos of presentations, tutorials, etc.  Google.  There are several million tutorials out there that really want to help you out.  DrupalCamp 24x7
  • 20. + Awesome Places for Training ($)  Udemy has a course for an Intro to Drupal.  Drupal.org has a listing of a bunch of places that provide training.  I can vouch for  Acquia  Build a Module  Isovera  Lullabot (drupalize.me)  Lynda