Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
nulone
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
nulone
8mo ago
Nice. Does this work across multiple machines / moved repos (same project, different local path), or is it strictly path-based?
2.
▲
by
nulone
8mo ago
The ASCII output is the missing piece for AI-assisted coding workflows. LLMs can spit out Mermaid, but you can't see the diagram inline in a terminal/code-review context. This fixes that.
3.
▲
by
nulone
8mo ago
How did you catch it — scanner, review, or just noticed manually? I treat agent-generated diffs as untrusted by default now.
4.
▲
by
nulone
8mo ago
Makes sense — execution boundary is the right place. I'd prioritize audit logs + correlation IDs, and short-lived creds per tool call. Do you expose tool capabilities to the planner without exposing creds?
5.
▲
by
nulone
8mo ago
How do you handle side-effectful tools and secrets? Least-privilege and auditing seem hard once any Python function can become a tool (scoped creds, revocation, logs).
6.
▲
by
nulone
8mo ago
Orchestration buys parallelism, not coherence. More agents means more drift between assumptions. Past a point you're just generating merge conflicts with extra steps.
7.
▲
by
nulone
8mo ago
NVLink postRxDetLinkMask errors show up right before the hang. Has anyone captured a bug report or stack trace while nvidia-smi is stuck to see what it's blocking on?
8.
▲
by
nulone
8mo ago
Looks like an airplane, fails under real inspection. Same smell in diffs: bugfix turns into refactor. Review eats the "velocity." Revert rate keeps you honest.
9.
▲
by
nulone
8mo ago
Merge cost kills this. Does the harness enforce file/ownership boundaries per worker, and run tests before folding changes back into the lead context?
10.
▲
by
nulone
8mo ago
The “craftsman to Ikea factory manager” line from the interview is the real headline here. AI does the fun creative stuff, you get stuck reviewing 2000 lines you didn’t write. Revert rate tells you more than any “10x” claim.
11.
▲
by
nulone
8mo ago
Triage time is the real cost. Even obvious junk takes a couple minutes to read. Surprised bounty platforms dont have a "prove you ran it" step -- version, command, actual output.
12.
▲
by
nulone
8mo ago
Cognitive overhead is real. Spent the first few weeks fixing agent mess more than actually shipping. One thing that helped: force the agent to explain confidence before anything irreversible. Deleting a file? Tell me why you're sure. P
13.
▲
by
nulone
8mo ago
I can never remember jq syntax. Whenever I need to transform JSON, I spend 20 minutes guessing filters until something works. So I built a CLI tool: give it input JSON and desired output, it generates the jq filter. Example: Input: [{
14.
▲
Show HN: JQ-Synth – Generate jq filters from input/output examples
(github.com)
1 points
by
nulone
8mo ago
|
1 comments
15.
▲
by
nulone
8mo ago
Solid primitive. Two questions: 1. Crash edge case: If an agent executes a side-effect and dies before signing the receipt, is that action orphaned? Any WAL-style intent/completion model? 2. Multi-step workflows: Do receipts chain nati