From 95b615acd962698521dba7c15ea18fe8fa89e414 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 8 Jul 2026 17:16:33 +0300 Subject: Update content for html --- gemfeed/atom.xml | 779 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 425 insertions(+), 354 deletions(-) (limited to 'gemfeed/atom.xml') diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml index 31aa919c..46779257 100644 --- a/gemfeed/atom.xml +++ b/gemfeed/atom.xml @@ -1,11 +1,435 @@ - 2026-07-08T17:13:23+03:00 + 2026-07-08T17:16:26+03:00 foo.zone feed To be in the .zone! https://foo.zone/ + + Unveiling Hexai: AI companion for Helix and the terminal in general + + https://foo.zone/gemfeed/2026-07-09-unveiling-hexai.html + 2026-07-08T17:10:52+03:00 + + Paul Buetow aka snonux + paul@dev.buetow.org + + I have been using Helix as my main editor for a while now. It is fast, modal, and stays out of the way. The one thing I missed was a bit of LLM help without leaving the editor or opening a browser tab. So I built Hexai. + +
+

Unveiling Hexai: AI companion for Helix and the terminal in general


+
+Published at 2026-07-08T17:10:52+03:00
+
+I have been using Helix as my main editor for a while now. It is fast, modal, and stays out of the way. The one thing I missed was a bit of LLM help without leaving the editor or opening a browser tab. So I built Hexai.
+
+Hexai is an AI add-on for Helix. It speaks LSP, so it also works with other editors in theory, but I only test it with Helix. It gives me inline completions, in-editor chat, code actions, a terminal CLI, a tmux popup action runner, and a small task manager for agent work. It is written in Go, lives on Codeberg, and is configured through plain TOML files.
+
+Hexai has been an undercover pet project of mine since around mid-last year. As I write this it is at version 0.42.1, so it has been quietly growing for a good while before this first proper write-up.
+
+Hexai source code
+Helix editor
+
+Hexai logo
+
+

Table of Contents


+
+
+

What it is


+
+Hexai is really a bundle of small tools that share the same configuration:
+
+
    +
  • hexai-lsp-server — the LSP server that Helix talks to.
  • +
  • hexai — a standalone CLI for quick LLM questions from the terminal or scripts.
  • +
  • hexai-tmux-action — a Bubble Tea TUI that pops up inside tmux and runs code actions on the current selection.
  • +
  • ask — a tiny task management CLI for agent-managed project work.
  • +

+Everything uses the same config.toml, the same provider pool, and the same prompt overrides. I can switch models in one place and the LSP, CLI, and popup all follow along.
+
+These are opinionated tools. They reflect how I work — Helix inside tmux, a terminal CLI, a thin Taskwarrior wrapper — not a generic plugin system. If your workflow matches mine, they get out of the way; if it doesn't, you will probably want to tweak the config or fork it.
+
+

Installing it


+
+The easiest way is to install the binaries with go install. Each binary is a separate cmd/ package:
+
+ +
go install codeberg.org/snonux/hexai/cmd/hexai@latest
+go install codeberg.org/snonux/hexai/cmd/hexai-lsp-server@latest
+go install codeberg.org/snonux/hexai/cmd/hexai-tmux-action@latest
+go install codeberg.org/snonux/hexai/cmd/ask@latest
+
+
+If you prefer to build from a checkout, Hexai uses Mage:
+
+ +
go install github.com/magefile/mage@latest
+mage build
+mage install
+
+
+That drops hexai, hexai-lsp-server, hexai-tmux-action, and ask into your GOPATH/bin.
+
+

Configuring providers


+
+Hexai looks for a global config at ~/.config/hexai/config.toml and a per-project override at .hexaiconfig.toml in the git root. Environment variables prefixed with HEXAI_ win over both files.
+
+The default provider is Ollama Cloud with kimi-k2.6 (it might be different by the time you read this!). To use a local Ollama server instead, override the base URL:
+
+
+[provider]
+name = "ollama"
+
+[ollama]
+model = "qwen3-coder:30b-a3b-q4_K_M"
+base_url = "http://localhost:11434"
+
+
+Because that points at localhost, nothing leaves your machine — prompt, code, and reply all stay local. That is the main reason I keep a local Ollama around.
+
+For OpenAI, the config is similar:
+
+
+[provider]
+name = "openai"
+
+[openai]
+model = "gpt-4o-mini"
+
+
+Hexai reads the API key from HEXAI_OPENAI_API_KEY first, then falls back to OPENAI_API_KEY. The same pattern works for OpenRouter, Anthropic, and You.com.
+
+

Wiring it into Helix


+
+Tell Helix about the Hexai LSP server in ~/.config/helix/languages.toml. Here is my Go setup:
+
+
+[[language]]
+name = "go"
+auto-format = true
+formatter = { command = "goimports" }
+language-servers = [ "gopls", "hexai" ]
+
+[language-server.hexai]
+command = "hexai-lsp-server"
+
+
+You can add hexai after gopls or any other LSP. It does not replace them; it just adds completions, code actions, and chat on top.
+
+Once the LSP is wired in, Hexai also offers inline auto-completions as you type. By default it fires after a short idle debounce (completion_debounce_ms, 800 ms) when you hit one of the trigger characters (. : / _ space), and it waits for every configured backend before showing results (completion_wait_all). All of it is tunable in config.toml, and you can turn completions off for a session without restarting — see the slash commands below.
+
+For the popup action runner, bind a key in ~/.config/helix/config.toml:
+
+
+[keys.select]
+"A-a" = ":pipe hexai-tmux-action"
+
+[keys.normal]
+"A-a" = ["select_line", ":pipe hexai-tmux-action"]
+
+
+I use Alt-a. Select some code, hit Alt-a, and the popup appears.
+
+

Inline chat and prompts


+
+The LSP adds two lightweight ways to talk to the model without leaving the editor:
+
+
    +
  • End a line with ?>, !>, :>, or ;> to ask a question. Hexai removes only the trailing >, keeps the question, and inserts a > quoted reply below the line.
  • +
  • Type >!do something> inline to ask for a quick edit, or >>!do something> to replace the whole line with the completion.
  • +

+Chat example — a question ending in ?>:
+
+
+What is a Go slice?>
+
+
+After the LSP responds you get something like:
+
+
+What is a Go slice?
+
+> A slice is a dynamically-sized view into an array. It stores a pointer to
+> the backing array plus length and capacity.
+
+
+Inline example — >>! replaces the whole line with the completion:
+
+ +
>>!document this function>
+
+
+ +
// Foo returns the square of n.
+func Foo(n int) int { return n * n }
+
+
+Context is included automatically. For follow-ups, Hexai keeps the last few Q/A pairs above the cursor in mind, so you can ask related questions without repeating yourself.
+
+There are a few slash commands you can type at the end of a chat line: /reload> re-reads config.toml without restarting the LSP, /disable> pauses auto-completions for the session, and /enable> turns them back on.
+
+In the editor buffer it ends up looking like this — the question stays, the reply is quoted below, and a follow-up picks up the same context:
+
+
+What is a Go slice?
+
+> A slice is a dynamically-sized view into an array. It stores a pointer to
+> the backing array plus length and capacity.
+
+And how do I append to one?
+
+> Use the built-in append: s = append(s, x). It grows the backing array
+> when capacity is exhausted, returning a new slice.
+
+
+

Code actions via the tmux popup


+
+hexai-tmux-action is my favorite part. Inside a tmux session, select code in Helix and press the bound key. A tmux popup opens with this menu:
+
+
+r  Rewrite selection
+i  Simplify and improve
+c  Document code
+t  Generate Go unit test(s)
+f  Fix typos and improve grammar and clarity
+p  Custom prompt (opens your editor)
+s  Skip
+
+
+Pick one, the popup closes, and the rewritten code is piped back into Helix. For rewrite actions, I usually add a small instruction in a strict marker like ;extract this into a helper; inside the selection. The runner finds the first instruction and uses it.
+
+A mandatory detail: the popup is a real tmux popup, so Helix must be running inside a tmux session for this to work — there is no fallback to a separate window. Start it with:
+
+ +
tmux new -s hx
+hx some-file.go
+
+
+Then select code and hit Alt-a. No special tmux.conf is required for the popup itself; the only hard requirement is that Helix lives inside tmux (and tmux 3.2 or newer, since the popup uses tmux's popup feature).
+
+The menu is fully configurable. This is how I replace it with a smaller custom menu:
+
+
+[[tmux_action.menu]]
+kind   = "rewrite"
+hotkey = "r"
+
+[[tmux_action.menu]]
+kind   = "document"
+hotkey = "c"
+
+[[tmux_action.menu]]
+kind      = "custom"
+custom_id = "extract-function"
+hotkey    = "e"
+
+[[tmux_action.menu]]
+kind   = "skip"
+hotkey = "s"
+
+
+Custom actions reference entries under [[prompts.code_action.custom]] in the same config file.
+
+The hexai-tmux-action popup menu inside tmux
+
+Optional but useful: have tmux show live Hexai stats (provider, model, rpm, bytes) in the status line. Add this to ~/.config/tmux/tmux.conf (or ~/.tmux.conf):
+
+
+set -g status-right '#{@hexai_status} #[fg=colour8]| %H:%M'
+set -g status-right-length 120
+
+
+The @hexai_status option is updated by the CLI, the LSP, and the action runner. Disable it with HEXAI_TMUX_STATUS=0 if you don't want it.
+
+tmux status line showing live Hexai LLM stats
+
+

The CLI


+
+The hexai CLI is useful for quick questions from the terminal or from scripts:
+
+ +
# Ask from stdin
+cat some-file.go | hexai
+
+# Ask from an argument
+hexai 'explain this function'
+
+# Both stdin and argument are concatenated
+cat some-file.go | hexai 'write unit tests for this'
+
+# Open the global config in $HEXAI_EDITOR or $EDITOR
+hexai config
+
+# Simulate how fast a model feels without calling a provider
+hexai --tps-simulation 12-18
+
+
+A real one-shot looks like this (only stdout is shown):
+
+
+$ hexai 'install ripgrep on fedora'
+sudo dnf install ripgrep
+
+
+The provider label and the run summary (timing, token counts, rpm) go to stderr, so stdout stays clean for pipes — hexai 'install ripgrep on fedora' | sh just works.
+
+

Managing agent tasks with ask


+
+ask is a thin wrapper around Taskwarrior that auto-scopes tasks to the current git project and tags them with +agent. I use it to keep track of what the coding agent is supposed to do next.
+
+Under the hood every ask command is just a Taskwarrior command filtered to project:REPO +agent, where REPO is the name of the git repository root ask was run in. The tasks are plain Taskwarrior tasks, so you can drop down to task itself any time and work with the same data. From the hexai repo, for example:
+
+ +
# Same tasks, raw Taskwarrior
+task project:hexai list
+task project:hexai +agent next
+
+
+ask just hides the project filter, the +agent tag, and the raw UUIDs so the day-to-day output stays small and project-local.
+
+That scoping is also a security boundary, and the main reason I let an LLM agent touch my Taskwarrior database at all. Because ask always applies the project:REPO +agent filter, the agent can only see and modify tasks in its own current project — it cannot delete, reprioritize, or even see anything outside that filter. So ask is really a safety wrapper around task: you can hand it to a coding agent without giving it free rein over the rest of your tasks.
+
+ +
# Add a task for the current project
+ask add priority:H "implement config reload"
+
+# List pending agent tasks
+ask list
+
+# Start and finish work (ask add prints the alias, e.g. os0)
+ask start os0
+ask done os0
+
+# See details without exposing raw UUIDs
+ask info os0
+
+
+The IDs shown are stable local aliases, not Taskwarrior's numeric IDs. Taskwarrior gives you two built-in identifiers: a numeric ID that isn't stable across syncs and exports, and a UUID that is stable but far too long to type by hand. ask instead keeps its own mapping from each task's UUID to a short, permanent alias (cached under Hexai's cache dir) — so you get the best of both: a stable, short ID that never changes even if tasks above it get completed or deleted. ask info hides the raw UUID unless HEXAI_DEBUG is set, so the short alias is the one you actually use day to day.
+
+ask works from anywhere inside the project git tree and derives the project name from the repo root. To manage tasks for another project, use ask proj:hexai list.
+
+One detail worth knowing: the alias strings are reversed on purpose. The underlying counter is monotonic (1, 2, 3, …), and a naive encoding would make consecutive tasks share a leading character once the list grows past 36 (00, 01, 02, … all start with 0), which kills shell tab-completion. Reversing the string makes the first character vary as fast as possible (00, 10, 20, … instead of 00, 01, 02, …), so typing the first letter in Fish actually narrows the list. That is the whole reason the IDs look slightly odd.
+
+To actually get those completions in Fish, run ask fish | source (or drop it into Fish's conf.d) — it gives you tab-completion for both subcommands and the reversed alias IDs.
+
+ask list prints a compact table:
+
+
+Urg | Pri | ID  | Status  | Started | Tags  | Description
+----------------------------------------------------------------------------
+7.8 | H   | os0 | pending | no      | agent | implement config reload
+5.7 | M   | ps0 | pending | no      | agent | add fish completion docs
+3.6 | L   | qs0 | pending | no      | agent | deprecate hexai-mcp-server README note
+
+
+And ask info os0 shows one task without exposing the raw UUID:
+
+
+ID:          os0
+Description: implement config reload
+Status:      pending
+Started:     no
+Priority:    H
+Urgency:     7.8
+Tags:        agent
+
+
+

Running multiple providers side by side


+
+One feature I use more than I expected: per-surface model lists. In config.toml you can configure several providers or models for the same entry point, and Hexai fans the request out to all of them in parallel.
+
+
+[[models.cli]]
+provider = "openai"
+model = "gpt-4o-mini"
+temperature = 0.4
+
+[[models.cli]]
+provider = "ollama"
+model = "qwen3-coder:30b-a3b-q4_K_M"
+temperature = 0.2
+
+
+With that, hexai 'summarize this file' prints two labeled answers side by side:
+
+
+ollama:qwen3-coder:30b-a3b-q4_K_M:
+A short Go program that reads a file line by line and prints each line.
+
+openai:gpt-4o-mini:
+Reads a file and echoes each line. Returns early on open errors.
+
+
+It is handy for comparing local and cloud models, or for just seeing which one gives the cleaner response. Code actions still use only the first entry; extra entries there are ignored with a warning.
+
+

What to watch out for


+
+A few honest caveats:
+
+
    +
  • I mainly test Hexai with Helix inside tmux. Other editors might work through LSP, but your mileage will vary.
  • +
  • The hexai-mcp-server binary is experimental and effectively deprecated. I manage prompts through slash commands and the agent system now, so the MCP server is not getting much attention.
  • +
  • Wiring the tmux popup and status line takes a little manual config. It is not plug-and-play like a VS Code extension.
  • +
  • Auto-completions can be chatty. You can disable them on the fly with /disable> in chat, or tune the debounce in config.toml.
  • +

+

It will keep changing


+
+Hexai is a personal tool, and it will keep changing. Things go in and come back out: the tmux popup editor for Cursor Agent prompts I wrote about earlier got folded into Hexai, then removed again once every agent added Ctrl+g or Ctrl+e to edit a prompt in $EDITOR.
+
+2026-02-02 - A tmux popup editor for Cursor Agent CLI prompts
+
+The MCP server that ships with Hexai is experimental and may get cut too. As time goes on I will keep trying ideas — maybe a whole coding agent one day, maybe not. If you want to poke at it or open an issue, it lives on Codeberg.
+
+
+
+2026-02-02 - A tmux popup editor for Cursor Agent CLI prompts
+2026-02-14 - Meta slash commands for prompts and context
+
+E-Mail your comments to paul@nospam.buetow.org :-)
+
+Back to the main site
+
+
+
Unleashing Hexai: AI companion for Helix and the terminal in general @@ -20885,359 +21309,6 @@ Jan 26 17:36:32 f2 apcupsd[2159]: apcupsd shutdown succeeded
E-Mail your comments to paul@nospam.buetow.org or contact Florian via the Cracking AI Engineering :-)

-Back to the main site
- - -
- - Posts from October to December 2024 - - https://foo.zone/gemfeed/2025-01-01-posts-from-october-to-december-2024.html - 2024-12-31T18:09:58+02:00 - - Paul Buetow aka snonux - paul@dev.buetow.org - - Happy new year! - -
-

Posts from October to December 2024


-
-Published at 2024-12-31T18:09:58+02:00
-
-Happy new year!
-
-These are my social media posts from the last three months. I keep them here to reflect on them and also to not lose them. Social media networks come and go and are not under my control, but my domain is here to stay.
-
-These are from Mastodon and LinkedIn. Have a look at my about page for my social media profiles. This list is generated with Gos, my social media platform sharing tool.
-
-My about page
-https://codeberg.org/snonux/gos
-
-

Table of Contents


-
-
-

October 2024


-
-

First on-call experience in a startup. Doesn't ...


-
-First on-call experience in a startup. Doesn't sound a lot of fun! But the lessons were learned! #sre
-
-ntietz.com/blog/lessons-from-my-first-on-call/
-
-

Reviewing your own PR or MR before asking ...


-
-Reviewing your own PR or MR before asking others to review it makes a lot of sense. Have seen so many silly mistakes which would have been avoided. Saving time for the real reviewer.
-
-www.jvt.me/posts/2019/01/12/self-code-review/
-
-

Fun with defer in #golang, I did't know, that ...


-
-Fun with defer in #golang, I did't know, that a defer object can either be heap or stack allocated. And there are some rules for inlining, too.
-
-victoriametrics.com/blog/defer-in-go/
-
-

I have been in incidents. Understandably, ...


-
-I have been in incidents. Understandably, everyone wants the issue to be resolved as quickly and others want to know how long TTR will be. IMHO, providing no estimates at all is no solution either. So maybe give a rough estimate but clearly communicate that the estimate is rough and that X, Y, and Z can interfere, meaning there is a chance it will take longer to resolve the incident. Just my thought. What's yours?
-
-firehydrant.com/blog/hot-take-dont-provide-incident-resolution-estimates/
-
-

Little tips using strings in #golang and I ...


-
-Little tips using strings in #golang and I personally think one must look more into the std lib (not just for strings, also for slices, maps,...), there are tons of useful helper functions.
-
-www.calhoun.io/6-tips-for-using-strings-in-go/
-
-

Reading this post about #rust (especially the ...


-
-Reading this post about #rust (especially the first part), I think I made a good choice in deciding to dive into #golang instead. There was a point where I wanted to learn a new programming language, and Rust was on my list of choices. I think the Go project does a much better job of deciding what goes into the language and how. What are your thoughts?
-
-josephg.com/blog/rewriting-rust/
-
-

The opposite of #ChaosMonkey ... ...


-
-The opposite of #ChaosMonkey ... automatically repairing and healing services helping to reduce manual toil work. Runbooks and scripts are only the first step, followed by a fully blown service written in Go. Could be useful, but IMHO why not rather address the root causes of the manual toil work? #sre
-
-blog.cloudflare.com/nl-nl/improving-platform-resilience-at-cloudflare/
-
-

November 2024


-
-

I just became a Silver Patreon for OSnews. What ...


-
-I just became a Silver Patreon for OSnews. What is OSnews? It is an independent news site about IT. It is slightly independent and, at times, alternative. I have enjoyed it since my early student days. This one and other projects I financially support are listed here:
-
-foo.zone/gemfeed/2024-09-07-projects-i-support.html (Gemini)
-foo.zone/gemfeed/2024-09-07-projects-i-support.html
-
-

Until now, I wasn't aware, that Go is under a ...


-
-Until now, I wasn't aware, that Go is under a BSD-style license (3-clause as it seems). Neat. I don't know why, but I always was under the impression it would be MIT. #bsd #golang
-
-go.dev/LICENSE
-
-

These are some book notes from "Staff Engineer" ...


-
-These are some book notes from "Staff Engineer" – there is some really good insight into what is expected from a Staff Engineer and beyond in the industry. I wish I had read the book earlier.
-
-foo.zone/gemfeed/2024-10-24-staff-engineer-book-notes.html (Gemini)
-foo.zone/gemfeed/2024-10-24-staff-engineer-book-notes.html
-
-

Looking at #Kubernetes, it's pretty much ...


-
-Looking at #Kubernetes, it's pretty much following the Unix way of doing things. It has many tools, but each tool has its own single purpose: DNS, scheduling, container runtime, various controllers, networking, observability, alerting, and more services in the control plane. Everything is managed by different services or plugins, mostly running in their dedicated pods. They don't communicate through pipes, but network sockets, though. #k8s
-
-

There has been an outage at the upstream ...


-
-There has been an outage at the upstream network provider for OpenBSD.Amsterdam (hoster, I am using). This was the first real-world test for my KISS HA setup, and it worked flawlessly! All my sites and services failed over automatically to my other #OpenBSD VM!
-
-foo.zone/gemfeed/2024-04-01-KISS-high-availability-with-OpenBSD.html (Gemini)
-foo.zone/gemfeed/2024-04-01-KISS-high-availability-with-OpenBSD.html
-openbsd.amsterdam/
-
-

One of the more confusing parts in Go, nil ...


-
-One of the more confusing parts in Go, nil values vs nil errors: #golang
-
-unexpected-go.com/nil-errors-that-are-non-nil-errors.html
-
-

Agreeably, writing down with Diagrams helps you ...


-
-Agreeably, writing down with Diagrams helps you to think things more through. And keeps others on the same page. Only worth for projects from a certain size, IMHO.
-
-ntietz.com/blog/reasons-to-write-design-docs/
-
-

I like the idea of types in Ruby. Raku is ...


-
-I like the idea of types in Ruby. Raku is supports that already, but in Ruby, you must specify the types in a separate .rbs file, which is, in my opinion, cumbersome and is a reason not to use it extensively for now. I believe there are efforts to embed the type information in the standard .rb files, and that the .rbs is just an experiment to see how types could work out without introducing changes into the core Ruby language itself right now? #Ruby #RakuLang
-
-github.com/ruby/rbs
-
-

So, #Haskell is better suited for general ...


-
-So, #Haskell is better suited for general purpose than #Rust? I thought deploying something in Haskell means publishing an academic paper :-) Interesting rant about Rust, though:
-
-chrisdone.com/posts/rust/
-
-

At first, functional options add a bit of ...


-
-At first, functional options add a bit of boilerplate, but they turn out to be quite neat, especially when you have very long parameter lists that need to be made neat and tidy. #golang
-
-www.calhoun.io/using-functional-options-instead-of-method-chaining-in-go/
-
-

Revamping my home lab a little bit. #freebsd ...


-
-Revamping my home lab a little bit. #freebsd #bhyve #rocky #linux #vm #k3s #kubernetes #wireguard #zfs #nfs #ha #relayd #k8s #selfhosting #homelab
-
-foo.zone/gemfeed/2024-11-17-f3s-kubernetes-with-freebsd-part-1.html (Gemini)
-foo.zone/gemfeed/2024-11-17-f3s-kubernetes-with-freebsd-part-1.html
-
-

Wondering to which #web #browser I should ...


-
-Wondering to which #web #browser I should switch now personally ...
-
-www.osnews.com/story/141100/mozilla-fo..-..dvocacy-for-open-web-privacy-and-more/
-
-

eks-node-viewer is a nifty tool, showing the ...


-
-eks-node-viewer is a nifty tool, showing the compute nodes currently in use in the #EKS cluster. especially useful when dynamically allocating nodes with #karpenter or auto scaling groups.
-
-github.com/awslabs/eks-node-viewer
-
-

Have put more Photos on - On my static photo ...


-
-Have put more Photos on - On my static photo sites - Generated with a #bash script
-
-irregular.ninja
-
-

In Go, passing pointers are not automatically ...


-
-In Go, passing pointers are not automatically faster than values. Pointers often force the memory to be allocated on the heap, adding GC overhad. With values, Go can determine whether to put the memory on the stack instead. But with large structs/objects (how you want to call them) or if you want to modify state, then pointers are the semantic to use. #golang
-
-blog.boot.dev/golang/pointers-faster-than-values/
-
-

Myself being part of an on-call rotations over ...


-
-Myself being part of an on-call rotations over my whole professional life, just have learned this lesson "Tell people who are new to on-call: Just have fun" :-) This is a neat blog post to read:
-
-ntietz.com/blog/what-i-tell-people-new-to-oncall/
-
-

Feels good to code in my old love #Perl again ...


-
-Feels good to code in my old love #Perl again after a while. I am implementing a log parser for generating site stats of my personal homepage! :-) @Perl
-
-

This is an interactive summary of the Go ...


-
-This is an interactive summary of the Go release, with a lot of examples utilising iterators in the slices and map packages. Love it! #golang
-
-antonz.org/go-1-23/
-
-

December 2024


-
-

Thats unexpected, you cant remove a NaN key ...


-
-Thats unexpected, you cant remove a NaN key from a map without clearing it! #golang
-
-unexpected-go.com/you-cant-remove-a-nan-key-from-a-map-without-clearing-it.html
-
-

My second blog post about revamping my home lab ...


-
-My second blog post about revamping my home lab a little bit just hit the net. #FreeBSD #ZFS #n100 #k8s #k3s #kubernetes
-
-foo.zone/gemfeed/2024-12-03-f3s-kubernetes-with-freebsd-part-2.html (Gemini)
-foo.zone/gemfeed/2024-12-03-f3s-kubernetes-with-freebsd-part-2.html
-
-

Very insightful article about tech hiring in ...


-
-Very insightful article about tech hiring in the age of LLMs. As an interviewer, I have experienced some of the scrnarios already first hand...
-
-newsletter.pragmaticengineer.com/p/how-genai-changes-tech-hiring
-
-

for #bpf #ebpf performance debugging, have ...


-
-for #bpf #ebpf performance debugging, have a look at bpftop from Netflix. A neat tool showing you the estimated CPU time and other performance statistics for all the BPF programs currently loaded into the #linux kernel. Highly recommend!
-
-github.com/Netflix/bpftop
-
-

89 things he/she knows about Git commits is a ...


-
-89 things he/she knows about Git commits is a neat list of #Git wisdoms
-
-www.jvt.me/posts/2024/07/12/things-know-commits/
-
-

I found that working on multiple side projects ...


-
-I found that working on multiple side projects concurrently is better than concentrating on just one. This seems inefficient at first, but whenever you tend to lose motivation, you can temporarily switch to another one with full élan. However, remember to stop starting and start finishing. This doesn't mean you should be working on 10+ (and a growing list of) side projects concurrently! Select your projects and commit to finishing them before starting the next thing. For example, my current limit of concurrent side projects is around five.
-
-

Agreed? Agreed. Besides #Ruby, I would also ...


-
-Agreed? Agreed. Besides #Ruby, I would also add #RakuLang and #Perl @Perl to the list of languages that are great for shell scripts - "Making Easy Things Easy and Hard Things Possible"
-
-lucasoshiro.github.io/posts-en/2024-06-17-ruby-shellscript/
-
-

Plan9 assembly format in Go, but wait, it's not ...


-
-Plan9 assembly format in Go, but wait, it's not the Operating System Plan9! #golang #rabbithole
-
-www.osnews.com/story/140941/go-plan9-memo-speeding-up-calculations-450/
-
-

This is a neat blog post about the Helix text ...


-
-This is a neat blog post about the Helix text editor, to which I personally switched around a year ago (from NeoVim). I should blog about my experience as well. To summarize: I am using it together with the terminal multiplexer #tmux. It doesn't bother me that Helix is purely terminal-based and therefore everything has to be in the same font. #HelixEditor
-
-jonathan-frere.com/posts/helix/
-
-

This blog post is basically a rant against ...


-
-This blog post is basically a rant against DataDog... Personally, I don't have much experience with DataDog (actually, I have never used it), but one reason to work with logs at my day job (with over 2,000 physical server machines) and to be cost-effective is by using dtail! #dtail #logs #logmanagement
-
-crys.site/blog/2024/reinventint-the-weel/
-dtail.dev
-
-

Quick trick to get Helix themes selected ...


-
-Quick trick to get Helix themes selected randomly #HelixEditor
-
-foo.zone/gemfeed/2024-12-15-random-helix-themes.html (Gemini)
-foo.zone/gemfeed/2024-12-15-random-helix-themes.html
-
-

Example where complexity attacks you from ...


-
-Example where complexity attacks you from behind #k8s #kubernetes #OpenAI
-
-surfingcomplexity.blog/2024/12/14/quic..-..ecent-openai-public-incident-write-up/
-
-

LLMs for Ops? Summaries of logs, probabilities ...


-
-LLMs for Ops? Summaries of logs, probabilities about correctness, auto-generating Ansible, some uses cases are there. Wouldn't trust it fully, though.
-
-youtu.be/WodaffxVq-E?si=noY0egrfl5izCSQI
-
-

Excellent article about your dream Product ...


-
-Excellent article about your dream Product Manager: Why every software team needs a product manager to thrive via @wallabagapp
-
-testdouble.com/insights/why-product-ma..-..s-accelerate-improve-software-delivery
-
-

I just finished reading all chapters of CPU ...


-
-I just finished reading all chapters of CPU land: ... not claiming to remember every detail, but it is a great refresher how CPUs and operating systems actually work under the hood when you execute a program, which we tend to forget in our higher abstraction world. I liked the "story" and some of the jokes along the way! Size wise, it is pretty digestable (not talking about books, but only 7 web articles/chapters)! #cpu #linux #unix #kernel #macOS
-
-cpu.land/
-
-

Indeed, useful to know this stuff! #sre ...


-
-Indeed, useful to know this stuff! #sre
-
-biriukov.dev/docs/resolver-dual-stack-..-..resolvers-and-dual-stack-applications/
-
-

It's the small things, which make Unix like ...


-
-It's the small things, which make Unix like systems, like GNU/Linux, interesting. Didn't know about this #GNU #Tar behaviour yet:
-
-xeiaso.net/notes/2024/pop-quiz-tar/
-
-

My New Year's resolution is not to start any ...


-
-My New Year's resolution is not to start any new non-fiction books (or only very few) but to re-read and listen to my favorites, which I read to reflect on and see things from different perspectives. Every time you re-read a book, you gain new insights.<nil>17491
-
-Other related posts:
-
-2026-07-01 Posts from January to June 2026
-2026-01-01 Posts from July to December 2025
-2025-07-01 Posts from January to June 2025
-2025-01-01 Posts from October to December 2024 (You are currently reading this)
-
-E-Mail your comments to paul@nospam.buetow.org :-)
-
Back to the main site
-- cgit v1.2.3