I hereby claim:
- I am codrcodz on github.
- I am codrcodz (https://keybase.io/codrcodz) on keybase.
- I have a public key ASBiwn7rsk-pfW1bZm1mHxRqjfZgpNll64VWoTRlHBxbYgo
To claim this, I am signing this object:
| nlvl=-20; \ | |
| printf "MB\tDirectory Name\n"; \ | |
| nice -n ${nlvl} \ | |
| find / \ | |
| -type f \ | |
| -regextype egrep \ | |
| -regex ".*\.(gz$|iso$|sql$|bak$|zip$|log$|tar$|csv$|tgz$|mp4$|png$|xz$)" \ | |
| -exec dirname '{}' \; \ | |
| | sort -u \ | |
| | while read dir; do \ |
| kernel_version="$(uname -r 2>/dev/null)"; \ | |
| os_release="$(grep -oP "(?<=(el))." <<<${kernel_version} )"; \ | |
| header(){ \ | |
| printf "\n\n----------\n"; \ | |
| printf "%s" "${1}"; \ | |
| printf "\n----------\n\n"; \ | |
| }; \ | |
| printf "\n=============================\n"; \ | |
| printf "Reboot Checks for:\n"; \ | |
| hostname; \ |
| #!/usr/bin/env bash | |
| curl -s https://pypi.python.org/simple/ \ | |
| | grep -oP "(?<=('>)).*(?=(</a>))" \ | |
| | while read package_name; do | |
| curl -s https://pypi.python.org/simple/${package_name}/ \ | |
| | grep -oP "(?<=(\">${package_name}-))([[:digit:]]+.*?)(?=((\-py2\.|\-py3\.|\.tar|\.whl|\.zip).*</a>))" \ | |
| | while read package_version; do | |
| echo -e "\n\nPackage: ${package_name} Version: ${package_version}"; | |
| curl -s --connect-timeout 1 -I https://pypi.python.org/pypi/${package_name}/${package_version} \ |
| #!/usr/bin/env bash | |
| main_pkg="${1}"; | |
| arch="$(uname -i)" | |
| deps_list=( ${main_pkg} ); | |
| declare -a master_pkg_list; | |
| declare -a deps_list_additions; | |
| echo "[INFO] Finding deps for main_pkg: ${main_pkg}"; | |
| while true; do | |
| for dep in ${deps_list[@]}; do | |
| if [[ "${dep}" != "${main_pkg}" ]]; then |
I hereby claim:
To claim this, I am signing this object:
In order to facilitate a development network with room for various types of development activities, activities must be partitioned into network enclaves that are appropriate for those activities. These enclaves include:
| #!/usr/bin/env bash | |
| metadata_format="v0.1.0"; | |
| releases_metadata_file_prefix="releases_metadata"; | |
| # Function ensures all deps are in $PATH before continuing | |
| dependency_check() { | |
| deps="git go yq"; | |
| for dep in ${deps}; do | |
| hash "${dep}" &>/dev/null \ |
| #!/usr/bin/env bash | |
| # Note: This script requires Bash v4.3+ due to use of `local -n` | |
| # Function ensures all deps are in $PATH before continuing | |
| dependency_check() { | |
| local deps=( \ | |
| "git" \ | |
| "go" \ | |
| "yq" \ |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| ac.log() { | |
| echo "[audio] $*" >&2 | |
| } | |
| ac.unloadPrevious() { | |
| # Aggressively remove any modules we own; loop until none remain | |
| local did_any="" |