Category Archives: Computers & Internet

Starting a blog vs starting a forum

I’m a bit addicted to starting web sites. While WordPress is my go to software, I’ve been leaning towards forum software recently. While I like the idea of blogging because I can put pretty much whatever I want online, I … Continue reading

Posted in Blogging | Tagged , , | Leave a comment

Video: Cabling a new data center

The way I keep the cables under my desk organized is to just stuff them up and under where I can’t see ‘em. This video from Softlayer shows how it’s supposed to be done. I guess if you’re in the … Continue reading

Posted in Computers & Internet | Leave a comment

UNC path vs mapped drive letter

Bit of a random question for today. Is there a difference, speed or otherwise, in opening files through a mapped drive letter compared to a UNC path? When I work on a web project I open the files in  NetBeans … Continue reading

Posted in Computers & Internet | Leave a comment

Liking Vanilla Forums so far

Finished up converting another site of mine over from WordPress to a Vanilla Forum. Thought the potential for others to start threads was worth the move. Not that I’m expecting much, but it’s worth a shot. Turns out it works … Continue reading

Posted in Computers & Internet | Leave a comment

PHP function to reset instance variables

Quick snippet to reset all public instance variables inside a PHP class back to their original values. Can’t take credit for the code though. Found it on a website somewhere and have used it in pretty much every class I … Continue reading

Posted in Programming | Tagged , , | Leave a comment

Map of the Japan earthquakes

I knew about the aftershocks from an earthquake, but I didn’t realize there were so many. The first time I went to the following site there were 555 listed. About 5 minutes later when I went back to get the … Continue reading

Posted in Web Links | Tagged , , | Leave a comment

How to close all projects in NetBeans

File this under “duh.” I typically have several projects open in NetBeans and occasionally go through and close them all to clean up a little.  Turns out if you shift click on the projects you want closed there’s a new item on … Continue reading

Posted in Programming | Tagged | Leave a comment

Just finished up a couple of WordPress plugins

Needed a break from a larger web app I’m working on and this weekend kicked out a couple of WordPress plugins that I’ve had on my idea file for a while now. The first is called rTwit and lets you … Continue reading

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

What if classic video games had an extra hard mode?

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

JavaScript version of PHP __FILE__ or __DIR__

This is one of those issues I keep coming back to.  I need a way to get the path of the current JavaScript file.  Something analogous to the PHP __DIR__ constant or dirname(__FILE__). Found something close on Stack Overflow.  The … Continue reading

Posted in Programming | Tagged , , | 2 Comments