Archive for the ‘Programming’ Category

Presenting Stock Rider :: Ski the Market

Tuesday, December 16th, 2008

Play Now Today is very special. After 150 hours of hard work and sleepless nights, I have released Stock Rider, a flash-based game where you ski real market data. This is my first big Flash piece and I am so happy with the results. It uses Box2D for Flash as ...

Ever had a problem with JavaScript’s setFullYear method in the Date object?

Monday, October 20th, 2008

Me too. While writing a JavaScript countdown timer the other day I ran into a very peculiar issue. Every time I refreshed the page, the countdown had 0 hours, 59 minutes, and 59 seconds remaining, regardless of the current time, but it had the correct number of days. To set the ...

Google Chrome: The installer encountered error 4.

Sunday, September 28th, 2008

I decided to give Google Chrome another chance today, hoping there would be an update to fix the scrolling issue I previously discovered. The following steps produce the following error message—if you can call it that. Using Google Chrome, navigate to http://www.google.com/chrome/ Click "Download Google ...

Finally: built-in idiot checking for YouTube comments!

Friday, September 26th, 2008

SourceNo related posts.

Launchy is Cheeky

Monday, September 22nd, 2008

I was reading Life Hacker's Best of the Best today and came across Launchy, a Windows application launcher, so I decided to check it out. I run NoScript at work for security purposes so I was greeted with the following image. And I quote: "This is where Ads would go, ...

Create a New New in Windows Vista

Thursday, August 21st, 2008

What? Creating a new new isn't useful to you, either? Microsoft...after over 15 years of GUI OSs I would expect better from you. Guess I'm just insane to keep buying your software time after time and expecting different results. No related posts.

Acronis Disk Director Suite 10.0 FTW!

Tuesday, July 15th, 2008

I upgraded my laptop hard drive from 160GB to 200GB. In the process I was left with a chunk of 40GB of unallocated space. For the past 4 months I've ignored this space because Windows Vista's built-in partition manager couldn't do anything with it due to Dell's crazy ...

My Heros

Monday, July 14th, 2008

These guys designed a Guitar Hero bot that uses photo diodes to sense when a note should be played. Genius. No related posts.

Gotcha of the Day

Monday, July 7th, 2008

So I'm trying to debug my PHP script and the error stays the same no matter what I add to the end. Hmm...let me check the PHP manual for trigger_error. It turns out that trigger_error automatically truncates messages to 1024 characters. That's not very helpful! Source: PHP Manual - trigger_error()No ...

Tired of TinyMCE Screwing Up Your Code?

Tuesday, June 17th, 2008

So was I. Luckily there is a handy configuration option that tells TinyMCE to leave your code alone: verify_html : false The resulting code should look something like this: tinyMCE.init({ theme: "advanced", mode: "exact", elements: "html", theme_advanced_toolbar_location: "top", verify_html: false }); Happy coding! SourceNo related posts.