•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Ruby section within the Web Development category of DaniWeb, a massive community of 426,171 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 1,874 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Ruby advertiser: SELL YOUR PRODUCT TODAY !
Views: 5114 | Replies: 13
![]() |
•
•
Join Date: Jan 2006
Location: England, For Now.
Posts: 163
Reputation:
Rep Power: 3
Solved Threads: 3
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.
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 5:08 am.
Sir David Healy - Northern Ireland Goal King
•
•
Join Date: Oct 2006
Location: New York City
Posts: 2,553
Reputation:
Rep Power: 7
Solved Threads: 1
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
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
•
•
Join Date: Jul 2006
Location: Syracuse NY area
Posts: 28
Reputation:
Rep Power: 3
Solved Threads: 1
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
Check it out for yourself http://www.google.com/webhp?complete=1&hl=en
FreelanceJobsUSA.com Specialized freelancers for every job.
•
•
Join Date: Oct 2005
Location: Manchester, UK
Posts: 482
Reputation:
Rep Power: 3
Solved Threads: 33
•
•
Join Date: Oct 2005
Location: Manchester, UK
Posts: 482
Reputation:
Rep Power: 3
Solved Threads: 33
•
•
•
•
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 6:06 am.
Note to self... pocket cup
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?
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?
•
•
Join Date: Oct 2005
Location: Manchester, UK
Posts: 482
Reputation:
Rep Power: 3
Solved Threads: 33
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.
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
•
•
Join Date: Jan 2006
Posts: 53
Reputation:
Rep Power: 3
Solved Threads: 0
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.
OR
You can even write your own blocks, just as an example you could write your own "statement like" methods.
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.
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 6:43 pm.
www.jab.poundingbeats.com - My PHP website.
•
•
Join Date: Nov 2006
Location: boondock Ozarks
Posts: 23
Reputation:
Rep Power: 2
Solved Threads: 0
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?
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?
![]() |
•
•
•
•
•
•
•
•
DaniWeb Ruby Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
Similar Threads
- Is assembly worth learning it? (Assembly)
Other Threads in the Ruby Forum
- Previous Thread: Count Object On Page
- Next Thread: Ruby, PHP, Apache & MySQL



Linear Mode