This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Make Gustav Make a Makefile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -o nounset -o pipefail -o errexit | |
| TRACE=$(mktemp) | |
| trap "rm -f $TRACE" EXIT | |
| EXEC=$(which "$1") | |
| shift 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var http = require('http'); | |
| var request = require('request'); | |
| http.createServer(function (req, res) { | |
| request('https://ip.rootmos.io/ip', function (error, response, body) { | |
| res.write(body); | |
| res.end(); | |
| }); | |
| }).listen(8080); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -o errexit | |
| set -o pipefail | |
| SCRIPT_DIR=$(readlink -f $0 | xargs dirname) | |
| . $SCRIPT_DIR/lib.sh | |
| owner "$1" | openssl dgst -binary -sha256 | bin_to_base64_url |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am rootmos on github. | |
| * I am rootmos (https://keybase.io/rootmos) on keybase. | |
| * I have a public key whose fingerprint is 0F8E EB98 5F9E E05B D35B AD03 BB43 FAF5 535B 14B7 | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST /tx HTTP/1.1 | |
| User-Agent: HTTPie/0.9.8 | |
| Accept-Encoding: gzip, deflate | |
| Accept: application/json, */* | |
| Connection: keep-alive | |
| Content-Type: application/json | |
| upvestMsgId: rootmos-269f1505-3894-464d-beea-fdd4dbeea19d | |
| Content-Length: 315 | |
| Host: walletd.unstable.svc.cluster.local |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| docker ps --filter="name=cassandra" --format="{{.Names}}" | xargs docker update --cpus $1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Regular SKI evaluator | |
| (define eval-sk | |
| (lambda (es) | |
| (cond | |
| ; drop parenthesis (left-associativity) | |
| [(and (list? es) (positive? (length es)) (list? (car es))) | |
| (eval-sk (append (car es) (cdr es)))] | |
| ; K | |
| [(and (list? es) (>= (length es) 3) (eq? (car es) 'K)) | |
| (eval-sk (cons (cadr es) (cdddr es)))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import scala.annotation.tailrec | |
| object Nothingness extends App { | |
| @tailrec | |
| def diverge[A](): A = diverge[A]() | |
| trait A | |
| implicit def `A and ¬A is a contradiction`(implicit a: A, notA: A => Nothing): Nothing = notA(a) | |
| implicit val notA: A => Nothing = { _ => diverge() } |