PinnedAbout MeHello, I’m Alexander Obregon, a 29-year-old who’s passionate about code and software development. I’m living in the U.S. now, but a lot of…Dec 22, 20236Dec 22, 20236
What Template Literals Actually Do in JavaScriptTemplate literals in JavaScript do more than just change how strings are written. They let the language evaluate expressions, control…Just nowJust now
The Lifecycle of a StringBuilder During Large Text ConcatenationWhen you’re building a big chunk of text in Java, and you’re adding to it over and over, StringBuilder is the tool most people reach for…1h ago1h ago
Sending Push Notifications Using Spring Boot and FirebasePush notifications keep apps connected to users with quick reminders, alerts, or updates. These messages pop in without much thought from…1h ago1h ago
Behind the Scenes of Destructuring in JavaScriptDestructuring looks easy when you first see it. You write a pattern on the left, and the values from the right drop into place. But that…1d ago1d ago
What Happens When Interfaces Extend Other Interfaces in JavaInterfaces can extend other interfaces in Java, and it sounds like a simple case of combining method contracts. But the way this works…1d ago1d ago
Building a Multi Module Project with Spring Boot and MavenProjects usually start out small, but as more features are added, things can get messy fast. When everything lives in one module, it gets…1d ago1d ago
What Happens During JSON.stringify and JSON.parse in JavaScriptJavaScript gives you two built-in methods to convert between objects and strings: JSON.stringify and JSON.parse. These two functions handle…2d ago2d ago
The Real Cost of Boxing and Unboxing Primitive Types During Java ExecutionJava makes it easy to switch between primitives like int and their object-based counterparts like Integer. On the surface, this looks…2d ago2d ago
Serving Frontend Builds from Spring Boot BackendsWhen building a full-stack app, it’s common to use Spring Boot for the backend and something like React, Angular, or Vue for the frontend…2d ago2d ago