Roger Peppe
Roger Peppe
Possible additional tests: Numbers with different bases (0x, 0b, 0o) Numbers which might be interpreted wrongly (e.g. 0755) Numbers with inappropriate tags (e.g. `!!float 0xff`)
I wrote a program to calculate the expected JSON from the test.event file and got it to run comparisons against all the in.json files. I observed the following anomalies: 2JQS:...
The semantics of the test.event file are not entirely clear, and there's no obvious documentation for what the various events mean.
When I run `goda cut`, I see a lot of test package results like this: ``` github.com/influxdata/idpe/client/v2 [github.com/influxdata/idpe/client/v2.test] in:0 pkgs:1 size:45.6KB loc:1499 github.com/influxdata/idpe/client/v2.test in:0 pkgs:1 size:2.9KB loc:58 github.com/influxdata/idpe/client/v2_test [github.com/influxdata/idpe/client/v2.test] in:0...
The `jsonpath` package interprets `$.['a.b']` the same as `$.a.b` which is incorrect. It should be the same as `$.a\.b`. Here's some code to demonstrate the issue: https://play.golang.org/p/qIaggWZVHl5 Also demonstrated by...
When I copy some text from a github commit inside Chrome, the selection cannot be converted to text. When I run `xclip -o` with that selection in the paste buffer,...
The INSTALL file says "if you can compile any X apps at all, you'll be able to compile xclip". That doesn't appear to be quite true (at least on my...
In [the macro docs](https://kocircuit.github.io/language/macros/generic/index.html), it says: > Equal determines if its argument values are equal. It expects a monadic sequence argument. but the docs don't seem to clarify exactly what...
I followed the starting instructions, but "ko play" doesn't seem to want to play with me. % ko play github.com/kocircuit/kocircuit/codelab/HelloWorld (/home/rog/src/go/src/kocircuit/kocircuit/lang/go/sys/compile.go:31) (ko/R0) compiled functions=0 steps=0 steps-per-function=0.00 cannot find main circuit...
I understand a "macro" to mean some code that is translated by the compiler into some other code in the source language. The macros described [here](https://kocircuit.github.io/language/macros/generic/index.html) seem more like built-in...