• 1 min read
  • I realized that I had my Drupal permissions set wrong and users who were not registered could not vote (I have also disabled user registration for now). I fixed the settings so if you cannot see the voting options, just refresh the page and they should appear on bottom left side of the page. Please let me know who your favorite motherboard manufacturer is!

  • 2 min read
  • GIMP is a great program, but I always found it was a bit annoying to use on OS X (Leopard). First of all, whenever X11 starts, a new xterm window along with it. Besides that, when switching windows you need two clicks before GIMP (or any other program, really) registers the click and actually does something - the first click just switches the active window. Seeing as GIMP has it's tool palette in a separate window, this quickly became extremely irritating.

    After a quick google, I found many sources saying that to disable xterm, I needed to copy /private/etc/X11/xinit/xinitrc to ~/.xinitrc and edit out the "xterm &" line inside. That's easy enough, but the only problem is that on Leopard with the latest X11 from XQuartz (2.3.2.1 at the time of writing) installed, /private/etc/X11/xinit/xinitrc doesn't exist! Although /usr/X11/lib/X11/xinit/xinitrc does, editing out all references to xterm doesn't work anyways. Instead, the app_to_run preference needs to be modified:

    defaults write org.x.X11 app_to_run /usr/bin/true

    /usr/bin/true is a command that does nothing (literally), so this essentially tells X11 to autostart nothing. I moved onto my next problem and found that to solve the two-clicks problem, the solution was to enable the "focus follows mouse" option like this:

    defaults write org.x.x11 FocusFollowsMouse -string YES

    I've been using that for a few months and I find it's still pretty annoying, but it's still less annoying than having to click twice on everything. Fortunately, I recently discovered the "wm_click_through" preference which is exactly what I had been looking for all along:

    defaults write org.x.x11 FocusFollowsMouse -string NO
    defaults write org.x.X11 wm_click_through -bool true

    Now X11's window focus is back to normal, and clicking on inactive windows works as expected; it switches the window and activates the widget you clicked on. Problems solved!

  • 1 min read
  • Apart from having to design a new theme, my blog version 2 is up & running! Hope you enjoy it.

    I'll be porting over the content from my previous setup into this one, but in the mean time you can access the old setup here: www.firewing1.com/v1

    Update: The old content has been migrated, so the Joomla install at www.firewing1.com/v1 is now offline.

  • 2 min read
  • The new facebook terms of use are just unbelievable. I first saw the story on Slashdot, but it's all over the web - Facebook owns everything you post, forever. Here's an excerpt from the official Facebook terms of use page:

    You hereby grant Facebook an irrevocable, perpetual, non-exclusive, transferable, fully paid,
    worldwide license (with the right to sublicense) to (a) use, copy, publish, stream, store, retain,
    publicly perform or display, transmit, scan, reformat, modify, edit, frame, translate, excerpt,
    adapt, create derivative works and distribute (through multiple tiers), any User Content you
    (i) Post on or in connection with the Facebook Service or the promotion thereof subject only to
    your privacy settings or (ii) enable a user to Post, including by offering a Share Link on your
    website and (b) to use your name, likeness and image for any purpose, including commercial or
    advertising, each of (a) and (b) on or in connection with the Facebook Service or the promotion
    thereof. You represent and warrant that you have all rights and permissions to grant the foregoing
    licenses.

    So essentially, "I hereby grant Facebook the right to do anything they'd like with my pictures, comments and other media that I publish, including sublicensing that media, selling it, publishing it, or modifying it without having to compensate me." Nice. I'm not going to use Facebook until this is sorted out.

    Please, join this group to show your concern. In the mean time, I've restricted my privacy settings - I recommend you do this too. Just click the Settings button at the top of your profile and remove all applications, disable Beacon and similar services as well as restrict everything to "Friends Only".

  • 1 min read
  • timein day= 1d * 24h * 60m * 60s / (age/10)