This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var LevelUp = require('levelup'); | |
var leveljs = require('level-js'); | |
var db = new LevelUp('layerz', {db:leveljs,valueEncoding:'binary'}); | |
var domify = require('domify') | |
function writeSomething(something){ | |
document.body.appendChild(domify('<p>' + something + '</p>')); | |
} | |
var buff = new Uint8Array([101,102,103]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button type="button", id="click">Click for a Name</button> | |
<div id="response"></div> | |
<script src="nameme.js"></script> | |
<script> | |
var button = document.getElementById('click'); | |
var div = document.getElementById('response'); | |
button.addEventListener('click', function () { | |
nameMe().then(function (r) { | |
div.innerText = r; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var util = require("util"); | |
var crypto = require("crypto"); | |
var shasum = crypto.createHash('sha1'); | |
var tempName = './.temp' + Math.random(); | |
var temp = fs.createWriteStream(tempName); | |
process.stdin.pipe(shasum); | |
process.stdin.pipe(temp); | |
process.stdin.on('end', function() { | |
var name = util.format(process.argv[2],shasum.digest('hex').slice(0,7)); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
(function (process,Buffer){ | |
'use strict'; | |
var inherits = require('inherits'); | |
var knex = require('knex'); | |
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN; | |
var Iter = require('./iterator'); | |
var fs = require('fs'); | |
var Promise = require('bluebird'); | |
var url = require('url'); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
(function (process,Buffer){ | |
'use strict'; | |
var inherits = require('inherits'); | |
var knex = require('knex'); | |
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN; | |
var Iter = require('./iterator'); | |
var fs = require('fs'); | |
var Promise = require('bluebird'); | |
var url = require('url'); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
(function (process,Buffer){ | |
'use strict'; | |
var inherits = require('inherits'); | |
var knex = require('knex'); | |
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN; | |
var Iter = require('./iterator'); | |
var fs = require('fs'); | |
var Promise = require('bluebird'); | |
var url = require('url'); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
(function (process,Buffer){ | |
'use strict'; | |
var inherits = require('inherits'); | |
var knex = require('knex'); | |
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN; | |
var Iter = require('./iterator'); | |
var fs = require('fs'); | |
var Promise = require('bluebird'); | |
var url = require('url'); |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
(function (process,Buffer){ | |
'use strict'; | |
var inherits = require('inherits'); | |
var knex = require('knex'); | |
var AbstractLevelDOWN = require('abstract-leveldown').AbstractLevelDOWN; | |
var Iter = require('./iterator'); | |
var fs = require('fs'); | |
var Promise = require('bluebird'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wordlist ver 0.732 - EXPECT INCOMPATIBLE CHANGES; | |
acrobat africa alaska albert albino album | |
alcohol alex alpha amadeus amanda amazon | |
america analog animal antenna antonio apollo | |
april aroma artist aspirin athlete atlas | |
banana bandit banjo bikini bingo bonus | |
camera canada carbon casino catalog cinema | |
citizen cobra comet compact complex context | |
credit critic crystal culture david delta | |
dialog diploma doctor domino dragon drama |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.obj = {}; | |
var b = require('./b'); | |
exports.msg = 'yay'; | |
b.something(); |