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 YouTube – Reload Video (Shift+Enter) | |
| // @namespace https://github.com/local/yt-reload-video | |
| // @version 1.0.0 | |
| // @description Press Shift+Enter to reload the YouTube video element, bypassing adblock stalls. | |
| // @author You | |
| // @match https://www.youtube.com/* | |
| // @match https://www.youtube-nocookie.com/* | |
| // @icon https://www.youtube.com/favicon.ico | |
| // @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
| FROM ubuntu:22.04 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && apt-get install -y \ | |
| openssh-server sudo john \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN mkdir -p /var/run/sshd | |