Post details
Guy Zerega led sales and marketing at Stack Overflow, where he once hired me.Now he leads sales at Cyborg - they offer end-to-end encrypted inference data. This...

Guy Zerega led sales and marketing at Stack Overflow, where he once hired me.Now he leads sales at Cyborg - they offer end-to-end encrypted inference data. This...

In late 2021, the Log4Shell vulnerability sent shockwaves through the global tech community. For the first time, we're sharing the untold, inside story from ...

New proposal: go vet check for using %q with integer typesBlog: I'm Independently Verifying Go's Reproducible Builds by Andrew AyerJetBrains' language promise indexReddit: Why I built a ~39M op/s, zero-allocation ring buffer for file watchingBlog: A modern approach to preventing CSRF in Go


Adam Jacob joins us to discuss how agentic systems for building and managing infrastructure have fundamentally altered how he thinks about everything, including the last six years of his life. Along the way, he opines on the recent AWS outage, debates whether we're in an AI-induced bubble, quells any concerns of AGI an...
It's a FRIGHT...when your record a podcast with dead projects all around. Tech debt, poor choices, timing, market shift, and optimizing for the wrong things are all lurking around waiting to pop out at you! Just don't forget to push record.
Why, yes I am having to spend my Sunday morning looking into reducing the impact of bot scraping on my website after a significantly large AWS bill, why do you ask?

This post requires authentication to view.
It’s basically Deep Space Nine. [contains quote post or other embedded content]
Between and I took 4995 steps.
Some readers read every word, others skim. Some readers speak your language, others don't. Some readers read the original version, others a summary.
Between and I took 4167 steps.
Pretty sure I have the scariest engineering costume of the day.
Between and I took 6771 steps.
Well there it is. I've finally made it. I've reached the top.
published a lil JavaScript package called is-mdm, inspired by @lgug2z.com's blog post that was at the top of lobste.rs yesterday and wrote a post about it: bnb.im/posts/is-mdm/ https://bnb.im/posts/is-mdm/
A quick post about is-mdm, a package I wrote to detect MDM enrollment that was inspired by a Rust implementation found on Lobste.rs from LGUG2Z.

Cut my hair from feminine short to an enby baddie short again 🥰 Ah the gender euphoria is real
Between and I took 6280 steps.
Welcome back to Break, a Fallthrough aftershow! In this episode, Kris, Matt, and Steve talk extend their discussion from Fallthrough episode #43.Enjoying the aftershow? Let us know on social media! If you prefer to watch instead of just listen, head over to YouTube where you watch this episode of...

Jujutsu is a new version control system that's gaining in popularity. Its swappable backends allow users to continue using version control systems like Git without other users even noticing. Steve Klabnik aims to be a big part of it. Much like with Rust, he's getting involved early and making...

If you dual-license your software in such a way that it requires a paid license for commercial use, here are two code blobs for you. macOS pub fn mdm_enrollment() -> eyre::Result<(bool, Option<String>)> { let mut command = Command::new("/usr/bin/profiles"); command.args(["status", "-type", "enrollment"]); let stdout = command.output()?.stdout; let output = std::str::from_utf8(&stdout)?; if output.contains("MDM enrollment: No") { return Ok((false, None)); } let mut server = None; for line in output.lines() { if line.starts_with("MDM server") { server = Some(line.trim_start_matches("MDM server: ").to_string()) } } Ok((true, server)) } Windows pub fn mdm_enrollment() -> eyre::Result<(bool, Option<String>)> { let mut command = Command::new("dsregcmd"); command.args(["/status"]); let stdout = command.output()?.stdout; let output = std::str::from_utf8(&stdout)?; if !output.contains("MdmUrl") { return Ok((false, None)); } let mut server = None; for line in output.lines() { if line.contains("MdmUrl") { let line = line.trim().to_string(); server = Some(line.trim_start_matches("MdmUrl : ").to_string()) } } Ok((true, server)) } Looking at mobile device management (MDM) enrollment is not a silver bullet for identifying corporate devices running your software, but it is a good start.

This is why I have a website. It’s also why everything I’ve ever written has appeared on my website with *very* few exceptions Having a single domain name that’s YOU is invaluable. My website gets lots of compliments on its branding and appearance. My slides borrow that appearance, too It matters! [contains quote post or other embedded content]
Honestly, if you value content you've created always make sure it has a home outside of a single company. Always. [contains quote post or other embedded content]
This is why I have a website. It’s also why everything I’ve ever written has appeared on my website with *very* few exceptions Having a single domain name that’s YOU is invaluable. My website gets lots of compliments on its branding and appearance. My slides borrow that appearance, too It matters! [contains quote post or other embedded content]
“buried the lede” bro you poured cement over it
It seems so rude and careless to make me, a person with thoughts, ideas, humor, contradictions and life experience to read something spit out by the equivale...

It's our first Kaizen after the big Pipely launch in Denver and we have some serious mopping to do. Along the way, we brainstorm the next get-together, check out our new cache hit/miss ratio, give Pipely a deep speed test, discuss open video standards, and more!
Between and I took 5055 steps.
Welcome back to Break, a Fallthrough aftershow! In this episode, Kris, Matt, Angelica, and Cory O'Daniel talk extend their discussion from Fallthrough episode #42.Enjoying the aftershow? Let us know on social media! If you prefer to watch instead of just listen, head over to YouTube where you...

Between and I took 4451 steps.
Thanks to Forge for sponsoring this episode!Find Forge at https://withforge.com/. They are HIRING! Find Forge's jobs page here: https://in-the-forge.notion.site/hiring-rolesDRAFT RELEASE NOTES — Go 1.26Coding Challenge #100 - BitTorrent ClientThe Evolution of Caching Libraries in GoThis episode...

In our first episode, H. Jon Benjamin joins Amber Nash to talk about the pilot episode of Archer, “Mole Hunt.”…

Week Notes 25#43 (2 mins read).
What happened in the week of 2025-10-20?
Between and I took 8888 steps.
I maintain that Crazy in Love by Eden Project is one of the best songs to listen to while you’re Going Through It and can be really present with music
Between and I took 7268 steps.
Between and I took 6828 steps.
Oof A House of Dynamite was intense but a very good film - would recommend!
Had some very similar vibes to Leave the World Behind
Very much recommend it - colleagues (and managers) have found it super useful as a "cheat sheet" for some things about working with me
It feels really great to reject someone who offers to pay you money for something you don't want to do a HUGE privilege
Finding missing releaseTimestamps in Renovate (3 mins read).

How to query your Renovate debug logs (or renovate-graph exports) for missing release timestamps.