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 WebSocket Multi-Connection Hook | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Create multiple WebSocket connections instead of one | |
| // @author You | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
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 Bundle.js Replacer | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Replace bundle.js script with custom URL | |
| // @author You | |
| // @match *://*/* | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== |
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
| { | |
| const TARGET_URL = "https://crypto.cloudflare.com/cdn-cgi/trace"; | |
| const METHOD = "GET"; | |
| const CONCURRENT_REQUESTS = 10; | |
| const PAYLOAD = {}; | |
| const HEADERS = {}; | |
| const START_AT_MS = Date.now() + 3000; | |
| const workerCode = ` |
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
| version: '3' | |
| services: | |
| mysql: | |
| image: mysql | |
| container_name: tutorial-mysql | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=toor | |
| networks: | |
| - tutorial |
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 node:22.17-alpine3.21 | |
| RUN addgroup app && adduser -S -G app app | |
| USER app | |
| WORKDIR /app | |
| RUN mkdir log | |
| COPY package.json . | |
| RUN npm install | |
| COPY . . | |
| ENV API_URL=https://example.com/API_URL | |
| EXPOSE 3000 |
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
| import fs from 'fs'; | |
| import readline from 'readline'; | |
| // Utility to extract TradingView script URLs (with or without protocol) | |
| function extractTradingViewLinks(line) { | |
| const regex = /(?:https?:\/\/)?(?:[a-z]+\.)?tradingview\.com\/script\/[a-zA-Z0-9-_]+/g; | |
| return line.match(regex) || []; | |
| } | |
| // Main function to process files |
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 TradingView Script Downloader | |
| // @namespace http://tampermonkey.net/ | |
| // @version 5.0 | |
| // @description Complete TradingView script downloading solution with batch processing and status tracking | |
| // @author You | |
| // @match https://www.tradingview.com/script/* | |
| // @match https://www.tradingview.com/* | |
| // @grant GM_setValue | |
| // @grant GM_getValue |
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 Backup GitHub Repository | |
| // @namespace Violentmonkey Scripts | |
| // @version 2.1 | |
| // @description Backup GitHub repositories directly from user profile page | |
| // @author maanimis | |
| // @match https://github.com/*?tab=repositories | |
| // @grant GM_registerMenuCommand | |
| // @grant GM_download | |
| // @run-at document-end |
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 GithubMultiView | |
| // @namespace Violentmonkey Scripts | |
| // @match https://github.com/* | |
| // @grant none | |
| // @version 5.0 | |
| // @author maanimis | |
| // @description Redirect GitHub repositories to Gitingest, GitDiagram, or DeepWiki with a single click. | |
| // @grant GM_registerMenuCommand | |
| // @run-at document-end |
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 Path Notes | |
| // @namespace Violentmonkey Scripts | |
| // @version 2.0 | |
| // @description Add and save notes for different website paths | |
| // @author maanimis | |
| // @match *://*/* | |
| // @grant GM_registerMenuCommand | |
| // @run-at document-end | |
| // @license MIT |