This is a very simple HTTP server for Unix, using fork(). It's very easy to use
- include header
httpd.h
- write your route method, handling requests.
- call
serve_forever("12913")
to start serving on port 12913
(function autoLN() { | |
const interval = 10; | |
setInterval(() => { | |
const buttons = document.querySelectorAll('.text-shadow.theme__button--original'); | |
for (const btn of buttons) { | |
if (btn.textContent.trim() === 'Continue') { | |
btn.click(); | |
console.log('Continue button clicked!'); |
import socket | |
import threading | |
import concurrent.futures | |
import colorama | |
from colorama import Fore | |
colorama.init() | |
print_lock = threading.Lock() | |
def title(): |
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |