I hereby claim:
- I am ssube on github.
- I am ssube (https://keybase.io/ssube) on keybase.
- I have a public key ASDLEwK6h9ng108kn_8Qf51KBI9fNhc7Qcn_I_ermKz8Two
To claim this, I am signing this object:
ckb-dev-detect - Tue Jan 9 17:12:48 CST 2018 | |
Kernel: Linux ssube-cerberus 4.13.0-21-generic #24-Ubuntu SMP Mon Dec 18 17:29:16 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux | |
OS Version: | |
Distributor ID: Ubuntu | |
Description: Ubuntu 17.10 | |
Release: 17.10 | |
Codename: artful |
# Git | |
GIT_REF = $(shell git rev-parse --abbrev-ref HEAD) | |
GIT_REV = $(shell git rev-parse HEAD) | |
# CI | |
CI_COMMIT_REF_SLUG ?= $(GIT_REF) | |
CI_ENVIRONMENT_SLUG ?= local | |
CI_RUNNER_DESCRIPTION ?= $(shell hostname) | |
# Debug |
import {Iterable, List, Map} from 'immutable'; | |
import {isFunction, kebabCase} from 'lodash'; | |
import {InstanceBoundError} from 'main/error/InstanceBoundError'; | |
import {MissingValueError} from 'main/error/MissingValueError'; | |
import {Dependency, Descriptor} from 'main/utility/inject/Dependency'; | |
import {Injected} from 'main/utility/inject/Injected'; | |
import {Factory, Module, ProviderType} from 'main/utility/inject/Module'; | |
export const injectionSymbol = Symbol('inject'); |
I hereby claim:
To claim this, I am signing this object:
import {Iterable, List, Map} from 'immutable'; | |
import Config from '~/config/Config'; | |
import {Log} from '~/log/Log'; | |
import {Configurable} from '~/utils/Configurable'; | |
import {Dependency, Descriptor} from './Describe'; | |
import {Inject, injectionSymbol} from './Inject'; | |
import {Module, ProviderType} from './Module'; | |
export interface Constructor<R> { | |
new(...args: Array<any>): R; |
this._interval = Observable.interval(1000 / 20).timeInterval(); | |
this._screen.realloc(); | |
let state = 0; | |
const bufferInput = this._input.getStream().buffer(this._interval); | |
const frames: Observable<Frame> = this._interval.combineLatest(bufferInput).map((value) => { | |
return { | |
actions: value[1], | |
time: value[0] |
export class MultiMap<K, V> implements Map<K, Array<V>> { | |
protected _map: Map<K, Array<V>>; | |
constructor(entries: Array<[K, Array<V>]>) { | |
this._map = new Map(entries); | |
} | |
/* simple wrappers */ | |
public clear(): void { | |
this._map.clear(); |
@font-face { | |
font-family: 'Emoji'; | |
src: url('https://rawgit.com/MorbZ/OpenSansEmoji/master/OpenSansEmoji.ttf') format('truetype'), | |
url('https://rawgit.com/MorbZ/OpenSansEmoji/master/OpenSansEmoji.otf') format('opentype'); | |
/* Emoji unicode blocks */ | |
unicode-range: U+1F300-1F5FF, U+1F600-1F64F, U+1F680-1F6FF, U+2600-26FF; | |
} |
import {Component} from 'react'; | |
import blessed from 'blessed'; | |
export default class BoxComponent extends Component { | |
constructor(props, context) { | |
super(props, context); | |
this.node = blessed.box(props); | |
} |
const data = { | |
args: [ | |
['foo.bar.baz', 1], | |
['foo.bar.biz', 2], | |
['fin', 3] | |
], | |
env: { | |
'APEX_FIN_BIN': 7, | |
'APEX_FAN_BAN': 8, | |
'NOPE_NOPE_NOPE': 9, |