Routeros zola syntax highlighting support

I was doing some Mikrotik related blog posts recently and even though my neovim has support for RouterOS syntax in markdown .md files inside code blocks via sheerun/vim-polyglot, zola does not have a built in support for it. Claude was however able to convert this vim script into...

Mikrotik router button LEDs toggle script

Recently I have moved my router from one place in a house to another and got a new distraction: it's fast blinking LEDs right into my face. Pressed the mode button on the back and I was expecting them to turn off but to my surprise, nothing happened. Fortunately, I had a backup o...

Running dusk tests watcher

After I had success with my unit and feature tests watcher script I decided to build something similar for a Laravel Dusk E2E (end-to-end) test too. However, it was a little bit different this time as I have found out after many iterations. I started up simply updating the watche...

Moving window to a monitor and back on a Mac

Getting an open window from and to a monitor on mac, I have found two general options: 1. Three-finger swipe up, then move - but the window is not maximized on my Mac, it just ends up being somewhere on the given monitor, PITA 2. Hover cursor over the little green icon at the...

Mastering internal links in zola

When building a static site with Zola, one common issue is discovering broken internal links only after deployment. External links pointing to your own content (like post) are treated as external by Zola's link checker, missing valuable validation opportunities. Here's how I conv...

Testing 3d printed TPU pad

Recently I printed a few of the sanders and they are nice to hold and the screw works as it should. This was my first ever screw print so I was a bit skeptical about that, but for large enough screws, 3D printing appears to work. However, the design also recommended a squishy pad...

Fix Laravel Herd SSL error

After migrating from Laravel Sail to Herd on Mac I needed to also find a way to make websockets work, as this app used them. Previously I was relying on soketi and it was running under its own docker compose, but with Sail gone, this went too. Sure I could just run soketi from np...