Results 665 comments of milahu

> for git packages, the commit hash already identifies the package content +1, but note: validation by commit hash requires `git clone` because the commit object (which has the tree...

what would vscode do? vscode binds Ctrl+Q to "Exit" in [vscode/src/vs/workbench/electron-sandbox/desktop.contribution.ts](https://github.com/microsoft/vscode/blob/493d27bf48037947094e76fa34998eb45fd2381c/src/vs/workbench/electron-sandbox/desktop.contribution.ts#L63) ``` vscode $ find . -name '*.ts' -or -name '*.json' | grep -v node_modules/ | xargs grep -Hn -w...

> the header also contains time no. when i change only the archive creation time (with `sleep 2`) then the archive checksums are equal when i `touch` a content file...

> difference between versions doesn't count yes, a difference does matter > it would be interesting, why exactly these bytes are different the question is: can we replace `p7zip/bin/7z` with...

> It seems the issue is not with selenium wire itself but with cloudflare detecting proxy/certificate sounds like we need either/or - a patched version of chromium - a dynamic...

1 year later... i guess this makes it work with github pages where `/` is not the main path

alternative: css filter invert ```html ``` ```css /* light mode */ :root { --fg: black; --bg: white; } /* dark mode */ @media screen { @media (prefers-color-scheme: dark) { :root...

i prefer #800 for the `--insecure` flag

edit: im stupid. i had the file `secrets.py` in my working directory which shadowed python's `secrets` module and broke the `websockets` module ``` AttributeError: module 'secrets' has no attribute 'token_bytes'...