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 TASK_IDS = [ | |
"614a6733d00f54c3a3723f18", | |
"6153aacfc395270181dc80e7", | |
"61557a7dcbc63da4f2102c5a", | |
"61427036b923c0436bcc8c6d", | |
"61425b61cdd0ab0e8c8346db", | |
"614520c8cdd0ab333683486c", | |
"61537aa7e307e660815ebc29", | |
"61539dec254017d9fd66ecc1", | |
"614e5b6458bdf843d7529e8b", |
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
Fatal Exception: com.facebook.react.bridge.JSApplicationIllegalArgumentException: Error while updating property 'transform' of a view managed by: RCTView | |
at com.facebook.react.uimanager.ViewManagersPropertyCache$PropSetter.updateViewProp(ViewManagersPropertyCache.java:89) | |
at com.facebook.react.uimanager.ViewManagerPropertyUpdater$FallbackViewManagerSetter.setProperty(ViewManagerPropertyUpdater.java:123) | |
at com.facebook.react.uimanager.ViewManagerPropertyUpdater.updateProps(ViewManagerPropertyUpdater.java:42) | |
at com.facebook.react.uimanager.ViewManager.updateProperties(ViewManager.java:34) | |
at com.facebook.react.uimanager.NativeViewHierarchyManager.createView(NativeViewHierarchyManager.java:220) | |
at com.facebook.react.uimanager.UIViewOperationQueue$CreateViewOperation.execute(UIViewOperationQueue.java:148) | |
at com.facebook.react.uimanager.UIViewOperationQueue$DispatchUIFrameCallback.dispatchPendingNonBatchedOperations(UIViewOperationQueue.java:890) | |
at com.fa |
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
const range = require('array-range'); | |
// | |
// console.log('Basic value grid') | |
// const initialGrid = makeGrid(5, 5, 2) | |
// console.log(initialGrid) | |
// console.log('Constructed grid') | |
// const constructedGrid = makeGrid(5, 5, (x, y, rows, columns) => (columns*y+x)) | |
// console.log(constructedGrid) |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDZ5X32RUFXXSIzumZeC3iKf/HzA2VuG2EJtlRKsvihBzeR49WTLBxnm+kKGcBr/33NssEnV5eeAsKN88HiYdlLmZf9NnBWwsV+FFYX852w7AnVDBL6dh4FH6HH4MsYcd+fFZbrgql2Zexx6HTdeWpEN/fAQKMb6ccHFipVhnZlIUI5CGwR+2Vr98jaB1ebdNdTblweGdDO+qRpk4kXhjfa/MsE4JlLndyvz4T69mrO3DGj/YBnIMa43EhTxBn54iCLxiouO3ZalNG7+jKoTXgMAX1WY2o8KKtF66HfJeZ1muKBfhjQj8s7Wl5nQK8q5U0LSMJGZYNapUsJzmttPqCh johnsoutar@*.stv.john |
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
import fetch from 'node-fetch'; | |
const OPERATIONS = { | |
'AND': (x, y) => x & y, | |
'OR': (x, y) => x | y, | |
'NOT': (value) => ~ value, | |
'LSHIFT': (x, y) => x << y, | |
'RSHIFT': (x, y) => x >> y | |
} |
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
const input = "(((())))()((((((((())()(()))(()((((()(()(((()((()((()(()()()()()))(((()(()((((((((((())(()()((())()(((())))()(()(()((()(()))(()()()()((()((()(((()()(((((((()()())()((((()()(((((()(())()(())((())()()))()(((((((())(()())(()(((())(()))((())))(()((()())))()())((((())))(()(((((()(())(((()()((()((()((((((((((())(()())))))()))())()()((((()()()()()()((((((())())(((()())()((()()(((()()()))(((((()))(((()(()()()(()(()(((())()))(()(((()((())()(()())())))((()()()(()()(((()))(((()((((()(((((()()(()())((()())())(()((((((()(()()))((((()))))())((())()()((()(()))))((((((((()))(()()(((())())(())()((()()()()((()((()((()()(((())))(()((())()((((((((()((()(()()(((())())())))(())())))()((((()))))))())))()()))()())((()())()((()()()))(()()(((()(())((((())())((((((((()()()()())))()()()((((()()))))))()((((()(((()))(()()())))((()()(((()))()()())())(((())((()()(())()()()(((())))))()())((()))()))((())()()())()())()()(()))())))())()))(())((()(())))(()(())(()))))(()(())())(()(())(()(()))))((()())()))()((((()()))))())))()()())( |
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
#!/usr/bin/env node | |
var options = require('minimist')(process.argv.slice(2), { default: { | |
cport: 8888 | |
}}); | |
var disable = options.disable || options.d; | |
var enable = options.enable || options.e; | |
var status = options.s || options.status; | |
var child = require('child_process'); |
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
import ObjectCache from '../ObjectCache'; | |
import ObjectStoreDriver from '../drivers/ObjectStoreDriver'; | |
let cache = new ObjectCache(ObjectStoreDriver); | |
let requests = 0; | |
let cacheHits = 0; | |
function getData () { | |
let cached = cache.get('apidata'); |
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
api | |
.get('episodes') | |
.orderBy(['matId']) | |
.where({'shortName': 'The Riverside Show'}) | |
.go() | |
.then((episodes) => { | |
// episodes is an array of Episode instances, not just plain objects | |
}); | |
// or even |
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
curl https://raw.githubusercontent.com/creationix/nvm/v0.23.3/install.sh | bash | |
nvm install iojs-1.4.2 | |
nvm install v0.12.0 | |
nvm alias io iojs-1.4.2 | |
nvm alias node v0.12.0 | |
nvm use io |
NewerOlder