14. 7. 2026
Experiments

Vibe coded golang/wasm breakout clone (just one level at the moment) with some quazi physics. Paddle and bricks will add energy to the ball, there is spin as well.
Easy version, Harder version, More Predictable version with some unbreakable bricks.
p.s. Refresh to play again.
Full game with levels and powerups
PLAY
6. 7. 2026
Usage: bman [OPTIONS] [MAN_PAGE...]
Display man pages in your web browser with custom CSS styling.
Options:
--dark Use dark theme
--modern Use modern light theme
-h, --help Show this help message
If no MAN_PAGE is given and fzf is installed, opens an interactive fzf selection.
Note: to force exact match in fzf mode, prepend search with ', like 'vim
Examples:
bman geany
bman --dark ls
bman --modern bash
Requires: man, xdg-open, sed, and fzf (for interactive mode).
Bman is a bash script originally written in 2018, some improvements in 2026 (fzf mode, slightly different html styling, better error handling, –help and more).
Motivation for improvement came from:
https://forums.bunsenlabs.org/viewtopic.php?id=9824.
27. 6. 2026
Just do it
Script that we call from helix and it stores the current line (hxsaveline):
https://raw.githubusercontent.com/brontosaurusrex/bucentaur/refs/heads/master/.experiments/bin/hxsaveline
Entry in your config.toml that binds alt+w to save current line via hxsaveline script (under [keys.normal]):
"A-w" = ":sh hxsaveline %{buffer_name} %{cursor_line}"
Wrapper that will read the stored line and open helix (hxw):
https://raw.githubusercontent.com/brontosaurusrex/bucentaur/refs/heads/master/.experiments/bin/hxw
so you open your file as
and it should open with cursor on stored line.
How about just reading and displaying stored line inside helix, this script (hxloadline):
https://raw.githubusercontent.com/brontosaurusrex/bucentaur/refs/heads/master/.experiments/bin/hxloadline
and in your config.toml we will use free alt+l (under [keys.normal])
"A-l" = ":sh hxloadline %{buffer_name}"
will just print stored line number and do nothing else, but one can 18gg or :g 18.

This is experimental workaround that will not work in all conditions and ‘should’ really be a core editor feature imho.
Recap
You have 3 new little shell scripts somewhere on $PATH: hxloadline, hxsaveline, hxw and something like this added to your config.toml under [keys.normal]
# save cursor position with ctrl+w via small bash script
"A-w" = ":sh hxsaveline %{buffer_name} %{cursor_line}"
# load cursor position and do nothing with it via small bash script
"A-l" = ":sh hxloadline %{buffer_name}"
And you can use hxw instead of hx to load your files positioned on the stored line. Or use alt+l to display stored line and then :g 42.
btw
The issue goes deeper, undo history, command history, etc.
23. 6. 2026

and true colors in tmux, .tmux.conf, add:
set -g default-terminal "tmux-256color"
set-option -sa terminal-overrides ",xterm*:Tc"
20. 6. 2026

(license: both svg images, penguin and the sign were under public domain, so this two are public domain as well. Consult your legal department in case of unknown or slippery obstacles/surfaces.)
19. 6. 2026
Multicolumn pager (vibe-coded prototype in golang).
https://github.com/brontosaurusrex/spread
