edgecase's ruby_koans at master - GitHub

Posted About 14 years ago by Lexy.
github.com

The Ruby Koans walk you along the path to enlightenment in order to learn Ruby. The goal is to learn...

Font Squirrel | Download Hundreds of Free @font-face Fonts

Posted About 14 years ago by Lexy.
fontsquirrel.com

Download hundreds of prepackaged @font-face kits

Intridea Blog: REST isn't what you think it is, and that's OK

Posted Almost 14 years ago by Lexy.
intridea.com

Pretty much everyone who claims to have a REST API, in fact, does not. The closest I’ve found is...

Copy a Paperclip attachment to another record

Posted Over 13 years ago by Tobias Kraze.

Just assign the existing attachment to another record: new_photo = Photo.new new_photo.image = old_photo.image Paperclip will duplicate the file when saving...

Force absolute URLs in views throughout a response

Posted Over 13 years ago by Arne Hartherz.

This is more tricky than it should be because url_for, asset_path, etc. all rely on different mechanisms.