Stuart Rackham

Results 27 comments of Stuart Rackham

You could filter the output e.g. using sed(1): NO_COLOR=yes drake test | sed -r 's/^(.*): started$/::group::\1/; s/^(.*): finished.*$/::endgroup::/'

I haven't used Pandoc but from what I can gather the Pandoc YAML extension is a mechanism for assigning Pandoc metadata from YAML. Rimu has a native metadata mechanism in...

I had the same problem, found it was caused by the trim_trailing_whitespace = true in my .editorconfig file. See https://youtrack.jetbrains.com/issue/IDEA-134223

@ebebbington Yes, GH is inconsistent, but they [admitted that this behaviour was a mistake back in 2014](https://about.gitlab.com/blog/2014/02/21/markdown-newline-behaviour/). The point is that the behaviour does not conform to the [Markdown specification](https://daringfireball.net/projects/markdown/syntax#p).

Same issue: ```$ v doctor OS: linux, Ubuntu 22.04.1 LTS (VM) Processor: 8 cpus, 64bit, little endian, Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz CC version: cc (Ubuntu 11.2.0-19ubuntu1) 11.2.0 getwd:...

What is the reason for a separate lambda syntax, why not just have anonymous nested methods? This is the route taken by Go, it's more general and there's one less...

> Have a look at some of the examples in test/funcexpr, I think it will be clearer. Much clearer, thanks. The test examples are all single-statement anonymous functions. Are multi-statement...

Thanks. A workaround is to convert UTF-8 strings to hex byte values with, for example: ```sh $ echo -n "Hello World ©" | od -A n -t x1 | tr...

> it only compiles _reachable_ code from `main()`. It doesn't go past ASTs for anything not reachable from main or needed to run initializers. Very clever. > I'd be interested...

@diakopter I added compilation and execution memory consumption columns to the results: - Wasm (`wasmtime`) runtime memory consumption is ~11 MB for all three compilers. - Virgil JVM runtime memory...