This is a quite simple try to solve the puzzle from the cryptoanalysis book from the "The Beast Inside" game.
# python solve.py
N R DKKLAJ HOOPEN
A Z TUFSMJOH STERLING
W Z HGXBO KJAER
K Y ZQDUVMZM NERIJANA
O S GQPHAOW KUTLESA
L P NQPDE RUTHI| ## @param Height:title=Height|type=int|required=false|default=500|desc=Height of the embed | |
| ## @param Src:title=Source|type=string|required=true|desc=URL to embed | |
| ## @param AutoResize:title=Auto-Resize|type=boolean|required=false|default=false|desc=Enable Script to Auto-Resize frame | |
| <iframe | |
| id="confluenceFrame" | |
| frameborder="0" | |
| height="$paramHeight" | |
| referrerpolicy="same-origin" | |
| src="$paramSrc" |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| function fatal() { | |
| log "$@" | |
| exit 1 | |
| } | |
| function log() { | |
| echo "$@" >&2 |
| .env |
This is a quite simple try to solve the puzzle from the cryptoanalysis book from the "The Beast Inside" game.
# python solve.py
N R DKKLAJ HOOPEN
A Z TUFSMJOH STERLING
W Z HGXBO KJAER
K Y ZQDUVMZM NERIJANA
O S GQPHAOW KUTLESA
L P NQPDE RUTHIThis is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:507EA9D814AAACA8A55A249FDC2729FDD34BE99E]
| #!/bin/bash | |
| set -euo pipefail | |
| ### | |
| # Query Hetzner Cloud-Node for your servers | |
| # | |
| # Wanna know whether a specific outage affects one of your cloud nodes? | |
| # Make a list of nodes before the outage happens and you'll know whether | |
| # your server is hosted on the node with the outage... | |
| # |
| #!/bin/bash | |
| set -euo pipefail | |
| ### | |
| # How to use? | |
| # | |
| # - Download into path with name `git-credential-githubenv` | |
| # - Enable helper `git config --global credential.helper 'githubenv'` | |
| # - Expose corresponding token as `GITHUB_TOKEN` env variable | |
| # |
| *.mp4 | |
| overlay.png |
| module github.com/Luzifer/rkiR | |
| go 1.14 | |
| require ( | |
| github.com/pkg/errors v0.9.1 | |
| github.com/sirupsen/logrus v1.6.0 | |
| github.com/tealeg/xlsx v1.0.5 | |
| ) |
| #!/bin/bash | |
| set -euo pipefail | |
| username="" | |
| apppass="" | |
| workspace="${username}" | |
| function authcurl() { | |
| curl -sSfL -u "${username}:${apppass}" "$@" | |
| } |