This is one of those rare takes that really nails it. I love the comparison with the industrial and PC revolutions. I posted something similar (but not nearly as smart) somewhere. It sounds ominous, but it really isn’t. Highly recommended reading.

I really liked Fox’s scorebug that was shown during the Super Bowl. Reminiscent of older broadcasts. Classy and easy to read.

Dear Internet, stop giving away your Severance theories! They’re basically spoilers.

As an Apple News+ user one of the most frustrating things is that there’s no easy way to open the current News App article in the default browser (for sharing with a non-News App user, for example). The process I depended on was opening the share sheet, copying the link and then switching to the browser. With the help of AI, I finally have a shortcut that I have added to the share sheet which does this automatically.

For anyone looking for a good, lightly-used white noise machine, I have a 2019 Intel MacBook Pro that fits the bill perfectly.

Super Bowl ticket prices are plummeting. Can’t imagine why.

That’s right, woodchuck chuckers! It’s Groundhog Day!

I don’t mean to brag, but I started using DeepSeek before it was cool, thanks to The Neuron Daily email newsletter. Started using DeepSeek about a month ago. Sweet.

This year’s Super Bowl is like season 8 of The Office vs. the two Matrix sequels.

As a software engineering leader, my role often feels like a balancing act: juggling technical challenges, team dynamics, and quarterly objectives - all while trying to ensure the team feels supported, empowered, and safe. In the middle of all this, it’s easy to fall into the trap of wanting to fix every problem that comes my way. But what if the most impactful thing to do isn’t to fix anything at all, but to listen?

Active listening is a skill that transforms how you lead. It’s not just about hearing words, it’s about empathizing with the emotions, concerns, and ideas behind them. When listening, and not interrupting to offer a solution right away, you create a space where your team feels heard. This fosters trust, encourages collaboration, and improves morale. Oftentimes, the best ideas can come from the people closest to the problem.

Here’s the hard part: resist the urge to jump in and fix things. You got to listen to your team! As engineers, we’re hard-wired to solve problems, many times immediately. But when you offer solutions without listening to others' concerns, you risk shutting down creativity or making your team feel like their input isn’t valued. In other words, let them finish. When you feel it’s the right time to speak, try asking open-ended questions like, “what do you think the next step should be?” or “how can I support you in this?” This empowers your team and gives them confidence that they’re truly being heard.

Active listening also helps you uncover the root of issues. Sometimes, what seems like a technical problem is actually a communication gap, a misalignment of priorities, or even a personal challenge. By listening deeply, you can address the real problem, not just the symptoms. So, the next time a team member comes to you with a challenge, pause. Resist the urge to interrupt and fix. Listen with curiosity and empathy. You might be surprised at how much more effective, and connected, your leadership becomes.

Want to catch LLM web-crawlers? Here ya go: zadzmo.org/code/nepe…

For those of you who, like me, fall into the center of the Venn diagram of “those who follow Instagram memes” and “those who listen to Yacht Rock”, might I suggest adding Cilla Black’s “Surprise Surprise” to your playlist. You won’t be disappointed.

I have Apple Intelligence. I use Apple Music. Please make it so I can use both to seamlessly beat match tracks on my playlist automatically. Spotify already has something similar with select playlists. Come on, Apple.

So changing the region from US to UK back to US – in both Siri and Region Settings – fixed it 🤷🏻‍♂️

Anyone have an estimate as to how long this should last? It’s been like this for about 24 hours now. To be fair it hasn’t always been plugged into power.

Anyone have an estimate as to how long this should last? It’s been like this for about 24 hours now. To be fair it hasn’t always been plugged into power.

One of the features on iPhone 16 Pro that impressed me the most? Not Apple Intelligence, not camera control, not standby mode. But rather hearing my morning alarm loop in a 4 bar tempo correctly in time rather than cutting out for a second before repeating like on my old 12 pro. Truly magical.

  1. Buy new iPhone 16 Pro.
  2. Buy Apple Magsafe silicone case for said iPhone.
  3. Buy Belkin 2 in 1 Qi2 charger.
  4. (Last step and this is critical!) Look up difference between Magsafe and Qi2.

It only makes sense to do the research AFTER the purchases.

Tried out the free (!) ElevenLabs app. For an absolutely free app (no subscriptions), it’s pretty slick. You can link to a news article and have it read to you in your favorite AI voice, or try out the new podcast tool where the article is summarized in podcast form.

It’s the beginning of the end for landline phone service.

Today’s unnecessary program:

var random = new Random();
var outputNum = random.Next(1, 1001);
Console.WriteLine(outputNum);
while (outputNum > 1)
{
	if (outputNum % 2 != 0)
	{
		outputNum++;
		Console.WriteLine(outputNum);
	}
	outputNum = outputNum / 2;
	Console.WriteLine(outputNum);
}