Subscribe to RSS

Category Archives: uproar

Posts about uproar, a small command line based utility I wrote for managing and synchronizing bookmarks.

Uproar Gits

Uproar has made its home at GitHub. The project is ripe for the taking, and there’s a vague Roadmap in the wiki, for the things I want to do with it. I’ll be hopefully making some updates to it this week. Enjoy!

Uproar gets its own page

Here we go: http://www.ardekantur.com/misc/uproar/ - the perfect spot for a tiny lil piece of code like Uproar. Updates will come frequently, as I’m now using it daily. The output of search results has changed a little bit to make it more digestable.

Uproar Improved

Rather than sleep, I’ve decided to improve (read: radically bloat) uproar.rb.

uproar.rb

# uproar.rb - search a YAML-encoded list of links for matching tags # ardekantur.com   %w[ rubygems yaml open-uri hpricot ].each { |x| require x }   def set_option hash, name, default i = ARGV.index(name) hash[name] = i ? ARGV[i + [...]

Uproar.rb: Using Ruby and YAML to keep bookmarks

I use del.icio.us, but I don’t like the idea that I don’t have control of the server, so if something happens to my bookmarks, I’m screwed. I also want more universal integration of my bookmarks with all the browsers I used - from Lynx to Opera. So I wrote some Ruby.

delicious-to-yaml.rb

require ‘rubygems’ require ‘hpricot’ doc [...]