Show Hidden Files in Mac OS X
If you find yourself needing to access hidden files on your Mac (say an .htaccess file you downloaded), run the below command from the terminal.
For those who don’t know, files that are hidden in Mac OS are determined so by preceding the filename with a single period symbol (.), you can actually make any file hidden by doing this.
Show Hidden Files on your Mac
Launch the Terminal and enter these commands exactly as shown. The first command activates the ability to see the hidden files:
defaults write com.apple.Finder AppleShowAllFiles TRUE
Now you must relaunch the Finder by killing it, this is how the changes take effect:
killall Finder
If you want to hide hidden files again (those preceded with a .) and go back to the default Mac settings, you can just type the following:
defaults write com.apple.Finder AppleShowAllFiles FALSE
Again you will need to kill the Finder so that it can relaunch for changes to take effect:
killall Finder
That’s all there is to it!
Show Hidden Files in a Mac Save Dialogue
You can quickly show all hidden files in any Mac OS X save dialogue box by hitting Command+Shift+Period
Show Hidden Files on your Mac through the Terminal
Another way to quickly see hidden files is by using the ls command within the Terminal, at the command line type the following:
ls -a
The -a flag tells the ls (list) command to show all contents, including hidden files. You then just have to specify a directory if you want to see the hidden files in it:
ls -a ~/Sites/betasite
This method does not effect the Finder or the visibility of hidden files outside of using the -a flag.

If you are like me and struggle to keep up with a years worth of Hollywood releases check out this 
For me, listening to Pandora is as routine as brushing my teeth in the morning. Tonight I was browsing the application downloads over at
Spaces. Personally, it is my favorite addition to Apple’s Leopard operating system. I have become very accustomed to working with Spaces and have long desired the ability to set a different background for each virtual “space”. That is now possible thanks to SpaceSuit. Installation of SpaceSuit is a breeze and setting your backgrounds involves a simple drag and drop. The only downside or complaint I have thus far is that I can not figure out how to set unique backgrounds across my multiple monitors. Maybe a reader out there has figured out how to do this and can chime in. Anyways, Enjoy.
I have been a long time user of Skype and recently some of the features unique to the beta have caught my attention. In particular, I am enjoying the new screen sharing functionality. Frequently, I work remotely and find screen sharing crucial to collaboration. If you haven’t already, I encourage you to cruise over to skype.com and 
Recently I connected my Mac to my linux based NFS server at home. I use NFS to access files from two other Linux boxes and on each server my UID (unique id) is set to 1000. In order for me to easily have full access to my NFS shares from OS X I changed my UID to match:
These days there are no shortage of ways to backup your Macintosh. Probably the most popular method available to an end-user is Apple’s Time Machine (first introduced in Mac OS X 10.5). Personally, I was very impressed with the ease of use offered by Time Machine, but I am a command line junkie so I must report on the alternatives. Read on for a few methods that you can use (from the command line) to back up your Mac.