I hereby claim:
- I am andrewdc on github.
- I am andrewdc (https://keybase.io/andrewdc) on keybase.
- I have a public key whose fingerprint is BD42 A419 79DF 5BFF 1D95 41CE F76A 81BB BEF5 01FE
To claim this, I am signing this object:
{ | |
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}`~?" | |
} |
var gulp = require('gulp'); | |
var notify = require('gulp-notify'); | |
var sass = require('gulp-sass'); | |
var gutil = require('gulp-util'); | |
var plumber = require('gulp-plumber'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var path = require('path'); | |
var livereload = require('gulp-livereload'); | |
var lr = require('tiny-lr')(); | |
var config = require('../config'); |
#!/bin/bash | |
# nxsass setup script | |
clear | |
echo " __ __ "; | |
echo " \ \ / / "; | |
echo " _ __ | | | | ___ __ _ ___ ___ "; | |
echo " | '_ \ \ \/ / / __| / _\` |/ __|/ __|"; | |
echo " | | | | / /\ \ \__ \| (_| |\__ \\\\__ \\"; |
<div data-am-module=""> | |
data-am-module="" | |
</div> | |
<div data-am-module="blue"> | |
data-am-module="blue" | |
</div> | |
<div data-am-module="large"> | |
data-am-module="large" |
I hereby claim:
To claim this, I am signing this object:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
const webpack = require("webpack"); | |
const path = require("path"); | |
const node_modules_dir = path.join(__dirname, "node_modules"); | |
const config = { | |
cache: true, | |
context: __dirname, | |
entry: { | |
app: [ | |
"webpack/hot/dev-server", |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks | |
fontFamily: 'PowerlineSymbols, "Source Code Pro", "Operator Mono", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(248,28,229,0.8)', | |
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █ | |
cursorShape: 'BLOCK', |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks | |
fontFamily: 'PowerlineSymbols, "Source Code Pro", "Operator Mono", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(248,28,229,0.8)', | |
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █ | |
cursorShape: 'BLOCK', |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="[Dice Roller]"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<button onclick="roller(6, 2)">Roll</button> |