Seth W. Klein
Seth W. Klein
We're hoping to use BLAKE3 for content hashing due to its awesome speed. The server is in Meteor and we're getting an error that appears to be very low level....
``` go package main import ( "fmt" "io/ioutil" "log" "os" "path/filepath" "github.com/rjeczalik/notify" ) // logAll logs all the events func logAll(events chan notify.EventInfo) { log.Println("waiting for events") for event :=...
``` go package main import ( "fmt" "io/ioutil" "log" "os" "path/filepath" "github.com/rjeczalik/notify" ) // logAll logs all the events func logAll(events chan notify.EventInfo) { log.Println("waiting for events") for event :=...
For some reason, I expected path segments to be decoded. Once I discovered the resulting bug in my code, I ended up using the following in place of `string`: ```elm...
"Seth W. Klein [12:15 PM] i want to run a command that stays running and rebuilds whatever needs it whenever i save a file "Herbert Fischer [12:16 PM] It's possible...
There is a workflow that involves using a hook script to copy the http-01 challenge file to another machine via ssh. I attempted to use this by adding the following...
The README doesn't give me any information on why I might choose this tool versus github.com/remyoudompheng/go-misc/deadcode from https://github.com/remyoudompheng/go-misc.
GOPATH is a list as documented at https://golang.org/cmd/go/#hdr-GOPATH_environment_variable This commit updates the build instructions to use go list which handles GOAPTH properly. The new command also correctly handles spaces in...