This file contains hidden or 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
const yo = require('yo-yo') | |
module.exports = entries => yo` | |
<ul> | |
${entries.map(entry => yo` | |
<li>${entry.name}</li> | |
`)} | |
</ul>` |
This file contains hidden or 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
<key>CFBundleURLTypes</key> | |
<array> | |
<dict> | |
<key>CFBundleURLName</key> | |
<string>Dat Link</string> | |
<key>CFBundleURLSchemes</key> | |
<array> | |
<string>dat</string> | |
</array> | |
</dict> |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDocumentTypes</key> | |
<array> | |
<dict> | |
<key>CFBundleTypeName</key> | |
<string>All Files</string> | |
<key>LSHandlerRank</key> |
This file contains hidden or 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 fill = require('fill-colorcoded-bar'); | |
var Bar = require('colorcoded-bar'); | |
var raf = require('raf'); | |
var data = []; | |
for (var i = 0; i < 1000; i++) data[i] = Math.random(); | |
(function(){ | |
var el = document.createElement('canvas'); | |
document.body.appendChild(el); |
This file contains hidden or 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 Bar = require('colorcoded-bar'); | |
var insertCSS = require('insert-css'); | |
// Vertical bar | |
(function(){ | |
var bar = new Bar(); | |
for (var i = 0; i < 100; i++) { | |
bar.set(i, 'rgba(1, 1, 1, ' + i / 100 + ')'); | |
} |
This file contains hidden or 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 Dump = require('hex-dump'); | |
var bytes = require('bytes'); | |
var Buffer = require('buffer').Buffer; | |
var size = '512kb'; | |
var len = bytes(size); | |
var b = new Buffer(len); | |
for (var i = 0; i < len; i++) { | |
b[i] = Math.round(Math.random() * 255); |
This file contains hidden or 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 Viewer = require('xml-viewer'); | |
var insertCSS = require('insert-css'); | |
var xml = '<?xml version="1.0" encoding="utf-8"?>' + | |
' <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"' + | |
' xmlns="urn:enterprise.soap.sforce.com">' + | |
' <soapenv:Body>' + | |
' <createResponse>' + | |
' <result>' + | |
' <id>003D000000OY9omIAD</id>' + |
This file contains hidden or 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 Viewer = require('xml-viewer'); | |
var insertCSS = require('insert-css'); | |
var xml = '<?xml version="1.0" encoding="utf-8"?>' + | |
' <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"' + | |
' xmlns="urn:enterprise.soap.sforce.com">' + | |
' <soapenv:Body>' + | |
' <createResponse>' + | |
' <result>' + | |
' <id>003D000000OY9omIAD</id>' + |
This file contains hidden or 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
console.log('BUILD env=%s', process.env.NODE_ENV) |