RSS Forums RSS
Please support our Ruby advertiser: SELL YOUR PRODUCT TODAY !
Views: 5619 | Replies: 13 | Thread Tools  Display Modes
Reply
Join Date: Jan 2006
Location: England, For Now.
Posts: 163
Reputation: RwCC is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 3
RwCC's Avatar
RwCC RwCC is offline Offline
Junior Poster

Is It Worth Learning Rugby?

  #1  
Feb 21st, 2007
Hey all,

I spotted Rugby mainly by looking at the "hello world" thread in Legacy. So I was wondering if it is actually worth learning? I am always looking for more ways to update my CV, but is Rugby wide-spread enough to warrent learning for any other reason than fun?

I do like the simplicity it seems to have, though if it's mainly just for things for me to use I guess I would be better going for a more mainstream language.
Last edited by RwCC : Feb 21st, 2007 at 6:08 am.
Sir David Healy - Northern Ireland Goal King
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Oct 2006
Location: New York City
Posts: 2,553
Reputation: mattyd is an unknown quantity at this point 
Rep Power: 8
Solved Threads: 1
Featured Poster
mattyd's Avatar
mattyd mattyd is offline Offline
Posting Maven

Re: Is It Worth Learning Rugby?

  #2  
Feb 22nd, 2007
An eloquent language, seemingly. Simple yet profound, possibly? I think so.

I am new to Ruby myself, but I hold it as something special that I predict will grow at least to the level of Python, hopefully.

MattyD
Reply With Quote  
Join Date: Jul 2006
Location: Syracuse NY area
Posts: 28
Reputation: chewbacca is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 1
chewbacca chewbacca is offline Offline
Light Poster

Re: Is It Worth Learning Rugby?

  #3  
Feb 22nd, 2007
A better question to ask is any programming language worth it? Google suggest gives us a clue. By going to Google suggest and typing in ruby on rails we get around 58,500,000 pages compare this to 21,700,000 pages for python and you can see that by a measure of 2 to 1 ruby is worth it.

Check it out for yourself http://www.google.com/webhp?complete=1&hl=en
FreelanceJobsUSA.com Specialized freelancers for every job.
Reply With Quote  
Join Date: Oct 2005
Location: Manchester, UK
Posts: 483
Reputation: pty is on a distinguished road 
Rep Power: 4
Solved Threads: 34
pty's Avatar
pty pty is offline Offline
Posting Pro in Training

Re: Is It Worth Learning Rugby?

  #4  
Feb 23rd, 2007
Originally Posted by RwCC View Post
but is Rugby wide-spread enough to warrent learning for any other reason than fun.


Its not that well spread yet; still most popular in the UK, Ireland, New Zealand, Australia and South Africa.
Note to self... pocket cup
Reply With Quote  
Join Date: Aug 2006
Location: me::house
Posts: 908
Reputation: linux is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 24
linux's Avatar
linux linux is offline Offline
Posting Shark

Re: Is It Worth Learning Rugby?

  #5  
Mar 15th, 2007
I use Ruby! It's easy to learn (if you know other languages, like python, it's REALLY easy). I would suggest this language to anyone.
Toshiba M1151.49 GB DDR-2 RAM1.6 GHz Centrino Duo80GB HDDWindows XP Media Center Edition
Reply With Quote  
Join Date: Oct 2005
Location: Manchester, UK
Posts: 483
Reputation: pty is on a distinguished road 
Rep Power: 4
Solved Threads: 34
pty's Avatar
pty pty is offline Offline
Posting Pro in Training

Re: Is It Worth Learning Rugby?

  #6  
Mar 16th, 2007
Originally Posted by chewbacca View Post
A better question to ask is any programming language worth it? Google suggest gives us a clue. By going to Google suggest and typing in ruby on rails we get around 58,500,000 pages compare this to 21,700,000 pages for python and you can see that by a measure of 2 to 1 ruby is worth it.

Check it out for yourself http://www.google.com/webhp?complete=1&hl=en


You cant just put ruby on rails in, it needs to be in quotes so you don't get gems and train related stuff back.


http://www.google.com/trends?q=ruby+on+rails%2C+python

Good example, look at the news stories assoicated with Python's peaks; all about Monty Python or snakes.
Last edited by pty : Mar 16th, 2007 at 7:06 am.
Note to self... pocket cup
Reply With Quote  
Join Date: Nov 2005
Posts: 140
Reputation: einfoway is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 1
einfoway's Avatar
einfoway einfoway is offline Offline
Junior Poster

Re: Is It Worth Learning Rugby?

  #7  
Mar 24th, 2007
Hi,

What i see the problem with Ruby is server. We hardly find top hosting companies providing Ruby on their services. Even i have hosting company A1domainhosting.com and wehave Ruby on rails on our server as when we moved to new better and bigger server we asked support team to install Ruby on rails. BUt now to give access to this wehave give them SSH access for all those who wants to use Ruby on rails. Which we dont prefer due to server security.

I am a PHP guy and i really dont know how to get started with Ruby from my local server (win XP) any ideas. or links that will help me?
Reply With Quote  
Join Date: Oct 2005
Location: Manchester, UK
Posts: 483
Reputation: pty is on a distinguished road 
Rep Power: 4
Solved Threads: 34
pty's Avatar
pty pty is offline Offline
Posting Pro in Training

Re: Is It Worth Learning Rugby?

  #8  
Mar 24th, 2007
There is a 1-click-installer available at:

http://rubyinstaller.rubyforge.org/

It should get you started. There are lots of tutorials around too; google will provide lots.
Note to self... pocket cup
Reply With Quote  
Join Date: Jan 2006
Posts: 53
Reputation: Barnz is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
Barnz Barnz is offline Offline
Junior Poster in Training

Re: Is It Worth Learning Rugby?

  #9  
Apr 3rd, 2007
I have been learning Ruby myself recently. And I think its fantastic, I originally started with PHP so I am kind of clung to that language for the simple reason of I have more experience with it.

My favourite things about Ruby is the syntax that it provides that you just cannot get in PHP like blocks / iterators for instance.

5.times {
//Code to execute 5 times goes here.
}

OR

You can even write your own blocks, just as an example you could write your own "statement like" methods.

def myIf(expr)
if expr
yield #executes the code in the block
end
end

myIf(true) {
puts "It worked"
}

Obviously the example above is crap, but you get the basic idea of what can be done. You can even pass variables etc to the block of code.

Plus Ruby is not just limited to web apps, I know PHP isnt, but I would say creating a desktop app in Ruby just comes as standard really. You can just include things like GTK as a library and make a desktop app. What I mean is.... I think Ruby was made as just a language, whereas I think PHP was centered around the web from day one. Ruby seems more like the web came after the language etc.

I think I will stick with PHP for my web stuff though, simply because I am more use to it. But when I have had time to learn Ruby properly who knows I may switch full time.
Last edited by Barnz : Apr 3rd, 2007 at 7:43 pm.
www.jab.poundingbeats.com - My PHP website.
Reply With Quote  
Join Date: Nov 2006
Location: boondock Ozarks
Posts: 23
Reputation: Day Brown is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
Day Brown Day Brown is offline Offline
Newbie Poster

Re: Is It Worth Learning Rugby?

  #10  
Apr 5th, 2007
Well, ok. Here's something we all could use. Back in the BBS days, some hosts offered email in ANSI. Thus, in the postings, my words could be, say yellow, while yours were green, and a 3rd poster Red, and so on until you run out of the basic colors.

But with ANSI, you can also control the *background*, ie highlite color of a font. So that we could have a whole nother set of posters with red on black, on green, on yellow... etc. And now the iterations are numerous enough to provide a custom color for each poster on most forums.

One these ANSI BBS lists, we *never* saw people get confused over just who said what. Can you do that with RUBY?
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.



Similar Threads
Other Threads in the Ruby Forum
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 9:11 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC