Ruud van Asseldonk
Ruud van Asseldonk
I haven’t used Pkl and I haven’t looked deeply into it. I did put a list of some configuration languages here: https://ruudvanasseldonk.com/2024/a-reasonable-configuration-language#appendix-a-non-exhaustive-list-of-configuration-languages I’ll write something up when I get to...
IntelliJ also creates such temporary files on save.
Yep, this is exactly the idea behind the type system! It will not map 1:1 to JSON Schema, but you will be able to enforce similar things with it. The...
`WavWriter::write_sample` is easy to use but inefficient. The `SampleWriter16` was actually born as the result of careful profiling, when sample writing showed up as a bottleneck. When I wrote it...
Yes, this is a limitation of the current design. For a future version, I think I would split it into a lower-level API that reads and decodes one block, with...
I agree it’s needed, VS Code is certainly a widely used editor. I briefly looked into it in the past, it will require writing a custom TextMate grammar. It’s on...
Passing in `now` externally would be nice for making the state machine deterministic to aid testing. In addition, hard-coding the `std::time::Instant` type for deadlines is a bit unfortunate, because `std::time::Instant`...
I have the same issue on Linux. `keybase fs` operations all say > ERROR timeout waiting for kbfs (code 1603) and the GUI client shows a spinner indefinitely.
Yes this is possible, you can write to an [`std::io::Cursor`](https://doc.rust-lang.org/std/io/struct.Cursor.html).
I agree, this is a behavior that I want to change in the future to preserve insertion order, and there are to dos for it in the code and in...