SlideShare a Scribd company logo
WHAT I WISH I KNEW
BEFORE I STARTED CODING
with Mattan Griffel, CEO of One Month
Coding Languages
are HUGE
Ruby
Coding Languages
are HUGE
Ruby
And you only need to
know a tiny bit of them
Many experienced developers
only barely scratch the surface
Many experienced developers
only barely scratch the surface
(AtypicaldevelopersearchesGoogle
onceforevery10linesofcodetheywrite)
50% of developers are self-taught
Did you know there are 1,025,109.8
words in the English language?
…yet the average adult knows
only 20,000-35,000?
C, Java, C++, PHP, JavaScript,
Python, C#, Perl, SQL, Ruby, Shell,
Visual Basic, Assembly, Actionscript,
Where do you start? Delphi, Pascal,
Scheme, Haskell, Tcl, Backbone,
Fortran, Ada, Lua, ColdFusion,
Cobol, Erlang, D, Scala, Smalltalk,
Ocaml, Forth, Rexx, Hadoop,
Node.js, Lisp, Objective C, Swift
Web applications are applications
that you access over the internet
Every application has a
front-end and a back-end
The front-end is what you see
Front-end languages:
• HTML
• CSS
• JavaScript
The back-end is what you don’t see
Database
Rules
Web Pages
The back-end is what you don’t see
Programming languages:
PHP, Ruby, Python, Java
Database languages:
SQL
Database
Rules
Web Pages
They’re all the same, just different
PHP
 Python
 Ruby
echo “Hello World”; print(‘Hello World’) puts “Hello World”
PHP
 Python
 Ruby
PHP
 Python
 Ruby
Hello World Hello World Hello World
echo “Hello World”; print(‘Hello World’) puts “Hello World”
Programminglanguagesarejust
languagesforhumanstotalkto
computers
Languagesstartedoffbeingvery
computer-friendlybutnotvery
human-friendly
ExampleinBinary:
Print “Winter is coming.”
00000000 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 |.ELF............|
00000010 02 00 03 00 01 00 00 00 80 80 04 08 34 00 00 00 |............4...|
00000020 c8 00 00 00 00 00 00 00 34 00 20 00 02 00 28 00 |........4. ...(.|
00000030 04 00 03 00 01 00 00 00 00 00 00 00 00 80 04 08 |................|
00000040 00 80 04 08 9d 00 00 00 9d 00 00 00 05 00 00 00 |................|
00000050 00 10 00 00 01 00 00 00 a0 00 00 00 a0 90 04 08 |................|
00000060 a0 90 04 08 0e 00 00 00 0e 00 00 00 06 00 00 00 |................|
00000070 00 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000080 ba 0e 00 00 00 b9 a0 90 04 08 bb 01 00 00 00 b8 |................|
00000090 04 00 00 00 cd 80 b8 01 00 00 00 cd 80 00 00 00 |................|
000000a0 48 65 6c 6c 6f 2c 20 77 6f 72 6c 64 21 0a 00 2e |Winter is coming|
000000b0 73 68 73 74 72 74 61 62 00 2e 74 65 78 74 00 2e |.shstrtab..text.|
000000c0 64 61 74 61 00 00 00 00 00 00 00 00 00 00 00 00 |.data...........|
000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000000f0 0b 00 00 00 01 00 00 00 06 00 00 00 80 80 04 08 |................|
00000100 80 00 00 00 1d 00 00 00 00 00 00 00 00 00 00 00 |................|
00000110 10 00 00 00 00 00 00 00 11 00 00 00 01 00 00 00 |................|
00000120 03 00 00 00 a0 90 04 08 a0 00 00 00 0e 00 00 00 |................|
00000130 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 |................|
00000140 01 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 |................|
00000150 ae 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 |................|
00000160 01 00 00 00 00 00 00 00 |……..|
ExampleinAssembly:
Print “Winter is coming.”
section .text
global _start
_start:
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
mov eax,1
int 0x80
section .data
msg db ‘Winter is coming.',0xa
len equ $ - msg
ExampleinJava:
Print “Winter is coming.”
public class HelloWorld {
public static void main(String[] args) {
System.out.println(“Winter is coming.");
}
}
ExampleinRuby:
Print “Winter is coming.”
puts “Winter is coming.”
Now there are web application
frameworks
Database
Rules
Web Pages
Now there are web application
frameworks
Web application frameworks: Wordpress, Ruby on Rails, Django
Database
Rules
Web Pages
Web application frameworks
“alleviate overhead associated with web development by
providing libraries for database access, templating
frameworks, and session management.”
help you build web apps
really quickly
What I Wish I Knew Before I Started Coding
~75% of coding is Googling
Stack Overflow
+ ask someone
Everyone will tell you
something different
Coding in a nutshell
INSTALLING THE SOFTWARE CAN BE HARD
This is your command center
Command Line Text Editor
Browser
The text editor
is where you
write your code
Sublime Text
The command
line is where you
run your code
Terminal
The browser is
where you see
the result
Google Chrome
GITHUB IS WHERE YOU SAVE VERSIONS OF
YOUR PROJECT FILES
HEROKU LETS YOU DEPLOY YOUR APP SO
THAT IT’S LIVE IN SECONDS
AND YOUR TODOS ARE IN A TASK
MANAGEMENT SYSTEM LIKE PIVOTAL TRACKER
WEB DEVELOPMENT
RESOURCES
HACKER NEWS IS A GREAT WAY TO
EXPOSE YOURSELF TO NEW IDEAS
CHECK OUT HOW TO
TEACH YOURSELF TO CODE
ON YOUTUBE
UPCOMING CLASSES
One Month Ruby
One Month Python
One Month Javascript
One Month Rails
One Month HTML
What I Wish I Knew Before I Started Coding
BITE-SIZED EASY TO
FOLLOW LESSONS
AN ONLINE
COMMUNITY THAT
GUARANTEES YOUR
SUCCESS
INTRO TO
RUBY
APIS WITH
RUBY
WEB
SCRAPING
WEB APPS
One Month Class Structure:
Week 1 Week 2 Week 3 Week 4
•How do you set up
your computer to
code?
•How do you write
and run Ruby code?
•What are variables,
functions, arrays,
etc.?
•How do you connect
to an API?
•What data can you
get from an API?
•What can you do
with that data with
Ruby?
•How do you scrape
from websites like
Google and Amazon?
•How can you get
your scripts to run
automatically?
•How does web
application
development work?
•How can I get my
code live on the
internet?
SO IF YOU’RE
STRUGGLING OR
FRUSTRATED
(Or you just want to learn something
new for the next four weeks)
CLASSES STARTING
EACH MONDAY
SECRET WEBINAR OFFER
“
One Month is honestly the best place
to learn programming. The teachers
are phenomenal and do a great job of
explaining things so people from all
backgrounds can grasp the concepts.
– JORDAN GABRIEL WILLIAMS
“ Nice to have a face to the voice
teaching you - almost a live classroom
feel.
– MUKRRAM ALI, LONDON
“
OM is perfect for laying the
groundwork to a new skill; meshes
well with a super busy schedule and
chasing around a 13-month old!
– TEENA BLAYDES, TEXAS
Q&A
Sign up for a One Month course
using our Special Offer now

More Related Content

PPTX
Teach Yourself to Build Web Apps
PDF
How to Teach Yourself to Code
PDF
WordPress Tips & Tricks
PDF
SM Secrets, how we make money via social media #smsecrets (by @nickdemey @boa...
PPTX
Becoming a better blogger condensed word camp
PPTX
2015 MnSearch Summit - Ross Hudgens how to achieve content marketing nirvana
PDF
Responsive Discovery: The underpants of a great web project
PDF
Should I DIY or BUY a new WordPress website?
Teach Yourself to Build Web Apps
How to Teach Yourself to Code
WordPress Tips & Tricks
SM Secrets, how we make money via social media #smsecrets (by @nickdemey @boa...
Becoming a better blogger condensed word camp
2015 MnSearch Summit - Ross Hudgens how to achieve content marketing nirvana
Responsive Discovery: The underpants of a great web project
Should I DIY or BUY a new WordPress website?

What's hot (20)

PPT
Intro to New Media: Blogworld Expo 2008
PPTX
BrickPress: Explaining WordPress Using LEGO Master Builder Techniques
PPT
Meet Dave Meet SlideShare
PPTX
13 Steps To Set Up Your Blog
PDF
From Scratch to Launch #2 - Design phase
ODP
Blogging and The Learning Professional
POT
More Than Facebook
PDF
VanHack Fest
PPT
Continuing-Ed Opportunities with Drupal
PDF
WebProgrammingTutorial
PPT
Saving Scholastic Journalism in 2012: A blueprint to move online
KEY
Heart & Sole 2: Contributing to Open Source - What, How & Why
PPTX
Learning WordPress Sucks
PDF
FT - DLW - managing personal reputation online
PPTX
How to succeed_at_blogging
PPTX
Tips & Best Practices for Aspiring Policy Scholars
PDF
What web designers could learn from print designers
PPTX
Creating, Distributing, And Marketing Instructional Material
PDF
How to Build your own Medium using WordPress.com
PDF
SlideShare
Intro to New Media: Blogworld Expo 2008
BrickPress: Explaining WordPress Using LEGO Master Builder Techniques
Meet Dave Meet SlideShare
13 Steps To Set Up Your Blog
From Scratch to Launch #2 - Design phase
Blogging and The Learning Professional
More Than Facebook
VanHack Fest
Continuing-Ed Opportunities with Drupal
WebProgrammingTutorial
Saving Scholastic Journalism in 2012: A blueprint to move online
Heart & Sole 2: Contributing to Open Source - What, How & Why
Learning WordPress Sucks
FT - DLW - managing personal reputation online
How to succeed_at_blogging
Tips & Best Practices for Aspiring Policy Scholars
What web designers could learn from print designers
Creating, Distributing, And Marketing Instructional Material
How to Build your own Medium using WordPress.com
SlideShare
Ad

Similar to What I Wish I Knew Before I Started Coding (20)

PDF
Ruby tutorial
PDF
Tiny C Projects 1st Edition Daniel Gookin
PDF
Rubykin
PPTX
Introduction to Coding
PPTX
How does one learn to program?
PDF
Systems se
PPTX
Adventures of java developer in ruby world
PPT
COMPUTER INTRODUCTION
ODP
PDF
How To Be A Real Developer In Two Easy Steps
PDF
Programming for the non-programmer
PPTX
Computer Programing G10.pptx It refers to the Introduction of Programing
PPTX
What Is Coding And Why Should You Learn It?
PDF
Basics of Computer Coding: Understanding Coding Languages
PPT
Ch07 Programming for Security Professionals
PDF
0201710897
PDF
Learning to code in 2020
PDF
codeblocks-instructions.pdf
ODP
Novice Programmers Workshop
Ruby tutorial
Tiny C Projects 1st Edition Daniel Gookin
Rubykin
Introduction to Coding
How does one learn to program?
Systems se
Adventures of java developer in ruby world
COMPUTER INTRODUCTION
How To Be A Real Developer In Two Easy Steps
Programming for the non-programmer
Computer Programing G10.pptx It refers to the Introduction of Programing
What Is Coding And Why Should You Learn It?
Basics of Computer Coding: Understanding Coding Languages
Ch07 Programming for Security Professionals
0201710897
Learning to code in 2020
codeblocks-instructions.pdf
Novice Programmers Workshop
Ad

More from Mattan Griffel (12)

PDF
The End of School (as we know it)
PDF
How to Have Difficult Conversations
PDF
29 Growth Hacking Quick Wins
PDF
The Future of Education
PDF
9 Ways to Optimize Your Referral Flow
PDF
Growth Hacking with Cassie Lancellotti-Young
PDF
How We (Unexpectedly) Got 60K Users in 60 Hours
PDF
Building Great Presentations
PDF
5 Mistakes Startups Make
PDF
User Experience Trends and You
PDF
Growth Hacking
PDF
Productivity
The End of School (as we know it)
How to Have Difficult Conversations
29 Growth Hacking Quick Wins
The Future of Education
9 Ways to Optimize Your Referral Flow
Growth Hacking with Cassie Lancellotti-Young
How We (Unexpectedly) Got 60K Users in 60 Hours
Building Great Presentations
5 Mistakes Startups Make
User Experience Trends and You
Growth Hacking
Productivity

Recently uploaded (20)

PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Pre independence Education in Inndia.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
RMMM.pdf make it easy to upload and study
PPTX
master seminar digital applications in india
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
STATICS OF THE RIGID BODIES Hibbelers.pdf
Microbial disease of the cardiovascular and lymphatic systems
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
human mycosis Human fungal infections are called human mycosis..pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Pre independence Education in Inndia.pdf
Supply Chain Operations Speaking Notes -ICLT Program
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
102 student loan defaulters named and shamed – Is someone you know on the list?
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPH.pptx obstetrics and gynecology in nursing
RMMM.pdf make it easy to upload and study
master seminar digital applications in india
O7-L3 Supply Chain Operations - ICLT Program
Final Presentation General Medicine 03-08-2024.pptx
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...

What I Wish I Knew Before I Started Coding

  • 1. WHAT I WISH I KNEW BEFORE I STARTED CODING with Mattan Griffel, CEO of One Month
  • 3. Coding Languages are HUGE Ruby And you only need to know a tiny bit of them
  • 4. Many experienced developers only barely scratch the surface
  • 5. Many experienced developers only barely scratch the surface (AtypicaldevelopersearchesGoogle onceforevery10linesofcodetheywrite)
  • 6. 50% of developers are self-taught
  • 7. Did you know there are 1,025,109.8 words in the English language?
  • 8. …yet the average adult knows only 20,000-35,000?
  • 9. C, Java, C++, PHP, JavaScript, Python, C#, Perl, SQL, Ruby, Shell, Visual Basic, Assembly, Actionscript, Where do you start? Delphi, Pascal, Scheme, Haskell, Tcl, Backbone, Fortran, Ada, Lua, ColdFusion, Cobol, Erlang, D, Scala, Smalltalk, Ocaml, Forth, Rexx, Hadoop, Node.js, Lisp, Objective C, Swift
  • 10. Web applications are applications that you access over the internet
  • 11. Every application has a front-end and a back-end
  • 12. The front-end is what you see Front-end languages: • HTML • CSS • JavaScript
  • 13. The back-end is what you don’t see Database Rules Web Pages
  • 14. The back-end is what you don’t see Programming languages: PHP, Ruby, Python, Java Database languages: SQL Database Rules Web Pages
  • 15. They’re all the same, just different PHP
 Python
 Ruby
  • 16. echo “Hello World”; print(‘Hello World’) puts “Hello World” PHP
 Python
 Ruby
  • 17. PHP
 Python
 Ruby Hello World Hello World Hello World echo “Hello World”; print(‘Hello World’) puts “Hello World”
  • 20. ExampleinBinary: Print “Winter is coming.” 00000000 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 |.ELF............| 00000010 02 00 03 00 01 00 00 00 80 80 04 08 34 00 00 00 |............4...| 00000020 c8 00 00 00 00 00 00 00 34 00 20 00 02 00 28 00 |........4. ...(.| 00000030 04 00 03 00 01 00 00 00 00 00 00 00 00 80 04 08 |................| 00000040 00 80 04 08 9d 00 00 00 9d 00 00 00 05 00 00 00 |................| 00000050 00 10 00 00 01 00 00 00 a0 00 00 00 a0 90 04 08 |................| 00000060 a0 90 04 08 0e 00 00 00 0e 00 00 00 06 00 00 00 |................| 00000070 00 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 00000080 ba 0e 00 00 00 b9 a0 90 04 08 bb 01 00 00 00 b8 |................| 00000090 04 00 00 00 cd 80 b8 01 00 00 00 cd 80 00 00 00 |................| 000000a0 48 65 6c 6c 6f 2c 20 77 6f 72 6c 64 21 0a 00 2e |Winter is coming| 000000b0 73 68 73 74 72 74 61 62 00 2e 74 65 78 74 00 2e |.shstrtab..text.| 000000c0 64 61 74 61 00 00 00 00 00 00 00 00 00 00 00 00 |.data...........| 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000000f0 0b 00 00 00 01 00 00 00 06 00 00 00 80 80 04 08 |................| 00000100 80 00 00 00 1d 00 00 00 00 00 00 00 00 00 00 00 |................| 00000110 10 00 00 00 00 00 00 00 11 00 00 00 01 00 00 00 |................| 00000120 03 00 00 00 a0 90 04 08 a0 00 00 00 0e 00 00 00 |................| 00000130 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 |................| 00000140 01 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 |................| 00000150 ae 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 |................| 00000160 01 00 00 00 00 00 00 00 |……..|
  • 21. ExampleinAssembly: Print “Winter is coming.” section .text global _start _start: mov edx,len mov ecx,msg mov ebx,1 mov eax,4 int 0x80 mov eax,1 int 0x80 section .data msg db ‘Winter is coming.',0xa len equ $ - msg
  • 22. ExampleinJava: Print “Winter is coming.” public class HelloWorld { public static void main(String[] args) { System.out.println(“Winter is coming."); } }
  • 23. ExampleinRuby: Print “Winter is coming.” puts “Winter is coming.”
  • 24. Now there are web application frameworks Database Rules Web Pages
  • 25. Now there are web application frameworks Web application frameworks: Wordpress, Ruby on Rails, Django Database Rules Web Pages
  • 26. Web application frameworks “alleviate overhead associated with web development by providing libraries for database access, templating frameworks, and session management.” help you build web apps really quickly
  • 28. ~75% of coding is Googling
  • 31. Everyone will tell you something different
  • 32. Coding in a nutshell
  • 33. INSTALLING THE SOFTWARE CAN BE HARD
  • 34. This is your command center Command Line Text Editor Browser
  • 35. The text editor is where you write your code Sublime Text
  • 36. The command line is where you run your code Terminal
  • 37. The browser is where you see the result Google Chrome
  • 38. GITHUB IS WHERE YOU SAVE VERSIONS OF YOUR PROJECT FILES
  • 39. HEROKU LETS YOU DEPLOY YOUR APP SO THAT IT’S LIVE IN SECONDS
  • 40. AND YOUR TODOS ARE IN A TASK MANAGEMENT SYSTEM LIKE PIVOTAL TRACKER
  • 42. HACKER NEWS IS A GREAT WAY TO EXPOSE YOURSELF TO NEW IDEAS
  • 43. CHECK OUT HOW TO TEACH YOURSELF TO CODE ON YOUTUBE
  • 44. UPCOMING CLASSES One Month Ruby One Month Python One Month Javascript One Month Rails One Month HTML
  • 48. INTRO TO RUBY APIS WITH RUBY WEB SCRAPING WEB APPS One Month Class Structure: Week 1 Week 2 Week 3 Week 4 •How do you set up your computer to code? •How do you write and run Ruby code? •What are variables, functions, arrays, etc.? •How do you connect to an API? •What data can you get from an API? •What can you do with that data with Ruby? •How do you scrape from websites like Google and Amazon? •How can you get your scripts to run automatically? •How does web application development work? •How can I get my code live on the internet?
  • 49. SO IF YOU’RE STRUGGLING OR FRUSTRATED (Or you just want to learn something new for the next four weeks)
  • 52. “ One Month is honestly the best place to learn programming. The teachers are phenomenal and do a great job of explaining things so people from all backgrounds can grasp the concepts. – JORDAN GABRIEL WILLIAMS
  • 53. “ Nice to have a face to the voice teaching you - almost a live classroom feel. – MUKRRAM ALI, LONDON
  • 54. “ OM is perfect for laying the groundwork to a new skill; meshes well with a super busy schedule and chasing around a 13-month old! – TEENA BLAYDES, TEXAS
  • 55. Q&A Sign up for a One Month course using our Special Offer now