Andrew Morris
Andrew Morris
When comparing two `immer::vector`s, it should be possible (if I understand the underlying structure correctly) to quickly find the first element that is different (assuming it is unlikely to encounter...
UPDATE: I misread `::update` in the docs before writing my thoughts below. Perhaps `T& immer::vector_transient::iterator::mutable_dereference()`? Also `T& immer::vector_transient::mutable_at(size_t index)`? These operations would copy if shared before providing the reference to...
**Describe the bug** Using a completely vanilla/default invocation (except `--debug`, issue also happens without `--debug`) of unsilence on Amazon Linux, it crashes it with `FileNotFound`: ``` [ec2-user@ip-172-31-42-91 ~]$ unsilence --debug...
I looked sideways at your readme when you said that: ``` js function randomInt(min, max) { return Math.floor(Math.random() * (max - min)) + min; } ``` produced a biased/non-uniform distribution....
If I have a browser which supports gzip and I launch node-static with --gzip, and index.html.gz is available, it still won't work unless the regular index.html is available too. Is...
ValueScript is free and open source. We want it to be guided by community feedback. Comment here for small things or questions about giving substantial feedback. If you have something...
Diagnostics are errors/lints/etc that the toolchain emits when processing input. Like this: ``` ➜ ValueScript git:(main) vstc run inputs/passing/captureMutated.ts inputs/passing/captureMutated.ts:2:7: Lint: `x` should be declared using `const` because it is...
I'm curious to find out how small of a device we can run ValueScript on. Raspberry pi pico? Arduino? An extended version of this would be to add a new...
ValueScript has a variety of concept code in [concept-code](https://github.com/voltrevo/ValueScript/tree/main/concept-code). This is code that (at least when it was written), didn't work. The idea is to be extremely specific about the...
We need more programs showcasing what ValueScript can do. If your program is relatively small, consider including it in `inputs/passing` and add the `test_output` header. Otherwise, add a link to...