michaelrkn's comments

michaelrkn | 3 months ago | on: Remove Attachments from Gmail Messages

I've been inching close to running out of free Gmail space for years, doing a round of cleanup just before I run out, but I finally got to the point where I can't find any more places to save room without deleting messages I want to keep a record of. I was frustrated that I couldn't delete attachments from my messages, since I don't want to delete the messages themselves. I stumbled across this tool and was excited (clever approach - copy the message without the attachment, then delete the original), then annoyed that it never mentioned the $5 I would have to pay until the very end of the signup process, then decided to go for it since it is cheaper than paying Google. Anyways, it works and is a very handy way to save space on Gmail! Just wanted to pass it along in case it could help anybody else.

michaelrkn | 6 years ago | on: Show HN: Zoom Redirector

I once used Zoom's web interface and the video quality was horrible. When I switched to the downloaded app, it was much better. Not sure if this was a one-off problem or an underinvestment in their web interface.

michaelrkn | 11 years ago | on: Getting to work on diversity at Google

I think a lot of it has to do with the environment where you grew up and/or have spent a lot of time. I'm white and grew up in a heavily Asian community; when I'm the only white person in a mostly Asian group, I don't feel self-conscious, but when I'm in a mostly black or Latino group, I usually do.

michaelrkn | 12 years ago | on: Rails Google Summer of Code students and mentors

It's actually mostly done.

To connect to your database, simply run:

ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :database => 'db/development.db')

Or, if you'd like to store your database config in a YAML file:

database_configurations = YAML::load(File.open('./db/config.yml'))

development_configuration = database_configurations['development']

ActiveRecord::Base.establish_connection(development_configuration)

To use the Active Record rake tasks, use this gem: https://github.com/rosenfeld/active_record_migrations. It also provides a rake task for generating migrations.

It would be great if that gem weren't needed - I think that's where the big opportunity for improvement is.

michaelrkn | 12 years ago | on: Programming is a Terrible Job

Protip to employers: Make your jobs interesting and fun, and you'll find that your employees are way more productive than you ever thought they could be.
page 1