I hereby claim:
- I am mat813 on github.
- I am mat (https://keybase.io/mat) on keybase.
- I have a public key whose fingerprint is 3AB6 9789 D2ED 1210 6440 BA5B 3A45 16F3 5183 CE48
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| # vim:sw=2 sts=2: | |
| require 'rubygems' | |
| require 'dnsruby' | |
| require 'epp-client/smallregistry' | |
| require 'awesome_print' | |
| require 'getoptlong' | 
| # $Abso: Makefile,v 55f370ca4feb 2013/08/27 12:21:04 hg $ | |
| all: commit unsigned sign | |
| SIGNED!= find -s * -name '*.signed' | |
| sign: ${SIGNED} | |
| COMMIT?=Update | |
| UNSIGNED=/usr/local/var/opendnssec/unsigned/ | 
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| if [ `expr $# % 2` -ne 0 ] | |
| then | |
| echo "odd number of arguments" | |
| exit 1 | |
| fi | |
| while [ $# -gt 0 ] | |
| do | 
| #!/bin/sh | |
| # Needs sysutils/watchman, textproc/jq | |
| set -e | |
| BUILD_OBJ=/usr/home/mat/work/freebsd/doc-obj | |
| watchman watch ${PWD} > /dev/null | |
| # Subscribe to changes in $PWD, don't care about anything it returns, | 
| Copyright (c) 2016 Mathieu Arnold. All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions | |
| are met: | |
| 1. Redistributions of source code must retain the above copyright | |
| notice, this list of conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright | |
| notice, this list of conditions and the following disclaimer in the | |
| documentation and/or other materials provided with the distribution. | 
| for i in $(git branch|cut -b 3-|sed -e '/^trunk$/d;/^svnadmin$/d') | |
| do | |
| mkdir -p ../patch/$i | |
| git format-patch -o ../patch/$i origin/trunk..$i | |
| git show $(head -1 ../patch/$i/0001-*|awk '{print $2}')~1|grep git-svn-id > ../patch/$i/rev-svn | |
| done | |
| for i in $(find ../patch -name rev-svn|sed -e 's/^..\/patch\///;s/\/rev-svn$//') | |
| do | |
| rev=$(sed -e 's/.*@\([[:digit:]]*\) .*/\1/' ../patch/$i/rev-svn) | 
| #!/usr/bin/env perl | |
| # | |
| use 5.008; | |
| use utf8; | |
| use strict; | |
| use warnings; | |
| use File::Spec; | |
| use File::Path qw(make_path); | 
| const { Transform } = require('stream'); | |
| const batchStream = (batchSize = 5) => { | |
| let batch = []; | |
| return new Transform({ | |
| objectMode: true, | |
| transform(data, _, done) { | |
| batch.push(data); | 
| #!/bin/sh | |
| set -e | |
| set -u | |
| send=$1 | |
| receive=$2 | |
| echo "from $send" | |
| echo "to $receive" |