29. 8. 2026
https://www.youtube.com/watch?v=NYFGCESmikA
DHH explains how AI agents radically changed his approach to programming: instead of manually writing code, he now describes the desired result, runs several agents in parallel, and uses different models to review each otherâs work.
Omarchy Quattroâhis opinionated, Arch/Hyprland-based Linux desktopâwas built almost entirely this way. He sees Omarchy as a âmalleable computerâ: users can ask an AI agent to fix problems, create plugins, or add OS features.
He argues that Linux is particularly suited to this because its open configuration, command-line tools, and readable error messages are easy for agents to manipulateâand that AI may finally give desktop Linux its big opportunity.
Full transcript
28. 8. 2026
Read the 1st screen (and remember the shortcuts), drop the epub and start reading. This is purelly client side thing, epub will never leave your browser.
app https://brontosaurusrex.github.io/smoothReader
src https://github.com/brontosaurusrex/smoothReader
I do like âNoto Serifâ for this one.
14. 7. 2026
Full game with levels and powerups

In a world where a single brick can turn gravity upside downâŚ
One man and his paddle must face impossible angles, unstable physics, and an army of stubborn bricks.
The ball is loose. The rules are broken. You shall not pass!
On a PC
Controls: Mouse or keyboard (left/right, left alt/right alt or A/D), space and esc are pause toggle. Page up / Page Down are next or previous level (if already unlocked). R toggles debris.
Pointer can be captured with right mouse click (toggle), so that during play cannot get out of active screen (user reported this as unwanted behaviour on hackers news).
Cheats: Z toggles zapper, M toggles magnets.
Dev stuff: I or P (triple toggle), E is editor, F is show/hide fps, shift + F is reset min fps.
On a mobile
There is a menu on top right where the ball represents the controls you can select. If you select tilt, make sure phone is perfectly vertical, since that will the zero point.
Both
There is fullscreen and pause buttons up in the right top corner next to menu dots.
P l a y T h e G a m e.
Firefox on dual screen setup
Firefox will somehow keep the same refresh rate as the fastest monitor, in my case moving from 144Hz to 60Hz monitor will still keep the 144Hz refresh rate. To test and temporarily solve this search for layout.frame_rate in about:config and change it to 60 (default is -1).
Chrome should change refresh automagically and correctly.
GDPR
This game is temporarily using plausible.io user counting.
itch.io
Game is also on itch.io, https://postgravity.itch.io/physical.
Important: There is Support This Game button.
Press
https://www.microsiervos.com/archivo/juegos-y-diversion/gravedad-atraccion-magnetica-efectos-fisicos-breakout.html
Gravity, magnetic attraction and other physical effects in a worthy descendant of the Breakout âŚ
Other interesting keys include Z (zapper), which unleashes lightning bolts that destroy everything like the wrath of Zeus âŚ
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"