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 UI Nuker | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-06-19 | |
| // @description Removes like everything from the YT UI except for the video and title | |
| // @author Sebby37 | |
| // @match http*://*.youtube.com/* | |
| // @icon https://www.animatedgif.net/fireexplosions/boomer_e0.gif | |
| // @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
| .intel_syntax noprefix | |
| .global _start | |
| .section .text | |
| _start: | |
| # Open /dev/urandom | |
| mov rax, 2 # sys_open code is 2 | |
| lea rdi, [urand] # Load address of urand | |
| xor rsi, rsi # Set the flags to 0 | |
| xor rdx, rdx # Set the mode to 0 too |
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
| #!/bin/bash | |
| # Hyperparameters | |
| SERVER="http://192.168.20.20:8080" #"http://localhost:8080/v1/chat/completions" | |
| MAX_TOKENS=256 | |
| NUM_GENERATE=256 | |
| SEED=-1 | |
| TEMPERATURE=0.5 | |
| TOP_P=0.9 |