Neopets Official Whitepaper
[ An image of a vibrant and colorful pet shop is shown. ]
$NEO Contract Address: 0x1c232d1b8f208bF7a87a1Ce309901F9F22deaD6B
| -- pastebin get R8SRcS2S maze.lua | |
| -- A recursive backtracker maze generator for my Create mechanical maze | |
| -- All function parameters are 0-indexed, Because I hate LUA. | |
| -- To install the slave PC software: | |
| --[[ | |
| pastebin get 5fGx23UZ rx.lua | |
| edit rx.lua | |
| pastebin get GWSF49zj startup.lua |
| # A simple transparent D latch | |
| # | |
| # U is enable | |
| # R is data in | |
| # Y is data out | |
| Y=IF(U, R, Y) |
| # A simple shift register | |
| # | |
| # U is clock | |
| # D is data in | |
| # R, B, Y, G is out (in order) | |
| G=IF(U.RE, Y, G) | |
| Y=IF(U.RE, B, Y) | |
| B=IF(U.RE, R, B) | |
| R=IF(U.RE, D, R) |
| -- pastebin get wz9tPFbS maze.lua | |
| -- A recursive backtracker maze generator for my shift regiser based mechanical maze | |
| -- All function parameters are 0-indexed, Because I hate LUA. | |
| -- Shift register connections | |
| local clk = "left" | |
| local data = "back" | |
| local latch = "right" |
| #!/bin/bash | |
| ############################################# | |
| # Automatically fixes & mounts a Windows 10 # | |
| # NTFS partition to a folder in RW mode. # | |
| ############################################# | |
| # ~~~~~~~~ Variables ~~~~~~~~ |
| REM Run this at at startup | |
| REM Suggested way to use: | |
| REM set ORIGDIR=%CD% | |
| REM pushd %~dp0 | |
| REM set SCRIPTDIR=%CD% | |
| REM popd | |
| REM | |
| REM start "Simplify and Darken Desktop" "%SCRIPTDIR%\resources\simplify_and_darken.bat" | |
| @echo off |
| import os | |
| import urllib.request | |
| from enum import Enum | |
| import hashlib | |
| import cv2 | |
| import numpy as np | |
| bad_apple_video = "bad_apple.mp4" | |
| # The current best source for the original video from NicoNico |
| from moviepy.editor import * | |
| import numpy as np | |
| clip = VideoFileClip("hams.mkv") | |
| import sounddevice as sd | |
| import soundfile as sf | |
| from queue import Queue | |
| from collections import OrderedDict | |
| import pprint | |
| pp = pprint.PrettyPrinter(indent=4) | |
| print('started') |