-
Core Java
Java Compress/Decompress String/Data
Java provides the Deflater class for general purpose compression using the ZLIB compression library. It also provides the DeflaterOutputStream which…
Read More » -
Software Development
Project to test your programming skills
A Guessing Game – to become Full Scope/Stack Developer If you are wondering what would be a perfect project to…
Read More » -
Software Development
Myths and Facts About Programming
What’s this? A collection of common myths and facts (opinionated) about computer programming that I wish I knew in my…
Read More » -
Enterprise Java
Spring Boot – How to skip cache thyemeleaf template, js, css etc to bypass restarting the server everytime
The default template resolver registered by Spring Boot autoconfiguration for ThyemeLeaf is classpath based, meaning that it loads the templates…
Read More » -
Android Core
Android Reverse Engineering and Decompilation
Reverse engineering of android java app using apktool, dex2jar, jd-gui to convert .apk file to .java. By reverse engineering of…
Read More » -
Core Java
XML parsing using SaxParser with complete code
SAX parser use callback function (org.xml.sax.helpers.DefaultHandler) to informs clients of the XML document structure. You should extend DefaultHandler and override…
Read More »