Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
yung_lean
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
yung_lean
3mo ago
This isn't using WASM to solve the "how can I make my file format compatible with more programming languages?" problem. This is trying to solve the "how can I add new encodings to my file format without making everyone
2.
▲
by
yung_lean
3mo ago
A big problem with parquet, which this aims to replace, is that it's hard to add new encodings because everyone wants to stay compatible with old readers. Embedding the decoders in the file as WASM solves this problem since in theory,
3.
▲
by
yung_lean
3mo ago
Yeah this was a research project, it doesn't look like this is getting any adoption
4.
▲
by
yung_lean
1y ago
In my experience, understanding the rules of the borrow checker is not enough to be able to write rust code in practice. For example, ~6 months into using rust I was stumped trying to move data out of a mutable reference. Trying to do thi