Tag Archives: code

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

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