- Inkbird IBT-2X
- Inkbird IBT-4XS
- EasyBBQ FCCID: FCC ID 2AI4MPRO3 (SHENZHEN HYPERSYNES CO.,LTD Smart Wireless Thermometer PRO3)
- @ConnectTimeout: 60 seconds
- @BatteryPollingInterval: 5 minutes
The iBBQ is a Bluetooth LE Gatt Device
// Use this handy method if you need to force the table view to refresh | |
// | |
// [self.egoRefreshTableView forceRefresh: self.tableView]; | |
// | |
@implementation EGORefreshTableHeaderView | |
- (void) forceRefresh:(UIScrollView *) scrollView { | |
[scrollView setContentOffset: CGPointMake(0, -65) animated: NO]; | |
[self egoRefreshScrollViewDidEndDragging: scrollView]; |
// Usage example: | |
// input image: http://f.cl.ly/items/3v0S3w2B3N0p3e0I082d/Image%202011.07.22%2011:29:25%20PM.png | |
// | |
// UIImage *buttonImage = [UIImage ipMaskedImageNamed:@"UIButtonBarAction.png" color:[UIColor redColor]]; | |
// .h | |
@interface UIImage (IPImageUtils) | |
+ (UIImage *)ipMaskedImageNamed:(NSString *)name color:(UIColor *)color; | |
@end |
(from :http://www.entropy.ch/blog/Developer/2010/04/15/Git-diff-for-Localizable-strings-Files.html) | |
First, add this to the project’s .git/info/attributes file: | |
+ | |
*.strings diff=localizablestrings | |
(Unfortunately you do have to add it to every project, there doesn’t seem to be a global attributes configuration file) | |
Second, add this to your ~/.gitconfig file: |
@interface UIResponder (FirstResponder) | |
+ (id)currentFirstResponder; | |
@end |
// originally found in a comment on: http://www.secretgeek.net/trello_ws | |
var s = []; | |
s.push("# " + jQuery(".board-header").children()[0].innerText); | |
jQuery(".list:has(.list-header-name)").each(function() { | |
s.push("\n## " + jQuery(this).find(".list-header-name")[0].innerText + "\n"); | |
jQuery(this).find(".list-card-title").each(function() { | |
s.push("* " + this.innerText); | |
}); | |
}); |