Keybase proof
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:
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%; |