Posted on September 25, 2007 by Shane Duffy
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 [...]
Filed under: apple, encryption, file vault, mac, os x | 2 Comments »
Posted on September 23, 2007 by Shane Duffy
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 [...]
Filed under: applescript, mac, os x, tools | Tagged: applescript, hidden files, mac, os x | 10 Comments »
Posted on September 19, 2007 by Shane Duffy
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 [...]
Filed under: hardware, mac, os x | 5 Comments »
Posted on September 3, 2007 by Shane Duffy
The Microsoft Enterprise Library has a really good Logging Application Block that allows you to make your logging infrastructure configurable.
This framework makes logging as easy as typing:
Logger.Write(”System rolled over!”);
the framework is configurable from your config file.
The Microsoft Enterprise Library out of the box provides the following destinations for logging messages:
Email
Custom Locations
Message Queues
WMI Events
Database
Text Files
File
I took [...]
Filed under: .NET, ASP.NET, Bug Tracking, Development, Error Logging, Logging, software, testing | No Comments »