Love seeing the two example OS binaries side-by-side. Even though I don't know exactly what their differences mean, I feel like I'm getting a good impression of their "Gestalt." Thank you for sharing!
imho Nikita did a good job and I wish he stayed on.
Twitter is 100% better now than a year ago. For one, I haven't gotten a single bullshit click-farm fake-ass sock-puppet follower in months. Secondly, I see very few low-effort reply guys lately, human or otherwise.
Are you paying? I see an endless stream of AI or bot-like posts in the replies of basically every tweet I see with any traction, but i'm not a paying user so I may have the bad version of the platform.
Same. I just skip verified posts because the ones at the top are LLM replies. Unless I'm missing something, that should be easy to detect. Instead I've got ghost banned for a week+ now, no reason given and no way to appeal. X now is the place if you want to check for yourself the dead internet theory.
That's been my experience too. I left twitter a few years ago, but when I created a new account (only following AI and startups and people MAKING things, and movie and show clip accounts), it's been so awesome to keep track of all the stuff going on.
Amazing! I've been in a similar autoresearch-y rabbit-hole lately with getting Apple's 3B Foundation Model to match Sonnet 4.6 on a very specific task.
The result was: 90% parity achieved with a weird combination of a fine-tuned adapter + 1 deterministic step.
The main issue is the amount of information I have to go through to understand what I'm looking at. It's one of the side effects of writing with AI. Because it sees all tokens at once, it doesn't realize a reader might have no clue at all. What I recommend is trying to reduce the entire thing in 1-2 paragraphs that you wrote yourself. Cleaning up unnecessary prose and tucking away data that not everyone might be immediately interested in.
Yes and it also reminds me of one of my favorite books, Andreas Wagner's "Arrival Of the Fittest" and, connected, the Miller-Urey experiment of course.
Thank you, that was perfect Sumday-morning reading: Easy to read yet dense information-wise.
I learned today: The difference between ttf and otf, what strong and weak characters are, what an Em is and where kerning and leading really come from.
My favorite parts: Learning where the magic of ligatures and those tiny postion-changes in moments like "To" come from.
As someone who also recently spun up a new VPS to fiddle with claws:
I personally fully support Hetzner on this because, as a on-and-off customer since 21 years, their service has been absolutely flawless and always worth every cent. They care so I'm totally happy to pay whatever they need to make it work for them, too.
> What this does: apiKeyHelper tells Claude Code to run echo proxy-managed to get its API key. The sandbox’s network proxy intercepts outgoing API calls and swaps this sentinel value for your real Anthropic key, so the actual key never exists inside the sandbox.
This is similar to how I solved a BYOK(bring your own key) feature at work. We had a lot of hardcoded endpoints and structures on the client and code that was too difficult to move over a nice BYOK structure within the given timeframe. So we ended up making a proxy that basically injected customer keys as they passed through our servers. note that there are a lot security implications doing this.