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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| CMD_NAME=${0##*/} | |
| usage() { | |
| cat <<USAGE >&2 | |
| Check each URL from list of URLs. | |
| Prints out if HEAD request were successful or not. |
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
| # Find which jar file contains specific Java class or package | |
| WHERE=$JAVA_HOME | |
| WHAT="org.graalvm.polyglot" | |
| for f in $(find "$WHERE" -name '*.jar' -type f); do echo $f >&2 && "$JAVA_HOME/bin/jar" tvf $f; done | grep "$WHAT" |
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
| /** | |
| * Egg-dropping problem. | |
| * You have limited number of (crystal) eggs and limited number of throws, | |
| * and want to check some tower, determining highest floor where egg | |
| * will not break when thrown from there. | |
| * | |
| * This function will tell the max height of the building which could be tested | |
| * with the given number of eggs and throws. | |
| * | |
| * @param n int Number of eggs |
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
| #!/usr/bin/env bash | |
| # Retrieves list of files larger than 600 MB from linux distros mirror | |
| # Saves maximum 10 random links for each distro in the output.txt file | |
| # Usage: | |
| # gen_honeypot_urls.sh | |
| # or: | |
| # gen_honeypot_urls.sh /path/to/out.txt | |
| # Exit script when command fails |
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
| #!/usr/bin/env bash | |
| # Exit script when command fails | |
| set -o errexit | |
| # Exit when script tries to use undeclared variable | |
| set -o nounset | |
| # Exit if piped command fails | |
| set -o pipefail | |
| # aka: | |
| # set -euo pipefail |
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
| #!/usr/bin/env bash | |
| # https://github.com/siberex/cancelot | |
| # | |
| # To download the latest version (if you trust running random bash scripts from the internets!): | |
| # curl -L https://gist.github.com/siberex/bb0540b208019382d08732cc6dd59007/raw -o cancelot.sh && chmod +x cancelot.sh | |
| # | |
| # Provides automation for cancelling Cloud Builds | |
| # Use as a first step to cancel previous builds currently in progress or queued for the same branch name and trigger id. | |
| # Similar to: https://github.com/GoogleCloudPlatform/cloud-builders-community/tree/master/cancelot |
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
| #!/usr/bin/env bash | |
| # https://gist.github.com/siberex/1488492ceb193d936b6bd171fc1a879f | |
| # Verify number of remote hits from execution log produced by: | |
| # bazel build ... --execution_log_json_file=/tmp/execlog.json | |
| # Usage: | |
| # verify-hits.sh 123 | |
| # OR: | |
| # verify-hits.sh 100 /tmp/execlog.json |
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
| #!/usr/bin/env bash | |
| # https://gist.github.com/siberex/d1c07389333d9cdb1c9e6853ec70c98b | |
| # Wait for file to become readable | |
| # Similar to https://github.com/vishnubob/wait-for-it | |
| # Usage: | |
| # wait-for-file.sh -t 10 -p /tmp/something -- echo "ok" | |
| WAITFORIT_cmdname=${0##*/} |
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
| #!/usr/bin/env bash | |
| # https://gist.github.com/siberex/55f277071068179de026e6cf29c0584a | |
| # Usage: | |
| # bazel build //... --execution_log_json_file=/tmp/execlog.json | |
| # fix-execlog-json.sh /tmp/execlog.json | |
| # Exit script when command fails | |
| set -o errexit |
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
| # https://hub.docker.com/r/sibli/bazel-test | |
| FROM l.gcr.io/google/bazel:2.2.0 AS builder | |
| # Add Bazelisk | |
| RUN curl -L -o /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.3.0/bazelisk-linux-amd64 \ | |
| && chmod +x /usr/local/bin/bazel | |
| RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - |