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
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
EALobbyGameCell *cell = [tableView dequeueReusableCellWithIdentifier:kGameCellIdent forIndexPath:indexPath]; | |
if ( [cell viewWithTag:444] == nil ) { | |
// make gesture recoginzer and give it a tag of 444 | |
}) | |
// set target here |
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
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kGameCellIdent forIndexPath:indexPath]; | |
if ( cell.tag != 1 ) { | |
UITapGestureRecognizer tappy = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(_cellTapped:)]; | |
[cell addGestureRecognizer:tappy]; | |
cell.tag = 1; | |
} |
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
request.setTimeout 1000 () => | |
console.log('TIMEOUT???!??!?!'); |
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
<?php | |
date_default_timezone_set('Europe/London'); | |
echo date_default_timezone_get(); | |
echo "\n\n"; | |
echo date("Y-m-d\Th:m:s", time()); | |
echo "\n\n"; | |
exit; |
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
@implementation UIFont (CustomSystemFont) | |
// swizzle methods for system fonts so we can use | |
+ (void)load | |
{ | |
Method orig = class_getClassMethod([UIFont class], @selector(systemFontOfSize:)); | |
Method swiz = class_getClassMethod([UIFont class], @selector(_systemFontOfSize:)); | |
method_exchangeImplementations(orig, swiz); | |
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
var traits = { | |
coins: usr.coins, | |
cake: usr.cake, | |
name: usr.name, | |
avatar: usr.avatar | |
}; | |
var identity = { | |
userId : usr._id, | |
traits : traits |
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
Logger.info('Hello, World!'); |
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
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil | |
{ | |
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; | |
if (self) { | |
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_updateNinja) name:kEANotificationBackgroundManagerUpdate object:nil]; | |
} | |
return self; | |
} | |
- (void)_updateNinja |
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
gem install nomad-cli | |
ERROR: While executing gem ... (Gem::FilePermissionError) | |
You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory |
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
Pod::Spec.new do |s| | |
s.name = 'PhilipsHueiOS' | |
s.version = '1.1.3' | |
s.license = 'Copyright (c) 2012- 2013, Philips Electronics N.V. All rights reserved.' | |
s.summary = 'The Software Development Kit for Philips Hue on iOS' | |
s.homepage = 'https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX' | |
s.requires_arc = true | |
s.ios.deployment_target = '6.0' | |
s.osx.deployment_target = '10.8' |