01Feb 25, 2020/1 minOne minute tips : Less noise in SQL joinsAssume that we need to join two tables based on some condition. For example, Both queries do the same. we are saving 3 words in the first…mysqlproductivity
02Jan 18, 2020/1 minA missing cmdline util for GIT - NITI have been using VS code and cmdline for git. But I always miss something. Autocompletion is not perfect in cmdline and GIT tower is bit…gitcmdlinetools
03Sep 14, 2019/3 minNULL vs EmptyI tried to book a ticket in irctc. while giving CCV of my debit card (*mandatory field), accidentally I gave empty value and proceeded to…nullemptyprogramming
04Jun 17, 2019/3 minJava internals : part - 1Have you came across this meme? We could say this as backend developer - public api - source code. We have a rich set of collections and…javajdkarraylist
05Jun 16, 2019/2 minWhy you should care about semantic versioning (SemVer).Dependency management is always hell.I was a bully once in updating my android app dependencies. Until that dark day came into the picture…semantic versioningnpmpackagesdependency management
06Jun 9, 2019/2 minBetter cmdlineEvery programmer searches for some files more than he breathes in his life. Sometimes it is very daunting to navigate deeply nested folder…cmdlineitermbash
07Apr 20, 2019/3 minAndroid loggers analyzedAt first you need to do some changes in logcat console. On the right top drop select Show only selected applications. This will filterout…androidloggersapp development
08Apr 20, 2019/4 minJava : Perf matters - 1Doing microbenchmark is really hard.benchmarking code in microseconds, nanoseconds requires a lot of things to consider.Benchmark results…javaprogramming