Max K
mkotlyar.bsky.social
Max K
@mkotlyar.bsky.social
func(){}()
Reposted by Max K
Here's the code:

github.com/tailscale/go... -- a Go module cache virtual filesystem (FUSE or WebDAV) with deduping
GitHub - tailscale/gomodfs: GOMODCACHE Go module cache FUSE filesystem
GOMODCACHE Go module cache FUSE filesystem. Contribute to tailscale/gomodfs development by creating an account on GitHub.
github.com
July 28, 2025 at 1:23 PM
Reposted by Max K
Just published a very opinionated 🔥 blog post on why I still recommend using Prometheus's native instrumentation libraries over @opentelemetry.io, especially if you mainly care about metrics and using them with @prometheus.io:

promlabs.com/blog/2025/07...
Blog - Why I recommend native Prometheus instrumentation over OpenTelemetry
PromLabs - We teach Prometheus-based monitoring and observability
promlabs.com
July 17, 2025 at 2:55 PM
Flowstate gives you a state machine with revision-based concurrency and atomic commit. Update multiple states, like sender & receiver accounts, in a single, consistent transition.

No races. No rollbacks. Just clean, reliable state flow.

#golang #eventdriven #statemachine
July 24, 2025 at 7:44 PM
Make your Go app execution durable, resilient to panics, crashes, and OOMs. With the Flowstate, execution is guaranteed once the state is committed.

Example: github.com/makasim/flow...

#golang #workflowengine #automation
github.com
July 22, 2025 at 8:23 PM
Marshaling domain structs straight into proto binary is just so convenient. Forget all the protoc, buf, endless generated code, and tedious domain-to-API conversions. Bonus: minimal allocations, simple, readable code.

VictoriaMetrics easyproto gives you wings

#golang #protobuf
July 20, 2025 at 9:27 AM
🚀 With this change, you can now build distributed computing networks on top of Flowstate.

The best part? The advertisement logic is powered by Flowstate itself. Nodes commit their state, others subscribe.

PR 👉 github.com/makasim/flow...

#golang #distributedcomputing #workflow
Advertise and call remote flows by makasim · Pull Request #85 · makasim/flowstate
Distributed Flow Execution Support This PR introduces the foundation for building distributed computing networks using flowstate. Each node in the network can advertise the flows it owns (see SetFl...
github.com
July 20, 2025 at 9:27 AM
Just turned my Raspberry Pi into a compact storage server:

🔁 4TB mirrored RAID for important stuff
📥 2TB dedicated to downloads

Amazing what this little board can handle. #homelab #selfhosted
May 11, 2025 at 3:49 PM
There comes a time in every engineer's life when the urge to spin up their own Kubernetes cluster becomes irresistible.

The hard way of course. Here we go.
April 4, 2025 at 6:24 PM
There’s no good reason to use 512 or 768-bit keys these days.

dmarcchecker.app/articles/cra...
How We Cracked a 512-Bit DKIM Key for Less Than $8 in the Cloud
dmarcchecker.app
January 22, 2025 at 5:00 AM
Reposted by Max K
It's easy to lose sight of the fact that, from a tech perspective, we're absolutely living in the future. Our CEO and co-founder @apenwarr.ca looks at just how powerful our modern machines are — and what that means for all of us
Living in the future, by the numbers
Instead of making the traditional New Year predictions, let’s talk instead about the beautiful technological future we live in: the one that exists right now but we don’t always notice.
tailscale.com
January 8, 2025 at 6:46 PM
How can you ensure sequential reads from an append-only log in Postgres?

Insers are concurrent, making the order at the log's head unstable. I’ve found a solution: exclude all results within the current snapshot.
December 7, 2024 at 2:53 PM