ellimilial | 3 years ago | on: The fastest tool for querying large JSON files is written in Python (benchmark)
ellimilial's comments
ellimilial | 4 years ago | on: Dual use of artificial-intelligence-powered drug discovery
ellimilial | 4 years ago | on: Who Founded Venice? (2021)
ellimilial | 4 years ago | on: DynamoDB 10 years later
ellimilial | 4 years ago | on: “Coding is basically just ifs and for loops.”
ellimilial | 4 years ago | on: Show HN: A generator of Fake Italian Coffee names
ellimilial | 4 years ago | on: Show HN: A generator of Fake Italian Coffee names
Sure it's delish, very appealing.
ellimilial | 4 years ago | on: Designing Low Upkeep Software
ellimilial | 4 years ago | on: Why I Use Nim instead of Python for Data Processing
ellimilial | 4 years ago | on: Why I Use Nim instead of Python for Data Processing
From what I gather, the author is a researcher in bioinformatics related field. This may indicate that they tend to work either alone or in a relatively small group. The domain is small scope data processing/manipulation, research/exploratory code, ,likely short-lived or even one-off.
The progress in this context will possibly be governed by sheer processing speed (e.g. it’s unlikely anyone will delve deep into the code, a lot of iterations to ‘just get it done’ instead of testing etc.).
If this is more or less correct, the point that Nim might be more useful than Python for the author sounds very sensible to me. It’s a nice spot between command line tools and more functionality-loaded languages.
ellimilial | 4 years ago | on: Turing Oversold?
ellimilial | 4 years ago | on: A dubious writing style emerging in science
ellimilial | 4 years ago | on: CRISPR Editing in Primates
ellimilial | 4 years ago | on: CRISPR Editing in Primates
ellimilial | 4 years ago | on: The data model behind Notion's flexibility
ellimilial | 4 years ago | on: Flat Data
I started raising my eyebrow (in the best possible sense) upon seeing parts of tooling very similar to ours but simpler and more importantly - without moving parts. We operate in biomedical data space and deal with flat/static data a lot, for example we power https://biokeanos.com with data-in-repo, so Flat Data was immediately interesting.
It is really inspiring to see GitHub actions to having a foray in this direction, definitely something to keep an eye on.
ellimilial | 4 years ago | on: Flat Data
One of the strong arguments for object-like storage (S3 etc) in the context of plain / flat data is scalability and availability for large scale processing frameworks. Databases are only occasionally relevant.
ellimilial | 4 years ago | on: Flat Data
@idan how does it scale with the size (including storage)? Is 'a billion rows' a goal or an actual tested use case?
ellimilial | 4 years ago | on: Try This One Weird Trick Russian Hackers Hate
One might wonder how unfavourable relations with Kremlin look like then.
ellimilial | 4 years ago | on: Ask HN: What lessons did you learn from your best or worst colleagues?
Postgres JSONB works, but it requires maintaining a heavy server process. So does Lucene/elasticsearch.
I have been yearning for embeddable store (in line with SQLite the support that both works and also keeps the data compressed like JSONB). I know there were some attempts, tried some of it those, mostly monstrosities).