Archive

Archive for the ‘Mac’ Category

Git aliases

January 12th, 2010 Michael Comments off

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'

Categories: How-To, Linux, Mac, Open Source, Programming, git Tags:

Xcode color bliss

January 7th, 2009 Michael Comments off

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.

Categories: How-To, Mac, Programming, Xcode, apple Tags:

Whole Disk Encryption for Mac OS X

August 29th, 2008 mike Comments off

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.

Progress

Sweet.

Categories: Mac, Random Cool Stuff, Security, products Tags:

We’re switching to passenger

August 27th, 2008 mike Comments off

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.

Connecting to Apple Remote Desktop from Ubuntu

March 3rd, 2008 mike Comments off

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.

Categories: How-To, Linux, Mac Tags:

Ssh tunnel to remote MySQL

January 10th, 2008 mike Comments off

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

Categories: How-To, Linux, Mac, Programming, Security, servers Tags:

MacBook Seagate drive problems

November 27th, 2007 mike Comments off

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.

Categories: Mac Tags:

Android SDK Available now

November 12th, 2007 mike Comments off

Get it here, while it’s hot off the presses. I know, we’re such nerds…

Here’s an emulator screenshot.

andriod screenshot

Categories: Linux, Mac, Programming, Random Cool Stuff Tags:

Imapenguin on OS X Leopard

October 25th, 2007 mike Comments off

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 :-)

Categories: Mac Tags:

Zultys Audio Conversion Via Sox

April 2nd, 2007 mike Comments off

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
Categories: How-To, Linux, Mac Tags: