mtrzk
mtrzk
Following https://django-ratelimit-backend.readthedocs.io/en/latest/usage.html#customizing-rate-limiting-criteria ``` File "/usr/local/lib/python3.7/site-packages/ratelimitbackend/backends.py", line 33, in authenticate counts = self.get_counters(request) File "/usr/local/lib/python3.7/site-packages/ratelimitbackend/backends.py", line 60, in get_counters return cache.get_many(self.keys_to_check(request)) File "/usr/local/lib/python3.7/site-packages/ratelimitbackend/backends.py", line 68, in keys_to_check ) for minute in...
### What version of Racket are you using? ``` -> racket --version Welcome to Racket v8.1 [cs]. ``` ### What program did you run? ``` #lang racket (module typed typed/racket/base...
An easy typo to make with `tuple` is to pass the arguments without wrapping them in an array: ``` // correct: const schema = z.tuple([z.number(), z.number()]) // incorrect: const schema...
I still need to do a proper job getting logs together, but maybe someone can tell me I'm being dumb before I put too much time into this. Currently, filesystems...
With `nbd0` configured in `/etc/nbdtab`: ``` $ nbd-client nbd0 Negotiation: ..size = 32768MB Connected /dev/nbd0 ``` But... ``` nbd-client -d nbd0 Error: Invalid nbd device target Exiting. ``` Version: ```...
Adds support for `bytea`. This PR is rough. I mostly ripped off the implementation for `Text` where possible. There's a lot of `unsafe` in here that I'm not sure I'm...
Docs say path segments need to be double url-encoded: https://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html. S3 is exceptional, and needs to be encoded only once. Diff as-is is a somewhat awkward attempt to drill the...
trufflesuite/ganache:v7.0.2 ``` # network host just for convenience... docker run -it --rm --network host trufflesuite/ganache:v7.0.2 ``` ``` # not chunked - OK curl -vv http://localhost:8545 -H "Content-Type: application/json" --data '{"id":0,"jsonrpc":"2.0","method":"eth_accounts"}'...