Shiki

I'm so bad with words that I can't even make a cool tagline

Category Archives: Web Development

Playing with Ruby: Silly backup tool for Amazon S3

To celebrate the New Year, I played a little with Ruby. I made this small Ruby script to download all original image files of PicLyf stored in Amazon S3: #!/usr/bin/env ruby require ‘rubygems’ require ‘aws/s3′ bucket = ‘bucket_name’ AWS::S3::Base.establish_connection!( :access_key_id => ‘our_access_key’, :secret_access_key => ‘our_secret_key’ ) last_key = nil while true do puts “Getting objects [...]

Creating a custom image service for Twitter for iPhone Tweetbot

Update Jan 13, 2012: It looks like setting a custom image service is no longer available on Twitter for iPhone. Tweetbot allows it though. This article still works for Tweetbot. For the rest of this article, please treat the text “Twitter for iPhone” as any app that supports custom image services (e.g. Tweetbot). We’ve just [...]

Why I don’t code in Ruby

Well, not yet anyway. Perhaps when those hosting prices go down I’d go and take a shot at building something useful. I did start reading a few books on Ruby and Rails. It’s an incredibly awesome and fun language. I’ve never been very excited when learning a new language. I drool when I see Ruby [...]