Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ytklx
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
ytklx
7y ago
Shameless plug: A JSON-like configuration language with considerably less features, no magic and no ambiguity: https://github.com/yuce/jacl
2.
▲
by
ytklx
7y ago
I've checked out Dhall very superficially, but it seems to be aimed at being a strict language to generate YAML and JSON, so IMO it has different goals than Jacl. E.g., an empty list is [] : List Natural in Dhall vs [] in Jacl. Dha
3.
▲
by
ytklx
7y ago
I am fed up with config languages where indentation matters or which require strange syntax to support a few levels of nested maps or require a manual to write a few lines of config. I was dreaming of a config language which is as simple as
4.
▲
Just Another Configuration Language
(github.com)
3 points
by
ytklx
7y ago
|
3 comments
5.
▲
by
ytklx
7y ago
Roaring bitmaps is quite good at compressing bits. Just as an example: Say, most monkeys have the same number of bananas. Pilosa doesn't store it as MonkeyCount bits, but just a few bytes.
6.
▲
by
ytklx
7y ago
This is very similar to how Pilosa saves integers. https://www.pilosa.com/docs/latest/data-model/#bsi-range-enc...
7.
▲
by
ytklx
7y ago
Pilosa uses roaring bitmaps to store the data. Roaring bitmaps are compressed and performing bit operations on them is very efficient since they don't require uncompressing the whole bitmap to perform bit operations.