Java - Generating a MD5 hash

Word of warning: MD5 hashes are ONE-WAY; you cannot convert a hash back into it’s previous form. You might be thinking that this would be great for storing...

May 6, 2014 2 minute read

Node.js - Simple server example

Node.js is a platform that allows for the creation of server-side applications written in JavaScript. In this example we will create a basic server that will listen on...

Apr 20, 2014 5 minute read

Java - Get date and time

There are multiple ways to get the date and time in Java. This is how you get the current date and time using Date and Apr 5, 2014 4 minute read