1
2
3
feed = RssParser.run("http://ws.audioscrobbler.com/1.0/user/me/recenttracks.rss")
  song1 = feed[:items][0][:title]
...

Ruby Think this needs a loop

by juo100@gmail.com, September 06, 2008 19:54, 3 refactorings, tagged with ruby, loop, noob

Im new to Ruby, I think it ...

B543a43dc8cb0aae562278484db60d25 Talk
1
2
3
4
def ask_words 
	array = []
	puts 'Enter words, blank row quits.'
...

Ruby Method for sorting

by onwinning.blogspot.com, August 19, 2008 17:14, 5 refactorings, tagged with noob, sorting, sort

This is exercise from Chris...

Avatar Talk
1
2
3
4
def caesar(text,shift)
count = 0
...

Ruby Caesar Cipher

by Loki, August 09, 2008 05:26, 3 refactorings, tagged with caesar cipher, ruby, noob

A Caesar Cipher, or Caesar ...

Avatar Talk