Viewing profile — neunhoef
neunhoef
HN member- Joined
- Fri, Dec 06, 2013, 7:18 AM UTC
- HN karma
- 57
- Public activity
- 43 items
- HN profile
- View on Hacker News ↗
About neunhoef
Recent public activity
-
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…
-
comment
Comment #29700571
Yes, it has.
-
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…
-
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…
-
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…
-
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…
-
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 …
-
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…
-
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…
-
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…
-
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.
-
comment
Comment #15192706
You are of course right. My mistake.
-
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…
-
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…
-
comment
Comment #15192131
Great. Thanks. I was not aware of this.
-
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…
-
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 …
-
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.
-
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…
-
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 …
-
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…
- story
-
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…
-
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.
-
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…