Skip to content

Instantly share code, notes, and snippets.

View objectiveSee's full-sized avatar

Danny Ricciotti objectiveSee

  • Starship Studios
View GitHub Profile
@objectiveSee
objectiveSee / package.json
Last active August 29, 2015 14:02
Burning Man 2014 Word Cloud Generation
{
"private": "true",
"name": "burnerwords",
"version": "v0.0.1",
"dependencies": {
"underscore": ">=1.4.4",
"optimist": "~0.3.5",
"read-json" : "~0.0.0",
"word-freq" : "~0.0.8"
}
var countNumberActiveUsersInRangeXDaysAgo = function (range_length_in_days, numDaysAgo_start) {
var deferred = Q.defer();
var startDate = new Date();
startDate.setDate(startDate.getDate() - numDaysAgo_start);
var s = ObjectID.createFromTime(startDate.getSeconds());
var endDate = new Date();
endDate.setDate(endDate.getDate() - numDaysAgo_start + range_length_in_days);
@objectiveSee
objectiveSee / gist:d7c7b0daa05f37e7c7ae
Created May 7, 2014 16:03
Forecast.IO API Sample Response
{
"latitude": 37.8267,
"longitude": -122.423,
"timezone": "America/Los_Angeles",
"offset": -7,
"currently": {
"time": 1399478531,
"summary": "Partly Cloudy",
"icon": "partly-cloudy-day",
"nearestStormDistance": 5,
@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'
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
- (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
Logger.info('Hello, World!');
var traits = {
coins: usr.coins,
cake: usr.cake,
name: usr.name,
avatar: usr.avatar
};
var identity = {
userId : usr._id,
traits : traits
@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;