Wa-hey-hey-ve, goo-oodbye!
Well it looks like the Mayans really were predicting 2012 as the end of the world... in which Google Wave existed. It must be sad for the original engineering team who dreamed it up, but it's good that they're able to learn from it, close it, and put that new experience somewhere else.
Remember kids, the lord Science teaches that there is no such thing as "failure", it's just new data!
Deus Ex: Human Revolution Camera/Turret Terminal Wallpapers
I asked on facebook about getting proper versions of these but they haven't responded, so here's some I cropped from screenshots. Hopefully they'll release real ones, but these actually don't look too bad even set on "stretch to fit"!
*NOTE* Not licensed, just fan-made.
UPDATE: The versions I have are just made from screenshots and thus will work as simple jpeg's on even the tinyiest netbook/tablet, however if you're looking for something really impressive and serious, check out this post: http://forums.eidosgames.com/showthread.php?t=121782

Camera Terminal (right click -> save as)

Micro Project: Warcraft FAQs
Today I've taken a break from being so busy and ended up playing a bit of World of Warcraft again. I ended up sitting in the middle of the capital city and watching the chat going on between other players. I noticed that there's a lot of players with little questions that are just common knowledge, and may not be too easy to find answers for on sites like wowhead. So I closed WoW and made a stack-overflow / yahoo answers style site: www.warcraftfaq.com
By the way, it's using the "Q&A" Premium plugin available here. I'll probably be using it again, it was pretty easy to use.
Standing Desk

My home office got an upgrade today with the addition of a new "Standing" desk. In a nutshell, the idea is that standing up while you're working on a computer can prevent many of the common ailments that plague a geek, or any office worker type really. There's claims that you can also burn more calories than sitting all day, which helps offset the mocha's I love so much, and also I'm hoping to build more strength in my dodgy knee I pwned at kung-fu training a while back. I see the standing desk phenomenon in the same kind of light that I see any hippie-quick-fix type thing and that is to take it with a grain of salt, but I wanted to give it a really good go before I passed any judgement. People say it works for them, maybe I'll like it...
Get the first and last days of last month in PHP
Here's a really simple way to get the first and last dates of last month in PHP using strtotime. This'll also format the dates correctly to use in comparisons with MySQL 'TIMESTAMP' fields! Nifty eh?
$lastmonth = strtotime("last month");
$fromdate = date('Ym01 00:00:00',$lastmonth);
$todate = date('Ymt 23:59:59',$lastmonth);
echo($fromdate.' to '.$todate);
Quickmark – Link Saver Gadget for iGoogle & Gmail
Hey hey, I'm still here, just busy as usual. I've got another quick little Google gadget that I wrote to keep track of links that I want to check out but don't have time when I find them to give them any justice. Since I always have a Gmail window open regardless of being home or at work I wanted something that was persistent across both, and in my face enough for me to remember to click on them.
True to style, I didn't look for one that already existed, where's the fun in that? I wrote one myself that works for me!
Essentially, Quickmark is a very cut down version of a task list that builds a list of whatever you've typed in the textbox below. It can be just little text strings, or if it starts with "http" it will treat it as a link when it displays in the list. To remove an item, click the "X" on the left of it.
As with most Google gadgets, it will save persistent data to your Google profile so it's private but safe and will persist across computers. The only thing with this one though is that it uses TWO SEPARATE LISTS if you install it on both iGoogle and Gmail - one set of data for each domain. I call it a feature, because iGoogle will allow much bigger lists anyway and you don't want them being squished into the gmail sidebar.
To add it to iGoogle and try it out, click this thing:

If you want it to show up on the Gmail sidebar you'll need to enable the "Gadgets from URL" Labs feature, then add this URL as a gadget:
http://quickmark-gadget.googlecode.com/svn/trunk/quickmark.xml
(Updated 5/5/2011 with Google Code versions of the XML files)
Enjoy!
- K