Skip to content

Instantly share code, notes, and snippets.

{"app_name":"Messenger","timestamp":"2020-03-28 19:46:45.66 -0400","app_version":"257.0","slice_uuid":"c202de2c-6018-32a4-896a-f60ec23c4df0","adam_id":454638411,"build_version":"204807655","bundleID":"com.facebook.Messenger","share_with_app_devs":false,"is_first_party":false,"bug_type":"109","os_version":"iPhone OS 10.3.3 (14G60)","incident_id":"8170B8F5-2483-4602-912B-3859DCD917D1","name":"Messenger"}
Incident Identifier: 8170B8F5-2483-4602-912B-3859DCD917D1
CrashReporter Key: 524801fe9819314e7be32cf01be3e84d2f417842
Hardware Model: iPhone8,4
Process: Messenger [3983]
Path: /private/var/containers/Bundle/Application/8AE6A714-5DC7-41A5-B25A-4EB485F96473/Messenger.app/Messenger
Identifier: com.facebook.Messenger
Version: 204807655 (257.0)
Code Type: ARM-64 (Native)
Role: Foreground
@davidmurray
davidmurray / gist:71885bd167979309d10f
Created October 27, 2014 00:11
Find the first icon list view with an empty spot
static SBIconListView *MTGetFirstAvailableIconListView()
{
SBRootFolderController *rootFolderController = [[%c(SBIconController) sharedInstance] _rootFolderController];
SBRootFolderView *rootFolderView = [rootFolderController contentView];
// Attempt to find a model that has an available spot.
for (SBIconListView *view in [rootFolderView iconListViews]) {
if (![[view model] isFull]) {
return view;
}
{
"krk.fr24.com":300,
"bma.fr24.com":350,
"db8.flightradar24.com":350
}
{
"flight":"AA42",
"snapshot_id":null,
"status":"airborne",
"dep_schd":1402181100,
"arr_schd":1402211400,
"departure":1402181700,
"arrival":1402211100,
"eta":1402211100,
"to_iata":"CDG",
{
"3832ffa":[ <---- THIS IS THE "[Flight ID]"
"A42DBC",
41.3647,
-71.8897,
205,
24000,
340,
"1422",
"T-KBOS4",
{
"version": 4,
...
"northamerica": {
"tl_y": 75,
"tl_x": -180.0,
"br_y": 3.0,
"br_x": -52,
"subzones" : {
"na_n" : {"tl_y":72.82,"tl_x":-177.97,"br_y":41.92,"br_x":-52.48},
{
"version":1401459539,
"rows":[
{
"Name":"1Time",
"Code":"T6",
"ICAO":"RNX"
},
{
"Name":"ABSA Cargo",
{
   "version":1401822251,
   "rows":[
     {
         "name":"Aalborg Airport",
         "iata":"AAL",
         "icao":"EKYT",
         "lat":"57.092781",
         "lon":"9.849164",
         "country":"Denmark",
@davidmurray
davidmurray / libMobileGestalt.h
Last active February 15, 2016 10:35
libMobileGestalt.h
// libMobileGestalt header.
// 2013 (C) Cykey
extern "C" CFPropertyListRef MGCopyAnswer(CFStringRef property);
static const CFStringRef kMGDiskUsage = CFSTR("DiskUsage");
static const CFStringRef kMGModelNumber = CFSTR("ModelNumber");
static const CFStringRef kMGSIMTrayStatus = CFSTR("SIMTrayStatus");
static const CFStringRef kMGSerialNumber = CFSTR("SerialNumber");
static const CFStringRef kMGMLBSerialNumber = CFSTR("MLBSerialNumber");
@davidmurray
davidmurray / MobileWiFi.h
Last active December 14, 2015 01:38
More stuff
// Header for MobileWiFi.framework
// Copyright (C) 2013 Cykey (David Murray) david.murray16@hotmail.com
// All rights reserved.
#ifdef __cplusplus
extern "C" {
#endif
typedef struct __WiFiDeviceClient *WiFiDeviceClientRef;
typedef struct __WiFiNetwork *WiFiNetworkRef;