I’m constantly passing a list of git aliases I use in my terminals. Here they are:
alias gb='git branch'
alias gba='git branch -a'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gd='git diff | mate'
alias gl='git pull origin master'
alias gp='git push origin master'
alias gst='git status'
Thanks for the tip from @al3x on the XThemes tool. I love the midnight theme in textmate and now my eyes are happy in XCode.

We’ve been encrypting our Ubuntu laptops for a while now, but there hasn’t been a good whole disk encryption option for the Mac until today. RSA is a little behind schedule in the release, but it’s out today.
Installation was a snap. Encrypting the boot drive was easy as well. 5 mins of your time and the takes care of the business in the background while you work. Reboot when it’s done (about 90 mins later for me) and your drive is secure.

Sweet.
Mongrel has served us well for the past year or so, but the simplicity of deployment in passenger along with the ever reliable apache has lured us into extensive testing. We’re getting slightly better performance numbers from passenger over mongrel with about 2/3 of the memory footprint. Please let us know at support@imapenguin.com if you see any wonkyness with any of our services. As we migrate over night.
Apple uses the tightvnc protocol for remote desktop. So install tightvnc:
sudo apt-get install xtightvncviewer
Then update your default programs to use it instead of what’s included in Ubuntu Desktop:
sudo update-alternatives --set vncviewer /usr/bin/xtightvncviewer
That’s it. In ubuntu’s RDP client, select the vnc protocol when connecting to a mac.
You’ve got port 3306 (MySQL) firewalled off and you want to use a MySQL GUI every once in a while (or maybe a bunch).
This is a snap with ssh.
On your local Linux/BSD/Mac/Unix machine (works in cygwin too) edit your .ssh/config file and add:
Host somemysqlserver
Hostname server.mydomain.com #your mySQL server FQDN or IP
User bob #replace with your valid ssh server username
LocalForward *:13306 localhost:3306
Now do:
ssh -f -N somemysqlserver
You can now connect to your localhost port 13306 and it will forward to your MySQL server’s port 3306.
Plus, it’s free and probably already installed on your systems.
Need help? support@imapenguin.com
According to an Appleinsider article today, certain Seagate drives, specifically those with model numbers ST96812AS and ST98823AS are flawed and can cause data loss.
Make sure you back them up and get them replaced.
To see if you have an affected drive:
- click the apple icon on your menu bar
- select “About this mac”
- click “more info…”
- look at the drive model in the Serial-ATA section
Email support@imapenguin.com if you need assistance.
Get it here, while it’s hot off the presses. I know, we’re such nerds…
Here’s an emulator screenshot.

We’re not going to “cover” tomorrow’s launch of OS X Leopard, but we are heavy users of OS X. We will be upgrading ourselves and helping our customers upgrade. If you need help or just need to ask a question, support@imapenguin.com is the place. Advice is always free
Zultys auto attendants need an 8bit Mono U-law format wav file. Most recording software will give you a stereo 16bit format at the very least. To convert via sox (available for Unix machines including Macs) simply do:
sox -c 2 Audio.wav -c 1 -r 8000 -U Audio2.wav