Badges

Tastemaker
Tastemaker
Gone streaking
Gone streaking

Recently Supported

dif.sh
dif.shMarkdown feature flags your coding agent installs for you
Browzer
BrowzerPut your technical content on autopilot
Kilo Code for JetBrains
Kilo Code for JetBrainsFully native, open-source coding agent built for JetBrains
Interactive Sessions by Revolte
Interactive Sessions by RevolteDrive the full SDLC with AI agents, step by step

Forums

10h ago

The tool your coding agent keeps ignoring is probably returning addresses instead of answers

A coding agent never sees a tool's backend. It sees the tool's description before the task and the tool's result after the call, and nothing in between. That sounds obvious until you notice how many tools were designed for a client that could do the second half of the job for free.

A language server is the clean example. Under the protocol, a find-references request returns a list of locations: a file, a line, a character offset. That is the right answer for an editor, which has the file open and can jump there. An agent has nothing open. Hand it a location and the next thing it does is read the file, one call per address.

A small pilot study posted in August measured what that costs. With grep and an LSP-backed tool both available, three models picked the semantic tool 0 to 6 percent of the time on code-location tasks, which is roughly never. The author then kept the same backend and the same set of references and changed only the reply, attaching two lines of source above and below each one. On a multi-file rename, pass@1 rose from 0.67 to 0.83 and follow-up file reads fell from 15.2 to 3.2 per episode. The scale is a pilot, six tasks and a few repos, so treat the numbers as direction rather than magnitude. The direction is clear enough.

The second half of the story came from Spotify. They wanted Claude Code to stop reading large files whole and route that work to a smaller model. Rules in CLAUDE.md sort of worked. Advisory, though, and the model could ignore them. What held was a PreToolUse hook that blocks the read past a line threshold and names the alternative, whether or not the model read any instructions about it.

2d ago

Building real-time state and checkout webhooks using Gemini and Antigravity with zero CS background

Hey everyone,

I don't come from a formal engineering background, but I've been experimenting with how far pure natural language prompting can push a functional full-stack app.

I recently shipped an interactive daily bidding leaderboard where users displace ranks dynamically, resetting every midnight UTC.

5d ago

Three quarters of the clicks past our bot flag were one crawl

Up front, I build and run affiliate sites for other people as a paid service, so a click count is something I hand to someone else, and I am not neutral about it being right.

We log every outbound click ourselves instead of reading the network report back, one row per click carrying product, address, signature and time. That decision is what made the rest visible. On one UK tag the report handed me a count of 1,375 and nothing underneath it.

View more