ssh
ssh-keygen
cat ~/.ssh/id_rsa.pub
git
{ | |
"bind": { | |
"prefix": "bind", | |
"body": [ | |
"{{$1}}" | |
], | |
"description": "" | |
}, | |
"message": { | |
"prefix": "message", |
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "cmd+y", | |
"command": "redo", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+alt+down", | |
"command": "editor.action.moveLinesDownAction", |
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"window.zoomLevel": 2, | |
"editor.renderWhitespace": "boundary", | |
"files.exclude": { | |
"dist": true, | |
"fixtures": true, | |
"node_modules": true, | |
"static/timeline*": true | |
}, |
ssh
ssh-keygen
cat ~/.ssh/id_rsa.pub
git
const grouped = _.groupBy(this.state.deepAnalysisGroupedBarChart, 'color') | |
this.state.deepAnalysisMaxValue = max.value | |
const _encoding = { | |
x: { | |
field: 'value', | |
type: 'quantitative', | |
scale: { | |
domain: [0, max.value] | |
} |
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/3.0.0-rc6.json", | |
"data": { | |
"values": [ | |
{ | |
"label": "2003", | |
"value": 1585, | |
"key": "pub_year", | |
"text": "2003 (1,585)" | |
}, |
license: mit |
license: gpl-3.0 |
const version = require('../../../../version.txt').trim() | |
class LocalStorageService { | |
constructor(prefix, useVersion) { | |
if (useVersion) { | |
prefix = version + ':' + prefix | |
} | |
this.prefix = prefix | |
this.store = {} |