You've stumbled across the archive of the blog posts I wrote back in 2014 and prior. Feel free to peruse, through everything from code snippets that never made it to GitHub, to random ramblings about my passion for technology.

After a rather interesting StackOverflow question, I got thinking about different types of efficiency in Java and, consequently, Android.

Continue reading...

Based on a question I answered on StackOverflow, I thought it would be a good idea to put this out in public for everyone to see.

This is an example of PasswordTransformationMethod that, in a password field, would display a paradigmic asterisk *, instead of the generic dot •.

Continue reading...

A basic Java class that allows storage of multiple values per key. It uses a HashMap on top of a List to dictate the organization of the data.

Continue reading...