Monthly Archives: September 2008

Server Room Cabling: The Best and The Worst 2

These images been around the web before, but I just rediscovered some examples of both good server room cabling, and bad datacenter cabling.
Data center cabling is really an art. It takes some time to get the network, power,and other cabling organized but worth it in the end. The benefits are more than aesthetic, good cabling [...]

Adding a Module Position in a Joomla 1.5 Template 1

Adding a module position in a Joomla 1.5 template is not as easy as it was in the 1.0 templates. It is a two step process:
1. Add code to template PHP file.
For example, this would go in the index.php file in the template folder – or if you are adding it in an include file.
<?php [...]

A Simple Java TCP Server and TCP Client 10

Following up on my previous post, we also had to demonstrate a sample Java TCP Server and TCP Client. They are pretty small and give you a good idea about how a TDP Server opens up a port, and then the TCP Client sends or receives data from that port.
This is a good page on [...]

A Simple Java UDP Server and UDP Client 13

For a class I am taking, we are testing out a simple UDP Server and UDP Client to demonstrate what each one does and how sockets work. They are pretty small and give you a good idea about how a UDP Server opens up a port, and then the UDP Client sends or receives data [...]

Last Modified Date or Time on Wordpress Template Page 8

I couldn’t readily find an answer to this question via the google. So here it is: If you want to insert a ‘last updated’ or ‘last modified’ date on your wordpress page, then there is a simple bit of PHP code you can use for this:
<?php the_modified_time(‘F jS, Y’);?>
And via Ardamis’s Blog, there is a [...]