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
/* copied from https://github.com/healeycodes/doom-checkboxes/blob/main/doom.js */ | |
var memory = new WebAssembly.Memory({ initial: 108 }); | |
function readWasmString(offset, length) { | |
const bytes = new Uint8Array(memory.buffer, offset, length); | |
return new TextDecoder("utf8").decode(bytes); | |
} | |
function consoleLogString(offset, length) { |
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: | |
/* https://cognition.kizunaai.com */ | |
var video = document.createElement("video"); | |
video.crossOrigin = "anonymous"; | |
video.src = "https://raw.githubusercontent.com/NPCat/bad-apple-bot/main/bad_apple.mp4"; | |
video.play(); | |
var vw = 960; | |
var vh = 720; |
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
function keypress(key, press, t) { | |
document.dispatchEvent(new KeyboardEvent(press ? "keydown" : "keyup", {key: key})); | |
} | |
function keyplay(key, time, duration) { | |
setTimeout(e => keypress(key, 1, time), time); | |
setTimeout(e => keypress(key, 0, time), time + duration); | |
} | |
var keylist = [ |
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
// Instructions | |
// 1. Go to https://www.newgrounds.com/portal/view/809045 or https://lee-pic.itch.io/guraquest. | |
// 2. Click "Play Game" or "Run Game". | |
// 3. Open your browser's console. | |
// 4. Change JS context from "top" to "uploads.ungrounded.net" or "index.html" (Chrome) | |
// or from "Auto" to "game_drop" (Safari). | |
// 5. Copy and paste the code below into the console and press Enter. | |
var gamepadListener; |
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
import argparse | |
from PIL import Image, ImageChops, ImageMath | |
def create_sprite(name, width=-1, differentiator='RGB', fallback=False): | |
''' | |
Generates a palettized image from input images in the same folder. | |
The inputs can be: raw image, base colors, color map, and detail layer | |
or: shadows, highlights, color map, and detail layer. | |
Parameters: | |
- name |
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
function genBash(masterURL) { | |
var xhr = new XMLHttpRequest(); | |
xhr.open("GET", masterURL, true); | |
xhr.addEventListener("load", function () { | |
var master = JSON.parse(this.responseText); | |
var baseURL = new URL(master.base_url, masterURL); | |
function genBashLines(mp4, type) { | |
var mp4BaseURL = new URL(mp4.base_url, baseURL); | |
var segmentURLs = mp4.segments.map(segment => segment.url); |
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
function nextGame() { | |
setTimeout(changeMode, 1000); | |
setTimeout(startGame, 2000); | |
setTimeout(pair, 6250); | |
} | |
function pair() { | |
var currentMatches = matches; | |
for (var i = 0; i < currentBoard.size; i++) { |
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
import bs4 as bs | |
import urllib.request | |
import json | |
vrank = {} | |
def processRankingPage(i, redos=1): # 1 page ~ 1.5 minutes | |
url = 'https://virtual-youtuber.userlocal.jp/document/ranking?page={}'.format(i + 1) | |
try: | |
html = urllib.request.urlopen(url).read() |
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
function convertToScrubber(input) { | |
var i0 = 0; | |
var x0 = 0; | |
var style = document.createElement("style"); | |
function nonNaN(n) { | |
var m = Number(n); | |
if (isNaN(m)) { | |
m = 0; | |
} |
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
{ | |
"MetaData" : { | |
"KeyboardLayout" : "United States", | |
"ParserVersion" : "13" | |
}, | |
"Primitives" : [ | |
{ | |
"$type" : "Dpad, Bluestacks", | |
"ActivationSpeed" : 0, | |
"ActivationTime" : 0, |
NewerOlder