Tag Archives: Linux

Cypress Driver Problem with Delorme Earthmate LT-20 – Patch Available

I’ve got a USB Delorme Earthmate LT-20 that, untill a few months ago, worked perfectly fine. Somewhere between then and now, the cypress_m8 driver that supported it in linux somehow changed to make it unsupported. What happened was that …

Posted in Other | Tagged , , , | 2 Comments

Windows Vista BCD Recovery

Apparently I’m not all that up to speed on Windows Vista, specifically, its boot process. Then again, my only experience with it is occasionally fixing my girlfriend’s wireless connection to my university’s secure network (I add that NetworkManager for …

Posted in Uncategorized | Tagged , , , , | 2 Comments

Syncing your Palm Pilot over Bluetooth

I’ve been toying around with my Thinkpad X61′s bluetooth, and finally managed to get HotSync to work over bluetooth thanks to the helpful instructions at pilot-link.org. In KPilot, just set the device to net:any. The UI might complain about …

Posted in Other | Tagged , , , , , | 1 Comment

My Experience with Ubuntu

I’ve been pretty much a die-hard Fedora user since back when Fedora was Fedora Core and the latest version was FC3. A while ago (Septemberish) I acquired a brand new Dell Vostro 1000 at no cost, which came with …

Posted in Other | Tagged , , , , , , , , , | Leave a comment

Bind and Zeroconf

A good while ago I had plans to implement a very cool feature in my network. Zeroconf.

Zeroconf is just that. It is networking with zero configuration. DNS and DHCP are all managed by each network’s node in a distributed …

Posted in Other | Tagged , , | Leave a comment

Upgrading Fedora

Over the past two days I upgraded all my computers (except for my gateway machine) to Fedora 7. Surprisingly, I had very few problems. I started the upgrade process at the same time for all machines, and Neptune finished …

Posted in Other | Tagged , , , | Leave a comment

My Wakeup Alarm

#!/usr/bin/env php
<?php
$dom=DOMDocument::load(‘http://weather.yahooapis.com/forecastrss?p=44047′);
$items=$dom->getElementsByTagName(‘item’);
foreach($items as $item) {
foreach($item->childNodes as $child) {
if ($child->namespaceURI==’http://xml.weather.yahoo.com/ns/rss/1.0′) {
if ($child->localName==’forecast’) {
$forecast=”Today’s forecast: “.$child->getAttribute(‘text’).” with a high of “.$child->getAttribute(‘high’);
break 2;
}
}
}
}
echo $forecast.”n”;
?>

Pipe the output through festival –tty. In addition to running this script, the alarm crontab entry also starts up …

Posted in Other | Tagged , , , , | Leave a comment

The Mysterious ‘index_param failed’

I recently noticed that anything on my network that referred to my LDAP authentication setup was going painfully slow. This, folks, is why sysadmins keep volumes upon volumes of logs. My first instinct was to watch the logs in …

Posted in Other | Tagged | Leave a comment

My Awesome Playlist

So back in june I ranted about how awesome pulseaudio was with the side comment about my ‘Awesome’ dynamic playlist.

Just how awesome is it? Pretty damn awesome.

If you already know about Amarok and how amazing it is, you can …

Posted in Other | Tagged , , | Leave a comment

My XBox is Broken – A review of Xebian’s internals

So MythTV crashed again on my XBox frontend. Dad said he had enough of the constant crashing and I agreed. I switched the front TV back to a direct hookup to the satelite box and moved the XBox into …

Posted in Other | Tagged , | Leave a comment