Thanks insomniasexx! I've made a ruby script to generate this post, would you like me to send it to you / share it?
Shout-outs:
mk OftenBen kleinbl00 ButterflyEffect unique_username thenewgreen mike _refugee_ lil ll_drool_j randomuser blackfox026 b_b demure forwardslash tauta_krypta veen Mindwolf thundara galen MeetHubski steve
Here it is, I call it with "ruby hubski.rb URL" where the URL is the Hubski list. ---- require 'open-uri' hubski = Nokogiri::HTML(open(ARGV[0])) users = hubski.css("#username") puts " [View as a list](#{ARGV[0]}) [Sign up here](http://hubskinewsletter.com) Thanks @insomniasexx@! Shout-outs: " users.map(&:text).uniq.each do |user| print "@#{user}@ " end require 'nokogiri'
It's a nice language, coming primarily from Java I really appreciate the brevity of it. Ruby (and Rails especially) has the tendency to do a lot of stuff auto-magically which is a blessing and a curse. I painstakingly typed that script up on my Raspberry Pi over SSH from my mobile :D