Skip to content

Instantly share code, notes, and snippets.

View Darryl-Ramm's full-sized avatar

Darryl Ramm Darryl-Ramm

View GitHub Profile
@kconner
kconner / macOS Internals.md
Last active March 20, 2026 15:49
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@oshliaer
oshliaer / 70e04a67f1f5fd96a708.md
Last active August 5, 2023 09:22
Extract Gmail content to a spreadsheet #gas #gmail #sheet
@C0deH4cker
C0deH4cker / macho_extractor.c
Last active June 8, 2025 08:31
Program that will extract a segment from a mach-o file. Should even work on Linux/BSD/UNIX?
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
/* For supporting Linux and other systems that don't have mach-o headers */