Dominic Barnes
Dominic Barnes
I was able to install `geany-zencoding` from source on my new Fedora-based box. (I've installed quite easily before on Ubuntu, but new to Fedora) After installation, I get the following...
I love this project, and I'm trying to use it locally during development. Unfortunately, there is no official docker image that is being published, and all the others are painfully...
I'm gzip compressing objects I'm loading into fake-s3, but that header doesn't seem to be being persisted in the metadata for the objects. (others like `Content-Type` seem to apply just...
There's a weird issue I'm trying to resolve that shows up when dealing with a hoisted function declaration vs a function expression. I've trimmed my code down to the bare...
As of component v1, git tags are becoming more necessary. While using this lib is not broken, some smaller things like attempting to pin aren't able to work.
I recently discovered that this extension no longer appears in the Chrome Web Store, meaning it can't be installed from there. I also noticed the last commit was quite a...
I've got a component with it's functionality distributed throughout `lib`. As such, my `test` directory has the same tree defined, where each test file matches 1-1 with `lib`. Currently, the...
Howdy, just a small feature request. Could the `gzip` configuration option be extended to allow for a file to be uploaded with both an uncompressed, as well as a compressed...
This PR updates all of the go module dependencies via: ```sh go get -u all go mod tidy ``` The main reason I needed this was because the older version...
There are quite a few non-exported error types that are returned by this API, such as `parseConfigError` and `connectError` that are not possible to be detected with [errors.As](https://golang.org/pkg/errors/#As) or [errors.Is](https://golang.org/pkg/errors/#Is)....