Debugging Nightmares - Multi-Tab Madness in Production by Shifa Salheen on July 18, 2025 139 views

We had just gone live.Everyone was loving it, and feedback was overwhelmingly positive. UI felt smooth, flows were clicking, and things were working well for almost everyone. So when a user reported: “I logged in… and it’s just spinning & I can’t see the dashboard” — We didn’t worry much. We told them to clear the storage & it worked. We moved on. We thought they had done something wrong — maybe since they were accessing multiple…
Lambda Expressions in Java and its implementation by Kush Patel on July 28, 2020 1,593 views

Java is one of the most widely used programming languages. Despite origins dating back in 1995, it has consistently advanced over the years. One of the significant upgrades in Java after generics, was the introduction of lambda expression. Lambda expression is a function that can be passed around as if it was an object and invoked on demand. Lambda expressions combined with the Streams API allows programmers to write complex collection processing algorithms, focusing on…