Skip to content

Instantly share code, notes, and snippets.

View objectiveSee's full-sized avatar

Danny Ricciotti objectiveSee

  • Starship Studios
View GitHub Profile
var traits = {
coins: usr.coins,
cake: usr.cake,
name: usr.name,
avatar: usr.avatar
};
var identity = {
userId : usr._id,
traits : traits
@objectiveSee
objectiveSee / notcher.js
Created April 18, 2017 20:47
Parameters:
var makerjs = require('makerjs')
// Model of pixel heart created by another script, hard-coded here for use in maker playground
var pixel_heart = {"paths":{"ShapeLine1":{"type":"line","origin":[0,9],"end":[1,9]},"ShapeLine2":{"type":"line","origin":[1,9],"end":[1,10]},"ShapeLine3":{"type":"line","origin":[1,10],"end":[2,10]},"ShapeLine4":{"type":"line","origin":[2,10],"end":[2,11]},"ShapeLine5":{"type":"line","origin":[2,11],"end":[5,11]},"ShapeLine6":{"type":"line","origin":[5,11],"end":[5,10]},"ShapeLine7":{"type":"line","origin":[5,10],"end":[8,10]},"ShapeLine8":{"type":"line","origin":[8,10],"end":[8,11]},"ShapeLine9":{"type":"line","origin":[8,11],"end":[11,11]},"ShapeLine10":{"type":"line","origin":[11,11],"end":[11,10]},"ShapeLine11":{"type":"line","origin":[11,10],"end":[12,10]},"ShapeLine12":{"type":"line","origin":[12,10],"end":[12,9]},"ShapeLine13":{"type":"line","origin":[12,9],"end":[13,9]},"ShapeLine14":{"type":"line","origin":[13,9],"end":[13,6]},"ShapeLine15":{"type":"line","origin":[13,6
@objectiveSee
objectiveSee / notcher.js
Created April 18, 2017 20:47
Parameters:
var makerjs = require('makerjs')
// Model of pixel heart created by another script, hard-coded here for use in maker playground
var pixel_heart = {"paths":{"ShapeLine1":{"type":"line","origin":[0,9],"end":[1,9]},"ShapeLine2":{"type":"line","origin":[1,9],"end":[1,10]},"ShapeLine3":{"type":"line","origin":[1,10],"end":[2,10]},"ShapeLine4":{"type":"line","origin":[2,10],"end":[2,11]},"ShapeLine5":{"type":"line","origin":[2,11],"end":[5,11]},"ShapeLine6":{"type":"line","origin":[5,11],"end":[5,10]},"ShapeLine7":{"type":"line","origin":[5,10],"end":[8,10]},"ShapeLine8":{"type":"line","origin":[8,10],"end":[8,11]},"ShapeLine9":{"type":"line","origin":[8,11],"end":[11,11]},"ShapeLine10":{"type":"line","origin":[11,11],"end":[11,10]},"ShapeLine11":{"type":"line","origin":[11,10],"end":[12,10]},"ShapeLine12":{"type":"line","origin":[12,10],"end":[12,9]},"ShapeLine13":{"type":"line","origin":[12,9],"end":[13,9]},"ShapeLine14":{"type":"line","origin":[13,9],"end":[13,6]},"ShapeLine15":{"type":"line","origin":[13,6
/**
____ _ ____ ____ ____
/ ___| / \ | _ \ | _ \ / ___|
| | / _ \ | |_) | | | | | \___ \
| |___ / ___ \ | _ < | |_| | ___) |
\____| /_/ \_\ |_| \_\ |____/ |____/
*/
app.get('/cards', function (req, res) {
AdminAPI.getCards(req);
@objectiveSee
objectiveSee / podspec
Created April 10, 2014 17:10
Creating Podspec for https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX. In my project, the "framework search paths" is set to ""$(PODS_ROOT)/../../PhilipsHueSDKOfficial"" but when I try to import a header from the Hue SDK I get a linker error (header not found)
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'
Logger.info('Hello, World!');
@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);
<?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;
request.setTimeout 1000 () =>
console.log('TIMEOUT???!??!?!');
- (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;
}