This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
perl -pi -e 's/\Q$_// if ($. == 9);' ~/.ssh/known_hosts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FB.ui({ | |
method: 'feed', | |
display: 'popup', | |
name: title, | |
link: '', | |
picture: '', | |
caption: '', | |
description: '', | |
to: '' | |
}, |
NewerOlder