Core Java
Working with Date and Time in Java: The java.time Package
Before Java 8, working with dates was a nightmare. `java.util.Date` was mutable and had terrible design decisions. I remember trying to add a day to a date…
Stories Worth Reading
PixelProse is your go-to blog for insightful articles on Technology, Travel, Food, Health, Lifestyle, Business, Fashion and Sports. Fresh perspectives. Real stories. Zero fluff.
Core Java
Before Java 8, working with dates was a nightmare. `java.util.Date` was mutable and had terrible design decisions. I remember trying to add a day to a date…
Core Java
I’ve seen too many empty catch blocks in my life. You know the ones: `catch (Exception e) {}`. It’s like putting a band-aid over a bullet wound. The ex…
Core Java
I recently did a code review for a junior developer, and I saw a massive block of nested for-loops just to filter a list and map some objects. It was funct…