SlideShare una empresa de Scribd logo
1 de 35
Descargar para leer sin conexión
How to Choose a Programming Language
January 2018
WIFI: CrossCamp.us Events
Password: None
bit.ly/language-la
1
Instructor
Justin Ezor
Thinkful LA Community Manager
Wi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
2
About you
What's your name?
What brought you here today?
What is your programming experience?
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
3
About Thinkful
Thinkful helps people become developers or data scientists
through 1-on-1 mentorship and project-based learning
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
4
What is programming?
Programming is:
writing instructions for a computer to execute
problem-solvingproblem-solving
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
5
Learning how to code
Learning to code is a process of learning how to solve
problems in a structured way and then translate those
solutions into instructions a computer can understand and
implement.
Variables, loops, arrays, functions exist in all languages —
stick to one until you understand the core concepts
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
6
Pick one thing and master it.
Don’t jump around. It will be surprisingly easy to pick up more
languages once you understand the fundamentals.
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
7
Does the first language you choose matter?
It matters, but not in the way most people think. You should
pick the language that makes it easiest for you to learn how
to code.
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
8
How to pick a first language?
Objective
Popularity
Accessibility
Job prospects
Longevity
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
9
Potential objectives
Frontend
Backend
Full-stack
Data & Analytics
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
10
Front end, Back end, and Full stack
Client (sends requests)
Frontend Developer
Manages what user sees
Server (sends response)
Backend Developer
Manages what app does
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None 11
bit.ly/language-la
Data/Analytics
Data & Databases
Database Engineers,
Data Scientists,
Data Analysts
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
12
Benefits of Popularity & Accessibility
Has large community of developers, libraries and
frameworks => easier to learn & debug
Syntax is less complicated and more intuitive for first-time
developers
Helps you focus on learning how to code rather than get
distracted by the nuances of the language
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
13
Our recommendations
Frontend: Javascript
Backend: Javascript/Python
Full-stack: Javascript
Analytics: Python
bit.ly/build-own-website
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
14
Javascript
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
15
Javascript history
Written by Brendan Eich in 1995 for Netscape
Initial version written in 10 days
Completely unrelated to Java, but maybe named after it to
draft off its popularity
Over 10 years, became default programming language for
browsers
Continues to evolve under guidance of ECMA
International, with input from top tech companies
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
16
Javascript
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
17
Why JavaScript?
94% of all websites in the world use Javascript.
Javascript has a monopoly on front end web
development.
All browsers already have Javascript interpreters
included.
Node.js allows Javascript to be written on the
back end as well.
Knowing Javascript means you can create full
stack web applications in minutes.
18
Python
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
19
Python history
First release in 1991
Designed to be simpler and more readable
Named after “Monty Python’s Flying Circus”
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
20
Python today
Since 2003, consistently ranked in top 10 most
popular languages.
As of 2017, was fifth most popular language,
currently #3 on Github
Has become standard language in computer
science curriculums (displacing Java)
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
21
Python today
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
22
Python analytics
Data scientists are increasingly using Python
over R
Python has excellent modules for “big data”
analysis and machine learning (NumPy, Pandas,
sklearn)
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
23
Javascript basics: variables
var cars = 20
Initialize variable
Name of variable
Value of variable
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None 24
bit.ly/language-la
Python basics: variables
cars = 20
Name of variable
Value of variable
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None 25
bit.ly/language-la
Javascript basics: functions
function greet() {
return "Hello world!";
}
Initialize function Name of function
What the function does
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None 26
bit.ly/language-la
Python basics: functions
def printme():
print "Hello world!"
return
Initialize function Name of function
What the function does
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None 27
bit.ly/language-la
That's it!
Understanding variables and functions means
you already understand the fundamentals of a
programming language!
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
28
How can I learn?
Build stuff + Google
Free online resources (e.g. CodeAcademy)
Flexible coding bootcamps (e.g Thinkful)
Full-time coding bootcamps (e.g. GA,
Thinkful)
Full degree programs (Georgia Tech)
Wi-Fi: Digital Ignition
Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents
Pass: None
bit.ly/language-la
29
Thinkful - structure and support
More Structure
Less Structure
More SupportLess Support
30
325+ mentors325+ mentors with an average of
10 years of experience10 years of experience in the
field
31
Support 'round the clock
Your Mentor
Q&A Sessions
Career Coach
In-person Workshops
Slack
Program Manager
YouYou
32
Our results
93%93%job-placement rate + job guarantee
Kaeside IwuagwuKaeside Iwuagwu
Link for the third party audit jobs report:
https://www.thinkful.com/bootcamp-jobs-https://www.thinkful.com/bootcamp-jobs-
statsstats
Frontend Developer
Sierra GreggSierra Gregg
Software Engineer
JP EarnestJP Earnest
Web Developer
33
Take a tour!
Talk to me (or email aaron@thinkful.com ) if you're interested
Get a tour of the program to see if
project-based, online learning is a
good fit for you.
Discuss the curriculum,
mentorship, and how to create
your own learning schedule.
34
Thinkful's free resource
Talk to one of us and email aaron.lamphere@thinkful.comaaron.lamphere@thinkful.com to learn
more
Web Development Fundamentals
Covers HTML, CSS and JavaScript
Unlimited mentor-led Q&A sessions
Personal Program Manager to help you
set goals and navigate resources
Student Slack Channel
bit.ly/web-dev-labit.ly/web-dev-la
35

Más contenido relacionado

Similar a How to Choose a Programming Language

Intro to js august 31
Intro to js august 31Intro to js august 31
Intro to js august 31Thinkful
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScriptIvy Rueb
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Ivy Rueb
 
html/CSS Crash course
html/CSS Crash coursehtml/CSS Crash course
html/CSS Crash courseJustin Ezor
 
Intro to js september 19
Intro to js september 19Intro to js september 19
Intro to js september 19Thinkful
 
Build your own website - LA 2-13-18
Build your own website - LA 2-13-18Build your own website - LA 2-13-18
Build your own website - LA 2-13-18Justin Ezor
 
html/CSS Crash course w/ interactive slides link
html/CSS Crash course w/ interactive slides linkhtml/CSS Crash course w/ interactive slides link
html/CSS Crash course w/ interactive slides linkJustin Ezor
 
html/CSS crash course correct free course link
html/CSS crash course correct free course linkhtml/CSS crash course correct free course link
html/CSS crash course correct free course linkJustin Ezor
 
Intro to JavaScript - LA - July
Intro to JavaScript - LA - JulyIntro to JavaScript - LA - July
Intro to JavaScript - LA - JulyThinkful
 
Build your own website - LA 3-20-18
Build your own website - LA 3-20-18Build your own website - LA 3-20-18
Build your own website - LA 3-20-18Justin Ezor
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Ivy Rueb
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)Justin Ezor
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)Justin Ezor
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28Thinkful
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScriptIvy Rueb
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)Thinkful
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457Justin Ezor
 
website phx
website phxwebsite phx
website phxThinkful
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30Thinkful
 

Similar a How to Choose a Programming Language (20)

Intro to js august 31
Intro to js august 31Intro to js august 31
Intro to js august 31
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScript
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
 
html/CSS Crash course
html/CSS Crash coursehtml/CSS Crash course
html/CSS Crash course
 
Intro to js september 19
Intro to js september 19Intro to js september 19
Intro to js september 19
 
Build your own website - LA 2-13-18
Build your own website - LA 2-13-18Build your own website - LA 2-13-18
Build your own website - LA 2-13-18
 
html/CSS Crash course w/ interactive slides link
html/CSS Crash course w/ interactive slides linkhtml/CSS Crash course w/ interactive slides link
html/CSS Crash course w/ interactive slides link
 
html/CSS crash course correct free course link
html/CSS crash course correct free course linkhtml/CSS crash course correct free course link
html/CSS crash course correct free course link
 
Intro to JavaScript - LA - July
Intro to JavaScript - LA - JulyIntro to JavaScript - LA - July
Intro to JavaScript - LA - July
 
Build your own website - LA 3-20-18
Build your own website - LA 3-20-18Build your own website - LA 3-20-18
Build your own website - LA 3-20-18
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-52-74
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (1)
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-405 (2)
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-9-28
 
IJS821
IJS821IJS821
IJS821
 
Intro To JavaScript
Intro To JavaScriptIntro To JavaScript
Intro To JavaScript
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7(1)
 
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457
Deck 893ff61f-1fb8-4e15-a379-775dfdbcee77-7-353-412-457
 
website phx
website phxwebsite phx
website phx
 
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30
Deck 8983a1d9-68df-4447-8481-3b4fd0de734c-30
 

Más de Thinkful

893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370Thinkful
 
LA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: FundamentalsLA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: FundamentalsThinkful
 
LA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: FundamentalsLA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: FundamentalsThinkful
 
Twit botsd1.30.18
Twit botsd1.30.18Twit botsd1.30.18
Twit botsd1.30.18Thinkful
 
Build your-own-instagram-filters-with-javascript-202-335 (1)
Build your-own-instagram-filters-with-javascript-202-335 (1)Build your-own-instagram-filters-with-javascript-202-335 (1)
Build your-own-instagram-filters-with-javascript-202-335 (1)Thinkful
 
Baggwjs124
Baggwjs124Baggwjs124
Baggwjs124Thinkful
 
Become a Data Scientist: A Thinkful Info Session
Become a Data Scientist: A Thinkful Info SessionBecome a Data Scientist: A Thinkful Info Session
Become a Data Scientist: A Thinkful Info SessionThinkful
 
Vpet sd-1.25.18
Vpet sd-1.25.18Vpet sd-1.25.18
Vpet sd-1.25.18Thinkful
 
LA 1/18/18 Become A Web Developer: A Thinkful Info Session
LA 1/18/18 Become A Web Developer: A Thinkful Info SessionLA 1/18/18 Become A Web Developer: A Thinkful Info Session
LA 1/18/18 Become A Web Developer: A Thinkful Info SessionThinkful
 
Batbwjs117
Batbwjs117Batbwjs117
Batbwjs117Thinkful
 
1/16/18 Intro to JS Workshop
1/16/18 Intro to JS Workshop1/16/18 Intro to JS Workshop
1/16/18 Intro to JS WorkshopThinkful
 
LA 1/16/18 Intro to Javascript: Fundamentals
LA 1/16/18 Intro to Javascript: FundamentalsLA 1/16/18 Intro to Javascript: Fundamentals
LA 1/16/18 Intro to Javascript: FundamentalsThinkful
 
(LA 1/16/18) Intro to JavaScript: Fundamentals
(LA 1/16/18) Intro to JavaScript: Fundamentals(LA 1/16/18) Intro to JavaScript: Fundamentals
(LA 1/16/18) Intro to JavaScript: FundamentalsThinkful
 
Websitesd1.15.17.
Websitesd1.15.17.Websitesd1.15.17.
Websitesd1.15.17.Thinkful
 
Bavpwjs110
Bavpwjs110Bavpwjs110
Bavpwjs110Thinkful
 
Byowwhc110
Byowwhc110Byowwhc110
Byowwhc110Thinkful
 
Getting started-jan-9-2018
Getting started-jan-9-2018Getting started-jan-9-2018
Getting started-jan-9-2018Thinkful
 
Introjs1.9.18tf
Introjs1.9.18tfIntrojs1.9.18tf
Introjs1.9.18tfThinkful
 
Proglangauage1.10.18
Proglangauage1.10.18Proglangauage1.10.18
Proglangauage1.10.18Thinkful
 

Más de Thinkful (20)

893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
893ff61f-1fb8-4e15-a379-775dfdbcee77-7-14-25-46-115-141-308-324-370
 
LA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: FundamentalsLA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: Fundamentals
 
LA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: FundamentalsLA 1/31/18 Intro to JavaScript: Fundamentals
LA 1/31/18 Intro to JavaScript: Fundamentals
 
Itjsf129
Itjsf129Itjsf129
Itjsf129
 
Twit botsd1.30.18
Twit botsd1.30.18Twit botsd1.30.18
Twit botsd1.30.18
 
Build your-own-instagram-filters-with-javascript-202-335 (1)
Build your-own-instagram-filters-with-javascript-202-335 (1)Build your-own-instagram-filters-with-javascript-202-335 (1)
Build your-own-instagram-filters-with-javascript-202-335 (1)
 
Baggwjs124
Baggwjs124Baggwjs124
Baggwjs124
 
Become a Data Scientist: A Thinkful Info Session
Become a Data Scientist: A Thinkful Info SessionBecome a Data Scientist: A Thinkful Info Session
Become a Data Scientist: A Thinkful Info Session
 
Vpet sd-1.25.18
Vpet sd-1.25.18Vpet sd-1.25.18
Vpet sd-1.25.18
 
LA 1/18/18 Become A Web Developer: A Thinkful Info Session
LA 1/18/18 Become A Web Developer: A Thinkful Info SessionLA 1/18/18 Become A Web Developer: A Thinkful Info Session
LA 1/18/18 Become A Web Developer: A Thinkful Info Session
 
Batbwjs117
Batbwjs117Batbwjs117
Batbwjs117
 
1/16/18 Intro to JS Workshop
1/16/18 Intro to JS Workshop1/16/18 Intro to JS Workshop
1/16/18 Intro to JS Workshop
 
LA 1/16/18 Intro to Javascript: Fundamentals
LA 1/16/18 Intro to Javascript: FundamentalsLA 1/16/18 Intro to Javascript: Fundamentals
LA 1/16/18 Intro to Javascript: Fundamentals
 
(LA 1/16/18) Intro to JavaScript: Fundamentals
(LA 1/16/18) Intro to JavaScript: Fundamentals(LA 1/16/18) Intro to JavaScript: Fundamentals
(LA 1/16/18) Intro to JavaScript: Fundamentals
 
Websitesd1.15.17.
Websitesd1.15.17.Websitesd1.15.17.
Websitesd1.15.17.
 
Bavpwjs110
Bavpwjs110Bavpwjs110
Bavpwjs110
 
Byowwhc110
Byowwhc110Byowwhc110
Byowwhc110
 
Getting started-jan-9-2018
Getting started-jan-9-2018Getting started-jan-9-2018
Getting started-jan-9-2018
 
Introjs1.9.18tf
Introjs1.9.18tfIntrojs1.9.18tf
Introjs1.9.18tf
 
Proglangauage1.10.18
Proglangauage1.10.18Proglangauage1.10.18
Proglangauage1.10.18
 

Último

Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
Objectives n learning outcoms - MD 20240404.pptx
Objectives n learning outcoms - MD 20240404.pptxObjectives n learning outcoms - MD 20240404.pptx
Objectives n learning outcoms - MD 20240404.pptxMadhavi Dharankar
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxAnupam32727
 
Employablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxEmployablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxryandux83rd
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
How to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineHow to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineCeline George
 
The role of Geography in climate education: science and active citizenship
The role of Geography in climate education: science and active citizenshipThe role of Geography in climate education: science and active citizenship
The role of Geography in climate education: science and active citizenshipKarl Donert
 
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...Osopher
 
Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...
Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...
Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...DrVipulVKapoor
 
physiotherapy in Acne condition.....pptx
physiotherapy in Acne condition.....pptxphysiotherapy in Acne condition.....pptx
physiotherapy in Acne condition.....pptxAneriPatwari
 
Shark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristicsShark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristicsArubSultan
 
An Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERPAn Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERPCeline George
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQuiz Club NITW
 
DiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdfDiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdfChristalin Nelson
 
DBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdfDBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdfChristalin Nelson
 
ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6Vanessa Camilleri
 

Último (20)

Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
CARNAVAL COM MAGIA E EUFORIA _
CARNAVAL COM MAGIA E EUFORIA            _CARNAVAL COM MAGIA E EUFORIA            _
CARNAVAL COM MAGIA E EUFORIA _
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
Objectives n learning outcoms - MD 20240404.pptx
Objectives n learning outcoms - MD 20240404.pptxObjectives n learning outcoms - MD 20240404.pptx
Objectives n learning outcoms - MD 20240404.pptx
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
 
Employablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxEmployablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptx
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
How to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineHow to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command Line
 
The role of Geography in climate education: science and active citizenship
The role of Geography in climate education: science and active citizenshipThe role of Geography in climate education: science and active citizenship
The role of Geography in climate education: science and active citizenship
 
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
 
Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...
Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...
Geoffrey Chaucer Works II UGC NET JRF TGT PGT MA PHD Entrance Exam II History...
 
physiotherapy in Acne condition.....pptx
physiotherapy in Acne condition.....pptxphysiotherapy in Acne condition.....pptx
physiotherapy in Acne condition.....pptx
 
Shark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristicsShark introduction Morphology and its behaviour characteristics
Shark introduction Morphology and its behaviour characteristics
 
An Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERPAn Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERP
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
 
DiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdfDiskStorage_BasicFileStructuresandHashing.pdf
DiskStorage_BasicFileStructuresandHashing.pdf
 
DBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdfDBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdf
 
ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6
 

How to Choose a Programming Language

  • 1. How to Choose a Programming Language January 2018 WIFI: CrossCamp.us Events Password: None bit.ly/language-la 1
  • 2. Instructor Justin Ezor Thinkful LA Community Manager Wi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 2
  • 3. About you What's your name? What brought you here today? What is your programming experience? Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 3
  • 4. About Thinkful Thinkful helps people become developers or data scientists through 1-on-1 mentorship and project-based learning Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 4
  • 5. What is programming? Programming is: writing instructions for a computer to execute problem-solvingproblem-solving Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 5
  • 6. Learning how to code Learning to code is a process of learning how to solve problems in a structured way and then translate those solutions into instructions a computer can understand and implement. Variables, loops, arrays, functions exist in all languages — stick to one until you understand the core concepts Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 6
  • 7. Pick one thing and master it. Don’t jump around. It will be surprisingly easy to pick up more languages once you understand the fundamentals. Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 7
  • 8. Does the first language you choose matter? It matters, but not in the way most people think. You should pick the language that makes it easiest for you to learn how to code. Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 8
  • 9. How to pick a first language? Objective Popularity Accessibility Job prospects Longevity Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 9
  • 10. Potential objectives Frontend Backend Full-stack Data & Analytics Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 10
  • 11. Front end, Back end, and Full stack Client (sends requests) Frontend Developer Manages what user sees Server (sends response) Backend Developer Manages what app does Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None 11 bit.ly/language-la
  • 12. Data/Analytics Data & Databases Database Engineers, Data Scientists, Data Analysts Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 12
  • 13. Benefits of Popularity & Accessibility Has large community of developers, libraries and frameworks => easier to learn & debug Syntax is less complicated and more intuitive for first-time developers Helps you focus on learning how to code rather than get distracted by the nuances of the language Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 13
  • 14. Our recommendations Frontend: Javascript Backend: Javascript/Python Full-stack: Javascript Analytics: Python bit.ly/build-own-website Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 14
  • 15. Javascript Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 15
  • 16. Javascript history Written by Brendan Eich in 1995 for Netscape Initial version written in 10 days Completely unrelated to Java, but maybe named after it to draft off its popularity Over 10 years, became default programming language for browsers Continues to evolve under guidance of ECMA International, with input from top tech companies Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 16
  • 17. Javascript Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 17
  • 18. Why JavaScript? 94% of all websites in the world use Javascript. Javascript has a monopoly on front end web development. All browsers already have Javascript interpreters included. Node.js allows Javascript to be written on the back end as well. Knowing Javascript means you can create full stack web applications in minutes. 18
  • 19. Python Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 19
  • 20. Python history First release in 1991 Designed to be simpler and more readable Named after “Monty Python’s Flying Circus” Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 20
  • 21. Python today Since 2003, consistently ranked in top 10 most popular languages. As of 2017, was fifth most popular language, currently #3 on Github Has become standard language in computer science curriculums (displacing Java) Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 21
  • 22. Python today Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 22
  • 23. Python analytics Data scientists are increasingly using Python over R Python has excellent modules for “big data” analysis and machine learning (NumPy, Pandas, sklearn) Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 23
  • 24. Javascript basics: variables var cars = 20 Initialize variable Name of variable Value of variable Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None 24 bit.ly/language-la
  • 25. Python basics: variables cars = 20 Name of variable Value of variable Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None 25 bit.ly/language-la
  • 26. Javascript basics: functions function greet() { return "Hello world!"; } Initialize function Name of function What the function does Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None 26 bit.ly/language-la
  • 27. Python basics: functions def printme(): print "Hello world!" return Initialize function Name of function What the function does Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None 27 bit.ly/language-la
  • 28. That's it! Understanding variables and functions means you already understand the fundamentals of a programming language! Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 28
  • 29. How can I learn? Build stuff + Google Free online resources (e.g. CodeAcademy) Flexible coding bootcamps (e.g Thinkful) Full-time coding bootcamps (e.g. GA, Thinkful) Full degree programs (Georgia Tech) Wi-Fi: Digital Ignition Pass: Countdown54321 bit.ly/tf-programming-languageWi-Fi: CrossCamp.usEvents Pass: None bit.ly/language-la 29
  • 30. Thinkful - structure and support More Structure Less Structure More SupportLess Support 30
  • 31. 325+ mentors325+ mentors with an average of 10 years of experience10 years of experience in the field 31
  • 32. Support 'round the clock Your Mentor Q&A Sessions Career Coach In-person Workshops Slack Program Manager YouYou 32
  • 33. Our results 93%93%job-placement rate + job guarantee Kaeside IwuagwuKaeside Iwuagwu Link for the third party audit jobs report: https://www.thinkful.com/bootcamp-jobs-https://www.thinkful.com/bootcamp-jobs- statsstats Frontend Developer Sierra GreggSierra Gregg Software Engineer JP EarnestJP Earnest Web Developer 33
  • 34. Take a tour! Talk to me (or email aaron@thinkful.com ) if you're interested Get a tour of the program to see if project-based, online learning is a good fit for you. Discuss the curriculum, mentorship, and how to create your own learning schedule. 34
  • 35. Thinkful's free resource Talk to one of us and email aaron.lamphere@thinkful.comaaron.lamphere@thinkful.com to learn more Web Development Fundamentals Covers HTML, CSS and JavaScript Unlimited mentor-led Q&A sessions Personal Program Manager to help you set goals and navigate resources Student Slack Channel bit.ly/web-dev-labit.ly/web-dev-la 35