RSSAmplifier

Blog

btema.net

Recent content on btema.net

btema.netRSS feed ↗2 posts

Latest posts

Two Elegant Use Cases for Go Build Tags

I won’t explain what Go build tags are, or conditional compilation in general. There are already many good resources that cover those topics well. Instead, I want to highlight two use cases that I’ve rarely seen discussed explicitly. In both cases, build tags proved extremely handy, and the resulting solutions turned out quite elegant, at least to my taste. Providing a Unified…

You probably don't need JupyterHub on Kubernetes

To deploy Jupyter notebooks on Kubernetes using open-source software, there are currently two major approaches to choose from: Make Notebooks a Core Feature on Kubernetes This is usually done using CRDs to make Kubernetes treat a Notebook as it treats a Pod or a Secret. These Custom Resources are backed by an Operator that is aware of notebook management logic and will be in charge of your…