Ruby on Rails - The Best Track for your Start Up

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

10 comments

Comments 1 - 10 of 10 previous next Post a comment

  • + abhishekshah Abhishek Shah 2 months ago
    Loved this one dear... all the best in life.
  • + xiby George Sciberras. to appreciate the PPS, download it. 3 months ago
    I AGREE FULLY WITH WHAT MY FRIEND GRAHAM WROTE YOU MONTHS AGO, THE FUTURE IS THERE WAITING FOR YOU. YOU SEEM YOUNG AND SO YOU’RE ENERGETIC ENOUGH TO OVER-RIDE ANY OBSTACLE IN YOUR WAY. GO FOR IT SO MUCH IS EXPECTED OF YOU.
  • + grahairs Graham Bennett 2 years ago
    Superb stuff - you have a great future ahead of you!!
  • + manugoel2003 manugoel2003 2 years ago
    Add the following tag to your slideshow 'osscampdelhise01' and participate in the 'World’s Best Presentation Contest 2008' (See the home page). Your presentation is really very gud. Give it a try.
  • + manugoel2003 manugoel2003 2 years ago
    Hey nice one bro
  • + enrico.foschi Enrico Foschi 2 years ago
    This is pretty interesting and gives me a really creative and nice introduction on RoR! Nice job
  • + prtksxna Prateek Saxena 2 years ago
    Yeah I live in NOIDA, I go from Kalindi Kunj almost everyday!!
  • + AmitRanjan Amit Ranjan 2 years ago
    awesome stuff.... you are in noida...... the slideshare office is in okhla phase III just across the Yamuna!
  • + prtksxna Prateek Saxena 2 years ago
    Hello guest92915b, may I please know who you are?
  • + guest92915b guest92915b 2 years ago
    I loved your presentation, not only because we are good friend and you are only a 16 year old but also because it is good :-)
Post a comment
Embed Video
Edit your comment Cancel

22 Favorites & 1 Group

Ruby on Rails - The Best Track for your Start Up - Presentation Transcript

  1. RUBY ON RAILS THE
BEST
TRACK
FOR
YOUR
 STARTUP’S
JOYRIDE DISCLAIMER:
I
AM
A
N00B!
  2. Every start up begins with a dream
  3. Dreams don’t sell
  4. Great Products Do
  5. You need to plan & build your idea
  6. And the best way to do that is...
  7. Lets get started...
  8. but where do we begin?
  9. Code is Poetry -WORDPRESS
  10. Don’t code. Just think. What everything will be like? How would it rhyme?
  11. user has_one :shop user has_many :products shop belongs_to :user shop has_many :shelves products belong_to :users shelf belongs_to :shop
  12. user has_one :shop user has_many :products shop belongs_to :user shop has_many :shelves products belong_to :users shelf belongs_to :shop
  13. script/generate A personal chef anyone?
  14. ./script/generate scaffold Product name:string action:string price:integer picture:string summary:text description:text
  15. C reate R ead U pdate D elete
  16. A place to start. A place to learn.
  17. script/console Its alive! Its alive! Its alive!...or is it?
  18. Loading development environment (Rails 2.0.2)...
  19. Loading development environment (Rails 2.0.2)... >> Product => Product(id: integer, name: string, action: string, price: integer, picture: string, summary: text, description: text, created_at: datetime, updated_at: datetime, user_id: integer)
  20. Loading development environment (Rails 2.0.2)... >> Product => Product(id: integer, name: string, action: string, price: integer, picture: string, summary: text, description: text, created_at: datetime, updated_at: datetime, user_id: integer) >> Product.find(59) => #<Product id: 59, name: \"Audi TT\", action: \"sell\", price: 100000, picture: \"Audi_TT.jpg\", summary: \"Its a car!!\", description: \"lorem ipsum dolor sit amet\", created_at: \"2008-06-07 12:36:32\", updated_at: \"2008-06-07 12:36:32\", user_id: 7>
  21. Loading development environment (Rails 2.0.2)... >> Product => Product(id: integer, name: string, action: string, price: integer, picture: string, summary: text, description: text, created_at: datetime, updated_at: datetime, user_id: integer) >> Product.find(59) => #<Product id: 59, name: \"Audi TT\", action: \"sell\", price: 100000, picture: \"Audi_TT.jpg\", summary: \"Its a car!!\", description: \"lorem ipsum dolor sit amet\", created_at: \"2008-06-07 12:36:32\", updated_at: \"2008-06-07 12:36:32\", user_id: 7>
  22. Loading development environment (Rails 2.0.2)... >> Product => Product(id: integer, name: string, action: string, price: integer, picture: string, summary: text, description: text, created_at: datetime, updated_at: datetime, user_id: integer) >> Product.find(59) => #<Product id: 59, name: \"Audi TT\", action: \"sell\", price: 100000, picture: \"Audi_TT.jpg\", summary: \"Its a car!!\", description: \"lorem ipsum dolor sit amet\", created_at: \"2008-06-07 12:36:32\", updated_at: \"2008-06-07 12:36:32\", user_id: 7> >> Product.find(59).user => #<User id: 7, login: \"Prateek\", email: \"prtksxna@gmail.com\", crypted_password: \"a1cb20b35813eaf0c91793595078ab6030a950c3\", salt: \"3621a974b606c816527d7f25cd83c6ea0b9a13c0\", created_at: \"2008-06-07 12:34:47\", updated_at: \"2008-06-07 12:34:47\", remember_token: nil, remember_token_expires_at: nil>
  23. Loading development environment (Rails 2.0.2)... >> Product => Product(id: integer, name: string, action: string, price: integer, picture: string, summary: text, description: text, created_at: datetime, updated_at: datetime, user_id: integer) >> Product.find(59) => #<Product id: 59, name: \"Audi TT\", action: \"sell\", price: 100000, picture: \"Audi_TT.jpg\", summary: \"Its a car!!\", description: \"lorem ipsum dolor sit amet\", created_at: \"2008-06-07 12:36:32\", updated_at: \"2008-06-07 12:36:32\", user_id: 7> >> Product.find(59).user => #<User id: 7, login: \"Prateek\", email: \"prtksxna@gmail.com\", crypted_password: \"a1cb20b35813eaf0c91793595078ab6030a950c3\", salt: \"3621a974b606c816527d7f25cd83c6ea0b9a13c0\", created_at: \"2008-06-07 12:34:47\", updated_at: \"2008-06-07 12:34:47\", remember_token: nil, remember_token_expires_at: nil>
  24. script/plugin Walk with me & you’ll learn to walk
  25. A login system
  26. script/plugin source http://svn.techno-weenie.net/projects/plugins script/plugin install restful_authentication script/generate authenticated user sessions
  27. * *interface not included
  28. Beautiful Interface
  29. git clone git://github.com/Lipsiasoft/lipsiadmin.git vendor/ plugins/lipsiadmin script/generate lipsiadmin
  30. Ready to use code. Highly tested. Learning Point for beginners.
  31. 1st Application
  32. Learn as you Go!
  33. Do it alone!
  34. 36 HOURS
  35. Find time
  36. Pretend to be Sick
  37. Pretend that you went on a vacation
  38. There is help along the way...
  39. irc.freenode.net #rubyonrails http://groups.google.com/group/rubyonrails-talk API http://api.rubyonrails.org/ http://wiki.rubyonrails.org/rails
  40. Thank You
  41. Any questions?
  42. Get in touch prtksxna@gmail.com prateek.saxena@yahoo.com http://twitter.com/prtksxna
  43. Image Credits.. • Day dreaming - http://www.flickr.com/photos/klamont/562876285/ • Warren Buffet - http://www.flickr.com/photos/ 7933170@N03/984596632/ • Eva Rees - http://www.flickr.com/photos/evarees/2050595096/ • Boot Load - http://www.flickr.com/photos/bootload/221087443/ • Justing Palmer - http://www.flickr.com/photos/encyte/56883622/sizes/l • Mike Autrey - http://www.flickr.com/photos/mikeautry1/906447964/ sizes/o/ mostly Flickr...

+ Prateek SaxenaPrateek Saxena, 2 years ago

custom

5698 views, 22 favs, 1 embeds more stats

A presentation provoking developers to use Ruby on more

More info about this document

© All Rights Reserved

Go to text version

  • Total Views 5698
    • 5697 on SlideShare
    • 1 from embeds
  • Comments 10
  • Favorites 22
  • Downloads 274
Most viewed embeds
  • 1 views on http://surf.googlemashups.com

more

All embeds
  • 1 views on http://surf.googlemashups.com

less

Flagged as inappropriate Flag as inappropriate
Flag as inappropriate

Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

Cancel
File a copyright complaint
Having problems? Go to our helpdesk?

Categories

Groups / Events