Kevin Burke
Kevin Burke
I'm not sure that that's right FWIW, or it might be masking an error. Calling "find implementations" on MustParse in github.com/kevinburke/aws-vault/vendor/github.com/alecthomas/kingpin.v2 should return at least one implementation, in github.com/kevinburke/aws-vault/main.go, but...
I suppose but I guess even if I'm calling it incorrectly, it would be nice if the error message was clearer, for example, it could say "this function is not...
Ah. I guess maybe above or below the code snippet, "Further details about individual options can be found in the sidebar" or something?
Or just put a sentence or two right in the config file. One of my rules is no one reads anything above or below code snippets, from watching people at...
I put `OpenSSH_6.7p1, OpenSSL 0.9.8za 5 Jun 2014` on my Mac and tried the `Ciphers` line from your post, still getting a `Bad SSH2 cipher spec` message
``` OpenSSH_6.7p1, OpenSSL 0.9.8za 5 Jun 2014 debug1: Reading configuration data /Users/kevin/.ssh/config debug1: /Users/kevin/.ssh/config line 15: Applying options for * /Users/kevin/.ssh/config line 16: Bad SSH2 cipher spec '[email protected],[email protected],[email protected],aes256-ctr,aes192-ctr,aes128-ctr' ```
Looks like the same problem exists in two other places ```go // Commit a transaction func (tr Transaction) Commit() error { _, err := tr.Start("COMMIT") tr.Conn = nil // Invalidate...
It's based on a hash of the domain name since I wanted localhost/staging etc to show up in different colors. I believe there is a configuration option you can use...
```javascript var color = colors[Math.abs(hashCode(domain)) % colors.length]; ``` where colors are
https://github.com/kevinburke/doony/blob/master/doony.js#L331-L338