Skip to content

Instantly share code, notes, and snippets.

View 22AKMS's full-sized avatar

Abdulla Alsaadi 22AKMS

View GitHub Profile
@22AKMS
22AKMS / Youtube-reload.js
Last active March 20, 2026 23:25
Reload youtube video element to skip anti-adblock infinite loading by pressing Shift+Enter
// ==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
@22AKMS
22AKMS / Dockerfile
Created March 7, 2026 01:11
lab1 cit5551
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