Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Grant Hutchins http://www.nertzy.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Last.fm favorite artists for social network

// Returns a list of your top 50 favorite artists from last.fm, suitable for pasting into a Facebook, Myspace, or similar profile

   1  
   2  #!/usr/bin/env ruby
   3  require 'net/http'
   4  require 'csv'
   5  user = 'nertzy'
   6  csv = Net::HTTP.get 'ws.audioscrobbler.com', "/1.0/user/#{user}/topartists.txt"
   7  puts CSV::Reader.parse(csv).collect{ |row| row[2] }.join(", ")
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS