Today I Learned ... ʕノ•ᴥ•ʔノ ︵ ┻━┻
Jun 7 2025
To minimize waste, refrigerating sourdough starter is more forgiving than reducing its size while maintaining daily feeds. Smaller starters are less stable (due to reduced microbial mass), more temperature-sensitive, and show less visible activity.
Apr 21 2025
Breadmaking has evolved through several key milestones::
- Early breads were simple flatbreads (e.g. naan, pita, tortilla) made from flour and water.
- Leavened bread began with sourdough, naturally fermented by wild yeasts and lactic acid bacteria.
- In the 19th century, scientists isolated a specific type of yeast and began mass-producing it, making commercial yeast a fast, reliable leavening agent for both bakers and home cooks.
Mar 21 2025
Apple TV can automatically detect and stream audio to my Airpods! Game changing.
Mar 11 2025
Google Chrome's DevTools has a "Local overrides" feature that lets you modify network responses? Incredibly useful for testing frontend behavior by tweaking backend responses, or even mocking backend APIs before they exist.
Feb 17 2025
Cooking Kalbi in Pork belly fat >>>>>
Feb 13 2025
Each Jupyter notebook typically connects to its own kernel, which executes code and maintains state (variables, imports). Though isolated by default, notebooks can share state by connecting to the same kernel. Kernel handling varies by environment - Jupyter Server allows multiple users to connect to same server/kernels, while VS Code manages kernels locally with one per notebook by default.
Dec 1 2024
In Go, passing a slice by value still permits in-place modification of its elements. That's because the slice contains a pointer to the underlying array, along with its length and capacity. https://go.dev/src/runtime/slice.go
Nov 26 2024
The only way to create an EKS nodegroup confined to an availability zone, is via eksctl
?
Aug 21 2024
With sig-storage-local-static-provisioner, you can create k8s persistentvolumes with the nodes' local volumes. (as opposed to a network attached volume)