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 New Userscript | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-04-20 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.delugerpg.com/map/overworld14 | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=delugerpg.com | |
| // @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
| iTerm - terminal | |
| Zsh - shell | |
| zinit - Plugins manager | |
| syntax-highlighter | |
| autocomplete | |
| autosuggestion | |
| powerLevel10k - Zsh theme | |
| NVM (from curl) - Node version manager | |
| Vim - Text editor | |
| wakatime - plugin |
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
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash | |
| source ~/.nvm/nvm.sh |
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
| @media screen and (min-width:0\0) { | |
| } |
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 FutureSelect = (selector, parent = document) => { | |
| let request = null | |
| return new Promise((resolve) => { | |
| const select = () => { | |
| const elements = parent && [ ...parent.querySelectorAll(selector) ] || [] | |
| if (!elements.length) { | |
| request = requestAnimationFrame(select) | |
| return |