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
| # update system | |
| $ sudo apt update && sudo apt upgrade | |
| # uninstall old node (v10?) | |
| $ sudo apt remove nodejs npm -y | |
| # install nvm | |
| $ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash | |
| # use 'unofficial builds' in nvm |
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 Kemal's Youtube Keyboard Shortcut Fix | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-05-17 | |
| // @description Fix annoying inconsistent arrow key shortcuts | |
| // @author Kemal | |
| // @match https://gist.github.com/ozturkkl/0d72d3747fbc5510df981b7c1495f959 | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
| // @grant window.onurlchange | |
| // @run-at document-idle |