MoreRSS

site iconManton ReeceModify

I created Micro.blog. I also have 2 podcasts: Core Intuition and Timetable.
Please copy the RSS to your reader, or quickly subscribe to:

Inoreader Feedly Follow Feedbin Local Reader

Rss preview of Blog of Manton Reece

2026-03-12 02:02:25

Thanks to everyone who has tried our new feed reader Inkwell, and especially folks who have upgraded to Micro.blog Premium for the Reading Recap feature. Now that I’ve had a few days to evaluate how the launch is going, we’re going to need to add more servers, so the upgrades help a lot.

2026-03-12 00:52:41

Beto Dealmeida blogs about a human.json file and browser extension that lets other bloggers vouch for who is writing their own posts, not AI-generated:

This JSON document not only says, “all my content under https://robida.net is human-generated”, but it also indicates other people who I trust are doing the same.

I wonder if we all have the same definition of human-generated now? For me, it’s okay if people use an LLM as an advanced grammar checker. Human drafts a post, AI suggests how to polish it.

2026-03-11 11:49:49

From reviews, sounds like the MacBook Neo is a great little laptop. It has been a while since I’ve thought an Apple product actually followed that “a thousand no’s for every yes” video from WWDC a decade ago… This laptop makes the right trade-offs.

2026-03-11 02:41:18

Thomas Ricouard is joining OpenAI. Thomas worked on the Medium iOS app, Ice Cubes for Mastodon (written in SwiftUI), and Codex Monitor. From a thread on Twitter / X:

I also can’t wait to bring my iOS and macOS expertise to help shape the Codex experience around those platforms.

He appears to have stopped posting to the fediverse. It’s too bad the AI community is so entrenched on Twitter / X.

2026-03-11 01:48:19

Miloš Miljković has written an Emacs client for Inkwell. Amazing. It supports bookmarking too.

Running Xcode from Codex

2026-03-11 01:23:10

I’ve been doing a lot of work in Codex for the upcoming Inkwell for Mac release. I’m weeks ahead of where I thought I’d be. One small tweak I’ve made to my workflow is to wire up ⌘R to run the project while I’m in Codex.

Codex has its own run action button, which in theory could run xcodebuild or osascript command-line tools, but that didn’t work for me. So I reached for FastScripts instead. I wrote this tiny AppleScript:

tell application "Xcode"
	activate
	run workspace document 1
end tell

Here’s a screenshot of the config in FastScripts:

FastScripts Settings window displaying keyboard shortcuts for various scripts and settings options.

Now when I’m in Codex and it has finished a change, I review the transcript, then hit ⌘R to run my Mac app and test the new thing. If I don’t like it, I’ll ask Codex for changes and run again. Then I can review the code diff and tweak or commit as needed. The keyboard shortcut makes this cycle just a little smoother.