Skip to content

Instantly share code, notes, and snippets.

View retr00exe's full-sized avatar
👻
Meow

Mekel Ilyasa retr00exe

👻
Meow
View GitHub Profile
@retr00exe
retr00exe / SMBDIS.ASM
Created March 15, 2020 11:06 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;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
@retr00exe
retr00exe / ABOUT.md
Created October 19, 2020 15:44 — forked from laobubu/ABOUT.md
A very simple HTTP server in C, for Unix, using fork()

Pico HTTP Server in C

This is a very simple HTTP server for Unix, using fork(). It's very easy to use

How to use

  1. include header httpd.h
  2. write your route method, handling requests.
  3. call serve_forever("12913") to start serving on port 12913
@retr00exe
retr00exe / port-scanner.py
Last active November 10, 2022 10:12
Simple port scanner using Python socket library
import socket
import threading
import concurrent.futures
import colorama
from colorama import Fore
colorama.init()
print_lock = threading.Lock()
def title():