I hereby claim:
- I am argon on github.
- I am argon (https://keybase.io/argon) on keybase.
- I have a public key whose fingerprint is 4F7A 7D7A 91EE 27D0 CB04 A973 B1EC 1B8F 7773 9CE3
To claim this, I am signing this object:
| From c3f2ff065e1910cc567f55c9123f8f80d3a11c5f Mon Sep 17 00:00:00 2001 | |
| From: Andrew Naylor <argon@mkbot.net> | |
| Date: Fri, 23 Jul 2010 01:20:02 +0100 | |
| Subject: [PATCH] Added Buffer support for node_crypto update functions of Cipher, Decipher, Hmac, Sign and Verify | |
| --- | |
| src/node_crypto.cc | 106 ++++++++++++++++++++++++++++++++++------------------ | |
| 1 files changed, 69 insertions(+), 37 deletions(-) | |
| diff --git a/src/node_crypto.cc b/src/node_crypto.cc |
| #!/bin/bash | |
| if [ $# -lt 2 ] | |
| then | |
| echo "usage error: $0 <git dir> <work tree>" | |
| exit 1; | |
| fi | |
| CWD=`pwd` | |
| if [ ! -d $1 ] |
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAouQfBprYcBeufr4i+/2jUwQPBYM7yWVZ76CRQdrmGGhZWE7xtC/PBOrDV7+2R7hyNdHCODDJMRyxWdVkz4d7vgjEH4/6rgj4vcl/UAKJu4QaUJMrVFgTbcfDYgTapi3IbDQayRs4e2dYPt9GiHI1IiLn3ToCy25K28rDiDP2Qjuk8o1VyLxVWEPZrCLN2z5RJ8FoapxdYQpgLBOmpBx6y/rxJScigO8vS+Cs0k9UPa2JAUnImV1pO/0zBgOvYWS+wasoidEL3ysJr4joZYomdb/GYWr6JUXQeUif1z2ulbKTLqRuTvcp/e6BA2ID5pkhUucSyFmEQX4WoCbya5cdLQ== argon@mkbot.net |
| [Unit] | |
| Description=Gitlab Resque | |
| [Service] | |
| Type=forking | |
| SyslogIdentifier=gl-resque | |
| User=gitlab | |
| PIDFile=/home/gitlab/gitlab/tmp/pids/resque_worker.pid | |
| WorkingDirectory=/home/gitlab/gitlab |
| var Errors = require('./errors'); | |
| var fs = require('fs'); | |
| var q = require('q'); | |
| var tls = require('tls'); | |
| var util = require('./util'); | |
| try { | |
| var debug = require('debug')('apn'); | |
| } | |
| catch (e) { |
| // Written by Nick Gammon | |
| // Updated by Andrew Naylor (March 2013) | |
| // February 2011 | |
| /** | |
| * Send arbitrary number of bits at whatever clock rate (tested at 500 KHZ and 500 HZ). | |
| * This script will capture the SPI bytes, when a '\n' is recieved it will then output | |
| * the captured byte stream via the serial. | |
| */ |
I hereby claim:
To claim this, I am signing this object:
| Verifying myself: My Bitcoin username is +argon. https://onename.io/argon |
| [ | |
| { | |
| "id": "489498c.fb76b68", | |
| "type": "watson-question-answer", | |
| "name": "", | |
| "output": "top", | |
| "corpus": "healthcare", | |
| "x": 469, | |
| "y": 240, | |
| "z": "17a16c06.e85e94", |
| var apn = require('apn'); | |
| var token = "<token here>"; | |
| var service = new apn.connection({ | |
| maxConnections: 1 | |
| }); | |
| service.on("completed", function() { console.log("Completed!")}); | |
| service.on("connected", function() { console.log("Connected"); }); |