Learning to Code for
Startup MVP


Presented by Henry Shi
Introduction
Overview of Sessions

Goals and Expectations

What this session is Not

My background and experiences
Resources
Ruby on Rails Tutorial - Michael Hartl

CS 169: Software Engineering for Software as
 a Service - Berkeley Course on Coursera

Rails for Zombies - CodeSchool

Various resources around the web
About Me
• Henry Shi
  o CTO, BetterU (Rails powered ☺)
  o Tech:
      Bloomberg Sports
        • Statistics and Predictive Analytics for MLB
        • Rails Powered App, Java/C++ services
      Scotia Capital
        • Worked on Derivative Trading Engine (Interest rate swaps)
        • Java, J2EE
  o Teachings:
      Student Leadership Program Facilitator
      Calculus Teaching Assistant
Agenda - Monday October 29
1. The Web and How it Works

2. Git/Github

3. Rails and Ruby

4. Heroku
Prework – Setup
• Windows (not recommended if possible):
  o http://railsinstaller.org/
• OSX:
  o http://railsinstaller.org/
  o This includes osx-gcc-installer (200mb)
• Linux:
  o http://blog.sudobits.com/2012/05/02/how-to-install-
    ruby-on-rails-in-ubuntu-12-04-lts/


Note: this may take some time
Prework - Git
Install git if not already included:
http://www.git-scm.com/book/en/Getting-
  Started-Installing-Git

Configure Git:
git config --global user.name "Your Name“
git config --global user.email
  your.email@example.com
The Web
Client-Server
HTTP, URI
HTML, CSS
3 Tier Architecture
MVC
The Web - Overview
The Web - Client Server
The web is fundamentally request/reply
  oriented

Client: ask questions on behalf of users
Server: wait for & respond to questions, serve
  many clients
     Web browser                    Web site
                    Internet

Contrast to P2P
The Web - HTTP
Hypertext Transfer Protocol: an ASCII-based
    request/reply protocol for transferring information on the Web

HTTP request includes:
•  Request method (GET, POST, etc.)           curl –IL “www.betteru.org”

•  Uniform Resource Identifier (URI)
•  HTTP protocol version
•  Headers
                                                   HTTPstatus codes:
HTTP response from server:                         2xx — all is well
•  Protocol version and Status Code                3xx — resource moved
•  Response Header                                 4xx — access problem
•  Response Body                                   5xx — server error
The Web - HTTP
• Problems in HTTP:
  o HTTP is Stateless
      How to guide use through a flow of pages?
      IP? String in URI?
      Cookies
  o URI naming
      http://www.amazon.com/gp/product/B0000262LH/ref=s9subs_c3_img1-
      rfc_p_19_32_31_9_9?pf_rd_m=A1IDDPB1NC5TQ&pf_rd_s=center-
      &pf_rd_r=1FMGVYJN44H7WQD9YCR9&frd_t=101&pf_rd_p=139524591&pf_rd_i=301128

      ^ WTFF?
      http://www.amazon.com/cd/attwenger/dog

      REST
The Web – HTML & CSS
HTML
• Hypertext Markup Language
         <p>This is an element</p>

         <br /><!-- comment-->

         <img src="welcome.jpg" id="welcome"/>

         <h1 class=”foo”>
         This is an element with an attribute
         </h1>


•   Document = Hierarchical collection of elements
•   Element can have attributes (many optional) – id, class
HTML - DOM
HTML5
• HTML5 is the future
http://slides.html5rocks.com

Current support is not complete
Different Browswers = Different Results
Don’t use IE
The Web - CSS
• Cascading Style Sheets
  o visual appearance of page described in separate
    document (stylesheet)
  o separate designers’ & developers’ concerns


• HTML markup should contain NO visual
 styling information
CSS
• HTML id & class attributes important in CSS
  o ( # ) id – must be unique on page
  o (.) class – can be attached to many elements
  o element
        // id selector
        #main { background-color: orange;}

        // class selector
        .sidebar { color: black; }

        // element selector
        span { font-size: 24px;}

        // mixed
        span.sidebar { color: #C5C5C5; }
The Web – 3Tiered Architecture
3Tiered Architecture
• Old Days:
  o Web pages were collection of text files (eg. CS course websites)
• Web 1.0:
  o run a program to generate the “page”
  o Template embedded with code snippets (Php sites)
  o Eventually, code became “tail that wagged the dog”
    and moved out of the Web server
• Web 2.0:
  o Sites that are really programs (SaaS)
  o Separation of duties, structured
3Tiered Architecture
• Frameworks helps you to:          Filesystem
                                                     persistence
  o “map” URI to correct programs   or database

     & function?
  o pass arguments?                 your app         logic (app)
  o invoke program on server?                Common Gateway
  o handle persistent storage?               Interface (CGI)

  o handle cookies?                          presentation (Web
                                                        server)
  o handle errors?
  o package output back to user?                  client (browser)
3Tiered Architecture
3Tiered Architecture - Summary
• Browser requests web resource (URI) using HTTP
   – HTTP is a simple request-reply protocol that relies on TCP/IP
   – In SaaS, most URI’s cause a program to be run, rather than a
     static file to be fetched
• HTML is used to encode content, CSS to style it visually
• Cookies allow server to track client
      Browser automatically passes cookie to server on each request
      Server may change cookie on each response
      Typical usage: cookie includes a handle to server-side information
      That’s why some sites don’t work if cookies are completely disabled
• Frameworks make all these abstractions convenient for
  programmers to use, without sweating the details
• ...and help map SaaS to 3-tier, shared-nothing architecture
The Web - MVC
MVC
• Goal: separate organization of data (model)
  from UI & presentation (view) by introducing
  controller
  o mediates user actions requesting access to data
  o presents data for rendering by the view
     • User actions             Controller              • Update data
     • Directives for
     rendering data

                        View                    Model

                         • Data provided to views
                         through controller
MVC
• Can I see it?
  o View
• Is it business logic?
  o Controller
• Is it a reusable class logic?
  o Model



• More later….
GIT/GITHUB
• What is GIT?
• Distributed Version Control System (DVCS)
• Why should I care?
  o Never lose data or accidentally overwrite, delete files
  o Collaborate with peers anywhere and stay in sync
    automatically (no more _v1, _v2, _final, _final_final…)
  o Compare and track changes over time, and easily
    revert changes
  o Deploy code to real web
Git - Distributed
• Better than CVS, SVN, etc
GitHub – Social Coding
                         GitHub will be our
                         central repository

                         Contains the master
                         version of our code




                         GitHub account is the
                         LinkedIn for
                         developers
Git – Basics
Git init
     o   Start a git repository in current directory

•   Make changes
     o   Eg. Touch readme.txt

Git status
     o   Check what has changed since previous commit

Git add (filename)
     o   Adds files to staging area (about to be committed)
     o   Git add . To add everything

Git commit –m “my message”
     o   Commits changes
Git - Intermediate
Git Branch branch_name
  o Create a new branch (parallel code) from current
    commit point
Git checkout branch_name
  o Switch to another branch
Git Merge branch_name
  o Merge branch_name to current branch
Git – Working Remotely and
Collaboration
• git remote add origin
  git@github.com:henrythe9th/foo.git
  o add a remote repository (named origin) to the repo
  o In this case, our GitHub repo is the origin


Git pull
  o Pull latest changes from origin


Git push
  o Push changes to origin
Code for Startup MVP (Ruby on Rails) Session 1
Rails and Ruby




 Programming               Web Framework
  Language

Our focus is on Rails and how to rapidly
 prototype Startup MVPs
Rails
• Ruby on Rails is an open-source web
  framework that’s optimized for programmer
  happiness and sustainable productivity.

• It lets you write beautiful code by favoring
  convention over configuration.

• 80/20 Rule =>great for Startup MVP
Rails – Opinionated Software
• Convention over Configuration
  o Decrease the number of decisions needed
  gaining simplicity but without losing flexibility


• Donʼt Repeat Yourself (DRY)
  Don’t reinvent the wheel


• Architecture:
  o MVC (Model – View – Controller)
  o ORM (Object Relational Mapping)
  o RESTful (Representational State Transfer)
Ruby – Programmer’s Best Friend
• Ruby is a dynamic, open source
 programming language with a focus on
 simplicity and productivity. It has an
 elegant syntax that is natural to read and
 easy to write.
Ruby – Rocks!
• See slides 44 – 92 of slides:
http://www.slideshare.net/madrobby/ruby-on-
  rails-introduction
Ruby on Rails – First App
• Generators to make first application!
• Mkdir first_app
• Cd first_app
• rails new first_app
  o You will see that a bunch of files created by Rails
    automatically – this is the generator scaffolding at work
RoR – First App
RoR – Directory Structure
First App – Gemfile
• Open Gemfile
• Change line: gem 'sqlite3‘ to
group :development do
       gem 'sqlite3', '1.3.5‘
end
• Add:
group :production do
  gem 'pg', '0.12.2'
end
• Run:
bundle install --without production
First App – Running Server
• Run:
• rails server
First App - GitHub
• Create new repo on GitHub – First App
First App – Git Commit and Push
git init
git add .
git commit –m “Initial Commit of First App”
git remote add origin
  git@github.com:<username>/first_app.git
git push –u origin master
First App - Users
git checkout –b users
   o Create and switch to new branch called users
rails generate scaffold User name:string
  email:string
   o Use rails scaffolding to generate users!
bundle exec rake db:migrate
   o Apply the user changes to the database
rails s

Commit your code using Git!
First App - Users
Visit localhost:3000/users

Localhost:3000/users/new



Everything was created automatically by rails
 generator! And it all just works!
First App – Users MVC
First App – Users MVC
• Model: /app/models/user.rb
• Controller: /app/controllers/users_controller.rb


• View: /app/views/users/
First App - Microposts
rails generate scaffold Micropost content:string
  user_id:integer
  o Use rails scaffolding to generate microposts!
bundle exec rake db:migrate
Edit: app/models/micropost.rb



Rails s
  o Submitting a micropost with more than 140 chars will
    give error (Automatically handled by Rails!)
First App – Microposts & Users

• One of Rail’s most powerful features is ability
    to form associations between data model
•   each user potentially has many microposts



• Edit: app/models/user.rb
• Edit: app/models/micropost.rb
First App – Microposts and Users
• That’s it! Rails automagically set up the
  association for us. Watch how powerful it is:

Rails console

first_user = User.first
first_user.microposts
  o Rails automagically knows to find all of the first user’s
    microposts!
First App – Final Commit & Merge
Commit your code using git

Merge back into master:
Git checkout master
Git merge users
First App - Heroku
What is Heroku?
•a hosted platform built specifically for
 deploying Rails and other web applications in
 1 command
•Best thing since sliced bread
•YC Class 08 (sold for $212M to Salesforce)

• Interestingly, they are built on top of Amazon
    AWS, they just provide an easy abstraction
First App – Heroku Setup
• Sign up for Heroku (it’s Free!)           http://api.heroku.com/signup


• Install the Heroku Toolbelt       https://toolbelt.heroku.com/


• Heroku login
• Heroku create
  o This will create a heroku app and tell you the url of
    your app
• Git push heroku master
  o This’ll deploy your code to Heroku. Let it do its magic!
• Heroku run rake db:migrate
• Heroku open ☺
Rails Motivation
• Basecamp (the origin of Rails)
• Twitter (still using it for frontend)
• Scribd/Slideshare
• Hulu
• GitHub
• Shopify
• Groupon/Livingsocial
• YellowPages
Next Time…
• Understanding Ruby
• Exploring Rails deeper
• Building toward our Twitter app with user
    signup/sign in, posts, friends, followers,
    feeds, etc
•   Stay Tuned….

• Thanks!
• Suggestions, Feedback, Contact:
    henrythe9th@gmail.com

More Related Content

PDF
Wt unit 1 ppts web development process
KEY
Zend_Tool: Practical use and Extending
PDF
Python - A Comprehensive Programming Language
PDF
Web Clients for Ruby and What they should be in the future
PPTX
RESTful Services
PPT
Node and Azure
PDF
PDF
Web Performance First Aid
Wt unit 1 ppts web development process
Zend_Tool: Practical use and Extending
Python - A Comprehensive Programming Language
Web Clients for Ruby and What they should be in the future
RESTful Services
Node and Azure
Web Performance First Aid

What's hot (20)

PPTX
PHP on IBM i Tutorial
PDF
PHP Toolkit from Zend and IBM: Open Source on IBM i
KEY
drupal 7 amfserver presentation: integrating flash and drupal
PPTX
KEY
Exciting JavaScript - Part II
PDF
Building Killer RESTful APIs with NodeJs
PPTX
Scaling with swagger
PDF
Karwin bill zf-db-zend_con-20071009
PDF
Strategic Modernization with PHP on IBM i
PDF
Require js training
PDF
PHP Batch Jobs on IBM i
PDF
Performance tuning with zend framework
PPTX
Zend Products and PHP for IBMi
PPTX
Servletarchitecture,lifecycle,get,post
PDF
Web services on IBM i with PHP and Zend Framework
PDF
DB2 and PHP in Depth on IBM i
PDF
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
 
PPTX
Melbourne User Group OAK and MongoDB
PPTX
Getting started with PHP on IBM i
PDF
Zend Core on IBM i - Security Considerations
PHP on IBM i Tutorial
PHP Toolkit from Zend and IBM: Open Source on IBM i
drupal 7 amfserver presentation: integrating flash and drupal
Exciting JavaScript - Part II
Building Killer RESTful APIs with NodeJs
Scaling with swagger
Karwin bill zf-db-zend_con-20071009
Strategic Modernization with PHP on IBM i
Require js training
PHP Batch Jobs on IBM i
Performance tuning with zend framework
Zend Products and PHP for IBMi
Servletarchitecture,lifecycle,get,post
Web services on IBM i with PHP and Zend Framework
DB2 and PHP in Depth on IBM i
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
 
Melbourne User Group OAK and MongoDB
Getting started with PHP on IBM i
Zend Core on IBM i - Security Considerations
Ad

Similar to Code for Startup MVP (Ruby on Rails) Session 1 (20)

PDF
WebDev Crash Course
PPTX
Vincent biret azure functions and flow (toronto)
PPTX
Vincent biret azure functions and flow (ottawa)
PPT
Windows Azure Essentials V3
PDF
web2py:Web development like a boss
PDF
Codeigniter
PPTX
Php reports sumit
PPTX
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
PPTX
Best Practices for Building WordPress Applications
PDF
Best practices-wordpress-enterprise
PDF
Headless cms architecture
PDF
Drupal is not your Website
PPTX
Tech io spa_angularjs_20130814_v0.9.5
PDF
Advanced web application architecture - Talk
PDF
Sitecore development approach evolution – destination helix
PPTX
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
PDF
Code igniter - A brief introduction
PPTX
SPS calgary 2017 introduction to azure functions microsoft flow
WebDev Crash Course
Vincent biret azure functions and flow (toronto)
Vincent biret azure functions and flow (ottawa)
Windows Azure Essentials V3
web2py:Web development like a boss
Codeigniter
Php reports sumit
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
Best Practices for Building WordPress Applications
Best practices-wordpress-enterprise
Headless cms architecture
Drupal is not your Website
Tech io spa_angularjs_20130814_v0.9.5
Advanced web application architecture - Talk
Sitecore development approach evolution – destination helix
Office 365 Saturday (Sydney) - SharePoint framework – build integrated user e...
Code igniter - A brief introduction
SPS calgary 2017 introduction to azure functions microsoft flow
Ad

Recently uploaded (20)

PPTX
SGT Report The Beast Plan and Cyberphysical Systems of Control
PDF
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
PDF
Electrocardiogram sequences data analytics and classification using unsupervi...
PDF
LMS bot: enhanced learning management systems for improved student learning e...
PDF
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
PDF
The-2025-Engineering-Revolution-AI-Quality-and-DevOps-Convergence.pdf
PDF
Data Virtualization in Action: Scaling APIs and Apps with FME
PDF
CXOs-Are-you-still-doing-manual-DevOps-in-the-age-of-AI.pdf
PPTX
Module 1 Introduction to Web Programming .pptx
PDF
Early detection and classification of bone marrow changes in lumbar vertebrae...
PDF
Dell Pro Micro: Speed customer interactions, patient processing, and learning...
PDF
substrate PowerPoint Presentation basic one
PDF
4 layer Arch & Reference Arch of IoT.pdf
PDF
Rapid Prototyping: A lecture on prototyping techniques for interface design
PDF
A hybrid framework for wild animal classification using fine-tuned DenseNet12...
PPTX
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
PDF
Lung cancer patients survival prediction using outlier detection and optimize...
PDF
A symptom-driven medical diagnosis support model based on machine learning te...
PDF
Auditboard EB SOX Playbook 2023 edition.
PDF
CEH Module 2 Footprinting CEH V13, concepts
SGT Report The Beast Plan and Cyberphysical Systems of Control
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
Electrocardiogram sequences data analytics and classification using unsupervi...
LMS bot: enhanced learning management systems for improved student learning e...
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
The-2025-Engineering-Revolution-AI-Quality-and-DevOps-Convergence.pdf
Data Virtualization in Action: Scaling APIs and Apps with FME
CXOs-Are-you-still-doing-manual-DevOps-in-the-age-of-AI.pdf
Module 1 Introduction to Web Programming .pptx
Early detection and classification of bone marrow changes in lumbar vertebrae...
Dell Pro Micro: Speed customer interactions, patient processing, and learning...
substrate PowerPoint Presentation basic one
4 layer Arch & Reference Arch of IoT.pdf
Rapid Prototyping: A lecture on prototyping techniques for interface design
A hybrid framework for wild animal classification using fine-tuned DenseNet12...
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
Lung cancer patients survival prediction using outlier detection and optimize...
A symptom-driven medical diagnosis support model based on machine learning te...
Auditboard EB SOX Playbook 2023 edition.
CEH Module 2 Footprinting CEH V13, concepts

Code for Startup MVP (Ruby on Rails) Session 1

  • 1. Learning to Code for Startup MVP Presented by Henry Shi
  • 2. Introduction Overview of Sessions Goals and Expectations What this session is Not My background and experiences
  • 3. Resources Ruby on Rails Tutorial - Michael Hartl CS 169: Software Engineering for Software as a Service - Berkeley Course on Coursera Rails for Zombies - CodeSchool Various resources around the web
  • 4. About Me • Henry Shi o CTO, BetterU (Rails powered ☺) o Tech: Bloomberg Sports • Statistics and Predictive Analytics for MLB • Rails Powered App, Java/C++ services Scotia Capital • Worked on Derivative Trading Engine (Interest rate swaps) • Java, J2EE o Teachings: Student Leadership Program Facilitator Calculus Teaching Assistant
  • 5. Agenda - Monday October 29 1. The Web and How it Works 2. Git/Github 3. Rails and Ruby 4. Heroku
  • 6. Prework – Setup • Windows (not recommended if possible): o http://railsinstaller.org/ • OSX: o http://railsinstaller.org/ o This includes osx-gcc-installer (200mb) • Linux: o http://blog.sudobits.com/2012/05/02/how-to-install- ruby-on-rails-in-ubuntu-12-04-lts/ Note: this may take some time
  • 7. Prework - Git Install git if not already included: http://www.git-scm.com/book/en/Getting- Started-Installing-Git Configure Git: git config --global user.name "Your Name“ git config --global user.email [email protected]
  • 8. The Web Client-Server HTTP, URI HTML, CSS 3 Tier Architecture MVC
  • 9. The Web - Overview
  • 10. The Web - Client Server The web is fundamentally request/reply oriented Client: ask questions on behalf of users Server: wait for & respond to questions, serve many clients Web browser Web site Internet Contrast to P2P
  • 11. The Web - HTTP Hypertext Transfer Protocol: an ASCII-based request/reply protocol for transferring information on the Web HTTP request includes: • Request method (GET, POST, etc.) curl –IL “www.betteru.org” • Uniform Resource Identifier (URI) • HTTP protocol version • Headers HTTPstatus codes: HTTP response from server: 2xx — all is well • Protocol version and Status Code 3xx — resource moved • Response Header 4xx — access problem • Response Body 5xx — server error
  • 12. The Web - HTTP • Problems in HTTP: o HTTP is Stateless How to guide use through a flow of pages? IP? String in URI? Cookies o URI naming http://www.amazon.com/gp/product/B0000262LH/ref=s9subs_c3_img1- rfc_p_19_32_31_9_9?pf_rd_m=A1IDDPB1NC5TQ&pf_rd_s=center- &pf_rd_r=1FMGVYJN44H7WQD9YCR9&frd_t=101&pf_rd_p=139524591&pf_rd_i=301128 ^ WTFF? http://www.amazon.com/cd/attwenger/dog REST
  • 13. The Web – HTML & CSS
  • 14. HTML • Hypertext Markup Language <p>This is an element</p> <br /><!-- comment--> <img src="welcome.jpg" id="welcome"/> <h1 class=”foo”> This is an element with an attribute </h1> • Document = Hierarchical collection of elements • Element can have attributes (many optional) – id, class
  • 16. HTML5 • HTML5 is the future http://slides.html5rocks.com Current support is not complete Different Browswers = Different Results Don’t use IE
  • 17. The Web - CSS • Cascading Style Sheets o visual appearance of page described in separate document (stylesheet) o separate designers’ & developers’ concerns • HTML markup should contain NO visual styling information
  • 18. CSS • HTML id & class attributes important in CSS o ( # ) id – must be unique on page o (.) class – can be attached to many elements o element // id selector #main { background-color: orange;} // class selector .sidebar { color: black; } // element selector span { font-size: 24px;} // mixed span.sidebar { color: #C5C5C5; }
  • 19. The Web – 3Tiered Architecture
  • 20. 3Tiered Architecture • Old Days: o Web pages were collection of text files (eg. CS course websites) • Web 1.0: o run a program to generate the “page” o Template embedded with code snippets (Php sites) o Eventually, code became “tail that wagged the dog” and moved out of the Web server • Web 2.0: o Sites that are really programs (SaaS) o Separation of duties, structured
  • 21. 3Tiered Architecture • Frameworks helps you to: Filesystem persistence o “map” URI to correct programs or database & function? o pass arguments? your app logic (app) o invoke program on server? Common Gateway o handle persistent storage? Interface (CGI) o handle cookies? presentation (Web server) o handle errors? o package output back to user? client (browser)
  • 23. 3Tiered Architecture - Summary • Browser requests web resource (URI) using HTTP – HTTP is a simple request-reply protocol that relies on TCP/IP – In SaaS, most URI’s cause a program to be run, rather than a static file to be fetched • HTML is used to encode content, CSS to style it visually • Cookies allow server to track client Browser automatically passes cookie to server on each request Server may change cookie on each response Typical usage: cookie includes a handle to server-side information That’s why some sites don’t work if cookies are completely disabled • Frameworks make all these abstractions convenient for programmers to use, without sweating the details • ...and help map SaaS to 3-tier, shared-nothing architecture
  • 24. The Web - MVC
  • 25. MVC • Goal: separate organization of data (model) from UI & presentation (view) by introducing controller o mediates user actions requesting access to data o presents data for rendering by the view • User actions Controller • Update data • Directives for rendering data View Model • Data provided to views through controller
  • 26. MVC • Can I see it? o View • Is it business logic? o Controller • Is it a reusable class logic? o Model • More later….
  • 27. GIT/GITHUB • What is GIT? • Distributed Version Control System (DVCS) • Why should I care? o Never lose data or accidentally overwrite, delete files o Collaborate with peers anywhere and stay in sync automatically (no more _v1, _v2, _final, _final_final…) o Compare and track changes over time, and easily revert changes o Deploy code to real web
  • 28. Git - Distributed • Better than CVS, SVN, etc
  • 29. GitHub – Social Coding GitHub will be our central repository Contains the master version of our code GitHub account is the LinkedIn for developers
  • 30. Git – Basics Git init o Start a git repository in current directory • Make changes o Eg. Touch readme.txt Git status o Check what has changed since previous commit Git add (filename) o Adds files to staging area (about to be committed) o Git add . To add everything Git commit –m “my message” o Commits changes
  • 31. Git - Intermediate Git Branch branch_name o Create a new branch (parallel code) from current commit point Git checkout branch_name o Switch to another branch Git Merge branch_name o Merge branch_name to current branch
  • 32. Git – Working Remotely and Collaboration • git remote add origin [email protected]:henrythe9th/foo.git o add a remote repository (named origin) to the repo o In this case, our GitHub repo is the origin Git pull o Pull latest changes from origin Git push o Push changes to origin
  • 34. Rails and Ruby Programming Web Framework Language Our focus is on Rails and how to rapidly prototype Startup MVPs
  • 35. Rails • Ruby on Rails is an open-source web framework that’s optimized for programmer happiness and sustainable productivity. • It lets you write beautiful code by favoring convention over configuration. • 80/20 Rule =>great for Startup MVP
  • 36. Rails – Opinionated Software • Convention over Configuration o Decrease the number of decisions needed gaining simplicity but without losing flexibility • Donʼt Repeat Yourself (DRY) Don’t reinvent the wheel • Architecture: o MVC (Model – View – Controller) o ORM (Object Relational Mapping) o RESTful (Representational State Transfer)
  • 37. Ruby – Programmer’s Best Friend • Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.
  • 38. Ruby – Rocks! • See slides 44 – 92 of slides: http://www.slideshare.net/madrobby/ruby-on- rails-introduction
  • 39. Ruby on Rails – First App • Generators to make first application! • Mkdir first_app • Cd first_app • rails new first_app o You will see that a bunch of files created by Rails automatically – this is the generator scaffolding at work
  • 41. RoR – Directory Structure
  • 42. First App – Gemfile • Open Gemfile • Change line: gem 'sqlite3‘ to group :development do gem 'sqlite3', '1.3.5‘ end • Add: group :production do gem 'pg', '0.12.2' end • Run: bundle install --without production
  • 43. First App – Running Server • Run: • rails server
  • 44. First App - GitHub • Create new repo on GitHub – First App
  • 45. First App – Git Commit and Push git init git add . git commit –m “Initial Commit of First App” git remote add origin [email protected]:<username>/first_app.git git push –u origin master
  • 46. First App - Users git checkout –b users o Create and switch to new branch called users rails generate scaffold User name:string email:string o Use rails scaffolding to generate users! bundle exec rake db:migrate o Apply the user changes to the database rails s Commit your code using Git!
  • 47. First App - Users Visit localhost:3000/users Localhost:3000/users/new Everything was created automatically by rails generator! And it all just works!
  • 48. First App – Users MVC
  • 49. First App – Users MVC • Model: /app/models/user.rb • Controller: /app/controllers/users_controller.rb • View: /app/views/users/
  • 50. First App - Microposts rails generate scaffold Micropost content:string user_id:integer o Use rails scaffolding to generate microposts! bundle exec rake db:migrate Edit: app/models/micropost.rb Rails s o Submitting a micropost with more than 140 chars will give error (Automatically handled by Rails!)
  • 51. First App – Microposts & Users • One of Rail’s most powerful features is ability to form associations between data model • each user potentially has many microposts • Edit: app/models/user.rb • Edit: app/models/micropost.rb
  • 52. First App – Microposts and Users • That’s it! Rails automagically set up the association for us. Watch how powerful it is: Rails console first_user = User.first first_user.microposts o Rails automagically knows to find all of the first user’s microposts!
  • 53. First App – Final Commit & Merge Commit your code using git Merge back into master: Git checkout master Git merge users
  • 54. First App - Heroku What is Heroku? •a hosted platform built specifically for deploying Rails and other web applications in 1 command •Best thing since sliced bread •YC Class 08 (sold for $212M to Salesforce) • Interestingly, they are built on top of Amazon AWS, they just provide an easy abstraction
  • 55. First App – Heroku Setup • Sign up for Heroku (it’s Free!) http://api.heroku.com/signup • Install the Heroku Toolbelt https://toolbelt.heroku.com/ • Heroku login • Heroku create o This will create a heroku app and tell you the url of your app • Git push heroku master o This’ll deploy your code to Heroku. Let it do its magic! • Heroku run rake db:migrate • Heroku open ☺
  • 56. Rails Motivation • Basecamp (the origin of Rails) • Twitter (still using it for frontend) • Scribd/Slideshare • Hulu • GitHub • Shopify • Groupon/Livingsocial • YellowPages
  • 57. Next Time… • Understanding Ruby • Exploring Rails deeper • Building toward our Twitter app with user signup/sign in, posts, friends, followers, feeds, etc • Stay Tuned…. • Thanks! • Suggestions, Feedback, Contact: [email protected]