OS X flush DNS cache

So this morning I was doing some work with one of my webservers and adding new sub hosts to some of the domains and to see the changes on my MacBook pro laptop I knew I would need to flush the DNS cache so I wouldnt have to wait for the cache to expire.
So for [...]

Macbook pro - Airport problems connectiing to network and dhcp

Recently I have been having a lot of issues with my macbook pro and connecting to my home network, Airport on mac osx would seem to be connecting to find to the network, but the computer would never get an address from the dhcp server on the network, and manually setting the ip address would [...]

Macbook pro - Connecting to Cisco consoles

I have a macbook pro and sometimes I need to connect to the console port on some of the cisco networks I do work on.
Today I went out and bought a USB to Serial converter from maplin, the driver disk that comes with the product is one of the small CDs which would get stuck [...]

Mac OS X - File Vault no free space.

I often get given laptops and computers by friends to sort out because the see me as the “computer whiz”. This time even I had to think about the problem for a while, I was given a Macbook laptop that keep saying it had no free space left on the hard drive anymore, The user [...]

Mac OS X - Show hidden files script

Ok, so in my last post about showing the hidden files in finder I talked about the terminal commands but thats not always convenient for fast switching.
Below is some applescript that I wrote to do the job.

– www.infosonicgroup.com
– Shane Duffy

display dialog "Show hidden files in Finder" buttons {"Show", "Hide","Cancel"} default button 1
copy the result as [...]

Mac OS X - Show Hidden Files in Finder

One annoying thing about my MacBook pro and OS X is not easily been able to show hidden files.
Showing hidden files
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

Hide the files again
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder

Thanks to Matt for pointing out an error in my screen shots
AppleScript: The Definitive Guide, 2nd Edition provides a great resource for [...]