I hereby claim:
- I am kucukkanat on github.
- I am kucukkanat (https://keybase.io/kucukkanat) on keybase.
- I have a public key ASCm1o-xgZsrJZ_AbJZPuVb56E-XfAsyL8sOJttWQ2_69go
To claim this, I am signing this object:
| class Signal { | |
| constructor(value) { | |
| this.value = value; | |
| this.subscribers = new Set(); | |
| } | |
| get() { | |
| return this.value; | |
| } |
| /** | |
| BIP39 Implementation from scratch for browsers | |
| Documentation: https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki | |
| */ | |
| ;(async()=>{ | |
| const wordlist = ["abandon", "ability", "able", "about", "above", "absent", "absorb", "abstract", "absurd", "abuse", "access", "accident", "account", "accuse", "achieve", "acid", "acoustic", "acquire", "across", "act", "action", "actor", "actress", "actual", "adapt", "add", "addict", "address", "adjust", "admit", "adult", "advance", "advice", "aerobic", "affair", "afford", "afraid", "again", "age", "agent", "agree", "ahead", "aim", "air", "airport", "aisle", "alarm", "album", "alcohol", "alert", "alien", "all", "alley", "allow", "almost", "alone", "alpha", "already", "also", "alter", "always", "amateur", "amazing", "among", "amount", "amused", "analyst", "anchor", "ancient", "anger", "angle", "angry", "animal", "ankle", "announce", "annual", "another", "answer", "antenna", "antique", "anxiety", "any", "apart", "apology", "appear", "apple", " |
| #!/usr/bin/env sh | |
| export fileid=$1 | |
| export filename=$2 | |
| TEMP_CONFIRM_FILE=confirm.txt | |
| TEMP_COOKIE_FILE=TEMP_COOKIE_FILE | |
| ## WGET ## | |
| wget --save-cookies TEMP_COOKIE_FILE 'https://docs.google.com/uc?export=download&id='$fileid -O- \ | |
| | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1/p' > ${TEMP_CONFIRM_FILE} |
| { | |
| "isEnabled": true, | |
| "duration": 5 | |
| } |
| // yarn add webpack webpack-cli typescript ts-loader mini-css-extract-plugin sass sass-loader style-loader css-loader | |
| const path = require("path"); | |
| const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
| module.exports = { | |
| devtool: "source-map", // any "source-map"-like devtool is possible | |
| entry: path.resolve(__dirname, "src/index.tsx"), | |
| output: { | |
| path: path.resolve(__dirname, "dist"), | |
| filename: "bundle.js", |
I hereby claim:
To claim this, I am signing this object:
| function Promise(fn) { | |
| var callback = null; | |
| this.then = function(cb) { | |
| callback = cb; | |
| }; | |
| function resolve(value) { | |
| // force callback to be called in the next | |
| // iteration of the event loop, giving | |
| // callback a chance to be set by then() |
| .no { | |
| &-padding { | |
| padding: 0; | |
| } | |
| &-margin { | |
| margin: 0 | |
| } | |
| &-padding-top { | |
| padding-top: 0 | |
| } |
| var _ = require('lodash'); | |
| var globalStore; | |
| function getInstance(){ | |
| if (!globalStore) globalStore = createStore(); | |
| return globalStore; | |
| } |