The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
In the Aftermath of Lamp Light

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Red Handed

Posts: 1158
Nickname: redhanded
Registered: Dec, 2004

Red Handed is a Ruby-focused group blog.
In the Aftermath of Lamp Light Posted: Jan 26, 2005 6:44 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Red Handed.
Original Post: In the Aftermath of Lamp Light
Feed Title: RedHanded
Feed URL: http://redhanded.hobix.com/index.xml
Feed Description: sneaking Ruby through the system
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Red Handed
Latest Posts From RedHanded

Advertisement

Last week was big. The ONLamp tutorial launched up the charts along with a smattering of other Ruby links. And have you noticed that Ruby is now hanging solid with Java and Python among the top twenty overall tags?

Want to see how Ruby ranks overall? Run:

 require 'open-uri'
 t = open("http://del.icio.us/tag/").read
 l = %w(c c++ java javascript perl php python ruby)
 l.map do |lang|
   [$1.to_f, lang] if t =~ 
     %r{/#{Regexp::quote lang}"  style="font-size: (\d+\.\d{2})}
 end.compact.sort.each do |score, lang|
   puts "#{lang}: #{score}" 
 end

A few highlights from the avalanche of discussion that has followed the ONLamp/Rolling tutorial:

  • Really Getting Started with Rails, a newb’s point of view on the tutorial. If you found any syntax confusing and don’t want to read an entire Ruby book to get a picture of what’s going on, then this is for you, newb.
  • Another recommendation I’ve seen around is to use the scaffold generator script rather than the scaffold :recipe method. This way you have some stub classes in the right places, which gives you a head start on fleshing out your administration tool.
 $ ruby scripts/generate scaffold Recipe

Read: In the Aftermath of Lamp Light

Topic: Search By Language and License Previous Topic   Next Topic Topic: So, Mail Attachments

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use