Viewing profile — radarroark
radarroark
HN member- Joined
- Fri, Jul 21, 2023, 12:45 PM UTC
- HN karma
- 36
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About radarroark
No profile information was provided.
Recent public activity
-
comment
Comment #47014558
Pretty typical jaded HN comment there, chief. "This language's churn is more than I prefer -- why would anyone use it?" If you're not interested, just downvote and move on. Wonderi…
-
comment
Comment #46673332
I want to go back to making desktop programs the way we used to before they turned into web apps that bundled chrome. I know I should just use Qt but I have some experience already…
-
comment
Comment #46673168
Anyone have experience with distributing win32 programs for Linux and/or MacOS by bundling wine? I take it that statically linking is out of the question, but I am guessing you cou…
-
comment
Comment #46670590
Not quite the same as the object serialization you'll find in many standard libraries, because xitdb can read/write data incrementally, so you can work with large-than-memory data …
-
comment
Comment #46670489
> Point 1 may be a problem if you're embedded. Large dependencies are not only a problem in embedded programming. That sort of thinking is how we got to the explosion of dependenci…
- comment
- story
-
comment
Comment #46525683
The fastest approach is to just zero out the data. Alternatively you can rebuild the entire database while preserving only the data accessible in the latest copy of the db (kinda s…
-
comment
Comment #46498591
People are slow to realize the benefit of immutable databases, but it is happening. It's not just auditability; immutable databases can also allow concurrent reads while writes are…
-
comment
Comment #46366164
Surprisingly, no it does not. Datomic has a more limited feature that lets you make an in-memory clone of the latest copy of the db for speculative writes, which might be useful fo…
-
comment
Comment #46364926
In theory, a database that uses immutable data structures (the hash array mapped trie popularized by Clojure) could allow instant clones on any filesystem, not just ZFS/XFS, and al…