Skip to content

Instantly share code, notes, and snippets.

View Divide-By-0's full-sized avatar

Yush G Divide-By-0

View GitHub Profile
@Divide-By-0
Divide-By-0 / AutoWB.js
Last active September 20, 2026 05:24 — forked from ATRescue/AutoWB.js
UserScript to automatically save visited pages into the Wayback Machine, with a 50ms delay between each to avoid ratelimit.
/* This Userscript helps you preserving websites by automatically saving pages you visit, including their linked subpages and other linked URLs, into Internet Archive's Wayback Machine.
Run this UserScript using the following tools:
Desktop browsers:
* GreaseMonkey for Mozilla Firefox: https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/
* TamperMonkey for Google Chrome: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
* TamperMonkey for Chromium-Opera Browser: https://addons.opera.com/en/extensions/details/tampermonkey-beta/
Android browsers:
* https://addons.mozilla.org/en-US/android/addon/greasemonkey/versions/
* https://openuserjs.org/about/Tampermonkey-for-Android/
* https://play.google.com/store/apps/details?id=net.biniok.tampermonkey
@Divide-By-0
Divide-By-0 / run_deepsaber.md
Last active April 2, 2022 20:58
Running DeepSaber on any Youtube Link
import PromiseQueue from 'https://cdn.skypack.dev/p-queue';
import Serde from 'https://cdn.skypack.dev/@darkforest_eth/serde';
import { CONTRACT_PRECISION } from 'https://cdn.skypack.dev/@darkforest_eth/constants';
let moveSnarkQueue;
if (window.moveSnarkQueue === undefined) {
moveSnarkQueue = new PromiseQueue({ concurrency: 1 });
moveSnarkQueue.on('add', () => {
console.log('Adding to task to the MoveSnark Queue. Size:', moveSnarkQueue.size);
});