Mysterious Ubuntu.com Countdown

January 2nd, 2013 at 08:51 am (CST) by Jeff

No idea what it is yet, but I’m always excited to see new stuff come from my favorite Operating System.

Check it out and watch intently at Ubuntu.com

Ubuntu.com Screenshot of Countdown

 

Laptop Hard Drive Crash

November 6th, 2012 at 09:02 am (CST) by Jeff

Yeowsers. When it goes down, it goes down fast! I knew it was coming a few months ago so I purchased a spare hard drive to archive/install to.

Took about two and a half hours to recover my apps, data and settings and lost only one of my virtual machines (Windows Vista, for IE9 testing) and a few other Apps that I decided to just reinstall from the App Store, but I’m back up and going with all my old settings even without using Time Machine as my backup source.

Well played, Apple. Well played. Now to use Disk Utility to do a partition copy of my Windows Boot Camp to the new hard drive–we’ll see how that goes ;)

Python Thumbnail

Python: Associative Results with the MySQLdb library

July 8th, 2011 at 08:48 am (CST) by Jeff

This is more of a personal reminder as it’s not the default behavior as it is in most modern database libraries…

I’ve highlighted the important bits for associative results in white below

#!/usr/bin/python
# Note the MySQLdb.cursors import statement
#    and the cursorclass declaration in the connect string.
import MySQLdb
import MySQLdb.cursors

oDBConn=MySQLdb.connect(user="user",
			passwd="pass",
			db="db",
			host="localhost",
			compress=1,
			cursorclass=MySQLdb.cursors.DictCursor)
oCursor=oDBConn.cursor()
oCursor.execute("select `field1`,`field2`,`field3` from `mytable`")

while(1):
	LogString = ""
	oRow = oCursor.fetchone ()
	if oRow == None:
		break
	sField1 = oRow["field1"]
	sField2 = oRow["field2"]
	sField3 = oRow["field3"]

The <pre> tag formatting above may be a bit difficult depending on your browser… but you should be able to copy and paste the entire codeblock with no difficulty.

classic_battletech_logo

I’ve created an online BattleTech lance builder

May 20th, 2011 at 09:37 pm (CST) by Jeff

Check it out http://gauthic.com/utils/lancemaker/

A big thank you from the Solaris Skunk Werks project for their index.ssi file where I got the data for this quickie project.

No saving options, but it’s made for just quick lance (or star) creation :)

Thumbnail - Gauthic (New)

Mac How-To Videos (iMovie & GarageBand)

March 18th, 2011 at 08:12 am (CST) by Jeff

Thanks to my purchase of ScreenFlow for the Mac, this is the first of a whole slew of How-To computer videos:

Apple_Logo

ScreenFlow is now available on the Macintosh App Store!

March 17th, 2011 at 04:06 pm (CST) by Jeff


Click here to read this article


Thumbnail - Gauthic (New)

New WordPress Theme

December 15th, 2010 at 10:14 am (CST) by Jeff


Click here to read this article


Nerd Rage: Apple’s Antics (again, REALLY!?!)

November 8th, 2010 at 10:37 am (CST) by Jeff


Click here to read this article


MacBook Pro: 30 days later

October 5th, 2010 at 11:40 am (CST) by Jeff


Click here to read this article


Apple_Logo

My bluetooth keyboard and mouse arrived today

October 4th, 2010 at 11:50 am (CST) by Jeff


Click here to read this article