HackerTrans
トップ新着トレンドコメント過去質問紹介求人

gabriela_c

no profile record

投稿

Show HN: Library to make your own Windows program launcher (like dmenu)

github.com
2 ポイント·投稿者 gabriela_c·2 か月前·0 コメント

Show HN: Bb – Windows API viewer for hackers, in the browser

cristeigabriela.github.io
5 ポイント·投稿者 gabriela_c·3 か月前·1 コメント

Show HN: Bb – Windows through a detective's lens

github.com
1 ポイント·投稿者 gabriela_c·4 か月前·0 コメント

コメント

gabriela_c
·18 日前·議論
based
gabriela_c
·2 か月前·議論
Feels like we're having a computer world Jane Goodall moment.
gabriela_c
·2 か月前·議論
Yeah. It does this. Pretty consistently and replicably depending on the issue, in fact! Yet I can point exactly where it fails.

Why are we not showing the bad choices? On my computer I have hundreds of diffs stored by my agent code review tool that point to style/architecture failures (and in the end, the result of that iteration on the AI output)

I'm not quite sure how people are generating unsalvageable outputs. I'd never ship the result of a first AI pass, either. I review all the code and the architecture, within reason (eg: in Rust I don't preoccupy myself anymore with precisely scoping pub, or whatever, unless I'm making a library crate). I sent a "changes requested" prompt+json to my agent, and it interactively fixes everything (even style, even comments with manual patches with my in-review-tool editor)
gabriela_c
·2 か月前·議論
I loved the character sheet example! Fun!
gabriela_c
·2 か月前·議論
Jesus! Claude could've told this guy all these things. People underestimate how much the average malloc implementation does and how many considerations it makes. Or how much IO sucks.
gabriela_c
·2 か月前·議論
i really like the superset CFG idea, but the following are noteworthy for anybody planning to read the article:

- ~4.75x runtime speed increase (significantly slower than box64, faster than QEMU), 7x executed instruction count increase, 50x binary size increase

- emulates x86 abi until it calls out to external

- has to emulate a large part of x86 cpu state like EFLAGS, compute complex movs individually, etc

- only supports single-thread binaries

- no exception handling/unwinding

- doesnt support the full ISA
gabriela_c
·2 か月前·議論
Claude often does things in more detail, and even better, than I would, in the first pass. But I don't understand how anybody stands comments generated by an LLM?

It's seriously the thing that worries (and bothers) me the most. I almost never let unedited LLM comments pass. At a minimum.

Most of the time, I use my own vibe-coded tool to run multiple GitHub-PR-review-style reviews, and send them off to the agent to make the code look and work fine.

It also struggles with doing things the idiomatic way for huge codebases, or sometimes it's just plain wrong about why something works, even if it gets it right.

And I say this despite the fact that I don't really write much code by hand anymore, only the important ones (if even!) or the interesting ones.

Also, don't even get me started on AI-generated READMEs... I use Claude to refine my Markdown or automatically handle dark/light-mode, but I try to write everything myself, because I can't stand what it generates.
gabriela_c
·4 か月前·議論
> Also sorry to sound egotistical but I think I was an outlier that drifted into doing educational things, many or most kids will spend every moment they get just playing video games.

I am in the same predicament as both of you, having grown up with unfiltered internet access, and not wanting it to have went any other way (I love my life, actually!)

There is a condescending tendency when people hear what I said above, to tell me that I am an outlier, or, God forbid, a "genius", and other equally worrying conclusions regarding my character.

I agree that, today, there are millions more ways that children can fall for objectively negative things, that have been completely, and intentfully engineered to be terrible in a way which can be exploited for profit.

But also, I simply think that, with enough access to mind-numbing content, for long enough... people will simply realize that, actually, they don't want that. At least, not just that.

Adults are not a good term for comparision in the matter of less aggressive addictions, like with social media, because they already have lives they want to escape, with responsibilities and whatnot.

These are not scientifically sourced claims, but, in my experience, children have a lot more time, energy, curiosity, and will/intent to create, for one reason or another, and they have been doing those things since time immemorial.

This is just a consequence of having access to ~the entirety of all human knowledge at their fingertips, with no restrictions, and with an incredible amount of free time at their disposal.
gabriela_c
·4 か月前·議論
Same for kernel drivers
gabriela_c
·6 か月前·議論
This doesn't sound like a particularly difficult problem for some scenarios.

It's definitely convoluted as it comes to memory obtained from the stack, but for heap allocations, a debugger could trace the returns of the allocator APIs, use that as a beginning point of some data's lifetime, and then trace any access to that address, and then gather the high-level info on the address of the reader/writer.

Global variables should also be trivial (fairly so) as you'll just need to track memory accesses to their address.

(Of course, further work is required to actually apply this.)

For variables on the stack, or registers, though, you'll possibly need heuristics which account for reusage of memory/variables, and maybe maintain a strong association with the thread this is happening in (for both the thread's allocated stack and the thread context), etc.
gabriela_c
·6 か月前·議論
or you could use something like caddy (https reverse-proxy, local cert), and have a dedicated ws running in the background that serves your files