sharp is a Node.js image processing library that we used to resize avatar images in the backend. We run into problems running sharp on a Docker container using the Node.js […]
Lysender's Daily Log Book
Life, programming, trading and everything in between
Jenkins-X and Kubernetes v1.25 – Upgrade Issues

Another month, another Jenkins-X and Kubernetes issue. Google cloud recently notified us that they are going to start automatic upgrades from Kubernetes v1.25 to v1.26. Wait what? We are not […]
Docker – MySQL 8 – mbind : operation not permitted

My blog was down for few hours recently and I noticed that the database was down again. When I checked the Docker logs, I saw several errors like this: My […]
single-spa – Unable to resolve bare specifier ‘react-dom/client’

Our whole setup involves multiple micro-frontends powered by single-spa and React configured to share libraries via dynamic imports using systemjs import maps. After updating to React 18, we encountered the […]
Host key verification failed for github.com

Yesterday, I get a host key verification error when I tried to pull or push changes to our Github.com repository. The error message itself suggested how to fix it by […]
TIL – JavaScript append an array to an array

I was today’s years old when I learn that you can actually append an array to an array using the push method instead of the concat method. concat is nice […]
mysqldump – Unknown table COLUMN_STATISTICS

As I reviewed my MySQL backups, I noticed that the data is too small and as I review the logs, I get these error: Unknown table ‘COLUMN_STATISTICS’ in information_schema (1109). […]
Bitnami Helm Charts Index Issues

Several months ago, we noticed that our Jenkins-X pipeline is failing at promotion stage due to Bitnami’s helm chart repo index being trimmed. There was a one-liner fix but because […]
smee.io proxy service down – what now?

The webhook payload delivery service smee.io is down today and was having some down time in the past few weeks as well due to too much traffic. I know its […]
TypeScript – Type Hint An Array Of Functions

I’ve been more verbose on adding types on my TypeScript codes lately as it tends to be very useful in future reading and refactoring. Recently, I needed to add a […]