[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Newbie question

Annika Karhunen

3/15/2006 12:48:00 AM

I stumbled to Ruby by accident and read the beginning of Why's guide,
which sounded a a bit more fun than some other guides. I wonder if my
200MHz P2 laptop with Win98 can handle the program (compiler?)

Meanwhile I've lost the link to learning Ruby online - anyone knows the
link is still working? Perhaps Ruby is too difficult for me afterall,
since I'm dyslexic and have no experience of command language, let alone
of programming...

--
Posted via http://www.ruby-....


2 Answers

pinki

3/15/2006 1:32:00 AM

0

You mean this one?

http://tryruby....

Kev Jackson

3/17/2006 2:42:00 AM

0


>
>> I stumbled to Ruby by accident and read the beginning of Why's guide,
>> which sounded a a bit more fun than some other guides. I wonder if my
>> 200MHz P2 laptop with Win98 can handle the program (compiler?)
>
>
Why's guide is probably the most fun way to describe a language ever
written - it's an awesome piece of technical literature (and
mind-bending prose)

>> Meanwhile I've lost the link to learning Ruby online - anyone knows the
>> link is still working? Perhaps Ruby is too difficult for me afterall,
>> since I'm dyslexic and have no experience of command language, let
>> alone
>> of programming...
>
>
> You've lost the like to Why's guide? Google? :)
>
> In terms of learning a language, I would seriously recommend Ruby as
> a lovely starting point. It's certainly what I would pick if I was
> tutoring someone at the moment. I think it's pretty clean generally,
> but much more importantly, it's so direct, quick, and to the point.
>
> Being able to do:
> require 'socket'
> server = TCPServer.new(5000)
> soc = server.accept
> soc.puts "Hello TCP connection"
> puts soc.gets

I'd also recommend trying ruby - if you have a newish browser, you can
even try learning it online (http://tryruby....) - why wrote this
too, so it's as fun as the guide (http://poignant...)

If you're stuck with anything, this list is an amazingly friendly
resource and most people here will read your post and try to respond
with advice to help you learn. Trust me, if you want to learn a
language quickly, ruby is one of the best (some people prefer Python,
but I can't comment as I've never really done anything in Python).

As for dyslexia, having irb (interactive ruby) allows you to type in
commands and try them out (spelling mistakes and all), without going
through a tedious compile stage. Please don't give up (completely)
without giving ruby a try.

To get started, I'd suggest that you first use tryruby (linked above) to
see what the language is like, and then to get started on your own
machine, you need to download and install ruby (there is a "one click
installer" - it's not the latest (1.8.4), but it does support Rails (the
popular web-application MVC framework) -
http://rubyinstaller.rubyforge.org/wi...)

This package includes everything you need to get started, including a
good text editor (Scite)

Drop a mail here if you have problems setting this up on your machine.

Kev