I hereby claim:
- I am thejmazz on github.
- I am jmazz (https://keybase.io/jmazz) on keybase.
- I have a public key whose fingerprint is 3529 9E3C 8E7E 9F50 2688 324C 3392 20E2 CDBD F0A9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
version: '2.3' | |
services: | |
init: | |
image: vault | |
container_name: minio_init | |
environment: | |
VAULT_ADDR: https://10.110.1.9:8200 | |
VAULT_CACERT: /run/secrets/chain.pem | |
volumes: |
#!/bin/bash | |
# | |
# This script can be "curl-piped" into bash to bootstrap a dotfiles repo when | |
# yadm is not locally installed. Read below for instructions. | |
# | |
# DISCLAIMER: In general, I would advise against piping someone's code directly | |
# from the Internet into an interpreter (like Bash). You should | |
# probably review any code like this prior to executing it. I leave | |
# it to you to decide if this is risky behavior or not. The main |
#!/usr/bin/env sh | |
# Usage: call with docker container name, requires stat | |
# E.g. sudo ./logs-per-hour project_service_1 | |
id=$(docker inspect $1 --format "{{ .ID }}") | |
started_date=$(docker inspect $id --format "{{ .Created}}") | |
started=$(date +%s -d ${started_date}) | |
now=$(date +%s) |
{ | |
"scripts": { | |
"start": "webpack-dev-server", | |
"build": "NODE_ENV=production webpack" | |
}, | |
"devDependencies": { | |
"babel-core": "^6.18.2", | |
"babel-loader": "^6.2.8", | |
"babel-plugin-add-module-exports": "^0.2.1", | |
"babel-plugin-glslify": "^2.0.0", |
'use strict' | |
const path = require('path') | |
const webpack = require('webpack') | |
const HtmlWebpackPlugin = require('html-webpack-plugin') | |
const CopyWebpackPlugin = require('copy-webpack-plugin') | |
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer') | |
const whsAliases = require('whs/tools/alias.js') | |
const isProd = process.env.NODE_ENV === 'production' |
const links = [{ | |
title: 'About', | |
position: [2, 1.5, 0], | |
color: 0x00ff00 | |
}, | |
{ | |
title: 'Contact', | |
position: [2, -1.5, 0], | |
color: 0xff0000 | |
}, |
'use strict' | |
const width = 512 | |
const height = 512 | |
const fs = require('fs') | |
const { PNG } = require('pngjs') | |
const gl = require('gl')(width, height, { preserveDrawingBuffer: true }) | |
const regl = require('regl')(gl) |