bazel From Create-React-App to Bazel: how to build things This story describes my experience of moving a create-react-app based app to bazel and the reasons for the move.
metanotes My Journey into self-sustainable note-taking I have vast collections of notes I amassed over the years, spanning from text files in SVN, webpage snips in Evernote, semi-structured notes in Bear, and, lately, TiddlyWiki.
envoy Jwks remote fetch is failed Isn’t it nice when you wake up and your auth is broken, despite you not changing anything? Isn’t it fun to debug a third-party integration? Anyways, I stumbled on an annoying gRPC error: Given the backend didn’t log the request, I
ssh SSH Auth with Yubikeys SSH supports FIDO2/U2F since 8.2, so you can generate a FIDO2 key with a trivial ssh-keygen -t ecdsa-sk. However, neither the default SSH in Windows 10 nor macOS is new enough, so I’ll guide you through the smartcard way (aka gpg ssh).
security K3S & NetworkPolicy: a short story of pain A short story of tracing a broken curl to an inconspicuously slow NetworkPolicy
envoy Simple JWT Authentication with Envoy and Auth0 JSON Web Tokens is a popular web standard for representing claims securely between two parties. In a nutshell, a JSON Web Token is several chunks of Base64-encoded JSON concatenated together,
envoy How to configure HTTPS backends in envoy Envoy is an extremely flexible reverse proxy, most known by its use in istio where it functions as an envelope in every job, routing the traffic and managing authorization. That