Continuing my series on advanced classes that are handy to have around when needed. I have created the UnitOfTime. This class is used to convert a number of milliseconds over to a more understandable period of time. (more…)
Jenkins is ready to integrate into IFTTT! That's right while there is no Jenkins Channel setup, you can make use of the Maker Channel. This is a great way to integrate Jenkins into your IFTTT system. IFTTT Build Notifier 1.2 [ Website ] [ D…
Not very often do I need to take a number of bytes and convert them into the most appropriate measurement. This came up recently on a project and I thought it would be nice to just create a class to handle this for me. So I created UnitOfMe…
Well I was bored one night after creating the UnitOfMemory and decided what else could be useful in the future. I came up with a UnitOfDistance to convert distances over land. Miles v's kilometers and everything in between. The class was e…
Every get tired of converting from Dates to Calendars and then need to use SimpleDateFormat to output it as a String? How about parsing a string and getting a Date object? Personally after a single project that had several date time stamps…