Here’s a quick howto: I use Rackspace as my cloud service; I was moving a few sites from one server using Ubuntu 10.04 LTS (Lucid Lynx) to a new one using 11.10 (Oneiric Ocelot). I hit a few issues, so…
Third Edition Earthdawn Dice Roller in Java
So, I play an RPG called Earthdawn; it’s a lot like D&D, but for real nerds. One of the things we all do in my gaming group is write our own dice rollers; rolling actual dice is SO passé–and there’s…
Python For Scripting
Hi! I’m Liz from Athenageek. Tarah and I are writing guest posts in each other’s blogs on the scripting languages we love. I must make a confession before I continue with this post – I adore Python. It’s made me…
The IDE Wars: NetBeans or Eclipse for Java Software Development
I’ve been working on several applications for a few years; some are ready or released into the wild. I’ve used NetBeans and Eclipse to develop one application in particular; I’ve written an Earthdawn dice roller application. Earthdawn is like Dungeons…
How to SSH into your home computer to access media files, documents, processes, or anything else you might need
I wanted access to my home machine so I could access any files I want. Dropbox is pretty awesome, but if you’ve forgotten to put something in your Dropbox folder, you’ll be in deep trouble. (1) Run “sudo apt-get install…
How to batch scan using Xsane
If you’re like me, you can’t throw important documents away, but there’s no easy way to scan old records, tax documents, and all the crap you’re supposed to save for 7 or 10 years…or however long taxes are supposed to…
Triple booting Linux distros with a mix of GRUB2 and GRUB legacy, Part 2
Instructions on how to multi-boot with a mix of legacy and 2. DISCLAIMER: this method erases your entire hard drive and repartitions it. If you are uncomfortable mucking about with partition tables, go look at some beginner resources and tutorials…
Triple booting Linux distros with a mix of GRUB2 and GRUB legacy, Part 1
I’ve been experimenting with other distros. I just got a 2TB internal Western Digital Caviar Black, and there’s just too much room there NOT to create nine partitions and get my distro freak on. I know, Kubuntu baybee, but it’s…
An update to the bash script that takes a parameter:
#!/bin/bash book=$1 [[ -z $book ]] && { echo “No argument supplied, exiting!”; exit 1; } [[ ! -e $book ]] && { echo “Can’t find a file with the name $book, exiting”; exit 1; } title=${book%.*} bookcounter=0 linecounter=0 sed…
Get emailed a portion of classic literature each day.
Ok, so I am feeling guilty over not reading enough GOOD books. So, I devised a cunning plan whereby I am emailed a portion of a classic book each day. I started with the Iliad. I know that I’ll clear…