I hereby claim:
- I am bradenm on github.
- I am bradenmars (https://keybase.io/bradenmars) on keybase.
- I have a public key ASBZlYFAZ9Sn3CAhtFFZfFDigawF9Pa-5OQv7x_7qxuOuwo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| layout_python_uv() { | |
| local python=${1:-python} | |
| [[ $# -gt 0 ]] && shift | |
| unset PYTHONHOME | |
| local python_path=$(uv python find $python) | |
| local python_version=$($python_path -V | cut -d' ' -f 2 | cut -d . -f 1-2) | |
| if [[ -z $python_version ]]; then | |
| log_error "Could not find python's version" |
| #!/usr/bin/env bash | |
| # Export a function in direnv environment. | |
| # Extension of: https://github.com/direnv/direnv/issues/73#issuecomment-152284914 | |
| # with support for specifying execution shell | |
| export_function() { | |
| local name=$1 | |
| local sh="${2:-$SHELL}" | |
| local alias_dir="$(direnv_layout_dir)/aliases" | |
| mkdir -p "$alias_dir" |
| from __future__ import annotations | |
| from thefuzz import fuzz, process | |
| from collections import defaultdict | |
| import shutil | |
| from types import MappingProxyType | |
| from typing import Iterable, Iterator, Mapping | |
| import sh | |
| from contextlib import suppress | |
| from enum import Enum | |
| from rich import print |
I hereby claim:
To claim this, I am signing this object:
| action |
|---|
| hurricane_florence_transfer_gate |
| houston_flood_after_hours |
| harvey_ltr_spanish_left_vm |
| enter_ivr_nvoad |
| tn_flood_start |
| harvey_la_listened |
| ruston_la_tornado_start |
| il_wi_transfer_gate |
| #!/usr/bin/env bash | |
| # Scripts for automating installation of WarriorBeatApp Deps | |
| # Very opinionated, will force yay/rbenv/nvm and others on you | |
| # Fail on Error | |
| set -e | |
| # Pacman Requirements | |
| PACMAN_REQS=( |
| #!/usr/bin/env bash | |
| # Some Generic Bash Utils | |
| # Credit ==> https://natelandau.com/bash-scripting-utilities/ | |
| # | |
| #Set Colors | |
| # |
| {"lastUpload":"2020-05-16T07:05:15.480Z","extensionVersion":"v3.4.3"} |
| @font-face { | |
| font-family: 'icomoon'; | |
| src:url('../fonts/icomoon/icomoon.eot'); | |
| src:url('../fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'), | |
| url('../fonts/icomoon/icomoon.woff') format('woff'), | |
| url('../fonts/icomoon/icomoon.ttf') format('truetype'), | |
| url('../fonts/icomoon/icomoon.svg#icomoon') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; | |
| } |
| class med_shop { | |
| side = "med"; | |
| conditions = ""; | |
| vehicles[] = { | |
| { "C_Offroad_01_F", "" }, | |
| { "I_Truck_02_medical_F", "call life_mediclevel >= 2 " }, | |
| { "O_Truck_03_medical_F", "call life_mediclevel >= 2" }, | |
| { "B_Truck_01_medical_F", "call life_mediclevel >= 2"}, | |
| { "C_Hatchback_01_sport_F", "call life_mediclevel >= 3" }, | |
| { "C_SUV_01_F", "" }, |