Viewing profile — abendstolz
abendstolz
HN member- Joined
- Fri, Jun 19, 2020, 8:49 AM UTC
- HN karma
- 36
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About abendstolz
No profile information was provided.
Recent public activity
-
comment
Comment #48776454
> I think the notion that you could control something (legitimately) smarter than you is a pretty risky proposition. But then think about the CEOs and their employees again. We jus…
-
comment
Comment #48776406
But yours is human IQ, theirs is Artificial IQ. It's like human to dog years ;-)
-
comment
Comment #44051926
Don't rust shared libraries have the problem of no stable rust ABI? So you either use the C ABI or you use some crate to create a stable rust ABI, because otherwise a shared lib co…
-
comment
Comment #44051900
Sounds interesting but at the same time a bit complex. I assume you wouldn't ship the whole plugin runtime for each plugin that wants to host another plugin?!
-
comment
Comment #44051887
You're right. Hot reloading isn't done by default. I manually compile a plugin and in my system I can "refresh" a plugin and even say "activate version 1.1 of the plugin" or "activ…
-
comment
Comment #44051814
match Plugin::instantiate_async(&mut store, &component, &linker).await { Ok(plugin) => { match plugin .plugin_guest_oncallback() .call_ontimedcallback(&mut store, &callback_name) .…
-
comment
Comment #44051610
Very cool! But I prefer the wasmtime webassembly component model approach these days. Built a plugin system with that, which has one major upside in my book: No stringly function i…
-
comment
Comment #29559426
For binaries, I agree. For libs, I prefer semver
-
comment
Comment #29550560
There is cargo install, yes :) https://doc.rust-lang.org/cargo/commands/cargo-install.html
-
comment
Comment #28989626
Thanks for correcting my error. I've never checked core before, so I did when checking up for this discussion. I somehow missed Result. Silly me didn't search on that page, but ofc…
-
comment
Comment #28987673
Thanks for the thorough explanation!
-
comment
Comment #28987499
Mhm, thanks. It never occurred to me (being in non-embedded land) that returning an enum as the error or a &'static str instead of a heap structure like String, could also fail. Se…
-
comment
Comment #28987448
Oh, wow, I was under the impression that the error message would be stack only, no heap involved, but as Result is part of the std library and not of core, this totally makes sense…
-
comment
Comment #28987259
Can you elaborate as to why "his isn't how you'd do things in userspace, but, this isn't userspace so fine" holds? Naive me - not a kernel dev at all - would argue that returning R…
-
comment
Comment #28987229
Just in case you don't know about it: https://redox-os.org/ could be interesting to you :)
-
comment
Comment #28707152
Yes, it was/is for only the duration of the summer (school) break. Has some very weird constraints regarding borders when combining with the eurorail/interrail though.
-
comment
Comment #27732180
You may be interested in https://github.com/joaoh82/rust_sqlite
-
comment
Comment #23572552
Ah, the good ol' KISS - complexity kills.
-
comment
Comment #23572505
But not Down Under scnr