Storing External Requests
I’ve worked in payment systems for a long time, and one common theme is that they make a lot of 3rd party API calls. For example, there are numerous payment ...
I’ve worked in payment systems for a long time, and one common theme is that they make a lot of 3rd party API calls. For example, there are numerous payment ...
I recently learned about two PostgreSQL features that make handling NULL values more sane.
Historically, when I wanted to store data in a database, I (or the project/team I was on) used an incrementing integer to uniquely identify each row (e.g. th...
I come across a lot of JSON Web Tokens (JWTs) these days, and I often want a quick way to see what information is encoded in them. An easy solution is to vis...
I’ve been using JDBI recently for interacting with a database in Java and I generally like it. It lets you write explicit queries, and it is relatively simpl...