Live data from Hacker News

Viewing profile — bear3r

bear3r

HN member
Joined
Sun, Mar 01, 2026, 4:29 PM UTC
HN karma
7
Public activity
11 items

About bear3r

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. comment
    Comment #47225673

    the article conflates two different things: what's easy for an LLM to write vs. what's safe to run. python wins on the first axis (smaller context, more training data, faster itera…

  4. comment
  5. comment
    Comment #47214104

    tradeoff worth naming: you avoid the autodiff graph overhead (hence the speedup), but any architecture change means rewriting every gradient by hand. fine for a pedagogical project…

  6. comment
    Comment #47213417

    reproducibility isn't really the goal imo. more like a decision audit trail -- same reason code comments have value even though you can't regenerate the code from them. six months …

  7. comment
    Comment #47212665

    different threat model. cloudflare blocks automation that pretends to be human -- scraping, fake clicks, account stuffing. webmcp is a site explicitly publishing 'here are the acti…

  8. comment
    Comment #47211781

    the antml: namespace prefix is doing extra work here too -- even if user input contains invoke tags, they won't collide with tool calls because the namespace differs. not just xml …

  9. comment
    Comment #47210685

    fair point on token efficiency -- dsls are usually tighter than json. where i see mcp still winning is tool discovery: the client learns what tools exist and what args they take wi…

  10. comment
    Comment #47209595

    the output format (ascii/json/markdown) is one piece, but the other side is input schema. mcp declares what args are valid and their types upfront, so the model can't hallucinate a…

  11. comment
    Comment #47208474

    yeah gh cli in particular is lean. though `gh pr view --json body,comments` can still flood context fast. the real win here is gatekeeping what hits context at all, regardless of s…