Talks

December 17, 2024 · Mario Jason Braganza

Moved From Reeder to Readkit

Le client du RSS est mort, vive le client du RSS!

November 17, 2025 · Mario Jason Braganza

Kubernetes, Note to Self: Need Load Balancer Installed on Bare Metal

Intended Audience Mostly me. Also other grizzly sysadmins who are learning devops like me. ...

November 11, 2025 · Mario Jason Braganza

K3s: Move Data Folder

It’s all about the data!

November 10, 2025 · Mario Jason Braganza

Hugo Redirect From Post in One Section to Another

Problem I have a post in one section of my site, say notes and miscellanea That is my canonical post. But I also need it to show up in the work section of my site, possibly with a another name. A Hugo alias in the yaml front matter does not work, since both sections exist and Hugo gets confused. Solution Make sure layouts/redirect/single.html exists within your Hugo folder structure and it contains just this line … {{- template "alias.html" (dict "Permalink" .Params.target) -}} Create your orginal post as usual Then go create a post in your other1 section with the following metadata: --- title: <Your title here> #date autogenerated by my archetype. if missing, add date date: 2025-11-06T08:30:54+05:30 type: redirect target: <url-to-redirect-to> summary: <Optional text, that will appear in the sectiones listing page> --- The date field is critical. The post might not appear where you expect it, if it’s absent. If not date, then you might need to use weight. One of the two is needed. In my case, the metadata looked like this: --- title: "The Plan for My New Hetzner VM" date: 2025-11-06T08:30:54+05:30 type: redirect target: /nm/2025-11-06/ summary: Alone and helpless, like you've lost your fight --- Done! You can see an entry for “The Plan for My New Hetzner VM” in my work section as you see in the pic below. Clicking that will redirect to the actual post in my Notes and Miscellanea section! Tada 🎉 Feedback on this post? Mail me at feedback at this domain or continue the discourse here. P.S. Subscribe to my mailing list! Forward these posts and letters to your friends and get them to subscribe! ...

November 6, 2025 · Mario Jason Braganza

The Plan for My New Hetzner VM

Alone and helpless, like you’ve lost your fight

November 6, 2025 · Mario Jason Braganza