Viewing profile — adrian17
adrian17
HN member- Joined
- Tue, Oct 04, 2016, 9:29 PM UTC
- HN karma
- 839
- Public activity
- 149 items
- HN profile
- View on Hacker News ↗
About adrian17
No profile information was provided.
Recent public activity
-
comment
Comment #49241225
If I ask a model to do a change involving editing a file, and it starts investigating internals of my build system, then sure it might not be counterproductive or break the task, a…
-
comment
Comment #48919127
AFAIK a nontrivial (5-10%?) fraction of population own a smartphone without any bigger computing device.
-
comment
Comment #48918110
I thought bot protection was one of reasons for using Cloudflare in the first place (next to general CDN hosting)? After all, they do show a captcha-like challenge on some websites…
-
comment
Comment #48917802
> After 15 minutes of confusion, it turned out Cloudflare had put a crazy robots.txt on my site without my consent (Cloudflare, love you guys, but this needs to stop). Might be the…
-
comment
Comment #48830766
Makes sense, they probably don’t want to leak _the_ secret sauce driving the game itself. I saw some eve-specific logic in Destiny repo, like warp enter condition and warp velocity…
-
comment
Comment #48804630
The catch is that it's not really doing anything. It "stores" 16GB of quants by... storing the base 2GB model and quantizing it on user's machine on demand. The extra diff files ar…
-
comment
Comment #48747498
[dead]
-
comment
Comment #48631253
Also side observation, the last HN user to regularly mention b7r6 (with the strong implication that it's them) got banned here several months ago: https://news.ycombinator.com/item…
-
comment
Comment #48567518
> The GDPR is almost trivial to comply with if you’re not harvesting data willy-nilly. I buy a VPS. I apt install nginx. Is it okay that by default, opening http://IP/index.html lo…
-
comment
Comment #48544223
[dead]
-
comment
Comment #48541968
> Also, as you're using full double/f64-precision all the time, you're leaving a fair bit of performance on the table There's another issue that popped up on my quick naive profili…
-
comment
Comment #48410709
Reading this leaves a weird taste in my mouth, since the author tends to regularly make nontrivial >1k LOC PRs (sometimes several per day) and merge them on the same day with no re…
-
comment
Comment #48344394
Yesterday's comment listed suspected commits alongside the issues: https://news.ycombinator.com/item?id=48334270
-
comment
Comment #48215931
I think this is 6.3.2.3.7 in C99 about casting between pointer types: > If the resulting pointer is not correctly aligned for the pointed-to type, the behavior is undefined. Howeve…
-
comment
Comment #48168301
I agree with you, but just a small nit: > First off, templates are the opposite of opaque due to the fundamental requirement that the implementation be visible to every translation…
-
comment
Comment #48055806
I've seen people like this 15+ years ago on #learnprogramming on Freenode, I'm guessing LLMs just tend to validate that behavior instead.
-
comment
Comment #47919090
I wonder how often this happens in practice - by "this", I mean industry/LLM world not noticing* some research until a bigger player repeats it with louder PR. (*hopefully I didn't…
-
comment
Comment #47780878
They released the source (well, currently only the Android version) at https://github.com/google-ai-edge/gallery . At a glance, I see they do gather analytics about how much the ap…
-
comment
Comment #47654567
No, only E2B and E4B.
-
comment
Comment #47612463
So the repo builds: - C library - neovim plugin - MCP server But not a plain binary, which is the main way ripgrep is directly used (...at least by humans), and compared with.
-
comment
Comment #47509005
> Epic did it backwards — they built the game first, then tried to force the infrastructure (EGS) into existence with money. Didn't Valve push Steam through HL2? It's a different k…
-
comment
Comment #47478573
It already has a fast path, from (I think) 3.11. If you run `object.x` repeatedly on the same type of object enough times, the interpreter will swap out the LOAD_ATTR opcode to `LO…
-
comment
Comment #47461957
I saw your documentation PR, thank you! I also did some reading and experiments, so quickly talking about things I've found out re: refcount elimination: Previously given an expres…
-
comment
Comment #47423702
That's not true. I mean: it's true that it has little to do with OOP, but most imperative languages (only exception I know is Rust) have the issue, it's not "Python specific". For …
-
comment
Comment #47418568
I think CPython already had tier2 and some tracing infrastructure when the copy-and-patch JIT backend was added; it's the "JIT frontend" that's more obscure to me.