Android for the Vogue package updates to newest SDK

August 25, 2008

Martin (or dzo) has released another update for the Vogue, updating his release to the newest SDK available from Google, which was made available from last monday. This release has broken a few custom applications made by some, as the phone keyboard now needs to be written, and the previous method used an on screen [...]

Read the full article →

Transit directions now available via Google Maps on Windows Mobile

August 18, 2008

Apparently this was released without much fanfare, but Google Maps Mobile v2.2.0.16 for your Windows Mobile smartphone / pocketpc has been released, which means it now provides transit directions on the go. This makes me extremely happy, but annoyed as well, as it was released quietly — I’m even subscribed to the Google Latlong blog. [...]

Read the full article →

Updated Android SDK released

August 18, 2008

A new, updated Android SDK was released today. Get it here: http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html

Read the full article →

Billix

August 7, 2008

I  wanted to mention that I’ve been looking for something like for this a bit — a USB key that comes with a way to install multiple Linux distributions.  While at work, we primarily use Gentoo, we still have a Ubuntu server or CentOS install to do occasionally, and it would be nice to have [...]

Read the full article →

A Defragmentation Script to Optimize Fragmented Tables in MySQL

August 7, 2008

I wrote a little script that will defragment fragmented tables. You can supply usernames and passwords, and even run it against remote MySQL databases. Here’s an example of it’s output: root@lit [~]# mysqlFragFinder.sh MySQL fragmentation finder (and fixer) v1.0.0 Written by Phil Dufault (phil@dufault.info, http://www.dufault.info) Found 2 databases Checking dufault_blog … found 6 fragmented tables. [...]

Read the full article →

MySQL Tuner

August 7, 2008

I’ve been using this for the past two weeks: MySQL Tuner I’ve used on servers running on MySQL 4.0, or 5.1 lately to tweak their preformances.  It’s an awesome script, and I recommend using it on any MySQL server you can find. Since I’ve written this post, mysqltuner has earned a permanent spot in my [...]

Read the full article →

Making SSH connections to your frequent remote hosts faster with ControlMaster

August 5, 2008

I have recently learned of a new OpenSSH feature that allows you to reuse your  existing SSH connections to hosts.  Since you’re saving time on the encryption handshake, you connect to where you want, faster. If you want to enable this functionality on a per-host basis, then you can setup your ~/.ssh/config file like this: [...]

Read the full article →

Hotswap a SCSI, SAS, or SATA drive in Linux

August 4, 2008

There seems to be not a lot of information on Google about this, thus, I post. At my work, the majority of our servers have hot-swappable drive bays — however, Linux doesn’t usually automatically notice the drive is gone. Worse, sometimes it doesn’t even notice new drives hooked up. Now, SCSI and SAS both support [...]

Read the full article →

Typespeed

July 31, 2008

It came up in IRC today that there was a typing game called typespeed — one of the categories is “Unix Commands.”  Better yet, this supports head to head networking mode, so you can play against people in your office, I didn’t even need to edit my firewall configuration on Ubuntu. Playing your coworkers is [...]

Read the full article →

Installing libtidy in PHP5 on a CentOS cPanel server

July 26, 2008

To install libtidy in PHP5, it’s really quite easy. Make sure your /tmp directory doesn’t have something like noexec set on it, otherwise this would be more difficult. Here’s the install command: pecl install http://pecl.php.net/get/tidy-1.2.tgz Find where your main php.ini file is: root@server [~]# php -i|grep php.ini Configuration File (php.ini) Path => /usr/local/lib Loaded Configuration [...]

Read the full article →