Skip to content

Instantly share code, notes, and snippets.

View mcnole25's full-sized avatar

mcnole25

View GitHub Profile
@mcnole25
mcnole25 / tpot.txt
Created March 19, 2025 16:39
Number of positive relationships within TPOT contestants (on the wiki)
36 - Teardrop
35 - Pin
32 - Tennis Ball
32 - Coiny
29 - Needle
29 - Book
28 - Rocky
28 - Pen
27 - Liy
27 - Golf Ball
@mcnole25
mcnole25 / convenient-numbers.txt
Created June 3, 2025 18:17
MY FAVORITE SEQUENCE OF NUMBERS: Take the factorial numbers, then repeatedly multiply or divide by powers of 2. You get a sequence of mostly highly abundant & highly composite numbers.
1
2
3
4
6
8
12
15
16
24
@mcnole25
mcnole25 / 180-subs.txt
Last active July 25, 2025 09:26
My 180 Youtube subscriptions
@3blue1brown
@AbideByReason
@Aguythatdoesntknowhy
@Aleph0
@AlgoFiXion
@AndyMath
@AnimaticwithaP
@AsapSCIENCE
@BenEater
@bfbubble
@mcnole25
mcnole25 / 5b-cheats.js
Created August 1, 2025 01:11
This code allows you to change your walk & jump speed in the game HTML5b by Coppersalts. Inject this code in the console to enable the cheat settings.
pow = document.createElement("input");
jum = document.createElement("input");
pow.type = "number";
jum.type = "number";
pow.value = 1;
jum.value = 11;
center.appendChild(pow);
center.appendChild(jum);
setInterval(function() {
power = Number(pow.value);