↓ Twitter is updated more often, so read it! ↓

2010 in review: the year of travel

2010 will go down in my personal history as the year that I travelled. It will only be replaced as such should I travel even more in a subsequent year. Should such happen, I hope that it is of my own free will and benefit.

I spent not at home approximately 23 weeks of the 52 weeks of 2010. Much of that was spent in the Washington, D.C. area for work, while others were spent in Louisville, Houston, at my parents’ (oh, snowmageddon of February 2010), and single overnight stays in Orlando and Phildelphia. Most of this travel occurred in the later seven months of the year, beginning with a trip to DC in June and concluding with some time at my parents’ house for Christmas.

All the travel seriously hampered by ability to get things done. I still managed, though.

Writing

I didn’t write as much for ThinkComputers this year because of the travel, but I did manage to write a good article on travel technology, i.e. the things I take with me when traveling.

Blog-wise, I didn’t write a whole lot. I saw a year-over-year ~7.5% decrease in traffic. I attribute this to my lessened writing and bouncing from topic to topic. Also, my posts from summer 2009 regarding my stock purchases gave me a giant traffic burst I did not replicate this past year. My 2007 article on installing Roundcube Webmail on Ubuntu Feisty continued to be the #1 article on my blog (as it has been since its writing), followed by my 2008 article on using btnx for mouse control in Ubuntu Hardy.

However, I did have a few good articles from 2010. I worked from home a good bit this year, so I wrote some simple rules for working from home as a reminder to myself of “how” to work from home. My geekiest article by far was on addendum on updating the installation whenever there’s a new WordPress release.

In other news, I severed ties with BIOS LEVEL very early in 2010. It was time for me to move on.

Coding

My as-of-yet incomplete magnum opus of 2010 is the Pittco LAN Administration System. PLAS is a LAN party management tool in the vein of Autonomous LAN Party (ALP). Pittsburgh LAN Coalition (Pittco) has wanted to replace ALP with something better for several years now and after a few false starts, we’ve finally got something up and running. It’s still under heavy development and could use some good Ruby on Rails developers (I’m just a newb to RoR). I plan to spent much of my free time in January and February banging on it.

As for open source contributions, there were quite a few! I set up squid-deb-proxy for Ubuntu update bandwidth reduction and speed increases and suggested some default configuration changes in what mirrors are listed and permitting but not caching unspecified domains. I continued to contribute translations to Gwibber, Lernid, and more. I made a tiny patch to bzip2-ruby to fix compilation on Ubuntu Natty. I also fixed some Config -> RbConfig migration problems in gettext for ruby and cucumber, although neither have been accepted upsteam (I tried with cucumber, but couldn’t get the test harness working in the hour or so I wanted to devote to it so I gave up).

I released ttytter-libnotifyperl, a TTYtter extension which uses ayatana notification bubbles in Ubuntu for its notification of Twitter replies, DMs, and such. I don’t know how many people are using it, but I find it indispensable when working on Ubuntu.

Educationally, I learned how to use git in 2010. I avoided it for a few years because I used Subversion (svn) for work and preferred Bazaar (bzr) for home projects, most of which were related to Ubuntu. I still consider myself a newb, but I’ve taught at least one other person how to use git and counseled several others of approximately my experience level. At least I know I’m learning.

One of my larger projects was a for-profit job I took on early in the year. A friend needed a software for running Twitter contests. I doubt the software was ever actually used in production, as the person who was in charge of running the contest left the friend’s company shortly after I finished the product. I may adapt the product and make some kind of a SaaS thing around it if I ever get the time to do it.

My big work project went live at the end of December. I’m not sure what details I’m permitted to tell about it publicly, so ask me in private. I’ll just say that it’s a big public search portal for a government agency. I might update this story or post another entry about it if my superiors permit it.

Profyle.at, the personal profile directory site, kinda died down, but it’s not dead yet. Jon and I hope to revisit it at some point. Work got in the way for both of us, and not getting into Alphalab for the Spring 2010 session didn’t help.

Stocks

I basically slacked off on stocks this year. I made some money from SYMX, but lost a good bit from ONFI and INAR. I finally sold the rest of my holdings in SPNG, the stock which lost me $23,000 in 65 minutes in 2009. After the tax deduction, the rebate combined with my profits from 2009 sales will cause me to lose just under 3% on the whole deal, or around $90. Not too shabby for at one point having ~$30,000 wrapped up in that pump and dump scheme.

Why did I not pay attention as much? For one, @stockgod and the other Bulls on Wall Street crew stopped posting on Twitter as often because BoWS became profitable and it was more profitable for them to share their hints exclusively to BoWS subscribers. I don’t fault them for doing so at all. I didn’t have the time available to make the $75/mo worth it. @stockguy22 is still going strong, as are a few others, but I didn’t have and probably won’t ever regain the spare brain cycles I had in 2009.

I’m not out of the market — I still have ~$10k worth of stocks — but I’m not able to be a daytrader or even a week trader. I’m just sitting long for a while.

Life

Brigette and I are still dating, of course. She will in the coming month release an update to the web site for Glade Mill Sporting and Hound, the show dog kennel she, her sister, and mother operate under. She’s come a long way and just keeps getting better and better every time I see her new designs. I’m eager to see her build a portfolio site before the end of the year!

I think that’s it for this 2010 year in review.

squid-deb-proxy, or how Ubuntu updates fly at work

I recently got permission at work to install squid-deb-proxy in order to speed up updates for Ubuntu users and reduce the amount of bandwidth we consume every morning when Update Manager checks for updates. There are 12 of us using it now, and the number generally grows every second or third hire.

squid-deb-proxy is a specific configuration of squid, an HTTP proxy, which enables caching of retrieved files and limits access to only the official Ubuntu mirrors. The net result is that client machines look at the server running squid-deb-proxy for updates, and if the proxy has recently downloaded the file, it’s sent to the user immediately, or, if it’s not in the cache, the server retrieves and caches it, then passes it to the client.

The business benefit is that it saves considerable amounts of time because it saves bandwidth, especially around upgrade time. Imagine 12 people pulling down ~50 MB of updates on a given day. Now, imagine 12 people upgrading to the latest Ubuntu release come April or October–now we’re talking one or two gigabytes of updates. If those updates are available locally, the bottleneck moves from the Internet connection to the sheer speed of the computer. The user is back up and running sooner, and thus restored to productivity sooner.

Installing the server component of squid-deb-proxy is no more difficult than sudo apt-get install squid-deb-proxy. It’s up and ready to go upon installation.

There are two ways for the clients to get updates. One is by manually specifying the proxy in the apt configuration by adding this block to /etc/apt/apt.conf.d/99proxy:

Acquire {
 Retries "0";
  HTTP { Proxy "http://YOUR_PROXY_SERVER_HOSTNAME_OR_IP_HERE:8000"; };
   };

The other way is much cleaner, but the server must be on the same subnet as the clients. Simply install squid-deb-proxy-client with sudo apt-get install squid-deb-proxy-client. Warning: if you have both set up, squid-deb-proxy-client will prevail.

Courtesy of two changes I proposed and which were recently merged into the Natty cycle (Ubuntu 11.04), the configuration options to allow but not cache unspecified domains and add extra mirrors are present, increasing the out-of-the-box usefulness and easy configuration of the server component.

So, squid-deb-proxy is worth it for us. It saves time and alleviates the morning bandwidth burst.

We used it at my previous job, too, and it was worth it with only four Ubuntu users hitting it.

If you use it, how many people do you have hitting it?

VLC 1.1.0 released with GPU decoding

VLC 1.1.0 was just released few hours ago. VLC is a fantastic media player and I use it on all of the operating systems I use (Ubuntu Linux, Mac OS X, Windows 7). It’ll play just about any format and do it wonderfully. It’s easier to use than Rhythmbox, Quicktime, or Windows Media Player for watching movies or iTunes for quick listening of an audio file.

Anyway, among new features are VP8 support (Google’s newly open sourced video format), lossless MPEG-4 support, AMR-NB support for audio in cellphone video, CDDB/CDTEXT on Windows when listening to CDs, and lots more.

A big feature in this release of VLC is the ability to decode video using the computer’s graphics card. You’ll need an nVidia graphics card to really benefit from it, though.

I decided to give it a quick test myself before upgrading from VLC 1.0.5 on my Windows 7 box. I played back a 720p HD rip of Adventureland and Back to the Future 3. Both were encoded with 23.97 fps H264 for video. Adventureland used DTSfor audio, while Back to the Future 3 used a52. I watched about 5 minutes of each and watched the Task Manager. For both movies, the CPU usage stayed between 15% and 30%, while memory usage stayed around 92,000 kilobytes.

Then, I upgraded to VLC 1.1.0 and enabled GPU support in the preferences. I watched the same parts. Both videos used the slightly less CPU, but less memory.

“What gives?” I thought. So, I did some research. I found the wiki article on VLC GPU Decoding and found that a video card using VP2 or newer is required. There’s a link to a table on Wikipedia showing the version of PureVideo support in each video card. Unfortunately, my 8800 GTX doesn’t support VP2.

Oh well, I guess I get to wait for the next video card I buy. However, if you own a video card made in the last 3 years, you probably have support for it, so go forth and enjoy low CPU usage when you’re watching videos.

13″ MacBook Pro: I choose you

A month ago, I mused purchasing a 13″ MacBook Pro. My primary reasons for considering the MBP were the freedom of OS choice, “seeing what all the fuss is about,” premium hardware for just a couple hundred dollars more, excellent customer support, and a healthy dose of nostalgia.

Approximately a week after writing the post, a friend let me know of a rare deal: a friend of his who just so happens to be an Apple authorized reseller was in jeopardy of losing her authorization because her sales were really low. In order to meet her goal, she was selling Apple hardware at cost. You can’t beat cost! Combine that ~$300 savings with putting the purchase on a credit card with excellent rewards, and it would put me over the edge of my reward amount needed to get myself with a free flight worth about $400.

So, I bought a stock mid-level 13″ MacBook Pro, the one with a 2.53 GHz Core2Duo, 4 GB of DDR3, and a 250 GB HDD. I did get AppleCare and a remote, although the remote was backordered and mysteriously hasn’t arrived yet (should hear why on Monday).

My thoughts?

Summary

I’ll never go back. Apple has a solid hardware product with bells and whistles which themselves make me glad I bought it, plus a slick operating system which appeases my desire for an easy-to-use, on-the-go environment.

TL;DR version

and it had been on for ~20 minutes

and it had been on for ~20 minutes

Hardware. Seven hours of battery life. Seriously. I got right around that many hours the day I took this screenshot about a week after I bought it. The multitouch touchpad with its gestures are amazing and have seriously changed how I use a touchpad–even more once I enabled tap-to-click I miss them when I use a non-Mac laptop. The magnetic power cord connector should be on every computer: it’s saved my ass twice now. The graphics card is enough to handle Left4Dead with most of the settings on medium, and it’ll certainly handle the older games and casual games I tend to play more often these days. The screen color is amazing and the keyboard is the most welcoming keyboard I’ve ever used. This is the first line of Mac laptops with an SD card reader, and that’s indispensable for me these days with the dog show photography I’ve been doing.

Downsides? I’m not too hot about the non-removable battery, but I’ve never needed a second battery even on my old Averatec which had approximately two hours of battery life. Apple made a data-driven design decision when choosing this path. I’ve not heard many complains except from people who are resistant to change. Folks who really need another battery can suffice for the hour-long charge time while plugged into something like a HyperMac battery. I also wish it had a real microphone port, but how often do I actually use a microphone? Never. The built-in mic is sufficient for almost everything I’d ever use it for. I’m also not too hot about the lack of a DVI or HDMI port and a mini-Displayport instead, but it’s another data-driven design decision and technically Displayport is a better standard for video. I ordered an adapter from Amazon; it’ll arrive this week.

Software. Mac OS X isn’t new to me. I used 10.5 on Jon’s Macbook when I borrowed it for a few months last year, and used 10.1 back in high school. It’s not a huge adjustment for me, so I’ll not go over such nuances. However, there are a few things I must highlight, primarily so that Linux folks like myself can mirror these features in Ubuntu, Fedora, and the like.

Time Machine is indispensible. I configured Time Machine to work with my QNAP NAS and it backs up regularly. The whole system! Efficiently! Recoverably! With an excellent interface for both setup and browsing and recovery. rdiff-backup pulls this off on Linux, but there’s no “don’t make me thing” GUI for it like there is for Time Machine.

Drag-and-drop installation of programs has always been one of my favorite things about OSX. No complicated installer program with click-through EULAs, no broken packages or forced upgrades. Sure, the packages are larger because of universal binaries and statically linked libraries, but I’d rather take up another 10 MB if it means I can simply drop an icon in a directory to install it, or move it to the recycle bin to remove it. I’ve been using iUseThis to track my used programs and combining it with AppFresh for version updates.

OSX is just Unix-y enough for a lot of the stuff I do. MacPorts gives me access to a lot of utilities, especially Synergy, which allows me to use the mouse and keyboard of one computer on another via a network connection. I’ve also used it for up-to-date Python and other scripting and development tools. I use Visor to give me a drop-down, Quake-style terminal in which I do lots of command line stuff, primarily via an SSH connection to one of my many Linux computers.

Perhaps one of the most care-free benefits of OSX for me is painless hibernate, sleep, and suspend. I can shut the lid and forget about it. I’ve rebooted the Mac maybe thrice in the month I’ve had it (outside of OSX updates). I’ve never seen Linux or Windows hibernate/suspend working this well on any hardware.

Downsides? There aren’t many. Sometimes I get frustrated when I can’t find an OSX analogue for a Linux program I’ve used. I have yet to find a decent microblogging client which I like as much as Gwibber on Linux. Despite being written in the highly-portable Python language, Gwibber depends on a few things that OSX just doesn’t provide. I’ve tried Tweetdeck, Nambu, Spry, and a host of others, but just can’t find the feature set I want (eveything most clients have, plus Identica, Facebook, and Flickr plugins). Twirl comes the closest, so I’ve been using it. Eventbox is showing promise as it becomes Socialite, but I’ve yet to actually see it in action.

I’ll eventually get around to trying out Virtualbox‘s 3D acceleration for some Windows games, or Wine and WineBottler for some others.

A major problem I have with my OS choices is that I like to tinker. OSX gives me the freedom to tinker with a lot of things, but its defaults suffice for almost everything. I think it’ll be more difficult for me to screw up OSX than it is for me to screw up Linux or Windows.

TL;DR summary:

I’m pleased with my purchase and haven’t had the buyer’s remorse I’ve had sometimes when making such a giant purchase. The MacBook Pro laptop was designed with both low-level and power users in mind, and I highly appreciate it. It’s just enough to not be too much.

Wither MacBook Pro, or not?

For some time, I’ve been considering buying a new laptop computer. I’ve been primarily considering a 13″ MacBook Pro with a 2.53 GHz Core 2 Duo processor, 4 GB of RAM, a 250 GB hard drive, and all of the fixins that come with it. I’d be adding only the Apple Remote and possibly the AppleCare extended warranty.

Why a Mac? Primarily, freedom of choice. If I buy a standard Windows, Linux, or OS-less computer, it’s unlikely that it will run Mac OS X as a Hackintosh. Mac laptops will run Mac OS X, Windows, and (Ubuntu) Linux. Running all three OSes gives me the widest choice of what tool I want to use for a particular task. I imagine that I’ll be using Mac OS X most of the time, switching to Windows for gaming on the go, and using Ubuntu in a VirtualBox, VMWare, or Parallels virtual machine when I need my Linux fix. I’m a software developer, so having access to the emerging mobile market (iPhone development with Xcode, Android development with Eclipse) as well as the established markets (system and web development) is important.

I’m a desktop Ubuntu user and prefer it for my day-to-day usage. I’m open to the idea of seeing what Mac OS X has to offer, but I’ll still have my desktop around for normal usage. I’ve been without a regular laptop for nearly 8 months (been using my XO every now and then), and I hadn’t really missed it until I started working at Vivísimo. It could be peer pressure (I’d estimate that half of the company uses Macs for development, system and web), or it could be seeing a lot of people very happy with their choice.

There’s also a bit of nostalgia in going back to Mac. I used Mac OS from 7.0 until 9.0, then briefly used OS X 10.1 at the end of high school, followed by some OS X 10.5 on a 13″ MacBook earlier this year.

Also, I compared the hardware, and for similar specs, the MacBook is only $100-$200 more compared to most offerings from MSI, ASUS, Dell, Lenovo, and HP at NewEgg, Amazon, and the like. This is a sizeable but understandable difference for the quality of hardware and, most of all, quality of customer support.

The biggest problem for me is simply figuring out where to buy it. I’m cautiously arranging for this purchase in my finances, and I think I’ll be ready before the end of September. I made this chart to show potential places I could purchase it.

MacBook Pro 13″ 2.53 GHz (MB991LL/A)

stock + remote + applecare
Location Price w/o AC Price with AC
Apple (new) $1518 $1767
Apple (edu) $1418 $1601
Apple (refurb) $1319 $1569
Buy.com $1518 $1767
Amazon $1494 $1680
MacMall * $1412 $1662
  • AppleCare for this can be had on eBay for $124. There are likely other auctions, as well.
  • I’m miffed I missed the iPod Touch for Students deal. Could have used/sold it for $200.

The cheapest option seems to be Apple refurbished plus the $124 AppleCare plan from eBay. I’m also considering the MacMall sans AppleCare, as it includes Parallels for free after rebate. Currently, I see it like this: Apple (refurb) > MacMall > Apple (edu) > Amazon > Apple (new) > Buy.com. I have no qualms about refurbished things–they’re good as new most of the time, and I’ll have a hard shell on this within a month of purchasing it.

I’m wary of AppleCare, though, but I see its usefulness. I got a five year warranty on my Dell monitor in 2006 and I’ve used it three times already. I plan to replace the 250 GB hard drive which comes with the MBP 13″ with a 128 GB SSD I can get on the super cheap. I don’t really have a need for a ton of hard drive space, even with three OSes installed. I can stream my music, and my pictures will remain on my desktop. I have a VPN into my FiOS-connected apartment, so remotely accessing things on my NAS or desktop wouldn’t be an issue. I’d see faster boots and faster loads, plus some battery life savings.

The downside–the primary reason I mention this–is that, if I mess up when installing the SSD (unlikely), I void the warranty. An ill-informed Apple Genius tried to convince me that simply opening the back voids the warranty, but he is sorely mistaken. Replacing the insides of a MacBook Pro does not void the warranty based on the simple action of replacing them. One must really screw up something and Apple must prove that the replacement screwed up other things (hard to prove!).

I’ll likely up the memory when DDR3 prices come down, too.

So, Internet friends, readers, countrymen, I ask you this: talk me out of this, or talk me into it. I need a decently powered, long life battery-ed, light gaming capable, webcam having, OSX/Windows/Ubuntu capable laptop for cheaper than the above. Bonus points for benefits and drawbacks of AppleCare, as most folks to whom I’ve spoken haven’t gotten it based on cost alone.

Keep the fanboyism to a minimum, please, and do be constructively critical.

HOWTO: Add CACert Root Certificates to Chromium

CACert Logo + Chromium Logo

I’ve recently begun using Chromium for most of my day-to-day browsing tasks. It recently gained support for Adobe Flash and other plugins. I’ll be excited to when it picks up Java, as well—then I’ll have little reason to use Firefox except for development. I’ve enjoyed watching the daily builds go from a virtually a crash-on-click shell to the wonderfully quick tool I’m using right now to type this post.

However, I’m a CACert user (and assurer!) and have several sites and/or utilities which rely on CACert-issued free SSL certificates.

Chromium on Linux doesn’t have its own certificate management system, but instead uses Mozilla’s Network Security Services (NSS) Public Key Infrastructure (PKI). The LinuxCertManagement article on Chromium’s wiki gives some instructions on how to import certificates.

I’ve reproduced these instructions for Ubuntu with some of my own additions below.

sudo apt-get install libnss3-tools
wget http://www.cacert.org/certs/root.crt
wget http://www.cacert.org/certs/class3.crt
certutil -d sql:$HOME/.pki/nssdb -A -t "TCu,Cu,Tuw" -n "CACert Class 1 Root Certificate" -i root.crt
certutil -d sql:$HOME/.pki/nssdb -A -t "TCu,Cu,Tuw" -n "CACert Class 3 Root Certificate" -i class3.crt
rm root.crt class3.crt

You’ll now be able to log in to sites using CACert SSL certificates without needing to click through the red screen of hate.

Note that as of the daily build for August 11, 2009, it is not yet possible to accept and/or present a certificate for use with certificate login. Hopefully, this won’t be too far off. Fortunately, I don’t use this login style very often.

HOWTO: Install Gears on 64-bit Linux

I recently noticed that WordPress added support for Gears, as have a few other sites, including ZohoOffice and MySpace.

Gears is essentially offline storage for rich Internet application data. GoogleOS has a list of Gears-enabled sites/applications. Read more on Gears at Wikipedia.

Much to my dismay, the only officially-available Firefox extension supports only 32-bit operating systems. I’m a 64-bit Linux user. Specifically, I use Ubuntu 8.10 Intrepid with my ASUS M3A32-MVP motherboard and 8 GB of DDR2 RAM (4GB of Geil and 4 GB of OCZ).

Fortunately, Gears is an open source project and one intrepid developer made a Gears Firefox extension package which supports 64-bit Linux.

I downloaded and installed the package by dragging and dropping it onto the Firefox Addons dialog, then restarting Firefox when prompted. I archived the Gears extension package on my own site in the event the package is suddenly no longer available. Be sure to check for new versions though, since this package may be out of date if you’re reading this post more than a few days after publication (though unlikely).

Huzzah for open source.

Adobe releases Flash 10 beta for Windows, Mac OS X, and Linux

Adobe released today beta packages for the upcoming version of its Flash player. The Flash 10 packages are available for download at Adobe Labs. Users have reported a serious speed increase and far less CPU usage, as much a 20% less. Check out the Flash 10 release notes for more information.

There is an RPM and a tar.gz for we Linux folks. Red Hat and Fedora users are fine with the RPM, but Ubuntu users will have a little more to do. Download the Flash 10 tar.gz, then continue.

Iinstalling it is easy. If you’re running 32-bit Ubuntu, simply make sure that flashplugin-nonfree is installed and copy the libflashplayer.so file in the tar.gz to .mozilla/plugins or to /usr/lib/flashplugin-nonfree. If you’re using 64-bit Ubuntu like I am, then you’ll have to do the latter and run nspluginwrapper -i /usr/lib/flashplugin-nonfree/libflashplayer.so to relink everything.

This release is on the heels of the recent announcement of the Open Screen Project, a project aims to put Flash on basically everything by opening up many of the workings of the proprietary format. To begin, Adobe will “[lift] restrictions on use of the SWF and FLV/F4V specifications, publish the device porting layer APIs for Adobe Flash Player, publish the Adobe Flash Cast protocol and the AMF protocol for robust data services, and [lift] licensing fees, making next major releases of Adobe Flash Player and Adobe AIR for devices free.”

HOWTO Add btnx repository to sources

Olli Salonen made a PPA on Launchpad yesterday, following my request for btnx in a PPA.

There are two ways to get the repository configured: the GUI way and the command line way. I think the command line way is a little quicker, but I’ll give you both. Remember, if you are not running Hardy, you will need to change all instances of hardy throughout these instructions to feisty or gutsy, whichever you are using. Olli did packages for all three versions. If you don’t know which you’re running, go to System > About Ubuntu and read the window that spawns. Your version will be in there somewhere.

First the command line way.

echo -e "deb http://ppa.launchpad.net/daou/ubuntu hardy main\ndeb-src http://ppa.launchpad.net/daou/ubuntu hardy main" | sudo tee /etc/apt/sources.list.d/btnx.list
sudo apt-get update && sudo apt-get install btnx btnx-config

Then, I’d recommend using btnx-config from Applications > System Tools > btnx to configure the tool. You could also do gksu btnx-config at the command line to bring it up.

Next, the GUI way.

If you already have btnx installed, go to System > Administration > Software Sources. Go to the Third Party Software tab. Click +Add and paste the line for each of the two APT lines: deb http://ppa.launchpad.net/daou/ubuntu hardy main and deb-src http://ppa.launchpad.net/daou/ubuntu hardy main. When you click Close, it will ask if you want to reload the sources. Confirm the reload.

If you do not already have btnx installed, go to System > Administration > Synaptic Package Manager. Go to Settings > Repositories and follow the above instructions. One the list finishes reloading, Search for “btnx” and the two packages will be shown in the main screen. Click each to mark it for installation, then click Apply. When it’s finished, you can access btnx-config through Applications > System Tools > btnx from the top panel.

Check out my prior updates on btnx for more information, including how to compile btnx and btnx-config from source.

Update on btnx HOWTO

Olli Salonen, author of btnx, has released new versions of btnx and btnx-config, along with debs for Ubuntu 64-bit. While they’ve been officially tested on Gutsy, I’m using them on Hardy without a problem. Now, Olli or someone just needs to get these into a PPA on Launchpad or get them added to the repos for 8.04.1.

Se vi parolas esperantan linvgon, bonvolu helpas traduki btnx-on ĉe Launchpad! Iru kaj traduku btnx-config! Mi komencis traduki, sed ĝi estas granda projekto por unu persono.

I originally posted instructions on how to compile from source in the article HOWTO Install btnx for better mouse control in Ubuntu Hardy. If you want to continue to compile it yourself, simply switch to the newest tag using subversion and recompile.

cd btnx-0.4.9
svn sw http://svn.ollisalonen.com/btnx/tags/btnx-0.4.10/
./configure && make && sudo make install
cd ../btnx-config-0.4.8
svn sw http://svn.ollisalonen.com/btnx-config/tags/btnx-config-0.4.9/
./configure && make && sudo make install

Now might be a good time to rename those directories, dropping the version numbers, or check out the source to a different directory.