-
Build Kotlin JMH Benchmarks With Maven
In this post, we will look at how to set up the Maven infrastructure so we can benchmark Kotlin code with JMH (the Java Microbenchmarking Harness).
Read more… -
Migrate Nextcloud PostgreSQL 11 to 17 in a Docker Container
This post looks at how to migrate a Postgres Docker image to a newer version. I will dump all databases contained in a container and migrate them all into a new container. The process outlined works for any Postgres container, but I discuss it in the context of my Nextcloud setup.
Read more… -
How to Create a Shared Git Repo
In this post we will take a look at how to set up a shared Git repository. The goal is to have multiple different users be able to push to and pull from this repository. Security is provided by using Unix users and groups.
Read more… -
Docker Volume Permissions: Mismatch Between Host UID and Container UID
When you have a Docker container with a user that has a different UID from the one on your host, mounting a volume and accessing the files can result in permission issues.
Read more… -
Postgres Data Types, Sizes and Alignment
How much storage does a single row in a Postgres table take?
Read more… -
Remove All CAs From Linux Trust Store
On Security Now! podcast #951, Steve told us that 7 organizations in the PKI are responsible for minting upwards of 99% of all existing certificates. (Possible original source.)
Read more… -
Cookies
Under what circumstances cookies are accepted or rejected by user agents and send back to web servers can be a bit confusing. Let’s experiment a bit.
Read more… -
Create Self-Signed TLS Cert With Wildcard
Let’s create a self-signed certificate that contains a wildcard Subject Alternative Name (SAN).
Read more… -
Overwrite File Without Truncating
In Bash, when you open a file for writing, the file gets truncated. However, there is a way to open a file for both reading and writing at the same time.
Read more… -
Bash's exec Replaces Shell
This is a quick look at Bash’s
Read more…exec
builtin with a simple example.