HN user

tuczi

28 karma
Posts6
Comments7
View on HN

+1. Pointers are the pain point for beginners in programming generally and sometimes for those who switch from other languages. This article is good start point for them to catch up if they need to.

jstack does only one thing but does it well :) It is one of the most useful tools while debugging JVM apps and everybody should get to know it.

Absolutely agree that Lombok increases Java readability. If I cannot use JVM alternatives like Kotlin or Scala (for whatever reasons), Lombok is a perfect tool to help beeing productive.

IMO saving one line with @Cleanup is not worth it but if the class doesn't implement AutoClosable, I think it makes code more readable too.