Live data from Hacker News

Viewing profile — biokoda

biokoda

HN member
Joined
Tue, Jan 21, 2014, 8:45 PM UTC
HN karma
577
Public activity
230 items

About biokoda

No profile information was provided.

Recent public activity

  1. comment
    Comment #17336204

    Schemas are per actor type and you can have many types. Actors are active or inactive. When you run a query against one, when it becomes active it will check if schema has changed …

  2. comment
    Comment #17332700

    From that point of view yes you are right. There is a ton of nuance in CAP. Usually in these discussions the CAP question is if it is eventually consistent or not.

  3. comment
    Comment #17332194

    It's raft; thus firmly CP.

  4. comment
    Comment #15915635

    Yes a user space thread pool which is what node.js does on top of libuv.

  5. comment
    Comment #15781953

    > Waiting 200ms for the database + an additional 20ms for rendering Those are pretty awful numbers. https://blog.gigaspaces.com/amazon-found-every-100ms-of-late...

  6. comment
    Comment #15763514

    History has proven that anyone no matter their abilities is going to shoot themselves in the foot regularly while using C. Some just less frequently.

  7. comment
  8. comment
    Comment #15459826

    > Depending on how you define "big changes". The way every reasonable person would. This release being the obvious example.

  9. comment
    Comment #15459730

    That is entirely untrue. Releases are regular, big changes are anything but.

  10. comment
    Comment #15392909

    > Well, someone probably said the same about Go or React-Native when they first came out too RN came from a giant company that uses it in its core product. Big difference.

  11. comment
    Comment #15169374

    Yes SQLite with type check constraints.

  12. comment
    Comment #15007709

    io_ syscalls only really work on XFS and require O_DIRECT which means kernel is not caching anything. Unsuitable for web servers.

  13. comment
    Comment #14939605

    Changing the number of cores given to a VM is not so uncommon.

  14. comment
    Comment #14903446

    > There's no middle ground. Not at all. This is what the ? operator is for (was try! before). The idiomatic rust way is to have your own Error type that implements From for other E…

  15. comment
    Comment #14775856

    Overly complicated

  16. comment
    Comment #14775740

    It's far from clear if tokio is not a dead end.

  17. comment
    Comment #14755166

    You can write low level code. Tier 1 platform list is very short however. https://forge.rust-lang.org/platform-support.html

  18. comment
    Comment #14754991

    A huge win compared to C is fearless refactoring. Making changes to an existing codebase in C is a minefield. Refactoring in Rust is a breeze.

  19. comment
    Comment #14754284

    The relatively low portability of rust programs is definitely one of its largest shortcomings.

  20. comment
    Comment #14752564

    The point of Erlang is that it makes writing robust distributed systems easy and fast. The language itself is tiny. Scala on the other hand is not remotely small and easy to unders…

  21. comment
    Comment #14661092

    Lots of companies (like us) use it as basically a replacement for C/C++. They just don't discuss it much.

  22. comment
    Comment #14383256

    Anyone needing that can also extract tikv's raft implementation. It's actually quite easy.

  23. comment
    Comment #14365013

    One plus is the best choice. Great hardware, reasonable price, up-to-date Android no horrible skins on top of stock.

  24. comment
    Comment #14216845

    C/C++ compiler will compile your code if it is correct. Rust will not compile code if it can detect that it will not work or it is not safe even though the syntax is correct. It ca…

  25. comment
    Comment #14082746

    A single repo can have lots of crates