- Date: 2015-09-09
- Pump: Medtronic Minimed 723 v2.4A pump
- Pump Battery: Full
- Pump suspended
- CareLink USB stick plugged directly into RPi2 USB using 6" extension
- Pump and CL stick placed on hardwood floor
This file contains hidden or 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
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 | |
meter a7 628077 5d 00 b7 |
This file contains hidden or 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
UIContentSizeCategoryExtraSmall | |
FontStyle: UICTFontTextStyleBody | |
Point size 14.000000 | |
Family Name .AppleSystemUIBody | |
FontStyle: UICTFontTextStyleHeadline | |
Point size 14.000000 | |
Family Name .AppleSystemUIHeadline | |
Bold | |
FontStyle: UICTFontTextStyleSubhead | |
Point size 12.000000 |
This file contains hidden or 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/bash | |
# | |
### CocoaPods git-checkout hook | |
# | |
# This is a hook which you can install, it will automatically | |
# run `pod install` when you do a git pull/clone/checkout. | |
# | |
# The hook can be used to make CocoaPods usable with Xcode CI. | |
# | |
## Installation |
This file contains hidden or 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
- (NSURLRequest *)requestForFetchRequest:(NSFetchRequest *)fetchRequest | |
withContext:(NSManagedObjectContext *)context { | |
// init the query string dictionary | |
NSMutableDictionary *queryString = nil; | |
// if we're given a predicate, convert it to a dictionary | |
if (fetchRequest.predicate) { | |
if ([fetchRequest.predicate isKindOfClass:[NSCompoundPredicate class]]) { |