Linus Lewandowski

Results 10 issues of Linus Lewandowski

While applying Jeremy's comments to my former patch, I've found a better way to organize all that JSON string-related code. This way, all of the 4 jml's json string functions...

https://url.spec.whatwg.org/commit-snapshots/a1b789c6b6c36fcdb16311da5abd177e84151fca/#url-parsing > For each byte in buffer:​ > > If byte is less than 0x21 \(\!\), greater than 0x7E \(\~\), or is 0x22 \("\), 0x23 \(\#\), 0x3C \(<\), or 0x3E...

topic: parser
topic: validation

Hi, I'm the creator of [pydbus](https://github.com/LEW21/pydbus), DBus bindings for Python. I've stumbled upon the case of bytestrings - ay - which are commonly used to send non-Unicode data over DBus....

It's not always possible to sign the payload - especially when uploading large files to S3. That's why there exists [UNSIGNED-PAYLOAD](https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html). Unfortunately, `AWSRequestsAuth.get_aws_request_headers` does not support it.

Django is unusable with in-memory SQLite, because there is no way to run both migrate and runserver on the same one. It's better to provide a default that's usable (and...

This boolean variable can be used to control if Django should interpret the X-Forwarded-Proto header, and assume user is using https when it says so. It's usually needed for deployments...

I think that most people using django12factor are using it in the "give me everything" mode (because otherwise they would use dj-database-url etc directly). This means, that they consider the...

GLib.Variant.unpack: https://github.com/GNOME/pygobject/blob/master/gi/overrides/GLib.py#L284 - Stop unpacking variants recursively (as we don't pack them automatically) - Handle ay correctly (note https://github.com/flatpak/flatpak/issues/319; currently they're unpacked to a list of ints, which is always...

Hi, I'm the creator of [pydbus](https://github.com/LEW21/pydbus), DBus bindings for Python. I've stumbled upon the case of bytestrings - ay - which are commonly used to send non-Unicode data over DBus....

I'm trying to get deepkit running with Yarn PnP (using [deepkit-node](https://github.com/LEW21/deepkit-node) - I might send a pull request with that later, when I figure out if it'll actually be usable)....