Search
Tag Cloud
activesync annoyances apple backups batavia beach bes blackberry Books browsers bugs cars christmas chrome coldfusion Company Electronics Event facebook Fiction Food Game General Christian halloween ipad iphone isaac lucy MoviesAndTV oldblog osx OutdoorGear Person Place programming Restaurant sarah Software Store symetri sysadmin technology trone webdev windowsdelicious bookmarks
Archives
Tag Archives: osx
Tethering a Blackberry with OSX 10.5.6
Evidently there are some pieces of Bluetooth that get changed with the Leopard 10.5.6 update. One of those appears to break tethering to Blackberries. If you have everything “correct” based on the number of other tutorials out there, but you … Continue reading
Cmd-Tab stops working in OSX
If your Command-Tab shortcut stops working in OSX, try the following: Start a terminal and run sudo killall Dock If it still doesn’t work, try killing ScreenSaverEventAgent (probably easiest for a novice from the Activity Monitor)
Deleting files in a text file (OSX)
Someone had a list of absolute paths of files they needed to delete. I sent them this tiny script to help them out: sed ‘s/\ /\\ /g’ filelist.txt | xargs rm Explanation: Take filelist.txt, replace all the spaces with backslash … Continue reading
DoubleCommand
There are several things that still bother me about macs/OSX, even though I’ve been enjoying the “switch” for several years. Two that come to mind are how items are selected with the finder (up/down arrows selecting more items no matter … Continue reading
I love awk…and grep…and sed…and terminals
Today’s terminal fun: find /Volumes/Data/ -mtime -2d -exec ls -al {} \; | grep “Oct 7″ | grep -v “.DS_Store” | grep “/” | awk ‘$8 ~ /\:/ { print $3″,”$5″,”$8″,” substr($0, index($0,$9)) }’ > October7.csv That will find all … Continue reading