I hereby claim:
- I am kenansulayman on github.
- I am apx (https://keybase.io/apx) on keybase.
- I have a public key whose fingerprint is 74BD 49D0 DABB 7AB9 C1CE 8A67 9337 CFF2 ED85 FF40
To claim this, I am signing this object:
console.log(loadWebAssembly().exports['f64.distance'](1, 2, 3, 4)); | |
function loadWebAssembly(opts) { | |
var imp = opts && opts.imports | |
var wasm = toUint8Array('AGFzbQEAAAABDgJgAX8Bf2AEf39/fwF8AwMCAAEHGQIGc3F1YXJlAAAMZjY0LmRpc3RhbmNlAAEKKQIIACAAIABsDwseAQJ/IAAgAmshBCABIANrIQUgBBAAIAUQAGq3nw8L') | |
var ready = null | |
var mod = { | |
buffer: wasm, | |
memory: null, |
var http = require("http"), fs = require("fs"); | |
var index_buf = fs.readFileSync("./index.html"); | |
http.createServer(function (req, res) { | |
var isClosed; | |
if (req.url === "/" || req.url === "/index.html") { | |
res.write(index_buf); | |
} |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
typedef struct { | |
bool isRoot; | |
} selectedViewModel; | |
void log (const char *type) { | |
write(0, type, strlen(type)); |
["crypto", "net"].forEach(function (m) { global[m] = require(m) }) | |
var api = { | |
key: Buffer([ | |
0x01, 0xB9, 0x43, 0xE4, 0x8B, 0xBD, 0x33, 0x91, 0xF1, 0xE1, 0x25, 0x32, 0xEC, 0x3B, 0xD3, 0x36, | |
0x5B, 0xB9, 0x5B, 0x96, 0xD9, 0xA0, 0xF5, 0x22, 0x54, 0x31, 0x99, 0xF8, 0xB5, 0xBF, 0x4E, 0xE3 | |
]), | |
iv: Buffer([ | |
0x4d, 0x4e, 0x34, 0x58, 0x37, 0x66, 0x61, 0x43, 0x4f, 0x52, 0x34, 0x50, 0x45, 0x43, 0x38, 0x4b |
// Copyright 2014 Google Inc. All rights reserved | |
// | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file or at | |
// https://developers.google.com/open-source/licenses/bsd | |
/** | |
* @fileoverview The U2F api. | |
*/ |
// Copyright 2014 Google Inc. All rights reserved | |
// | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file or at | |
// https://developers.google.com/open-source/licenses/bsd | |
/** | |
* @fileoverview The U2F api. | |
*/ |
// modules | |
var lwip = require('lwip'), | |
path = require('path'), | |
fs = require('fs'), | |
rstream = require('stream').Readable; | |
// config | |
var placesPath = '/Users/apx/Downloads/places'; | |
// helper |
net = require 'net' | |
class Harvester | |
constructor: (@host = '127.0.0.1', @port = 28777, {@name, @streams}) -> | |
@queue = [] | |
# deregister existing node | |
@queue.push "-node|#{@name}\r\n" | |
# register and setup streams |
I hereby claim:
To claim this, I am signing this object:
// Please refer to http://nodejs.org/dist/v0.11.10/docs/api/crypto.html | |
var crypto = require("crypto"); | |
// see modp.txt for group specifications! | |
var alice = crypto.getDiffieHellman("modp14"), | |
bob = crypto.getDiffieHellman("modp14"); | |
alice.generateKeys(); | |
bob.generateKeys(); |