Fred Akalin
Fred Akalin
When I do a git clone I get: ``` > git clone https://github.com/defunkt/coffee-mode.git Cloning into 'coffee-mode'... remote: Counting objects: 1828, done. error: object 2699d230e3b592ae42506d7b5c969a7ac6a4593c: zeroPaddedFilemode: contains zero-padded file modes fatal:...
The pattern: ``` const char *foo = function_returning_string().c_str(); ``` is dangerous because the pointer lives only as long as the temporary string returned by the function (i.e., the end of...
Minimal test case: ``` package testifyrepro import ( "testing" "github.com/stretchr/testify/assert" ) func TestReflect(t *testing.T) { type s struct { f map[[1]byte]int } v1 := s{ f: map[[1]byte]int{ [1]byte{0x1}: 0, [1]byte{0x2}:...
Intermittent b2 errors (?) cause "pack ID does not match" errors during "restic check --read-data"
Output of `restic version` -------------------------- `restic 0.9.5 compiled with go1.12.4 on freebsd/amd64` How did you run restic exactly? ------------------------------- I have a few layers of scripts, but roughly: ``` export...
This is undesirable if e.g. a comma follow an inline equation. This seems to happen to me most often on Chrome for Linux (Ubuntu 17.10), but I'm not 100% sure...
See examples in https://blog.golang.org/subtests . Subtests seem to add a bunch of spaces (not tabs, sigh) to the beginning of the line. Probably suffices to change the regexp added to...