Skip to content

Instantly share code, notes, and snippets.

View CooperRS's full-sized avatar
🚀
Trying hard to build simple software

Roland Moers CooperRS

🚀
Trying hard to build simple software
View GitHub Profile
@keithyipkw
keithyipkw / symbolicatecrash.patch
Last active October 6, 2020 10:05
A dirty fix for crash log symbolication in Xcode
# This patch will force symbolicatecrash to use dSym in atos instead of using release build executables.
#
# After setting the Xcode archive folder to one that outside Library (hidden), Spotlight will find the archives but Xcode still cannot symbolicate crash logs using the archives. If you find some similar errors in the STDERR from symbolicatecrash using the following command, this patch will help
# DEVELOPER_DIR=`xcode-select -print-path` /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecrash -v -o <symbolicated.crash> <input.crash> 2>v.log
#
# 1 binary images were found.
# Running /Applications/Xcode.app/Contents/Developer/usr/bin/atos -arch armv7 -l 0x82000 -o '<app name>.xcarchive/Products/Applications/<app name>.app/<app name>' <some addresses> |
# ## Warning: Unable to symbolicate from required binary: '<app name>.xcarchive/Products/Applications/<app name>.app/<app name>'
#
# To apply the patch
@klaftertief
klaftertief / reactiveconf-2016-lightning-talk.md
Last active April 2, 2024 20:17
An API search engine in Elm for Elm, proposal for a Lightning Talk at ReactiveConf 2016

An API search engine in Elm for Elm

Elm is a statically typed functional language that compiles to JavaScript. It's well-known for its developer experience: the compiler provides nice error messages, the package system enforces semantic versioning for all published packages and makes sure every exposed value or type has some documentation and type annotations.