Iceberg of success
Yet another one of my rather rare blog posts mixing tech & non-tech aspects. Probably quite picky on readers. You’ve been warned 🤖
Read More Iceberg of successTech Blog of @khangdinh
Yet another one of my rather rare blog posts mixing tech & non-tech aspects. Probably quite picky on readers. You’ve been warned 🤖
Read More Iceberg of successAll my life so far, whenever I got an idea for a new software application, my default go-to is GitHub. I never stopped to question “why” or “why not”. I’ve been hosting my code on GitHub since 2012 (while my even older code was migrated from svn to Google Code to GitHub). And I got […]
Read More Hosting my own software, why not? Decentralizing SDLC, why?When developing an npm module, it’s a well known standard to install the module locally (from another workspace) by npm link or simply npm install straight from a local directory. How does that look in Deno world? For example when developing a JSR module locally? Not much of a difference, actually. Here is my current […]
Read More developing ts libs in deno worldToday I’m giving rust deno_bindgen a first try. On overall it works, despite a few things not living up to the documentation, plus a fair amount of silent failures. A non-sugar-coated collection of my notes during the process: There are 2 ways to install the deno_bindgen cli, documented in different places: Apparently they should do […]
Read More surface experience with rust deno_bindgenSay we have a docker image, that we can run with e.g. And this command: And for obvious reasons, we don’t want to deal with volume mounting (it’s doable but if the command supports sdt streams, why bother with filesystem?) Then we actually have 2 different methods, one is a bit cleaner than the other. […]
Read More pass host’s stdin into docker container process and receive result at host’s stdoutI remember when I worked constantly heavily with frontend cascading stylesheet topics, which was in the 2010s when people were simply converting Photoshop designs into HTML + CSS combos. Fast forward to today, lots of bells & whistles were definitely moulded on top of that flow. Style Dictionary is undoubtedly one of them, and even though I faced a bumpy start, I also got to relive those years of heavy frontend-oriented craftsmanship.
Read More postcss-design-tokens gotchas’This blog post explores some simple but interesting natures of JavaScript when Promises are involved. Moral lesson: be a good man, don’t make empty promises
Read More Empty Promises are terribleUsing kustomize transformers can be quite helpful in certain tight spots. This post jots down some of them.
Read More k8s kustomize transformersSometimes, when I run yarn for a project that uses a private dependency (whose registry access requires an auth token), I run into the 401 error: Usually this doesn’t happen if we have a proper .npmrc file somewhere up the root of the workdir (typically in the user home directory). But sometimes I am forced […]
Read More npmrck8s kustomize has always perplexed me (as a not-so-power user). Hopefully by writing this down, I’ll draw in a bit more power 😉
Read More k8s kustomize