About 25 results
https://rednafi.com/misc/standard-site/ · 7 Jun 2026
Mirroring a static Hugo blog onto ATProto with standard.site and Sequoia, plus the GitHub Actions wiring that republishes the records on every push without any manual steps.
https://gui.do/post/self-hosted-github-runner-vps/ · 1 Jun 2026
Self-hosted GitHub Actions runners on a small Hetzner VPS cut my CI wall-clock from ~12 minutes to ~3 minutes for about half the price of the GitHub-hosted minutes I was burning. Here's the full setup.
https://matteogassend.com/articles/better-releases-brel · 16 Mar 2026
import Callout from '../../components/mdx/Callout.astro' I really like release-plz for my Rust projects (balzac uses it); it's easy to configure, it automatically updates the relevant version fields (in cargo.toml) and can even update the of your repo. T...
https://posh.pckt.blog/static-sites-are-simple-6u51kgj · 24 Feb 2026
Static Sites are simple. They're just files, and mostly text. Here's a PowerShell one-liner to make a really simple static site: We make static sites with whatever language we want, and we can publish them about anywhere for free.
https://airthoughts.leaflet.pub/3mcnqs35sbs25 · 17 Jan 2026
Notes with my struggle to get it working on my machine
https://rednafi.com/go/tool-directive/ · 13 Apr 2025
Pin tool versions in Go 1.24 with the new 'tool' directive. Replace tools.go pattern with native go.mod support for project tooling.
https://rednafi.com/misc/docker-mount/ · 22 Oct 2024
Master Docker mount types: volumes, bind mounts, tmpfs, and build cache. Clear syntax comparison between -v and --mount options with docker-compose.
https://rednafi.com/misc/behind-the-blog/ · 14 Sep 2024
How this blog is built: Hugo static site generator, GitHub Actions deployment, Cloudflare caching, and R2 storage. Simple, stable, and cost-free.
https://rednafi.com/misc/heredoc-headache/ · 19 Jul 2024
Avoid here-doc pitfalls when running remote commands via SSH. Learn variable expansion gotchas and simpler alternatives for deployment scripts.
https://rednafi.com/go/omit-dev-dependencies-in-binaries/ · 21 Jan 2024
Track dev dependencies like golangci-lint in go.mod with a tools.go file and build tags to exclude them from production binaries.