1. JustSit 0.2.2 is Out

    2009-06-27

    Just uploaded, you can download the APK here. I think I’m going to release this one on the Android Market as well.

    I fixed an outstanding screen rotation bug, made it so that vibrate mode applies to both the bell and the ringtone, and upgraded to the Android 1.5 (Cupcake) API.

  2. Back to Windows

    2009-04-01

    After many years of using and promoting Linux, and more recently the Mac, I’m giving up the fight and going back to using Windows. Perhaps ‘back’ is the wrong word, since I’ll be switching to Vista. I’ve gotten tired of not having the device drivers I need, having to research every accessory I buy to see whether it will work on the Mac or in Linux, futzing for hours with arcane commands and configuration files just to get my webcam to take a picture.

    I’m also sick of missing out on current events, like the Conficker worm, which somehow made the top story on Google News last night. Top story! I was feeling really left out. Once I have windows installed on my Mac Pro, though, I should be able to join the Conficker party in no time.

    Sure, it’ll be difficult to do my work, since it relies largely on UNIX-based software, but hey, that’s what Cygwin is for, right? And PuTTY. Got any recommended software for me? It’s been a while since I was a full-time Windows user. A Quicksilver replacement would be particularly welcome. And send me a copy of Conficker if you have it — thanks.

  3. K9

    2008-11-03

    So, you haven’t heard much from me in a while. The little one has been using up great amounts of my time and attention. (And she’s totally worth it).

    However, I’m finally getting back into the swing of things with work, around the house, etc. I’ve started roasting my own coffee, which is great, and Amanda got me an espresso machine that should be arriving within hours in which to use my freshly-roasted beans.

    The thing that has been using up the greatest amount of my “free” time (whatever that means these days) has been hacking on an improved email client for the new “Google Phone”, the G1. The included email client was utter crap, to put it kindly, not even as sophisticated as the client on my little Razr2 v8 flip phone. However, someone forked the open-source email client that came with the device into a project called K-9. The name is derived from that of an old UNIX-y email client called mutt, the idea being that K-9 (canine) is a sort of androidy name for a dog, I guess.

    Anyway, the client has been rapidly improving. I haven’t done much — just a few bug fixes here and there, and possibly the addition of some bugs (hope not) — but several people are working on it. It’s already getting rave reviews in the Android market, particularly since people have only the crappy built-in client an an alternative. Heh. I don’t know Java, really, but that hasn’t been stopping me. It’s not that different from Python and C++. Anyway, if you have a G1, check it out. We’re improving performance, fixing bugs, and adding features all of the time.

  4. Amazon MP3 Store Has Linux Downloader

    2008-05-09

    Amazon.com finally has a Linux downloader for use with their MP3 store (mentioned previously here)! You can get it (for a number of different distributions) here.

  5. Calculating Large Numbers in C

    2008-04-03

    As a corollary to my last post, it’s important to be careful when calculating file seek positions (if you’re skipping around that way). It turns out it’s necessary to cast all of the numbers being used when calculating a seek position to a large integer, such as unsigned long int.

    By the way, Rob had some helpful comments on that last post. (Thanks Rob!)