Live data from Hacker News

Viewing profile — neunhoef

neunhoef

HN member
Joined
Fri, Dec 06, 2013, 7:18 AM UTC
HN karma
57
Public activity
43 items

About neunhoef

[ my public key: https://keybase.io/neunhoef; my proof: https://keybase.io/neunhoef/sigs/lWPEMpv8NltDjZN5uS50zMQpOl-YuQl51ZZly4JLJ0w ]

Recent public activity

  1. story
    Show HN: Learning Rust for C++ Programmers

    This is a collection of YouTube videos I made which target C++ programmers who want to learn Rust. Each video is accompanied by a web page with all code and commands, such that you…

  2. comment
    Comment #29700571

    Yes, it has.

  3. comment
    Comment #21535395

    In academia the cost for running computers and software deployments is usually greatly underestimated (I speak from experience). If you are a for-profit company and compute the ful…

  4. comment
    Comment #21535383

    (ArangoDB developer here) MongoDB is a document store, ArangoDB is multi-model, so you have graphs and key/value and search as a additional benefits. The query language AQL is also…

  5. comment
    Comment #18929479

    Disclaimer: I am one of the core developers of ArangoDB and I work for the company ArangoDB. Yes, ArangoDB is young (6 years) in comparison to PostgreSQL (30 years). Yes, PostgreSQ…

  6. comment
    Comment #16820810

    As explained in the article: The "library part" of our executables is very small in comparison to the executable size. Furthermore, the memory usage of the database itself is usual…

  7. comment
    Comment #16820734

    After compilation the executables have symbols and debug information. For the release we simply strip it. It is easy to get/provide versions with debugging information. We plan to …

  8. comment
    Comment #16232066

    Author of posted article here: thanks for the additional pointers. It seems that graphistry excels at visualization. Essentially, your offering confirms the main story of the artic…

  9. comment
    Comment #15861376

    Does anybody reading this have any experience with the performance of AWS Neptune? I would be very interested to hear about the performance of deep graph traversals on large sharde…

  10. comment
    Comment #15861360

    NoSQL is a very wide field. There are lots of special cases in which certain NoSQL data stores can help a lot. One of the points the posted article makes is that native multi-model…

  11. comment
    Comment #15192727

    In discrete mathematics this happens a lot. Group orders, sizee of conjugacy classes, semigroup orders, numbers of isomorphism classes, character degrees, etc.

  12. comment
    Comment #15192706

    You are of course right. My mistake.

  13. comment
    Comment #15192414

    Silly solution: The rationals are countable. Just use any bijective mapping of the natural numbers to the rationals and then use the scheme for the natural numbers. (I know, a math…

  14. comment
    Comment #15192240

    That is right, if you have access to your comparator, then this is much easier. However, it would still not work well for negative numbers, and, in many cases you sit client side a…

  15. comment
    Comment #15192131

    Great. Thanks. I was not aware of this.

  16. comment
    Comment #15191996

    Many JSON parsers will treat long numbers as doubles. Therefore the only safe way to store them without potential loss is in a string. Without the encoding in the article or someth…

  17. comment
    Comment #15191787

    Author here: In mathematics, in particular discrete mathematics, there is a genuine need to store long integers accurately and to compare them numerically. This encoding is useful …

  18. comment
    Comment #14812688

    ArangoDB starter is now bundled with the distribution and can start single server instances as well as cluster. It can use Docker or normal processes.

  19. comment
    Comment #14812476

    I think yes. The RocksDB engine is much better than the old engine in situations in which the stored data is larger than the available RAM. It all depends on the concrete queries i…

  20. comment
    Comment #11960506

    Max from ArangoDB here. Just to avoid disappointment: The official Docker image arangodb will need a few days to be updated and be validated by Docker. Use arangodb/arangodb:3.0.0 …

  21. comment
    Comment #11261426

    One of the developers of ArangoDB here. Let me explain this quotation. When your graph data (including indices) do no longer fit into the RAM of a single server, you can either liv…

  22. story
  23. comment
    Comment #10649832

    Disclaimer: One of the ArangoDB developers here. As published in the white paper, here it is: ```{ "arangodb": { "async-replication": true, "nr-dbservers": 80, "nr-coordinators": 8…

  24. comment
    Comment #10169525

    I only say that on many days I spend more time in my vim than in my bed. I usually run it in a terminal Window.

  25. comment
    Comment #9699987

    (Disclaimer: Max from ArangoDB) We have invested considerable effort to optimize each database. Obviously, we know our own product better than the others. However, we have asked pe…