June 2010
20 posts
11 Ways I Increased Work Productivity in 2010 →
15 Books Every Entrepreneur Should Read →
Ale kto mógł wiedzieć, że ci dwaj nieodpowiedzialni goście do czegoś dojdą. Ron...
– Człowiek, któremu zabrakło szczęścia. Wycofał się z Apple w 1976 …
Pluit Solutions » Ruby Amazon E-Commerce REST... →
Nginx Development Script for Passenger | Free... →
Welcome to Postbox →
Georgeous. Works like a charm with Gmail, no need to specify hardcore rules for archiving / deleting like in Mail.app. Rich in practical features, seems to be more lightweight and responsive than Mail.app, it also has more compact design which is great for dealing with emails on 13 inch screens.
CloudApp →
Best desktop&web app I’ve seen lately. I’ve been using TinyGrab for screenshot sharing and Dropbox public folder for file sharing, now I have one app that handles both and have beautiful interface. Totally in love with it.
{,.bak} and {.bak,}
onethingwell:
Make a quick backup of a file before changing it:
cp /path/to/your-file{,.bak}
Make some changes, then compare the newly-edited file and its backup:
diff /path/to/your-file{.bak,}
Don’t like the changes you made? Undo ’em:
cp /path/to/your-file{.bak,}
Ruby Quicktips - puts vs. print →
handy for writing parsers.
Ruby Quicktips - Symbol tidbits →
RVM: Ruby Version Manager - Troubleshooting RVM →
Handy if MacPorts messed with your readline headers.
rubyosx - Ruby One-Click Installer for OSX →
worst shit ever seen. messes everything - paths, rubygems dir, installs lot of things that you’d want to install manually. definitely not recommended.
A pseudo-intellisense for Textmate | Nome do Jogo →
not working for me and seems a little bit of overhead.
Encodings, Unabridged « Katz Got Your Tongue? →
norman's friendly_id at master - GitHub →
jnunemaker's validatable at master - GitHub →
I’m happy to see how validatable is being developed. Love the features.
Icons « 19eighty7 →
For anyone else, the trick here is (from the Rails API Docs): Implicit template...
– Trouble with email attachments - Ruby on Rails: Talk | Google Groups
Class: ActionController::Base - expires now! →
initialize coding environment
Assuming you’re on OS X and use Git with Gitx as GUI as well as Textmate as your code editor, insert this in your bash profile:
alias ice="git fetch && gitx && mate ."
It’ll let you know if there are any changes in the repo, launch Gitx and Textmate in project dir.