I hereby claim:
- I am andrewhamon on github.
- I am ahamon (https://keybase.io/ahamon) on keybase.
- I have a public key ASB1xfomaJo4OZQJxUtk0C8LSP1srVOF4T4RwnwviU8rvQo
To claim this, I am signing this object:
| { config, pkgs, ... }: | |
| { | |
| imports = [ | |
| ./hardware-configuration.nix | |
| ./namespaced-wg.nix | |
| ]; | |
| # Set up wireguard + a new network namespace using the module defined in hardware-configuration.nix | |
| services.namespaced-wg.enable = true; | |
| services.namespaced-wg.name = "seedbox"; # Name this whatever, but keep it short |
I hereby claim:
To claim this, I am signing this object:
| localhost:80 | |
| proxy / server_1:8080 server_2:8080 server_3:8080 { | |
| policy round_robin | |
| health_check /healthcheck 1s | |
| } |
| #!/bin/bash | |
| GREEN='\033[0;32m' | |
| # The ampersand at the end of this line makes this command run in the background... | |
| rubocop --format simple --out ~/rubocop_results_current_branch.txt & | |
| # ...while all this runs in the foreground... | |
| mkdir -p ~/rubodiff_temp | |
| rm -rf ~/rubodiff_temp/* | |
| git archive develop | tar -x -C ~/rubodiff_temp | |
| rubocop --format simple --out ~/rubocop_results_develop.txt ~/rubodiff_temp |