Browse by Month RSS Feed
  • September 2010
  • August 2010
  • July 2010
  • May 2010
  • April 2010
  • March 2010

  • Flash Image Scroller UpdatedApril 22, 2007
    Filed under: Software @ 4:11 pm

    I just made a small upgrade to the Flash Image Scroller (now 1.3), which lets you control both the colour and opacity of the background squares behind the image thumbnails. Up ’til now, the background was always set to #cccccc (grey) and 50% opacity. Thanks to the opacity level, the grey usually fit quite nicely with whatever colour you chose for the background colour of the scroller itself. Still, this is a nice addition to add just a little more control.

    Thanks to Pascal for getting me to work on this. :)

    Comments (0)


    Montgomery Flea MarketApril 22, 2007
    Filed under: Life @ 12:18 pm

    If you haven’t seen this advert, I’d thoroughly recommend checking it out. Damn fine. Apparently it’s just like a mini-mall.

    If more adverts were like this, I’d seriously consider buying a TV.

    Comments (0)


    Filed under: Code, PHP @ 5:01 pm

    Sometimes UNIX timestamps can be easier to manage than MySQL datetimes. Here's a function from converting one to the other.

    function convert_datetime_to_timestamp($datetime)
    {
      list($date, $time) = explode(" ", $datetime);
      list($year, $month, $day) = explode("-", $date);
      list($hours, $minutes, $seconds) = explode(":", $time);

      return mktime($hours, $minutes, $seconds, $month, $day, $year);
    }

    Comments (0)


    Update: generatedata.comApril 12, 2007
    Filed under: Data Generator, Life, Software @ 8:24 am

    In a feeble attempt to avoid "real" work, I spent a delinquent evening playing around with my new domain generatedata.com - the future home of the data generator script. Here's a mockup of the site design.

    You may notice a certain familiarity. I decided what the heck, and re-used the templates for this site. I figured it looks pretty good and frankly I didn't want to spend a week coming up with a fresh face, when I could be doing something more productive, like making it work.

    You won't find anything on the site just yet. Before pushing it live, I want to add a couple of new features to the script first, namely:
    - an option to save your forms
    - integer increment column (1,2,3..., 1,5,10... etc)

    I won't fib, it probably won't be done soon. I accepted another registration site job for BP, so that comes first. Then the ol' Salvation Army gig comes after that. Ho hum.

    Comments (0)


    Filed under: Form Tools, Life @ 11:33 am

    FINALLY! I feel human enough to return to work. I've just come out of the nastiest flu I've ever had. It was a sneaky little bugger: it waited until it heard my immune system was on vacation then lunged at me. Now, almost 2 weeks later I feel noticeably better. This will give some indication of just how lucky I've been: with no exaggeration, that was the sickest I've been in my adult life. Thank heavens my company was so understanding about taking so much time off.

    So! I now have a zillion Form Tools posts and emails to respond to and a stack of work that's piled up. Open Translate, here I come...

    Form Tools 1.4.6 Private Beta

    Whoo-hoo! Released at last. I actually did all the work for this before I got sick, so I pretty much just had to finish a little documentation and prepare the zipfile. This is a VERY significant release. I re-factored a good deal of the code, added a very powerful new feature - submission filters - and updated the install / upgrade process. It's now in very good shape for the language pack release.

    Click here for the information about the beta.

    Comments (0)