Headlines Flash
Fri, Aug 7 12:15 AM

#code

Page 3 of 7152 headlines

TechnologyHacker News1d ago

Show HN: Ocean – All your team's agent sessions in one place

I spend a lot of time in Claude Code and Codex with my friend. We kept losing the context behind changes because every agent session lived on one person's laptop, and by the time code made it into a PR, all the reasoning was gone. We tried commits, PRs, and docs, but they only really capture th...

TechnologyDev.to1d ago

Stop Your AI Coding CLI From Wasting Tokens on "Hi" and "Thanks"

In this blog post, we will see how a small Python script called Pleasantries can stop your AI coding CLI from burning a full model call every time you type "hi", "ok", or "thank you". I built this after noticing how often my own prompts to Claude Code and Qwen Code started with a greeting out of...

TechnologyHacker News1d ago

Show HN: Arxid – keyed, non-enumerable ID obfuscation

I kept reaching for Hashids/Sqids to keep sequential IDs out of URLs, but they don't use a real key — the alphabet is shuffled by a salt, and the Sqids FAQ says outright "there is no encryption of any kind. " arxid is a keyed reversible permutation instead: a balanced Feistel network with an ARX ...

TechnologyDev.to1d ago

Measure your own coding habits before you believe anyone else's numbers

Part of "AI, engineering and what survives production", a series on the parts of building with AI that hold up once real traffic hits them. There is a claim going round that you have probably absorbed by now: AI-assisted development is making codebases worse. Refactoring is down, duplication is...

TechnologyDev.to1d ago

Claude Code Subagents: Setup, Config, and When to Use Them

Most Claude Code sessions get slow and cluttered for the same reason: every exploratory grep, every log dump, and every "let me check one more file" stays in the main conversation forever. Subagents exist to fix exactly that problem. They are one of the agent primitives built into Claude Code f...