curl -fsSL https://gist.githubusercontent.com/muuvmuuv/7b7a911ddec2172375b75498154ce5e8/raw/2d2bef245f9644dae10f8724f784f3424c4e30a2/php-pm.sh | shMore here: https://tideways.com/profiler/blog/an-introduction-to-php-fpm-tuning
| // Delete Instagram chat messages using "unsend". | |
| // | |
| // Thanks to: https://github.com/mahdixmohammad/instapurge/blob/main/main.js | |
| console.clear() | |
| const conversation = document.getElementsByClassName("x78zum5 xdt5ytf x1iyjqo2 xs83m0k x1xzczws x6ikm8r x1odjw0f x1n2onr6 xh8yej3 x16o0dkt")[0]; | |
| console.log("Conversation window", conversation) | |
| conversation.scrollTo(-1) |
| { | |
| ////////////////////////////////////// | |
| // FIREWALL | |
| // via fake proxy. | |
| "http.proxy": "https://notexist11111111:9999", | |
| "http.noProxy": [ | |
| // CHECK NETWORK REQUESTS MADE BY VSCODE AND EXTENSIONS: | |
| // Help -> Toogle developer tools -> network (tab) | |
| // FOR VSCODE ONLY. |
| #!/usr/bin/env sh | |
| tsconfig_files=$( | |
| find . -type d \( -path "*/node_modules" -o -path "*/dist" -o -path "*/tmp" -o -path '*/.*' \) -prune \ | |
| -o -not -name '.*' \ | |
| -type f -name "tsconfig*.json" \ | |
| ) | |
| for tsconfig_file in $tsconfig_files; do |
| FROM mcr.microsoft.com/devcontainers/python:3.10 | |
| RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/usr/local python3 - | |
| USER vscode | |
| RUN /usr/local/bin/poetry config virtualenvs.in-project true |
curl -fsSL https://gist.githubusercontent.com/muuvmuuv/7b7a911ddec2172375b75498154ce5e8/raw/2d2bef245f9644dae10f8724f784f3424c4e30a2/php-pm.sh | shMore here: https://tideways.com/profiler/blog/an-introduction-to-php-fpm-tuning
| const puppeteer = require('puppeteer') | |
| /** | |
| * Because no browsers are bundled with Cypress we will use the already installed | |
| * puppeteer binary that we use for Karma. This function returns information | |
| * about the latest downloaded binary for Chrome by Puppeteer. It works for now | |
| * but might throw errors in future, it is a workaround not a plugin. | |
| * | |
| * @see https://docs.cypress.io/guides/guides/launching-browsers.html#Customize-available-browsers | |
| */ |