I hereby claim:
- I am saintedlama on github.
- I am saintedlama (https://keybase.io/saintedlama) on keybase.
- I have a public key whose fingerprint is 8666 C435 472C 7CD2 A53B 4125 7A57 FAF1 1A31 BE87
To claim this, I am signing this object:
| const graphviz = require("graphviz"); | |
| const defaultOptions = { | |
| G: { | |
| overlap: false, | |
| pad: 0.3, | |
| rankdir: "LR", | |
| layout: "dot", | |
| bgcolor: "#111111", | |
| }, |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Minimal responsive boilerplate</title> | |
| </head> | |
| <body> | |
| </body> |
| const mongoist = require('mongoist'); | |
| module.exports = mongoist('test'); | |
| module.exports.Database = mongoist.Database; | |
| module.exports.Collection = mongoist.Collection; | |
| module.exports.Cursor = mongoist.Cursor; | |
| module.exports.Bulk = mongoist.Bulk; |
| new Promise((resolve, reject) => reject('does not work')) | |
| .catch(e => { console.log('caught first', e); return 1; }) | |
| .then(val => console.log('first then', val)) | |
| .then(val => console.log('second then', val)) | |
| .catch(e => console.log('caught end', e)); |
| { | |
| "frameworks": { | |
| "imports" : ["dnxcore50", "portable-net45+netcore45+wp8+wp81+wpa81"] | |
| } | |
| } |
| GIMP Palette | |
| Name: NES Color Palette | |
| Columns: 16 | |
| # | |
| 124 124 124 nes00 | |
| 0 0 252 nes01 | |
| 0 0 188 nes02 | |
| 68 40 188 nes03 | |
| 148 0 132 nes04 | |
| 168 0 32 nes05 |
| <html> | |
| <head> | |
| <title>Kirschlimona.de</title> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="A web app intentionally left blank"> | |
| <meta name="author" content="Empty web placeholder gist"> | |
| <style> |
I hereby claim:
To claim this, I am signing this object:
| require('shelljs/global'); | |
| var execOutdated = exec('npm outdated -g --depth=0 --json'); | |
| if (execOutdated.code != 0) { | |
| console.log(execOutdated.output); | |
| process.exit(1); | |
| } | |
| if (execOutdated.output == '') { | |
| console.log('Everything is up to date! Awesome!'); |
| 'use strict'; | |
| const Metalsmith = require('metalsmith'); | |
| const markdown = require('metalsmith-markdown'); | |
| const layouts = require('metalsmith-layouts'); | |
| const render = require('metalsmith-in-place'); | |
| const collections = require('metalsmith-collections'); | |
| const permalinks = require('metalsmith-permalinks'); | |
| const branch = require('metalsmith-branch'); | |
| const shell = require('shelljs'); |