Viewing profile — watusername
watusername
HN member- Joined
- Thu, Sep 16, 2021, 12:38 AM UTC
- HN karma
- 629
- Public activity
- 122 items
- HN profile
- View on Hacker News ↗
About watusername
No profile information was provided.
Recent public activity
-
comment
Comment #48905943
> sub-agents will decrypt (by hitting a backend) to do their work Your local harness never decrypts the prompt, and only the OpenAI backend does. Your harness still sees tool calls…
-
comment
Comment #48653228
> bypassing OS kernel > reading a raw device node (e.g. /dev/rdisk*) That's... not bypassing the kernel. Time to integrate SPDK so it actually bypasses the kernel :) https://spdk.i…
-
comment
Comment #48337591
CSS is what allows dickovers to work, not JS, and pure-CSS dickovers are possible [0] :P [0]: https://hunzaboy.github.io/Light-Modal
-
comment
Comment #48069629
You would be surprised how adept SOTA models are at reverse engineering with IDA/Ghidra or even plain old objdump. Opus basically knows IDAPython on the back of its hand.
- story
-
comment
Comment #47781141
... and that was also a year before the crypto winter in 2018 :)
-
comment
Comment #47704234
For Linux desktop users. A bit of tongue-in-cheek but that's pretty much the argument that I've heard in some circles ("it works for us and not going away anytime soon - why waste …
-
comment
Comment #47651624
Instead of Keycloak, I would recommend giving Kanidm a try: It's much more lightweight and covers most of what you usually need (one notable exception being SAML). https://github.c…
-
comment
Comment #47293202
None of which reflect well on the author. The "We're very proud of you." is exceedingly condescending.
-
comment
Comment #46810013
Buyers beware: 4-core A53 is genuinely unusable (original Pinebook/PinePhone specs), A55 is better but I still wouldn’t recommend buying. You may expect performance similar to 15+ …
-
comment
Comment #45960082
Without a proper proxy setup, access to GitHub is often painfully slow from mainline China. But the choice of Baidu Pan is indeed questionable: You need a Chinese phone number in o…
-
comment
Comment #45486614
> I think... it builds a busybox system based on desired commands (similar to a dockerfile, but using a REPL?). I am now very curious how you arrived at this conclusion. Did you ma…
-
comment
Comment #45404114
I assume that you are being sarcastic and referencing The Island movie?
-
comment
Comment #45355725
What’s wrong with Substack?
-
comment
Comment #45301721
IIRC macOS upgrades will automatically store a FileVault token (basically `fdesetup authrestart`) before restarting, so the disk is automatically unlocked. It's not a Tahoe-specifi…
-
comment
Comment #45110990
Title needs "(2024)". It's been over a year and whether the blog is still running on a recycled Pixel 5 is unclear.
-
comment
Comment #45054668
mosh is neat, but I've mostly switched back to good'ol SSH over Tailscale due to various rendering bugs caused by client-server mismatches as well as the lack of port forwarding. B…
-
comment
Comment #45026914
To be frank, the whole post reads like "I hate change" with no convincing argument otherwise. The author even acknowledges the very lenient ramp-up from CAB _and_ the myriad of ava…
-
comment
Comment #44901933
From git's perspective, jj bookmarks are just regular git branches, so you can just do `jj git push` and open a PR as usual. However, unlike git, jj bookmarks are pinned to change …
-
comment
Comment #44840333
Only the invoked app knows whether it needs the focus in the first place. Maybe the link you clicked is supposed to initiate some background processing that does not demand your fo…
-
comment
Comment #44828529
One issue that comes with leaving GitHub is a higher barrier to contributing. The author appears to see this as a nice filter, but it may not make sense for you. With a self-hosted…
-
comment
Comment #44696080
Judging from the comments here, it should be called "the book of nft" for comedic effect :)
- story
-
comment
Comment #44670701
You go to https://code.visualstudio.com and it will appear that AI integration is the whole point too. How a thing is currently marketed != How people have been using it.
-
comment
Comment #44555080
Other commenters have already provided examples for other languages, and it's the same for Rust: async functions are just regular functions that return an impl Future type. As a sy…