May 2008
11 posts
Phillip B.: isn't half-baked one of the categories in restrospectiva?
Bob Z.: yeah it's called "enhancement"
May 1st
April 2008
2 posts
old blog -> tumblr
require 'net/http' require 'rubygems' require 'redcloth' require 'cgi' def r(str); begin; RedCloth.new(str).to_html; rescue; str; end; end def h(str); begin; CGI.escape_html(str); rescue; str; end; end uri = URI.parse('http://www.tumblr.com/api/write') base_hash = {'email' => 'you@example.com', 'password' => 'yourpass'} Post.find(:all, :conditions => 'imported = 0', :order =>...
Apr 28th