Introducing SneakyThrow. A Java library to ignore Checked Exceptions.
JavaScript Essentials: The Engine
In this article, I want to explain what a software developer, who uses JavaScript to write applications, should know about engines so that the written code executes properly.
Ignoring Exceptions in Java
In this article, I show how to ignore checked exceptions in Java. I will cover the rationale, common patterns and list some libraries created for this use case.
Useless Error Messages
I want to make the case that good design makes exceptions the exception — something so wrong that the user can not do anything about it. In most cases, the best approach will be to show the user a single, generic message when exceptions occur.
Remove Null Checks and Default Values
In this article I show how well-meant null checks and default values can cause serious bugs.
Updating Angular CLI Dependencies
In this post I show two possible solutions to automate the upgrade of the Angular CLI-generated dependencies in an application.
On Modern Software Development
This articles describes the shift to modern software development by discarding pure coding in favour of using and applying the right libraries and tools.
Ignoring Lombok Code in Jacoco
In this posting I show how to ignore code generated by Lombok in the upcoming version of Jacoco 0.7.10.
Typesafe Endpoints with TypeScript and Java
In Single-Page-Applications (SPAs), the server usually provides endpoints (API) and does no rendering at all. I will show how to convert message types of an API to TypeScript types automatically within the context of Spring MVC.
Spring MVC & JSON Serialization
This posting shows how to customize json serialization with of Spring MVC by using Annotations or extending the ObjectMapper.