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:
conn = new Mongo(); | |
db = conn.getDB("products"); | |
db.products.remove({}); | |
db.products.insert([{ | |
name : 'iphone6', | |
manufacturer: 'apple', | |
qty : 40, | |
tags : ['hipster', 'ios', 'slick', '3dtouch'], |
'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'); |
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!'); |
I hereby claim:
To claim this, I am signing this object:
<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> |
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 |
{ | |
"frameworks": { | |
"imports" : ["dnxcore50", "portable-net45+netcore45+wp8+wp81+wpa81"] | |
} | |
} |
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)); |
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; |
<!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> |