This link has been bookmarked by 12 people . It was first bookmarked on 02 Mar 2006, by Joel Liu.
-
-
require 'net/http'
Net::HTTP.start("static.flickr.com") { |http|
resp = http.get("/92/218926700_ecedc5fef7_o.jpg")
open("fun.jpg", "wb") { |file|
file.write(resp.body)
}
}
puts "Yay!!"
-
Page Comments
Net::HTTP.start("static.flickr.com") { |http|
resp = http.get("/92/218926700_ecedc5fef7_o.jpg")
open("fun.jpg", "wb") { |file|
file.write(resp.body)
}
}
puts "Yay!!"
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.