-
Recent Posts
Blogroll
Categories
- Application Tips (2)
- CSS (6)
- Database (10)
- DHTML (2)
- DOS & DOS Scripting (2)
- Graphics (3)
- iPhone (1)
- JavaScript (3)
- Joomla! (11)
- Linux (2)
- MySQL (25)
- Networking (2)
- Operating Systems (5)
- PHP (24)
- Resources (2)
- Snippet (1)
- Uncategorized (38)
- Vista (2)
- Web Development (18)
- WordPress (12)
Tutorius Archives
- January 2012 (1)
- December 2011 (1)
- November 2011 (2)
- October 2011 (4)
- September 2011 (2)
- March 2011 (3)
- December 2010 (1)
- November 2010 (2)
- September 2010 (2)
- August 2010 (5)
- June 2010 (5)
- May 2010 (8)
- April 2010 (6)
- March 2010 (5)
- January 2010 (3)
- December 2009 (2)
- November 2009 (11)
- October 2009 (12)
- September 2009 (3)
- August 2009 (8)
- July 2009 (9)
- June 2009 (4)
- May 2009 (1)
- April 2009 (1)
- February 2009 (3)
- January 2009 (3)
- December 2008 (1)
- November 2008 (3)
- October 2008 (3)
- September 2008 (5)
- August 2008 (7)
- June 2008 (3)
- March 2008 (3)
- February 2008 (1)
- January 2008 (1)
- November 2007 (3)
Operating Systems Archive
-
Strip the extension off of a filename in PHP
Posted on January 17, 2009 | No CommentsHere's a useful function to strip the extension off of a filename. if($ext !== false) { $name = substr($name, 0, -strlen($ext)); } return $name; -
Setting up a DNS Round Robin in Windows
Posted on December 4, 2008 | No CommentsA round robin lets you load balance by pointing the same host name to multiple servers in DNS. As long as round robin service is enabled in the DNS server,... -
Just-In-Time debugger errors after uninstalling Visual Studio
Posted on August 7, 2008 | No CommentsUninstalling Visual Studio can leave your system struggling with Just-In-Time debugger errors that can prevent applications from starting. To resolve it, try deleting the following registry keys. The usual warnings... -
Find out when Windows was installed on a machine
Posted on June 17, 2008 | No CommentsTo tell when the operating was installed on your Windows XP/2003 system, go to a command prompt (Start – Run – "cmd" – OK), then enter the following command; systeminfo... -
Control Panel Applets – Command Line options
Posted on January 6, 2008 | No CommentsMany Windows users know that control panel applets can be called from the Run line. For example, using the syntax below will call up the Regional and Language Options applet....