Kevin Burke
Kevin Burke
The secret key for use with e.g. secretbox should be 32 random bytes. A common mistake is to use only bytes that can be easily typed on a keyboard, like...
Eg, someone clicked "save" - did anything in the JSON actually change?
Survey
Who is using this tool? How is it meeting (or not meeting) your needs? How could it be more useful?
It'll be tricky to do this in a way that's not terrifying. Ideas: - Color the input borders, either by type (dict, list etc) or by depth (first level, 2nd...
If I have a dictionary of lists: ``` javascript { "foo": ['a', 'b', 'c'], "bar": ['x', 'y', 'z'], } ``` I should be able to add a new list, or...
Hi, I wrote this project and unlike most projects I wrote for Shyp I forgot to put a LICENSE file on it. I don't work there anymore and the company...
If I call panic, usually that error message appears in the stack trace. ``` go package main func main() { panic("error occurred") } ``` Generates: ``` panic: error occurred goroutine...
Previously the RecoveryHandler would catch panics and log them to Sentry, but not log any information about the error to stderr, making it more difficult to debug than an ordinary...
Do you embed the go-bindata program into a standalone package, or do you embed it with other Go source code? Respond with thumbs up emoji if you embed into a...
We ask the user to give us the package name, we can include it in the returned errors. We could also add a IsNotExist(err) function for determining whether an error...