Skip to content

Instantly share code, notes, and snippets.

View LBranco27's full-sized avatar
💭
Old mechanical keyboards are really good

Lucas Branco LBranco27

💭
Old mechanical keyboards are really good
View GitHub Profile
@extremecoders-re
extremecoders-re / openwrt-qemu.md
Last active March 22, 2024 13:20
Running OpenWRT ARM under QEMU

Environment

The steps shown below are done on a Ubuntu VM using Qemu 3.0

$ qemu-system-arm -version
QEMU emulator version 3.0.0
Copyright (c) 2003-2017 Fabrice Bellard and the QEMU Project developers

To quit Qemu at any time press Ctrl+a x, i.e. Ctrl+a and then x

@Takeno
Takeno / convert.py
Created September 30, 2013 11:38
Lineage 2 Music ogg decrypter
import mmap
import sys
import os
import glob
if len(sys.argv) != 2:
sys.exit('Usage: %s directory' % sys.argv[0])
if not os.path.exists(sys.argv[1]):
sys.exit('ERROR: directory %s was not found!' % sys.argv[1])