JT Olio
JT Olio
[Sheepda](https://github.com/jtolds/sheepda) is a lambda calculus interpreter written in Go. Because it's in Go, GopherJS can compile it to Javascript. Try this in your HTML somewhere: ``` var output_type = "result";...
Right now, Bottle directly calls cgi.FieldStorage to parse incoming data. cgi.FieldStorage has a 'make_file' method defined with the following comment: ``` def make_file(self, binary=None): """Overridable: return a readable & writable...
Customer report: > when I can get the s3 command line client to return results, I get a list that differs from what is returned via the storj web app....
App Engine requires use of context-specific HTTP clients. Outbound HTTP requests simply don't work unless there's a way to provide the current request context to the outgoing request. Because a...
More explanation here: https://forum.storj.io/t/object-storage-provider-for-mastodon-instance/11464/37
the oauth2 "state" field, the first argument of AuthCodeURL, is supposed to be a CSRF token - a completely unguessable random string of bytes. further, on the callback, the oauth2...
Here is a modified version of [this example](https://github.com/vbauerster/mpb/blob/master/_examples/io/main.go), to use a ProxyWriter. It does not show the right rate: ```golang package main import ( "io" "time" "github.com/vbauerster/mpb/v8" "github.com/vbauerster/mpb/v8/decor" ) func...
App Engine unfortunately can't make outbound requests without using the appengine urlfetch library and a request-specific context. I don't see a way around this other than to change the signature...