I hereby claim:
- I am lpinca on github.
- I am lpinca (https://keybase.io/lpinca) on keybase.
- I have a public key ASCTgTeWXtyVqWiam4l-_MHjYPvY7_dYNOCHcavNoGDZFgo
To claim this, I am signing this object:
const crypto = require('crypto'); | |
const fs = require('fs'); | |
const http = require('http'); | |
const stream = require('stream'); | |
const GUID = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'; | |
const data = `<!DOCTYPE html> | |
<html> | |
<head> |
'use strict'; | |
const WebSocket = require('ws'); | |
const websocketStream = require('websocket-stream'); | |
const { Readable, Writable } = require('stream'); | |
const chunk = Buffer.alloc(1024); | |
const src = new Readable({ | |
read() { |
diff -Naur mpdecimal-2.4.2-original/Makefile.in mpdecimal-2.4.2-patched/Makefile.in | |
--- mpdecimal-2.4.2-original/Makefile.in 2016-02-27 22:55:00.000000000 +0100 | |
+++ mpdecimal-2.4.2-patched/Makefile.in 2019-01-23 11:10:30.000000000 +0100 | |
@@ -6,6 +6,7 @@ | |
PACKAGE_TARNAME = @PACKAGE_TARNAME@ | |
LIBSTATIC = @LIBSTATIC@ | |
+LIBNAME = @LIBNAME@ | |
LIBSONAME = @LIBSONAME@ | |
LIBSHARED = @LIBSHARED@ |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<script src="https://cdn.jsdelivr.net/sockjs/1.1.1/sockjs.min.js"></script> | |
<script> | |
(function () { | |
var sockjs = new SockJS('/foo'); |
'use strict'; | |
const deflate = require('permessage-deflate'); | |
const Faye = require('faye-websocket'); | |
const http = require('http'); | |
exports.echo = opts => { | |
const messages = opts.messages; | |
const length = messages.length; | |
const extensions = []; |
'use strict'; | |
exports.foo = function foo() { | |
return 'bar'; | |
}; | |
exports.baz = function baz() { | |
return 'qux'; | |
}; |
'use strict'; | |
var Socket = require('primus').createSocket({ transformer: 'faye' }) | |
, one = new Socket('http://localhost:3001') | |
, two; | |
one.on('data', function (data) { | |
console.log('"one" received message: '+ data); | |
}); |
'use strict'; | |
const eio = require('engine.io-client'); | |
new eio('http://localhost:3000/'); |
'use strict'; | |
var Benchmark = require('benchmark') | |
, _ = require('lodash'); | |
var suite = new Benchmark.Suite() | |
, arr = [] | |
, i; | |
for (i = 0; i < 1000; i++) arr.push(i); |