ListUtils.iterate()
Ever have one of those objects that want to give you an iterator and don’t have a method for getting it as a list? Well created another new method for…
Ever have one of those objects that want to give you an iterator and don’t have a method for getting it as a list? Well created another new method for…
In today’s times, the software is always handling personal information. As developers, we have to fight the battle between logging and seeing that information when we need to, and hiding…
Over the years I have done a number of code reviews there have been a number of common mistakes that I have found. So here are my Java tips a…
You may or may not find this useful. I work with a my GIT repositories all at the same level. I like to keep them in sync. However going to…
Sometimes an application will have a large number of Strings. Due to memory we certainly do not want to keep multiple instances of duplicate strings in memory. A string cache…
Just about every project I need to have at least one loading spinner to indicate to the user that data is being loaded and to wait. My recent project I…
I was recently building a set of pages, that I needed to be able to switch what was displayed based on whether I was on a Desktop or Mobile device.…