Viewing profile — thitami
thitami
HN member- Joined
- Wed, Mar 25, 2026, 9:37 AM UTC
- HN karma
- 2
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About thitami
No profile information was provided.
Recent public activity
- story
- story
-
comment
Comment #47672786
[dead]
-
comment
Comment #47672783
[dead]
-
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…
-
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…
-
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…
-
comment
Comment #47658787
[dead]
-
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'…
-
comment
Comment #47624723
[dead]
-
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 …
-
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…
-
comment
Comment #47612903
[dead]
-
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…
-
comment
Comment #47598384
[dead]
-
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…
-
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…