Dec 15, 2025 · 21 min read · Introduction Nulls and unhandled exceptions are so ingrained in everyday programming that we often treat their fallout—runtime crashes, brittle code paths, defensive boilerplate—as an unavoidable cost of doing business, yet history and experience sug...
Join discussion
May 23, 2025 · 4 min read · ¿Alguna vez te ha explotado una app en producción por culpa de un null no controlado?Sí, ese temido NullPointerException que llega como un ninja cuando menos te lo esperas. 😅 Hoy quiero contarte cómo puedes escribir código más seguro, expresivo y ha...
Join discussion
Jan 5, 2025 · 4 min read · Introduction Optional is a class introduced in Java 8 to handle null values in order to avoid the dreadful NullPointerException (NPE). It is a wrapper class that can be used to represent a value that may be null or not. Before Java 8, developers had...
Join discussion
Nov 10, 2024 · 2 min read · Create a Whimsical Gingerbread House Basket This Holiday Season As the holiday season approaches, the charm of gingerbread houses evokes nostalgia and warmth, sparking creativity and joy in both young and old. This year, take that festive spirit to t...
Join discussion
May 23, 2024 · 3 min read · Optional은 무엇인가요? Optional 때문에 코드가 난잡하게 된다면 어떻게 해야 할까요? 글의 발단 무분별한 옵셔널 사용으로 코드가 깔끔하지 않다고 느낄 때가 있다는 사연을 예전에 들은 적이 있습니다. 그래서 저는 어떤 이유로 어떻게 관리하고 있는지 설명을 했고, 이를 결국 글로도 남기기로 결정했습니다. Java Optional이란? 자바의 NULL 안정성을 위한 표준 API 클래스입니다. null일 수도 있는 값을 감싸서(박싱 해...
Join discussion