Best Christmas Decoration Ever

Make sure to read story at bottom… Fantastic! “Good news is that I truly out did myself this year with my Christmas  decorations. The bad news is that I had to take him down after 2 days. I had more people come screaming up to my house than ever. Great… Continue reading

Apple to replace magsafe adapters even out-of-warranty

After doing some researching and finding videos showing how to re-solder the cable and stuff, I stumble upon this page: http://support.apple.com/kb/TS1713?viewlocale=en_US And thought it was worth a shot going to the apple store here in Pasadena. So I made an appointment and in about 15 minutes I got a new… Continue reading

Redirecting to another page when Flash is not installed

For all you that need to redirect users to another page if they don’t have Flash installed and use swfobject, just drop this code and you’re good to go: var playerVersion = swfobject.getFlashPlayerVersion(); // returns a JavaScript object var majorVersion = playerVersion.major; // access the major, minor and release version… Continue reading

Solving Firefox 3.5.5 slow response and high CPU usage

Tonight I got fed up of Firefox 3.5.x eating up CPU cycles and not being responsive…. So I decided to google that to see what other have experienced and tried. After uninstalling Flash (just to be sure as it seems it was not guilty this time 🙂 ), I tried… Continue reading

A base controller using Kohana v3.0.3

Here’s how I created a base controller for websites I develop using Kohana v3 1. create a website config file ( application/config/website.php ): <?php defined(‘SYSPATH’) OR die(‘No Direct Script Access’); return array( ‘site_name’ => ‘Example site’,); <?php defined(‘SYSPATH’) OR die(‘No Direct Script Access’); return array( ‘site_name’ => ‘Example site’, );… Continue reading

Removing “index.php” from kohana v3 urls

Now that you have Kohana v3 installed, let’s remove “index.php” from all the URLs to help our SEO capabilities. Rename the file “example.htaccess” to “.htaccess” or merge its contents if you already have one in place. You should change the line: RewriteBase /kohana to point to the folder where your… Continue reading