Monthly Archives: September 2008

Server Room Cabling: The Best and The Worst View Comments

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 [...]

Adding a Module Position in a Joomla 1.5 Template View Comments

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 [...]

A Simple Java TCP Server and TCP Client View Comments

Following up on my previous post, we also had to demonstrate a sample Java TCP Server and TCP Client. The code footprint pretty small and it gives 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 [...]

A Simple Java UDP Server and UDP Client View Comments

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. The code size is very small and give you a good idea about how a UDP Server opens up a port, and then the UDP Client sends or [...]

Last Modified Date or Time on WordPress Template Page View Comments

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: And via Ardamis’s Blog, there is a great way [...]