Skip to content

Instantly share code, notes, and snippets.

View Brett-Best's full-sized avatar
👀
Focusing

Brett Best Brett-Best

👀
Focusing
View GitHub Profile
@drewmccormack
drewmccormack / symbolicate-sample-dump.py
Last active August 15, 2023 09:32
Symbolicates a sample dump from Activity Monitor
#!/usr/bin/env python
#
# To use this, just put the DSYMS in the same directory as the sample dump file,
# and run the script from that directory, passing the sample dump file name as only argument
#
import re, sys, os, subprocess
sampleFile = sys.argv[1]