Skip to content

Instantly share code, notes, and snippets.

@boundmaidlea
boundmaidlea / hypnotube.js
Created March 17, 2023 02:46
Tampermonkey script "Hypnotube UI clutter-reduction"
// ==UserScript==
// @name Hypnotube UI clutter-reduction
// @namespace http://tampermonkey.net/
// @version 0.1
// @description hide photosets from suggested videos
// @author boundmaidlea
// @match https://hypnotube.com/video/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
@boundmaidlea
boundmaidlea / random-number-overdrive.html
Last active June 20, 2025 03:36
Chastikey-style random number screen to help forget a lock combination
<!DOCTYPE html>
<html>
<head>
<meta name="darkreader-lock"> <!--disable dark reader addon for this page (does not properly work)-->
<style>
body, html {
background-color: #2c2c2c;
color: #a8a8a8;
margin: 0;
overflow: clip;
@boundmaidlea
boundmaidlea / saucefix.js
Created September 16, 2022 19:58
script to fix faulty file names for image and video files downloaded from the internet
//This is a file meant to be executed clientside in node.js. Made by schockocraft & boundmaidlea.
const fs = require("fs");
const options = {};
options.withFileTypes = true;
function inspectFile (fileName) {
console.log("reading file signature...")
//reading File signature (first 12 Bytes of the file)
var signature = Buffer.alloc(12);
var ending
@boundmaidlea
boundmaidlea / vive-hypno.js
Last active June 14, 2022 02:37
Tampermonkey script "Download Button for Vive Hypnosis"
// ==UserScript==
// @name Download Button for Vive Hypnosis
// @namespace http://tampermonkey.net/
// @version 0.1
// @description adds a download button in the vido player for free hypno files on vive-hypnosis.com
// @author boundmaidlea
// @match https://vive-hypnosis.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==