I’ve been trying to pick-up a little oracle db experience. In Oracle sqlplus, if you type ed or edit at the command prompt, sqlplus will put the last command into an editor buffer for easy editing. Here’s a quick tip for you; the default editor in Oracle sqlplus can be changed to vim pretty quickly. [...]
Category Archives: OS
Backup data using Amazon’s S3 on the Mac
There are other solutions to backups not involving Amazon’s S3. If you insist on using S3, this seems like the easiest solution, the comments hold particular value; suggested usage includes rdiffs and swapping out launchd for Automator and ical. Read the article here.
bc a GNU CLI Calculator
Handy calculator for the command-line. Hey, it’s already on the mac.
Some useful OS X hacks
Lighten OS X’s Load with: Turn off widgets: In a terminal type: defaults write com.apple.dashboard mcx-disabled -boolean YES killall Dock You can turn widgets back on with: defaults write com.apple.dashboard mcx-disabled -boolean NO killall Dock Make hidden apps ( in 10.5) look transparent: defaults write com.apple.Dock showhidden -bool YES killall Dock
Embed Tags for Quicktime
I’m working on a personal project for the iPhone. Specifically, I’d like to make an ajaxed index of all my music organized by artist. It’s a spare time project, and I don’t have much of that right now, but it’s coming along well. I started out by making an HTML index of a directory of [...]
Internet Connection Sharing with OS X
With OSX this is brain-dead simple. To share an Internet connection through the AirPort, go to System Preferences and click on the Sharing item. Highlight “Internet Sharing” from the list on the left (but leave it unchecked). Next, select the connection you wish to share, from the drop down list and how you would like [...]
Full Filenames in the Finder
By running the two commands below, in a terminal, it’s possible to get OS X’s Finder to display the current full path as the window’s title. $ defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES $ killall Finder It’s not possible to edit or “grab” the path. Power users might like the Finder’s “Path Bar” more. You [...]
Build wget for the Mac
Looks like Apple has neglected to include the command line tool wget for a while now. I was able to find a precompiled binary for 10.4, but 10.5 is so recent that it looks like wget hasn’t make it’s way on to the tubes. If you’re looking for wget why not build it yourself? The [...]
Stream MythTV to the iPhone/iPod Touch
If you’ve set mythTV up then following this wiki entry isn’t going to be a problem.
iPhone Streaming with .htaccess
It appears that Safari on the iPhone does not like .htaccess. Your likely to receive an error message when you play anything password protected. The work around goes something like http://username:password@host.com/foo.mp3 Good luck with that. I’m thinking about writing a little javascript to work around this. I’ll update this post if I ever get to [...]