Joseph Garvin
voicecoding latency and throughput hacker. How did I get here and what am I doing in this hand basket? he/him. also known as @joseph_h_garvin and @josephhgarvin.bsky.social
- Posts
- 372
- Followers
- 65
- Following
- 363
-
Allegedly we have AGI but it still can't create a client that understands approving `git clone` really means approving `git clone`
-
How do you implement an anti-captcha? For when you want the user to prove they're an LLM rather than a human.
-
Setting aside any concerns about parsing, and focusing purely on readability for humans, is there a reason to prefer function signatures that put type first then argument name vs argument name first then type?
-
It's usually a design smell when an API requires a name arg to every object ctor so you end up with lots of code like `Node("node", ...)` but we don't seem to blink at function/enum/trait/etc definitions working that way. Why `def foo(...)` and not `foo = def(...)` ?