Nuno Cruces
Nuno Cruces
In #6 @paulcbetts says "POST/DELETEs don't get cached or deduped", however looking at [`RateLimitedHttpMessageHandler`](https://github.com/paulcbetts/Fusillade/blob/master/Fusillade/RateLimitedHttpMessageHandler.cs#L75) doesn't seem to support this. Requests with a body should definitely look at the body before...
If you're going to add an option to the interface... May I suggest that instead of a flag to turn on/off compression you accept an `int`, and use the constants...
I'm sure you guys thought of this (so I'm probably misunderstanding the issue), but bear with me. Assuming the common part stays the same (structure definitions and behavior) why isn't...
I see in #63 you're considering this. I'll have a go at this when I have the time.
I ended up doing my own thing because I had slightly different requirements, but this is the gist of it: A package implementing an in memory file system: [github.com/ncruces/go-fs/memfs](https://godoc.org/github.com/ncruces/go-fs/memfs)\ All...
For a "port" the `zenity` command for macOS and Windows, see: [github.com/ncruces/zenity](https://github.com/ncruces/zenity)
I got tired of waiting for this to be fixed (and unfixed) again. So this is what you can do: shim `aws-sdk-go` and replace it with nothing. Something like the...
Are you building that code as Windows console app? If so, focus should be automatic, I think (unless there was a regression).
Solution does not _necessarily_ need to be cross platform. There's plenty of custom Windows code in the package. I simply asked if it was a console app as those are...
The problem with calling `Attach` with `GetForegroundWindow` is that it makes dialogs modal to that window, which may belong to a different process. That's fine, of course, if that's what...