Tag Archives: code

The State of Glovebox

First, I’ll show off the logo for Glovebox:

Second, Glovebox development has stalled a little bit over the last few weeks due to college starting up again for me. So, I’ll just give a quick overview over whats changed since …

Posted in Other | Tagged , , , , , , , , , , , | Leave a comment

The GPL’d Ext

As you are likely well aware, the Ext javascript library changed it’s license to the GPL. Instead of being reasonable people and choosing the LGPL, they want to enforce the spread of open source throughout the cloud. Sounds like …

Posted in Other | Tagged , , , , , , , , | Leave a comment

How They Do It

Earlier today, BoingBoing posted a link to a list of how different people…you know, do it ;) .

It took about an hour or two, but I created an AJAX version of the same list: http://wm161.net/labs/how-they-do-it/. People can add items to …

Posted in Other | Tagged , , , , , | Leave a comment

PHP Automatic Bug Tracker

I’ve hacked together a small but functional bug tracker for my website. My common.php has some code in it now to use my new BugTracker class to report PHP errors and uncaught exceptions.

Well, at least exceptions. I apparently forgot …

Posted in Other | Tagged , , , | Leave a comment

My WPWrapper class

In my previous post, I mentioned that I had a really simple way of using my wordpress themes with regular PHP scripts. Now, according to the Codex, you are supposed to use this method:

include ‘wp-blog-header.php’;
get_header();
/* Do some code */
get_sidebar();
get_footer();

That …

Posted in Other | Tagged , , , , , , | Leave a comment