I hereby claim:
- I am math280h on github.
- I am mathiasvnielsen (https://keybase.io/mathiasvnielsen) on keybase.
- I have a public key ASAFWHnKiVTXlbuQtu4R0o4FnAv66VcDUmpgkHYMUay-Bwo
To claim this, I am signing this object:
| import cv2 | |
| import numpy as np | |
| import pyautogui | |
| import time | |
| import keyboard | |
| print("Started.... Waiting to take screenshot") | |
| time.sleep(5) | |
| while True: |
| #!/bin/bash | |
| profile="$1" | |
| user_name="$2" | |
| echo "Removing user: ${user_name}" | |
| echo "Deleting Access Keys:" | |
| keys=("$(aws iam list-access-keys --user-name "${user_name}" --profile "${profile}" | jq -r '.AccessKeyMetadata[] | .AccessKeyId')") | |
| if [[ "${#keys}" -gt "0" ]]; then |
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| prepare: | |
| runs-on: ubuntu-latest | |
| steps: |
I hereby claim:
To claim this, I am signing this object:
| import requests | |
| import json | |
| import csv | |
| # Gather Codes & Names | |
| print("Gathering Data") | |
| country_codes = requests.get("http://country.io/phone.json") | |
| country_names = requests.get("http://country.io/names.json") | |
| country_iso = requests.get("http://country.io/iso3.json") |