Mac OS Tip: Backup folder to Dropbox without moving it

This tip might be obvious but I didn’t really thought about it:
Just create a symbolic link to your Dropbox folder and that’s it:

ln -s /the/full/path/to/target/folder ~/Dropbox/NameForMyNewSymbolicLinkToAFolder

Props to http://www.addictivetips.com/ for the tip!

Photo:

jQuery lightbox plugin fix

jQuery lightBox plugin

Just grabbed this nice jQuery plugin and added two fixes I found on the web to some minor bugs it had. I thought it would be nice of me to share this.

Fixed version:
  - auto resize fix (resizing images that are too big for the screens viewport)
  - esc key fix (closing lightbox using the esc key)

This Javascript file was modified by Sunimal Kaluarachchi (ksunimal@aol.com) to display images within the Viewport. In Leandro Vieira Pinho’s version, large images would jump out of the screen (Viewport). This version adjusts the image size without losing the aspect ratio and displays the image within the Viewport.  File modification completed and tested on June 20th, 2011 by Sunimal Kaluarachchi - ksunimal@aol.com

I also modified this file using “supsu…@gmail.com” solution to the esc key not working for close (http:code.google.com/p/jquery-lightbox/issues/detail?id=27) eduwass@gmail.com (http:wass.es)
January 4th 2012

Downloadjquery.lightbox-0.5.fix.js