###data.fressian
Self describing
| CoreText performance note: Client called CTFontCreateWithName() using name "Lato" and got font with PostScript name "Lato-Regular". For best performance, only use PostScript names when calling this API. |
| var crypto = require('crypto'); | |
| var hash = crypto.createHash('sha512'); | |
| hash.update("hello"); | |
| var sha = hash.digest('hex'); | |
| console.log(sha, sha.length); |
| var crypto = require('crypto'); | |
| var hash = crypto.createHash('sha256'); | |
| hash.update("hello"); | |
| var sha = hash.digest('hex'); | |
| console.log(sha, sha.length); |
| var crypto = require('crypto'); | |
| var hash = crypto.createHash('sha1'); | |
| hash.update("hello"); | |
| var sha = hash.digest('hex'); | |
| console.log(sha, sha.length); |
| $ node | |
| > typeof a | |
| 'undefined' | |
| > function _typeof(thing) { return typeof thing; } | |
| undefined | |
| > _typeof(a) | |
| ReferenceError: a is not defined | |
| at repl:1:10 | |
| at REPLServer.self.eval (repl.js:110:21) | |
| at Interface.<anonymous> (repl.js:239:12) |
| remote: /data/github/current/lib/github/githooks/push_context.rb:8: warning: IO#lines is deprecated; use #each_line instead |
| process.stdin.on('data', function(d) { | |
| var separate = d.toString().split(':'); | |
| console.log(separate.join('\n')); | |
| }); |
| var fs = require('fs'); | |
| var YAML = require('json2yaml'); | |
| var layout = process.env.JEKYLL_POST_LAYOUT || "post"; | |
| process.stdin.on('data', function(d) { | |
| var files = d.toString().split('\n').filter(function(e){ return e !== ''; }); | |
| files.map(function(fn) { | |
| var contents = fs.readFileSync(fn).toString(); | |
| contents.replace(/({.*title.*})/m, function(match, p1, s) { |