View shorts-begone.js
This file contains 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 Shorts Begone | |
// @namespace https://gist.github.com/K4rakara | |
// @description Forces YouTube Shorts to use the standard YouTube player. | |
// @icon data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' focusable='false' style='pointer-events: none; display: block; width: 100%25; height: 100%25;'%3E%3Cg%3E%3Cpath d='M17.77,10.32l-1.2-.5L18,9.06a3.74,3.74,0,0,0-3.5-6.62L6,6.94a3.74,3.74,0,0,0,.23,6.74l1.2.49L6,14.93a3.75,3.75,0,0,0,3.5,6.63l8.5-4.5a3.74,3.74,0,0,0-.23-6.74Z' fill='red'%3E%3C/path%3E%3Cpolygon points='10 14.65 15 12 10 9.35 10 14.65' fill='%23fff'%3E%3C/polygon%3E%3C/g%3E%3C/svg%3E | |
// @include https://www.youtube.com/shorts/* | |
// @include https://youtube.com/shorts/* | |
// @run-at document-start | |
// @version 1.0 | |
// ==/UserScript== |
View howto.sh
This file contains 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
podman build -t ubuntu-toolbox - < ubuntu-toolbox.dockerfile |
View funytimes.js
This file contains 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 FuNYTimes | |
// @description Fuck You, New York Times. | |
// @match https://www.nytimes.com/* | |
// @version 1 | |
// ==/UserScript== | |
!function() { | |
console.log("FuNYTimes: now active."); | |
View .ccls
This file contains 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
tools/agbcc/bin/agbcc | |
-Iconstants | |
-Igflib | |
-Iinclude | |
-Isound | |
-Isrc | |
-L./tools/agbcc/lib | |
-L./tools/agbcc/lib | |
-L./libagbsyscall | |
-lc |
View gimkit.js
This file contains 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
javascript:{ | |
const pes = document.querySelectorAll('div#root div div div div.fade-router-enter-done div'); | |
let ee; | |
pes.forEach((e)=>{ | |
if (e.innerHTML.indexOf('👏')!==-1) { | |
ee = e.parentElement.parentElement.parentElement.parentElement; | |
} | |
}); | |
let reh; | |
Object.keys(ee).forEach((k)=>{ |