I hereby claim:
- I am franz899 on github.
- I am franz899 (https://keybase.io/franz899) on keybase.
- I have a public key ASAHKCUvBscP1f5IzCHOuWQ-0ReK1kX8EBAsd1FgnMP0vQo
To claim this, I am signing this object:
| { | |
| // App | |
| "window.nativeTabs": false, | |
| // Window Title, only works with native tabs enabled | |
| // "window.title": "${activeEditorShort}${separator}${rootName}" | |
| "window.title": "${activeFolderShort}", | |
| "window.newWindowDimensions": "inherit", | |
| "window.autoDetectColorScheme": true, |
| "new empty lambda": { | |
| "prefix": "nel", | |
| "body": [ | |
| "($1) => {$2}" | |
| ], | |
| "description": "creates a new empty lambda expression" | |
| }, | |
| "new async empty lambda": { | |
| "prefix": "nela", | |
| "body": [ |
| function generateRandomString(length) { | |
| var id = ""; | |
| for (let i = 0; i < length; i++) { | |
| const r = getRandomNumber(); | |
| if (r < 0.5) { | |
| id += getNumberWithinRange(r, 0, 9); | |
| } else { | |
| id += String.fromCharCode(getNumberWithinRange(r, 97, 122)); | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| 'use strict'; | |
| var _ = require('lodash'); | |
| var R = require('ramda'); | |
| var obj1 = { | |
| a:1, | |
| b:1, | |
| } |
| <link rel="import" href="../components/polymer/polymer.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |