I hereby claim:
- I am filefrog on github.
- I am jrhunt (https://keybase.io/jrhunt) on keybase.
- I have a public key whose fingerprint is 5AB1 819A B57F 76C5 C629 507D 7871 552D F7B1 BF49
To claim this, I am signing this object:
#!/usr/bin/perl | |
sub fisher_yates_shuffle | |
{ | |
my $array = shift; | |
my $i; | |
for ($i = @$array; --$i; ) { | |
my $j = int rand ($i+2); | |
next if $i == $j; | |
@$array[$i,$j] = @$array[$j,$i]; |
diff -u -Naur zeromq-4.0.5/tests/test_security_curve.cpp zeromq-4.0.5.patch/tests/test_security_curve.cpp | |
--- zeromq-4.0.5/tests/test_security_curve.cpp 2014-10-14 04:06:40.000000000 -0400 | |
+++ zeromq-4.0.5.patch/tests/test_security_curve.cpp 2015-05-20 11:01:18.002004000 -0400 | |
@@ -20,10 +20,10 @@ | |
#include "testutil.hpp" | |
// We'll generate random test keys at startup | |
-static char client_public [40]; | |
-static char client_secret [40]; | |
-static char server_public [40]; |
* skip requires perl(Win32) /^perl(Win32::.*)$/; | |
* skip requires perl(Win32API) /^perl(Win32API::.*)$/; | |
* skip requires perl(Mac) /^perl(Mac::.*)$/; | |
# Apache1 is EOL'd | |
* skip requires /^perl(Apache::.*)$/; | |
* skip build_requires /^perl(Apache::.*)$/; | |
# JSON::backportPP isn't real... | |
* skip requires /JSON::backportPP/; |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <errno.h> | |
#include <poll.h> | |
#include <sys/time.h> | |
#include <sys/resource.h> | |
int open_files(unsigned long *soft, unsigned long *hard, unsigned long *current); | |
int main(int argc, char **argv) |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/perl | |
@sigs = qw( | |
SIGHUP SIGINT SIGQUIT SIGILL SIGTRAP | |
SIGABRT SIGBUS SIGFPE SIGKILL SIGUSR1 | |
SIGSEGV SIGUSR2 SIGPIPE SIGALRM SIGTERM | |
SIGSTKFLT SIGCHLD SIGCONT SIGSTOP SIGTSTP | |
SIGTTIN SIGTTOU SIGURG SIGXCPU SIGXFSZ | |
SIGVTALRM SIGPROF SIGWINCH SIGIO SIGPWR | |
SIGSYS |
I hereby claim:
To claim this, I am signing this object:
T0 change to global/ (ref abcde) | |
T1 ci: check out repo (run `poke` job) | |
T2 propagate alpha sandbox/alpha # cp -R global/ sandbox/alpha/.global | |
T3 detect change to sandbox/alpha | |
T4 ci: checkout repo (run `sandbox` job) | |
T5 deploy sandbox/alpha and SUCCESS! | |
T6 propagate beta sandbox/alpha som/staging # cp -R sandbox/alpha/.global som/staging/.global | |
T7 git commit and exit |
#!/bin/bash | |
declare -a argv | |
argv=${@:0} | |
while (( $# != 0 )); do | |
echo "1) arg = [$1]" | |
shift | |
done | |
echo |
#!/bin/bash | |
(echo "-----BEGIN RSA PRIVATE KEY-----"; | |
dd if=/dev/urandom bs=608 count=1 2>/dev/null | base64; | |
echo "-----END RSA PRIVATE KEY-----") > key.pem |