Live data from Hacker News

Viewing profile — vvern

vvern

HN member
Joined
Fri, Sep 23, 2016, 6:16 PM UTC
HN karma
325
Public activity
123 items

About vvern

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #48961493

    How are folks doing CI on tangled?

  3. comment
    Comment #47764688

    Now I want to see benchmarks

  4. comment
    Comment #47299773

    Notably missing both Go and Rust

  5. comment
    Comment #47214214

    Why does clean room even matter given SQLite is in the public domain?

  6. comment
    Comment #47116015

    Still, I think it’s the right default to start with serializable. Then when you have performance issues you can think long and hard about whether relaxed isolation levels will work…

  7. comment
    Comment #46446164

    About time for the 6th Edition, eh? What would folks include in it? - Vector databases and hybrid search? - Object storage for all the things? Lake houses. Parquet and beyond. - Co…

  8. comment
    Comment #46213792

    This is nice double entendre because tonic is a pleasant gRPC server library in rust! https://github.com/hyperium/tonic

  9. comment
    Comment #45877203

    It should be this way. Clients should have some protocol to communicate the schema they expect to the database probably with some versioning scheme. The database should be able to …

  10. comment
    Comment #45437897

    You’re right that it would run on a block chain, but that fact would primarily exist to power some marketing. Everybody would end up interacting with it through a single centralize…

  11. comment
    Comment #44717761

    Thank you for writing this. This comes up constantly, and it'll be great to have another reference to cite. Another interesting thing about TPC-C is how the cross-warehouse content…

  12. comment
    Comment #44435967

    Folks, for the love of god, please please stop running TPC-C without the “keying time” and calling it “the industry-standard TPCC benchmark”. I understand there are practical reaso…

  13. comment
    Comment #44273543

    Some time ago I worked on cockroachdb and I was working on implementing planning for complex online schema changes. We really wanted a model that could convincingly handle and reas…

  14. comment
    Comment #44123288

    While that’s sort of true, there’s a lot of language specific things that go into making the UX of a debugger pleasant (think container abstractions, coroutines, vtables and interf…

  15. comment
    Comment #43693985

    How would you compare that to, say, go? I think the unit of distribution in go is a module, and the unit of compilation is a package. That being said, by using `internal` packages …

  16. comment
    Comment #43693166

    My biggest issue with rust after two years is just as you highlight: the mod/crate divide is bad! I want it to be easier to have more crates. The overhead of converting a module tr…

  17. comment
    Comment #43560124

    Literally all three of their required features which were not “standard” for swiss tables were requirements for the go implementation. See https://go.dev/blog/swisstable for a nice…

  18. comment
    Comment #43558601

    I’ll nitpick you back: if done correctly, consensus can have quite positive scaling consensus groups can have quite a positive impact on tail latency. As the membership size gets b…

  19. comment
    Comment #43372196

    Cockroach really doesn’t have limitations when it comes to queries. It is kinda magic in that regard. The single partition queries are the special case and are treated as rare. Coc…

  20. comment
    Comment #43246727

    Check out https://sqlsync.dev/

  21. comment
    Comment #42985865

    It’s all open source, sorry there was no link! https://github.com/ajwerner/voronoi

  22. comment
    Comment #42982630

    I made an implementation in clojurescript that animates the algorithm as it goes a while back: https://voronoi.ajwerner.net/#/app-diagrams It’s a very beautiful algorithm. However,…

  23. comment
    Comment #42618112

    I don’t think in NYC it’s fair to argue that there’s relatively little interest in making transit something people want to use. We can debate about whether the efforts are effectiv…

  24. comment
    Comment #42537995

    This feels like a crazy take. The stronger labor laws part I hear, but the anti-urbanism part I don’t. Do you have data or an ideology or something? Seems like you’ve been radicali…

  25. comment
    Comment #42346784

    Have you taken a peek at sqlsync? It's a cool take where you write your entire application logic to operate as transactions and queries over a sqlite database but you do it in wasm…