Play Tetris Using Mac Leopard Terminal Terminal Tetris is actually part of the Gnu Emacs and is something you should able to do on any unix system that has Emacs on it.I attached text and video instructions.To...
Automate a Remote Login Using SSH - LinuxTo do just that you need to create SSH Key Pair1. we need to use ssh-agent to create an SSH key pair.To do that run this command: ssh-keygen -t rsaWhen prompted...
Free Google Wave InvitesDo you really want a Google Wave Invite but don't want to pay $$$ on eBay???I got one for you....The deal is:I give you an Invitation and once you get it...
Google DNS Test Results After using Google DNS for few days, And after running NameBench twice I found that:Google DNS is faster then Most if not All other DNS Servers.Check out the results:Bottom...
Start Google Chrome in Incognito Mode I'm Using Mozilla FireFox as my default web browser But I like using Chrome for Private Browsing.Google Chrome doesn't provide an option to load Incognito by default so...
This App make the finder showing Hidden and System files. If Hidden files set to ON then it will turn it OFF. Very good to anyone how works with Apache and needs to modify .htaccess files
**** Update: One of the readers brought to my attention that the version I posted on the site doesn’t supported by Snow Leopard.
I’ve tweaked my Downloads folder so that applications which are usually downloaded as disk images are automatically moved to another folder.
To do that, Take a look at my Video.
I attached a script to my Downloads folder as a folder action. First, I typed the following script into Script Editor:
[applescript]
on adding folder items to theFolder after receiving downloadFile tell application “Finder” repeat with theFile in downloadFile if the name of theFile ends with “.dmg” then move theFile to folder “THE_FOLDER_YOU_CREATED” of folder “YOUR_USER_NAME” of folder “Users” of startup disk end if end repeat end tell end adding folder items to