I hereby claim:
- I am gyoza on github.
- I am realdh (https://keybase.io/realdh) on keybase.
- I have a public key ASA3c4oQ_Ej8YFCkHXB-ODUb59bF8gkbV53bUzODgymwTAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Install Time Machine service on CentOS 7 | |
| # http://netatalk.sourceforge.net/wiki/index.php/Netatalk_3.1.7_SRPM_for_Fedora_and_CentOS | |
| # http://confoundedtech.blogspot.com/2011/07/draft-draft-ubuntu-as-apple-time.html | |
| yum install -y rpm-build gcc make wget | |
| # install netatalk | |
| yum install -y avahi-devel cracklib-devel dbus-devel dbus-glib-devel libacl-devel libattr-devel libdb-devel libevent-devel libgcrypt-devel krb5-devel mysql-devel openldap-devel openssl-devel pam-devel quota-devel systemtap-sdt-devel tcp_wrappers-devel libtdb-devel tracker-devel | |
| yum install -y bison docbook-style-xsl flex dconf |
| #!/bin/bash | |
| OWNER=org | |
| REPO=therepo | |
| #GET DAT SHIZ | |
| WORKFLOW_ID=$(gh workflow list|rev|cut -f 1|rev) | |
| #DELETE DAT SHIZ | |
| for i in ${WORKFLOW_ID[@]}; do | |
| gh api -X GET /repos/$OWNER/$REPO/actions/workflows/$i/runs | jq '.workflow_runs[] | .id' | |
| gh api -X GET /repos/$OWNER/$REPO/actions/workflows/$i/runs | jq '.workflow_runs[] | .id' | xargs -I{} gh api -X DELETE /repos/$OWNER/$REPO/actions/runs/{} |
| sequence: | |
| - if: | |
| - condition: template | |
| value_template: >- | |
| {{ | |
| int(states('sensor.openweathermap_humidity')|regex_replace(find='%', | |
| replace='', ignorecase=False)) > 25}} | |
| - condition: template | |
| value_template: >- | |
| {{ |
| #!/usr/bin/env python3.11 | |
| from pathlib import Path | |
| import argparse | |
| import json | |
| import sys | |
| import pprint | |
| from difflib import * | |
| pp = pprint.PrettyPrinter(indent=4, width=120) |