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 Remove Verified and Blocked Accounts on Twitter Scroll | |
| // @namespace remove-verified-blocked-accounts-on-twitter-scroll | |
| // @version 1 | |
| // @description Remove verified and blocked accounts when you finish scrolling down the Twitter feed. | |
| // @match https://twitter.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |
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
| file:///Users/cohen/midas-configuration/node_modules/axios/lib/core/settle.js:19 | |
| reject(new AxiosError( | |
| ^ | |
| AxiosError: Request failed with status code 413 | |
| at settle (file:///Users/cohen/midas-configuration/node_modules/axios/lib/core/settle.js:19:12) | |
| at Unzip.handleStreamEnd (file:///Users/cohen/midas-configuration/node_modules/axios/lib/adapters/http.js:570:11) | |
| at Unzip.emit (node:events:525:35) | |
| at Unzip.emit (node:domain:489:12) | |
| at endReadableNT (node:internal/streams/readable:1359:12) | |
| at processTicksAndRejections (node:internal/process/task_queues:82:21) { |
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
| from flask import Flask | |
| import random | |
| import re | |
| import chardet | |
| app = Flask(__name__) | |
| def detect_encoding(filename): | |
| with open(filename, 'rb') as f: | |
| raw_data = f.read() |
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 PickerWheel: set "water world" weight to 1% of total weights | |
| // @namespace pw-weight | |
| // @match https://pickerwheel.com/* | |
| // @run-at document-start | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { | |
| const TARGET = "water world"; |
OlderNewer