Live data from Hacker News

Viewing profile — abendstolz

abendstolz

HN member
Joined
Fri, Jun 19, 2020, 8:49 AM UTC
HN karma
36
Public activity
19 items

About abendstolz

No profile information was provided.

Recent public activity

  1. 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…

  2. comment
    Comment #48776406

    But yours is human IQ, theirs is Artificial IQ. It's like human to dog years ;-)

  3. 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…

  4. 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?!

  5. 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…

  6. 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) .…

  7. 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…

  8. comment
    Comment #29559426

    For binaries, I agree. For libs, I prefer semver

  9. comment
    Comment #29550560

    There is cargo install, yes :) https://doc.rust-lang.org/cargo/commands/cargo-install.html

  10. 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…

  11. comment
    Comment #28987673

    Thanks for the thorough explanation!

  12. 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…

  13. 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…

  14. 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…

  15. comment
    Comment #28987229

    Just in case you don't know about it: https://redox-os.org/ could be interesting to you :)

  16. 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.

  17. comment
    Comment #27732180

    You may be interested in https://github.com/joaoh82/rust_sqlite

  18. comment
    Comment #23572552

    Ah, the good ol' KISS - complexity kills.

  19. comment
    Comment #23572505

    But not Down Under scnr