Advertisement · 728 × 90

Posts by Attila Györffy 🦜

Preview
Make posix build target paths configurable via env vars by attilagyorffy · Pull Request #5045 · savonet/liquidsoap Summary Packagers (e.g. Homebrew) currently need to patch the source with inreplace to override the hardcoded paths in liquidsoap_paths.posix.ml. For example, the proposed Homebrew formula does: in...

Sometimes all it takes is making something easy for others. Now that #liquidsoap supports configurable build paths, a proper #Homebrew formula is within reach — `brew install liquidsoap` could soon be all you need to start your own internet #radio station. 📻

github.com/savonet/liquidsoap/pull/5045

3 weeks ago 0 1 0 0

A lot of the rules in software have changed, but the timeless ones still matter. If you’re starting out, this book could be one of your most important resources. Bálint brings grounded judgment and the kind of clarity even experienced engineers need to revisit sometimes. Highly recommended. 📚

1 month ago 1 0 0 0
Post image Post image Post image

Thanks for sharing! My #PDS runs on #TrueNAS alongside ~30 containers, blobs on #RustFS (S3), public via #Cloudflare tunnel. Monitoring: custom Go #Prometheus exporter + #Vector log-to-metric pipeline for HTTP request stats. Will open-source both the exporter and Grafana dashboard soon.

1 month ago 2 0 0 0

Running this as an experiment — #self-hosting my own Bluesky PDS on my #homelab. Custom Prometheus exporter for repo, sequencer, and S3 metrics in Grafana. If this proves stable, I'll migrate my identity here permanently. AT Protocol makes it possible: your DID is yours, switching PDS is first-class

1 month ago 2 0 1 0
Open Source Is Just Plumbing Now It's not idealism. It's the infrastructure under every bank, hospital, and government system you depend on.

Took a moment to think about what #opensource actually means in 2026. Not the usual pitch about freedom and community — more about plumbing, Nebraska, and why nobody thinks about #infrastructure until it breaks.

www.attilagyorffy.com/blog/open-so...

1 month ago 1 1 0 0
Post image Post image

Redesigned my personal site & consolidated everything — blog posts, essays from scout.engineer, curated tweets, projects — into one place. IBM Plex Mono throughout, five CSS variables for the entire theme, light and dark. No frameworks, no build step. Just HTML, CSS, and enough whitespace to breathe

1 month ago 2 0 0 0
Stop Naming Your Go Constructors New Why Parse is better than New when your Go constructor is really parsing a string.

If a function takes some dodgy raw string, interrogates it, validates it, and only then lets it into polite society as a proper type, that’s not New. That’s Parse. Apparently I now have opinions about Go naming. Tragic.

www.attilagyorffy.com/blog/stop-na...

1 month ago 0 0 0 0
Preview
GitHub - attilagyorffy/prometheus-exporter-nvidia-gpu: Prometheus exporter for NVIDIA GPU telemetry via nvidia-smi Prometheus exporter for NVIDIA GPU telemetry via nvidia-smi - attilagyorffy/prometheus-exporter-nvidia-gpu

I’ve open-sourced a Prometheus exporter for NVIDIA GPU telemetry via nvidia-smi. Built for homelab and single-node Docker setups where I want proper GPU #observability without unnecessary stack weight (existing exporters were heavily tied to Kubernetes).

github.com/attilagyorff...

1 month ago 1 0 0 0
Advertisement

Sh*t, I'm starting to like Go.

1 month ago 0 0 0 0

#Protip: Validate LLM responses before caching them. We cached truncated JSON (max_tokens cutoff), then every retry hit the same broken cache. Now: parse into a typed result first — if it fails, don't cache. On cache hit, re-validate; bad entries self-evict and retry fresh. Now our cache self-heals!

1 month ago 0 0 0 0

The general pattern is: use types to make invalid states or operations unrepresentable. #Protip

1 month ago 0 0 0 0

Other examples include:
- Distinguishing EmailAddress, NonEmptyString, HashedPassword from raw strings
- Units/measurements: preventing mixing meters, feet, euros, dollars, net vs gross values
- Permissions / capabilities: Only code with an AdminUser or CanDelete token to allow sensitive actions
...

1 month ago 0 0 1 0

Example: model an order as DraftOrder, SubmittedOrder, and PaidOrder. Then pay() only accepts SubmittedOrder. Trying to pay a draft won’t compile, so invalid state transitions are caught before the app even runs. #Protip

1 month ago 0 0 1 0

#Protip: Model state machines as types. Example: an order goes Draft → Submitted → Paid. Then pay(order) can require a SubmittedOrder, so paying a draft fails at compile time. The compiler blocks invalid transitions before the code ever runs.

1 month ago 0 0 1 0
Preview
GitHub - attilagyorffy/prometheus-exporter-adguard-home: Prometheus exporter for AdGuard Home, built following official exporter guidelines Prometheus exporter for AdGuard Home, built following official exporter guidelines - attilagyorffy/prometheus-exporter-adguard-home

I built a #Prometheus exporter for #AdGuard Home, designed around official best practices: synchronous pull-on-scrape, correct metric naming, bounded cardinality, and partial failure tolerance. Includes a ready-to-import #Grafana dashboard: github.com/attilagyorffy/prometheus-exporter-adguard-home

1 month ago 0 0 0 0
Preview
Hello, world — I’m building Audiqa I'm starting Audiqa: a local-first audio library manager for people who care about their music. It treats music files as first-class data, built to serve your long-term interests.

Announcing Audiqa — a local-first audio library manager for people who actually care about their music. Your files are first-class data, designed for long-term ownership, not platform lock-in. Now and long-term.

blog.audiqa.app/announcing-a...

3 months ago 2 2 2 0

Just published Docker Compose 🐳 configs for some apps missing from the official TrueNAS catalog. Currently Ghost, MailCatcher, Fizzy — all tested and ready to deploy via the TrueNAS Web UI, no more trial-and-error. Contributions are welcome! github.com/attilagyorff...

3 months ago 1 0 0 0
Advertisement

Just dug up a blog post I wrote in early 2007 about my first steps with #RubyOnRails. Which apparently means I started on Rails 1.2 — a version so old it ran on steam and optimism. URLs barely had REST, I barely had a beard. Wild times. 🫢

4 months ago 3 0 0 0

The navigation in Apple Music (formerly iTunes) app on macOS is absolutely terrible. It's no outlier in the swarm of "wanting it all" kind of modern music players that pack way too many things ― podcasts, videos and now even DMs (really Spotify?!) ― into their jammed-up UIs. Absolutely disgusting.

4 months ago 0 0 0 0
Preview
Enhanced contribution guide for TrueNAS Apps catalog by attilagyorffy · Pull Request #3772 · truenas/apps Overview This PR significantly enhances the contribution guide to provide a comprehensive, hopefully well-structured resource for both new and experienced contributors to the TrueNAS Apps Catalog. ...

Spent the last few weeks writing a proper contribution guide for the #TrueNAS Apps Catalog. I love the project, but "just look at other apps" wasn’t quite cutting it. 😅

If you maintain OSS, remember: Your docs are your community’s infrastructure.

github.com/truenas/apps...

4 months ago 1 0 0 0

I should have known actually:)

4 months ago 2 0 0 0

Nog yourself out! 🤭 Also, am I delusional or the Nog song in the background could actually have been an inspiration for Freezeezy Peak’s amazing song? ❄️⛄️

4 months ago 2 0 1 0
A screenshot of a browser window showing an HTTP 500 error when trying to load the Ghost blog API documentation.

A screenshot of a browser window showing an HTTP 500 error when trying to load the Ghost blog API documentation.

Every few years I try giving @ghost.org another chance as a feature-rich home for my blog… and, like clockwork, it greets me with a fresh slap in the face. Truly a tradition at this point.

4 months ago 2 0 0 0
Post image

As I've turned 40 today, I find myself thinking more about how I can help build a healthier, more public internet. In this article I argue that real freedom means owning your identity, data, and connections — not just spreading them across more servers.

www.scout.engineer/p/the-need-o...

5 months ago 2 0 0 0
Advertisement

I don’t think I’d ever said ‘it better be worthwhile’ until today — when a colleague asked for a PR review during my lunch break as I was watching a video about cute beavers 🦫 building a dam the mayor sadly said had to be removed.

5 months ago 2 0 0 0
At the center of the image is a comet that appears as a teardrop-shaped bluish cocoon of dust coming off the comet’s solid, icy nucleus and seen against a black background. The comet appears to be heading to the bottom left corner of the image. About a dozen short, light blue diagonal streaks are seen scattered across the image, which are from background stars that appeared to move during the exposure because the telescope was tracking the moving comet.

At the center of the image is a comet that appears as a teardrop-shaped bluish cocoon of dust coming off the comet’s solid, icy nucleus and seen against a black background. The comet appears to be heading to the bottom left corner of the image. About a dozen short, light blue diagonal streaks are seen scattered across the image, which are from background stars that appeared to move during the exposure because the telescope was tracking the moving comet.

All eyes on comet #3I/ATLAS ☄️

Hubble & Webb have already observed this comet coming from outside our Solar System.

Next up, our Mars Express, ExoMars Trace Gas Orbiter and Juice missions will turn their eyes towards it.

Learn more 👉 esa.int/3IATLAS 🔭🧪

6 months ago 139 40 1 5

It’s great to sometimes work from different places, like from a coffee shop. Coding whilst listening to heavy bass music in your headphones. Oh, and it’s a totally new experience when you realise others are looking at you after you’ve dropped a serious bass face. 😅

7 months ago 1 0 0 0

Ouch, I hope you’re well now. It’s crazy how reckless some people are on e-scooters. I wonder if they’d be as reckless if they owned them instead of sharing them. Plus, you don’t need a license to ride these (at least not where I live), so many people don’t know the safety rules.

7 months ago 1 0 0 0

What happened there David? From the video it's unclear whether you've hit a pothole or had been suddenly immobilized by an invisible alien force.

7 months ago 2 0 1 0

This is legitimately terrifying. Actively conspiracy-addled crackpots are in charge of America's health.

7 months ago 247 66 7 0