Jonas Haag
Jonas Haag
Add support for the new RFC 7239 `Forwarded` HTTP header to `werkzeug.contrib.fixers.ProxyFix`: ``` Forwarded: for=192.0.2.60; proto=http; by=203.0.113.43 ```
I have lots of errors like this when reading MP3 files using librosa: ```pytb Traceback (most recent call last): ... File "/.../librosa/core/audio.py", line 157, in load y = sf_desc.read(frames=frame_duration, dtype=dtype,...
Problem: If a Python program `forks()`, which makes a copy of all file descriptors, the child processes may block the gzip stdin file descriptor from being closed, which leads to...
I believe there's something wrong with this condition: ``` long rss = get_current_proc_rss(); if (rss >= 0) st->stack[depth++] = (void*)rss; ``` Problem: We always get the current RSS, even if...
Hi everyone, because I was sick of reverse-engineering CSP rules every time I integrate a new service into my web projects, I started a list of CSP rules for common...
For example using SDL2/SDL2-mixer from homebrew on macOS requires the following CLI: ``` env USE_SDL2=1 SDL2_INCLUDE_DIR="/usr/local/Cellar/sdl2/2.0.12_1/include/SDL2/:/usr/local/Cellar/sdl2_mixer/2.0.4/include/SDL2/" pip install git+https://github.com/kivy/audiostream ```
This is a bunch of random user feedback from my first try of austin + austin-tui. - The austin compile instructions miss a `cd austin`. - Tmux breaks colors (see...
Just an idea, not an issue. Most libc routine implementations in VMIR look like they're trivial wrappers around their original. You could generate these wrappers from a libc like ulibc,...
We'd like to have more than one subscription to the same event/URL combination. I tried to remove the constraint in #24 and it seems to pass the test suite. So...
Using the local dispatcher (`THORN_DISPATCHER = 'default'`), not the Celery-based one, if the webhook raises an error (e.g. due to a timeout), the `on_timeout` and `on_error` handlers passed to `send()`...