Jens Rantil
Jens Rantil
I'm looking at the example in the README, and the loop looks like this: ```golang ... // Iterate over each stripe in the file. for c.Stripes() { // Iterate over...
https://github.com/Netflix/concurrency-limits/blob/master/README.md#vegas doesn't mention exactly what L, minRTT and sampleRTT are.
...it points to https://github.com/learnboost/antiscroll/downloads.
http://www.godebug.rocks/ states breakpoints are done with ``` // godebug: break ``` Doesn't seem to work. ``` _ = "breakpoint" ``` works, though.
Make the flush operation execute in parallel. These optimizations have been mentioned in #23. Additional comments: - I'm not sure they are worth incorporating as they might do more harm...
Needed it simplify deployment. Maybe could be of use for someone else, don't know.
...according to https://godoc.org/gopkg.in/alecthomas/kingpin.v2#FlagClause.OverrideDefaultFromEnvar.
Readme file gives yamldiff --file1 /path/to/yamlfile1.yml --file2 /path/to/yamlfile2.yml as an example. Given that I assume every invocation requires two files as input, maybe yamldiff /path/to/yamlfile1.yml /path/to/yamlfile2.yml (similar to good'ole `diff`)...
I just arrived here and would be curious to see what the output looks like.
From what I understand, [`stat(...)`](https://github.com/sahilm/yamldiff/blob/master/main.go#L60) is only used to check that a file exist. But really, https://github.com/sahilm/yamldiff/blob/3a067f14615afd8347b396a24cd800810bcec41f/main.go#L45-L52 will fail if any of the files don't exist. Additionally, https://github.com/sahilm/yamldiff/blob/master/main.go#L80 will fail...