I hereby claim:
- I am mattcanty on github.
- I am mattcanty (https://keybase.io/mattcanty) on keybase.
- I have a public key ASDcNW3PACjKZFkEjXvvQu6oYWTqib7Q8Jy5CRYiH7gMpgo
To claim this, I am signing this object:
| ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFBJ0cpneb/P7YZQOXe88UsVEVoKPTaIHsSsfUlKy+2F matt.canty@controlaltrepeat.net |
| Broadcast Time Zone |
| otp() { | |
| ITEM_NAME=$1 | |
| TOTP=$(op get totp $ITEM_NAME --vault Personal 2>&1) | |
| if [[ $TOTP == *"You are not currently signed in"* ]]; then | |
| eval $(op signin my.1password.com) | |
| totp $ITEM_NAME | |
| return |
| variables: | |
| XDG_CACHE_HOME: "$CI_PROJECT_DIR/.cache/" | |
| cache: | |
| paths: | |
| - .cache/pip | |
| - .cache/pre-commit | |
| precommit: | |
| image: golang |
| $7ZipInstaller = ‘7z1805-x64.msi’ | |
| $Civ2Archive = 'civilization2gold_win_64bit.7z' | |
| $TempDir = 'C:\Temp' | |
| If(!(Test-Path $TempDir)) | |
| { | |
| New-Item $TempDir -Type Directory | |
| } | |
| Invoke-WebRequest ` |
I hereby claim:
To claim this, I am signing this object:
| go get -u github.com/jtyr/gbt/cmd/gbt | |
| export GBT_CAR_DIR_DEPTH='2' | |
| export GBT_CAR_SIGN_WRAP='1' | |
| PS1='$(gbt $?)' | |
| sourceCodeUrl="$(curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | rq -j 'at "assets" | spread | find (a => a.name == "SourceCodePro.zip") | at browser_download_url' | awk -F'","' -v OFS=, '{$1=$1;gsub(/^"|"$/,"")}1')" | |
| curl -fsSL "$sourceCodeUrl" -o /tmp/sourceCodePro.zip |
| %systemroot%\system32\inetsrv\APPCMD list site |
| taskkill /im rdpclip.exe /F | |
| start rdpclip.exe |
| let rec retry times fn = | |
| if times > 1 then | |
| try | |
| fn() | |
| with | |
| | _ -> retry (times - 1) fn | |
| else | |
| fn() | |
| //Source @gradbot on Stack Overflow http://stackoverflow.com/a/5942170/966609 |