🏴☠️
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 | |
| export UNAME="" | |
| export UPASS="" | |
| export DOCKERHUB_NAMESPACE="techempower" | |
| export FRAMEWORK_LANG="C" | |
| export FRAMEWORK="libreactor" | |
| export GITHUB_ORG="TechEmpower" | |
| export GITHUB_REPO="FrameworkBenchmarks" | |
| #Authenticate |
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
| with builtins; | |
| let | |
| pkgs = import ../nixpkgs { overlays = []; config={oraclejdk.accept_license = true;}; }; | |
| # clean evals | |
| cc1 = pkgs.lib.mapAttrs (n: v: (builtins.tryEval v).value ) (pkgs.recurseIntoAttrs pkgs); | |
| # Only top level derivations | |
| cc2 = pkgs.lib.filterAttrs (n: v: pkgs.lib.isDerivation v) cc1; | |
| # Filter for meta tags |
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 -eu | |
| usage() { | |
| cat >&2 <<'EOF' | |
| usage: ./difflog $out1 $out2 | |
| Compare two Nix build logs, normalizing out boring differences. | |
| This can be useful to test the effect of a change to build scripts, |
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
| (printf \\x30\\x2e\\x02\\x01\\x00\\x30\\x05\\x06\\x03\\x2b\\x65\\x70\\x04\\x22\\x04\\x20;egrep -v "^-" | tr -d '\n' | base64 -d | dd bs=161 skip=1 2>/dev/null | dd bs=32 count=1 2>/dev/null) | openssl pkey -inform der -outform pem |
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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: "wolfeidau: Notifications stream which sends events to datadog" | |
| Parameters: | |
| Environment: | |
| Type: String | |
| AllowedValues: [prod, nonprod] | |
| DatadogHttpEndpointUrl: | |
| Type: String | |
| Default: https://aws-kinesis-http-intake.logs.datadoghq.com/v1/input |
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
| let | |
| inherit (builtins) | |
| add | |
| div | |
| elemAt | |
| isFunction | |
| length | |
| mul | |
| sub | |
| throw |
OlderNewer