Viewing profile — feznyng
feznyng
HN member- Joined
- Sat, Jun 22, 2024, 4:57 PM UTC
- HN karma
- 105
- Public activity
- 72 items
- HN profile
- View on Hacker News ↗
About feznyng
No profile information was provided.
Recent public activity
-
comment
Comment #48505574
In-process sandboxed llm-generated code execution. Considerably lighter weight, faster to boot (assuming pre-compilation) than Docker or spinning up micro-VMs.
-
comment
Comment #48003022
The dose makes the poison.
-
comment
Comment #47764852
Did you get a chance to evaluate coding performance?
-
comment
Comment #47710182
This is cool stuff, have you considered submitting any of these exploits to https://hackmyclaw.com/ ? Email being the only allowed injection vector might be tricky though.
-
comment
Comment #47649401
You could maybe rearchitect the backend to be provider-agnostic and sell this as a native client for users of Discord, Matrix, Zulip, Stoat, etc. That way you can capture a larger …
-
comment
Comment #47649311
> I think maybe there's a mid-ground with buy forever, 1 year updates, so people get the product they paid for, and if they want updates or support the development they can re-buy,…
-
comment
Comment #47559343
Can you treat kqueue as infallible? I've found FSEvents sometimes drops events at high volume (unless I'm misunderstanding how to use it).
-
comment
Comment #47507125
Could still be useful; maybe for overnight async workloads? Tell your agent research xyz at night and wake up to a report.
-
comment
Comment #47482043
How? There's a bunch of annoying problems here: - Where do you source real time traffic data, ferry schedules, etc? Google APIs get you part of the way there but you'd need to craw…
-
comment
Comment #47481968
Sure, if I'm building something for myself or fellow hobbyists this approach works (though in that case I'd prefer a good TUI/CLI). But if you're building an app for the average pe…
-
comment
Comment #47481847
That isn't secure is the issue, the more things you have it hooked up to the more havoc it can cause. The environment being locked down doesn't help when you're giving it access to…
-
comment
Comment #47481451
How do you make your win32 app look good to the average person?
-
comment
Comment #47416128
My extremely paranoid take is they might intend to replace you with someone who will RTO but need to keep you around for a while until they find that replacement.
-
comment
Comment #47339544
How does WASM solve the platform lockdown problem? That WASM will run in a third-party app that is subject to those restrictions. The system interface exposed within that runtime i…
-
comment
Comment #46723693
LSPs rely on a parser to generate an AST for a given language. This parser needs to be error-tolerant because it needs to return usable ASTs despite often parsing incomplete, incor…
-
comment
Comment #46193417
They did change it, I think after some debacle with Nvidia pushing an update. They seem to want devs to submit their files via their portal now to get rid of the screen: https://ww…
-
comment
Comment #46193298
As you said, you need to have a proper legal entity for about 2 years before this becomes an option. My low-stakes conspiracy theory is that MS is deliberately making this process …
-
comment
Comment #44491692
There's an experimental compiler backend [1] using cranelift [1] that's supposed to improve debug build times. I never see it mentioned often in threads about Rust's long compilati…
-
comment
Comment #44456802
Try entering about:debugging in the address bar then “This Firefox” in the sidebar and installing it from there. I can’t remember if you need to turn on a particular setting but it…
-
comment
Comment #44121462
If anyone does decide to pursue this, you can use napi-rs [0] to write Rust modules and call it from JS. Lower overhead than IPC but you will crash your process if there's an issue…
-
comment
Comment #44056425
Assuming this is hosted on Vercel (which the URL indicates) and everything's done/stored locally (as stated) I don't think there's passive cost associated with providing this servi…
-
comment
Comment #44010981
If you're doing language implementation work in Rust, an excellent crate to get similar diagnostic layouts to the Rust compiler is Ariadne[0]. [0] https://github.com/zesterer/ariad…
- story
-
comment
Comment #43215531
You could make this a bring your own key product. But that will likely limit your market to technical users and businesses already invested enough in AI to have a key. Upside is yo…
-
comment
Comment #43199703
Really great for quickly building features but you have to be careful about how much context you provide i.e. spoonfeed it exactly the methods, classes, files it needs to do whatev…