Skip to content

Instantly share code, notes, and snippets.

View richyk1's full-sized avatar
💭
Studying

koolkid richyk1

💭
Studying
View GitHub Profile
@richyk1
richyk1 / extract-symbol-info-in-macho.py
Created December 30, 2023 15:37 — forked from integeruser/extract-symbol-info-in-macho.py
Extract symbols information (e.g. addresses) from Mach-O files
#!/usr/bin/env python3
import ctypes
LC_SYMTAB = 0x2
class mach_header_64(ctypes.Structure):
_fields_ = (
("magic", ctypes.c_uint32),
("cputype", ctypes.c_uint32),
@richyk1
richyk1 / README.md
Last active March 8, 2022 11:06 — forked from NoahCardoza/README.md
Discord: Spotify Pause Blocker

Spotify Pause Blocker

Disclaimer

I love both of you Discord and Spotify, but this new 30 seccond rule gets pretty annoying when my music gets turned off while just talking "to much." I mean talking kind of is the whole point of Discord...

Reason

@richyk1
richyk1 / a-simple-socket-io-test.md
Created September 30, 2020 00:35 — forked from janusnic/a-simple-socket-io-test.md
A simple Socket.io test with client and server (Node.js) parts.