Results 665 comments of milahu

> `no_proxy` is supposed to be a comma-separated list of **domain names**; IP address aren't supported no, this just makes no sense. network nodes always have a numeric address, and...

> @nateprewitt can you check if the patch in OP's can be patched into requests? not the original patch, cos it breaks a function interface by adding a hidden property...

https://github.com/psf/requests/pull/5596#issuecomment-1961184126

> still not working start chrome with one of ``` --remote-allow-origins=http://localhost:5222 --remote-allow-origins=* ``` chrome will print this to stderr > ```[ERROR:devtools_http_handler.cc(768)] Rejected an incoming WebSocket connection from the http://localhost:5222 origin....

tor-hidden gitea instances - [darktea.onion](http://it7otdanqu7ktntxzm427cba6i53w6wlanlh23v5i3siqmos47pzhvyd.onion/) - [righttoprivacy.onion](http://gg6zxtreajiijztyy5g6bt5o6l3qu32nrg7eulyemlhxwwl6enk6ghad.onion/) add onion git remote ``` cd your_repo git remote add darktea.onion http://it7otdanqu7ktntxzm427cba6i53w6wlanlh23v5i3siqmos47pzhvyd.onion/your_org/your_repo git config --add remote.darktea.onion.proxy socks5h://127.0.0.1:9050 ``` note: this requires a running...

workaround: https://ikatyang.github.io/tree-sitter-yaml/

```py import sys import os # https://github.com/defnull/multipart import multipart # IndexError @ len_first_line = len(lines[0]) #forms, files = multipart.parse_form_data(os.environ) wsgi_env = dict(os.environ) wsgi_env["wsgi.input"] = sys.stdin.buffer forms, files = multipart.parse_form_data(wsgi_env) some_key...

> Is there an actual problem with the current diff implementation that affects _your_ usage of tree-sitter? i dont remember i guess it produced some weird/ugly diffs, but no wrong...

finally got windicss working with postcss ```js // rollup.config.js import { babel } from "@rollup/plugin-babel"; import WindiCSS from "rollup-plugin-windicss"; import postcss from "rollup-plugin-postcss"; export default { plugins: [ // virtual:windi.css...

thanks! almost there, see my [e9patch.nix](https://github.com/milahu/nur-packages/raw/6bf3d83b321849a60a6b96e52813f037faf5645c/pkgs/development/tools/e9patch/e9patch.nix) and [Makefile](https://github.com/milahu/nur-packages/raw/3bbb92363111073ee9e2ce4e9e85441d3f97c149/pkgs/development/tools/e9patch/Makefile) dependency: [zydis.nix](https://github.com/NixOS/nixpkgs/raw/master/pkgs/development/libraries/zydis/default.nix) `make install` fails with `install: cannot create directory '/usr': Permission denied` fixed by using `$(prefix)` in Makefile `e9compile` does not...