Skip to content

Instantly share code, notes, and snippets.

Thread 1 Queue : com.apple.main-thread (serial)
#0 0x00000001c6c40aa8 in mach_msg2_trap ()
#1 0x00000001c6c52fc4 in mach_msg2_internal ()
#2 0x00000001c6c53204 in mach_msg_overwrite ()
#3 0x00000001c6c40fec in mach_msg ()
#4 0x0000000189346ad4 in __CFRunLoopServiceMachPort ()
#5 0x0000000189347d18 in __CFRunLoopRun ()
#6 0x000000018934cec0 in CFRunLoopRunSpecific ()
#7 0x00000001c33a3368 in GSEventRunModal ()
#8 0x000000018b84286c in -[UIApplication _run] ()
Thread Performance Checker: Thread running at QOS_CLASS_USER_INITIATED waiting on a lower QoS thread running at QOS_CLASS_UTILITY. Investigate ways to avoid priority inversions
PID: 11821, TID: 2938208
Backtrace
=================================================================
3 OmniBLE 0x000000010a7c3c80 $s7OmniBLE0A14BLEPumpManagerC5store5doses2inSbSayAA15UnfinalizedDoseVG_AA15PodCommsSessionCtF + 272
4 OmniBLE 0x000000010a7c651c $s7OmniBLE0A14BLEPumpManagerC12getPodStatus10completionyy7LoopKit04PumpD6ResultOyAA0G8ResponseVGcSg_tFyAA0F5CommsC010SessionRunL0OcfU_SbSayAA15UnfinalizedDoseVGXEfU_ + 64
5 OmniBLE 0x000000010a6d65c4 $s7OmniBLE15PodCommsSessionC15dosesForStorageyySbSayAA15UnfinalizedDoseVGXEF + 288
6 OmniBLE 0x000000010a7c609c $s7OmniBLE0A14BLEPumpManagerC12getPodStatus10completionyy7LoopKit04PumpD6ResultOyAA0G8ResponseVGcSg_tFyAA0F5CommsC010SessionRunL0OcfU_ + 464
7 OmniBLE
2023-01-03 21:09:36.556567+0100 Loop[8940:2056330] loop-NSLog 2023-01-03 21:09:36.5570 xDripClient.BlueToothTransmitter didUpdateValueFor for peripheral with name ABBOTT3MH00EMVD1H
2023-01-03 21:09:36.558319+0100 Loop[8940:2056330] loop-NSLog 2023-01-03 21:09:36.5580 xDripClient.BlueToothTransmitter didUpdateValueFor for peripheral with name ABBOTT3MH00EMVD1H
2023-01-03 21:09:36.951499+0100 Loop[8940:2056330] loop-NSLog 2023-01-03 21:09:36.9510 xDripClient.BlueToothTransmitter didUpdateValueFor for peripheral with name ABBOTT3MH00EMVD1H
2023-01-03 21:12:35.992891+0100 Loop[8940:2060858] [BluetoothManager] centralManager(_:didDisconnectPeripheral:error:): error=The specified device has disconnected from us. <CBPeripheral: 0x281260000, identifier = 0969FD57-D1C9-96CD-C77C-81C9F559B3A5, name = TWI BOARD, mtu = 23, state = disconnected>
2023-01-03 21:12:35.994917+0100 Loop[8940:2060858] [PodComms] omnipodPeripheralDidDisconnect... will auto-reconnect
2023-01-03 21:12:35.995157+0100 Loop[8940:2060858] [BluetoothMa
Thread 1 Queue : com.apple.main-thread (serial)
#0 0x00000001c6c40aa8 in mach_msg2_trap ()
#1 0x00000001c6c52fc4 in mach_msg2_internal ()
#2 0x00000001c6c53204 in mach_msg_overwrite ()
#3 0x00000001c6c40fec in mach_msg ()
#4 0x0000000189346ad4 in __CFRunLoopServiceMachPort ()
#5 0x0000000189347d18 in __CFRunLoopRun ()
#6 0x000000018934cec0 in CFRunLoopRunSpecific ()
#7 0x00000001c33a3368 in GSEventRunModal ()
#8 0x000000018b84286c in -[UIApplication _run] ()
@robinwo
robinwo / Statistics.js
Created October 20, 2015 12:43
Loading Segment.io analytics.js open source version async
// Create a dummy analytics object until real loaded
window.analytics || (window.analytics = []);
window.analytics.methods = ['identify', 'track', 'trackLink', 'trackForm', 'trackClick', 'trackSubmit', 'page', 'pageview', 'ab', 'alias', 'ready', 'group', 'on', 'once', 'off'];
window.analytics.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
window.analytics.push(args);
return window.analytics;
};
@robinwo
robinwo / pull_git_repos.sh
Created July 21, 2015 09:29
Pull local git repos, checkout master
#!/bin/zsh
## pull git repos
cd /Users/dev/repos ; # Update this path
echo ":::: Updated cloned git repositories ::::" ;
for i in * ;
do if [ -d $i ] ;
then echo "::: Directory $i :::" ;
cd $i ;
# Pull repo
git pull ;
@robinwo
robinwo / load_ssh_keys.sh
Created July 21, 2015 09:28
Load ssh keys on startup
#!/bin/zsh
## load ssh keys
cd ~/.ssh ;
echo ":::: Load SSH keys in agent ::::" ;
for i in * ;
do if [[ -f $i ]] && [[ $i == id_* ]] && [[ $i != *.pub ]];
then
ssh-add -l |grep -q `ssh-keygen -lf $i | awk '{print $2}'` || ssh-add $i;
fi
done ;
@robinwo
robinwo / update_deps.sh
Created July 21, 2015 09:27
Update deps (brew / composer) on startup
#!/bin/zsh
## updating brews
echo "::: Updating brews :::"
brew -v update && brew -v upgrade && brew -v cleanup && brew -v prune && brew -v doctor
echo "::: Updating composer :::"
composer self-update
@robinwo
robinwo / new_gist_file_0
Created January 8, 2015 12:47
SSH Offending Key
perl -pi -e 's/\Q$_// if ($. == 9);' ~/.ssh/known_hosts
@robinwo
robinwo / gist:728cb3b864859e19d1d3
Created October 28, 2014 14:57
Facebook Share
FB.ui({
method: 'feed',
display: 'popup',
name: title,
link: '',
picture: '',
caption: '',
description: '',
to: ''
},