This installs minimalist Pipe Viewer.
./install-pv.sh
| # | |
| # This is a refactorted ThinkScript for identifying: | |
| # - close above high of a low day (CAHOLD) | |
| # | |
| # Original: https://tos.mx/3Kykh6C | |
| # - has inconsistent lookback/high references; retained here only for provenance | |
| # | |
| # Notes: | |
| # - Uses daily aggregation explicitly. | |
| # - priorLowestLow is the lowest low among the prior 3 completed daily candles. |
| #! /usr/bin/env bash | |
| # | |
| # The Rust AWK (rawk) fails to dedupe in some cases. | |
| # https://github.com/stefanalfbo/rawk/issues/19 | |
| # | |
| INPUT=$(< test-input.txt) | |
| PROG=' | |
| $1 !=prev { | |
| #! /usr/bin/env bash | |
| # | |
| # Install perkeep (client utils) on a Go-less system using Go in Docker. | |
| # | |
| set -e | |
| set -u | |
| set -x | |
| main() { | |
| # latest stable release |
| #! /usr/bin/env bash | |
| # | |
| # Backup all my gists. | |
| # | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| # set -o xtrace | |
| printf -v TODAY '%(%F)T' |
| #! /usr/bin/env bash | |
| # | |
| # Install fclones on a Rust-less system using Rust in Docker. | |
| # | |
| set -e | |
| set -u | |
| set -x | |
| # latest stable release | |
| FC_TAG=v0.35.0 |
| #! /usr/bin/env bash | |
| # shellcheck disable=SC1112 | |
| # | |
| # Harvest all stores from wp-store-locator and generate GeoJSON for Google Earth. | |
| # | |
| # Assumes continental US: latitude range 23° to 50° North and longitude range 67° to 126° West. | |
| # | |
| set -o errexit | |
| set -o errtrace | |
| set -o pipefail |
| #!/usr/bin/env bash | |
| # | |
| # find-mc-libcomerr-bug.sh | |
| # Scan *all* debian image tags from Docker Hub and report | |
| # which ones result in `ldd /usr/bin/mc` showing a broken libcom_err.so.2 | |
| # after installing mc. | |
| IMAGE_REPO='library/debian' | |
| PAGE_SIZE=100 # API max page size | |
| REPO_API='https://registry.hub.docker.com/v2/repositories' |
https://code.visualstudio.com/docs/remote/faq#_can-i-run-vs-code-server-on-older-linux-distributions
The above "documentation" appears to be untested or verified. So here's an attempt to actually make crosstool-NG actually work.