Live data from Hacker News

Viewing profile — thitami

thitami

HN member
Joined
Wed, Mar 25, 2026, 9:37 AM UTC
HN karma
2
Public activity
17 items

About thitami

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. comment
  4. comment
  5. comment
    Comment #47672780

    Three years is a serious commitment for a fork. The drop-in compatibility story is what makes this viable — the biggest adoption barrier for any requests replacement is the migrati…

  6. comment
    Comment #47658799

    The language-agnostic angle is the right reason to resurrect this. The original gym HTTP API was underrated for exactly that — being able to drive environments from Go or Rust with…

  7. comment
    Comment #47658796

    The JSONB approach for time-series is pragmatic for this scale. The 90-day sleep query concern is real though — have you considered a partial index on the timestamp field within th…

  8. comment
  9. comment
    Comment #47624725

    The SQLite comparison is the right framing. The embedded graph DB space has been missing something you can just drop into a process without ops overhead — Neo4j is great until you'…

  10. comment
  11. comment
    Comment #47624720

    The structured audit report output is the most useful part for teams — raw diagnostic output is fine for individuals but useless in a compliance or incident review context without …

  12. comment
    Comment #47612936

    CSP headers are one of those things that look simple until you actually audit them. The bypass detection is the useful part — I've seen plenty of Laravel apps with a CSP that looks…

  13. comment
  14. comment
    Comment #47612892

    The pytest decorators are the most immediately useful part for me — @skip_linux and @unless_macos solve something I've hacked around with pytest.mark.skipif(sys.platform != ...) mo…

  15. comment
  16. comment
    Comment #47598366

    Interesting approach, but the sandboxing story worries me. An agent that rewrites its own modules at runtime is essentially arbitrary code execution — what stops a hallucinated mod…

  17. comment
    Comment #47598341

    Nice work — the Rich-based CLI with real-time updates without spamming console history is a good pattern. I used a similar approach in a CLI I built recently (Typer + Rich) and the…