Live data from Hacker News

Viewing profile — joel_dice

joel_dice

HN member
Joined
Sat, Oct 24, 2015, 5:48 AM UTC
HN karma
80
Public activity
15 items

About joel_dice

No profile information was provided.

Recent public activity

  1. comment
    Comment #37772895

    I created https://github.com/dicej/component-sandbox-demo when you asked about this on the Bytecode Alliance Zulip. Curious if you have any feedback on it.

  2. comment
    Comment #33911048

    There's a simple example of using React server-side rendering here: https://github.com/fermyon/spin-js-sdk/tree/main/examples/ja... . We haven't tried anything more advanced than t…

  3. comment
    Comment #29285286

    This resembles ascending a rope using prusiks, which is a lot of fun if you haven't tried it. Great to see a variation the helps people with limited mobility to get around unassist…

  4. comment
    Comment #29183216

    I've been making my way through this book for the past few weeks; just started Chapter 20. I tried reading Harper's Practical Foundations for Programming Languages first, but it wa…

  5. comment
    Comment #26914779

    I've implemented a RDBMS that supports this [1]. It handles joins, views (which are automatically materialized and incrementally updated), etc. It's memory only, and it doesn't sup…

  6. comment
    Comment #25309072

    I've been biking year-round in Denver for decades. The winters here are relatively mild, but we do get blizzards now and then. I tried studded tires, but found they didn't help muc…

  7. comment
    Comment #25062230

    Nice work! I spent about six months pursuing the exact same idea about five years ago with the hope of building a company around it. I got reasonably far with a prototype, but gave…

  8. comment
    Comment #23864199

    On the topic of inactive continuation implementations for Java: I implemented native support for both delimited (shift/reset) and non-delimited (call/cc) continuations in the Avian…

  9. comment
    Comment #18777167

    Noria is an interesting one: https://github.com/mit-pdos/noria It's compatible with the MySQL wire protocol and offers extremely efficient, incrementally updating materialized view…

  10. story
    Ask HN: Where are the end-to-end encrypted DBaaS services?

    Database as a Service offerings like Firebase seem to be gaining popularity as a way to outsource backend administration, scalability, security, etc., and they seem like a great fi…

  11. comment
    Comment #10502719

    I wrote most of the Avian VM, and I agree that the code generation is quite primitive compared to LLVM's. We've considered using LLVM as an alternative code generator, but hesitate…

  12. comment
    Comment #10459109

    You can use Avian with the OpenJDK class library to produce a standalone executable, in which case java.awt.Robot should work. ProGuard could help to keep the size down. It would a…

  13. comment
    Comment #10442700

    As dkharrat pointed out, you can use the Avian VM with the OpenJDK class library instead of the much more limited default library. However, there's no support for JVMTI, and not ev…

  14. comment
    Comment #10442681

    Technically we don't support running the Avian VM on Android, although it should work with minimal porting. However, we support using the VM with any of three class libraries: Andr…

  15. comment
    Comment #10442617

    Specifically, it supports native first class continuations, including both call/cc-style and delimited (shift/reset-style), which can form the basis for coroutines, generators, and…