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
{ | |
"latitude": 37.8267, | |
"longitude": -122.423, | |
"timezone": "America/Los_Angeles", | |
"offset": -7, | |
"currently": { | |
"time": 1399478531, | |
"summary": "Partly Cloudy", | |
"icon": "partly-cloudy-day", | |
"nearestStormDistance": 5, |
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 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); |
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
{ | |
"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" | |
} |
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
hello |
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
require('../lib/globals.js'); | |
function SerialDevice() { | |
return { | |
testObjectMethod: function() { | |
} | |
}; | |
} |
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
- (NSArray *)decks | |
{ | |
id d = [self valueForKey:EAUserDecksArray]; | |
if ( !d ) { | |
return @[]; | |
} | |
return d; | |
} |
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
@interface EAUser : NSObject | |
- (NSArray *)decks; | |
@end |
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 w:CGFloat = 320 | |
var h:CGFloat = 100 | |
for ( var i = 0; i < 3; i++ ) { | |
let button = HEYButton(frame: CGRectMake(0, CGFloat(i) * h, w, h)); |
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
mkdir -p build/Debug/GNU-Linux-x86/_ext/1731549632 | |
rm -f "build/Debug/GNU-Linux-x86/_ext/1731549632/Constants.o.d" | |
g++ -Wno-write-strings -c -g -I../Arduino/PyramidOfPossibilities -I../PlatformData -I../Arduino/libraries/RNChaser -I../Arduino/libraries/RNLights -I../Arduino/libraries/Accelerometer -I../Arduino/PyramidOfPossibilities -I. -I../Arduino/libraries/FastLED -std=c++11 -MMD -MP -MF "build/Debug/GNU-Linux-x86/_ext/1731549632/Constants.o.d" -o build/Debug/GNU-Linux-x86/_ext/1731549632/Constants.o ../Arduino/PyramidOfPossibilities/Constants.cpp | |
mkdir -p build/Debug/GNU-Linux-x86/_ext/1731549632 | |
rm -f "build/Debug/GNU-Linux-x86/_ext/1731549632/Controller.o.d" | |
g++ -Wno-write-strings -c -g -I../Arduino/PyramidOfPossibilities -I../PlatformData -I../Arduino/libraries/RNChaser -I../Arduino/libraries/RNLights -I../Arduino/libraries/Accelerometer -I../Arduino/PyramidOfPossibilities -I. -I../Arduino/libraries/FastLED -std=c++11 -MMD -MP -MF "build/Debug/GNU-Linux-x86/_ext/1731549632/Controller.o.d" -o build/ |
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
struct RadialParameters { | |
unsigned long period = 5000; // duration of single cycle, in milliseconds. | |
float thickness = 200; | |
RNGradient gradientInside = RNGradient(0, RNGradientCapped, 0x880000, 0x884400); | |
RNGradient gradientShell = RNGradient(0, RNGradientCapped, 0xFF0000, 0x0000FF); | |
RNGradient gradientOutside = RNGradient(0, RNGradientCapped, 0x000088, 0x003388); | |
}; |