- Install the Tampermonkey extension.
- Do a right-click on the Tampermonkey icon and press
Options. - Click on
Settings, and then in theGeneralsection change theConfig modetoAdvanced.
- In the
Experimentssection at the bottom of the page, change theInject ModetoInstant.
- You can close this settings page now.
- Click on this link and press on
Installin the Tampermonkey tab that just opened.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name temp-mail.org fake loading bypass | |
| // @namespace devnoname120 | |
| // @version 2024-02-23 | |
| // @description Get rid of the fake 7s loading time that temp-mail.org puts on mailboxes | |
| // @author devnoname120 | |
| // @match *://temp-mail.org/* | |
| // @icon https://temp-mail.org/images/favicon.ico | |
| // @run-at document-end | |
| // @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "script": [ | |
| { | |
| "name": "Privacy.Locale.getDefault", | |
| "code": "function after(hook, param)\n local myLocale = luajava.newInstance(\"java.util.Locale\", \"fr\", \"FR\")\n\tparam:setResult(myLocale)\n\treturn true\nend" | |
| } | |
| ], | |
| "definition": [ | |
| { | |
| "builtin": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "script": [ | |
| { | |
| "name": "Privacy.Calendar.getInstance", | |
| "code": "function after(hook, param)\n local cal = param:getResult()\n cal:set(2024, 4, 27)\n param:setResult(cal)\n return true\nend\n" | |
| } | |
| ], | |
| "definition": [ | |
| { | |
| "builtin": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aloxaf/fzf-tab | |
| zsh-users/zsh-completions | |
| zsh-users/zsh-autosuggestions | |
| # Cache `autoload -Uz compinit` for faster speedup (IO installed it for that) + many zsh customizations | |
| sorin-ionescu/prezto path:modules/completion | |
| # Select text when shift + arrow keys is pressed. Works to delete a part of the current command, contrary to iTerm's selection | |
| jirutka/zsh-shift-select |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| https_port 44312 | |
| auto_https disable_redirects | |
| admin localhost:2020 | |
| } | |
| testcert.your.domain { | |
| templates | |
| file_server | |
| tls { |
This script aims to fix the following error:
$ docker compose up -d --build
Error response from daemon: get audiobookshelf_audiobooks: error while checking if volume "audiobookshelf_audiobooks" exists in driver "rclone:latest": error looking up volume plugin rclone:latest: plugin rclone:latest found but disabled
$ docker plugin enable rclone
Error response from daemon: dial unix /run/docker/plugins/7c5c781c3b705d4caf5418cc5ed462b8e1b81596df43129b0eac55ea2047ad2b/rclone.sock: connect: no such file or directory
- Go to https://github.com/issues?q=review-requested%3A%40me
- Open the dev console, run this, and copy the output:
const pulls = Array.from(document.querySelectorAll('a[id^=issue_]'))
const links = pulls.map(i => i.href.replace('//github.com/', '//api.github.com/repos/').replace('/pull/', '/pulls/') + '/reviews')
const curls = links.map(l => `curl -H "Authorization: Bearer $GITHUB_TOKEN" --data '{"event": "APPROVE"}' ${l}`)
console.log(curls.join("\n"))- Run this in the terminal:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fb:// | |
| fb://))?((www\\.)|(m\\.))?((fb)|(fb\\.com)|(facebook\\.com))(/[^/]+/shop/) | |
| fb://))?((www\\.)|(m\\.))?((fb\\.gg)|(fb\\.com/gaming)|(facebook\\.com/gaming))(/|$) | |
| fb://.*$ | |
| fb:///page/whatsapp/verification/?whatsapp_number=<q$1>&page_id=<q$2>&verification_code=<q$3>&request_source=<q$4> | |
| fb:///videochannel?id=<p$2>&playerOrigin=external_deeplink::permalink | |
| fb://[^?]+)(\\?.*)? | |
| fb://about | |
| fb://about_info | |
| fb://account-kit/confirmation_code/?confirmation_code={confirmation_code} |