I hereby claim:
- I am pew on github.
- I am pew_pew (https://keybase.io/pew_pew) on keybase.
- I have a public key whose fingerprint is 2621 79BF 1E24 82D8 6FC2 E8F0 4277 211B 1597 4B54
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # crashplanFixup.sh for Macintosh OS X 10.9 (and probably earlier versions) | |
| # | |
| # This script will prevent CrashPlan from de-duplicating data on files greater than 1k. | |
| # Based on information from http://networkrockstar.ca/2013/09/speeding-up-crashplan-backups/ | |
| # | |
| # NOTE: Must be run with sudo! IE: $ sudo sh ./crashplanFixup | |
| # | |
| # v1.1 2014-03-13 by bill@wellingtonnet.net |
I hereby claim:
To claim this, I am signing this object:
| # install gh cli: https://cli.github.com | |
| # using "api user/repos" allows do use --paginate so you get all your repos, also the repos you're part of in other orgs | |
| gh api user/repos --paginate -q '.[].full_name' | xargs -n1 gh repo clone |
| provider "http" {} | |
| data "http" "cloudflare_ips" { | |
| url = "https://api.cloudflare.com/client/v4/ips" | |
| request_headers = { | |
| Accept = "application/json" | |
| } | |
| } | |
| locals { |
| # install the `gh` CLI first: https://cli.github.com | |
| gh api user/starred --paginate -q '.[].clone_url' | xargs -n1 gh repo clone |
| import httpx | |
| from bs4 import BeautifulSoup | |
| client = httpx.Client() | |
| r = client.post( | |
| "https://overcast.fm/login", | |
| data={ | |
| "email": "", | |
| "password": "", |
| 1) Install cloudflared using homebrew: | |
| brew install cloudflare/cloudflare/cloudflared | |
| 2) Create /usr/local/etc/cloudflared/config.yaml, with the following content | |
| proxy-dns: true | |
| proxy-dns-upstream: | |
| - https://1.1.1.1/dns-query | |
| - https://1.0.0.1/dns-query |
| blueprint: | |
| name: ZHA - Philips Hue Dimmer Switch Config - V2023.02.07 | |
| description: | | |
| Control lights with a Philips Hue Dimmer Switch (only RWL020 (US) and RWL021 (EU), RWL022, the one that says 'hue' on the bottom, has a different button layout.) | |
| This blueprint is a simplified version of stefanroelofs's `ZHA - Philis Hue Dimmer Switch V2', but this one has no default inputs and with full configuration available. This makes the remote easily configurable for purposes other than controlling lights. | |
| If you are intending to just use it for use as a light switch, I recommend using his blueprint, which you can find at https://gist.github.com/stefanroelofs/775e2e0a3cdb3d72a9451fb247492d59 | |
| It includes customizable 'on' button behaviour and default setup of the dimmer buttons to dim as they normally would. To make the configuration available for other automations, I had to remove these very useful functionalities. |
this is an apple script to toggle a restart of a specific UTM virtual machine. Replace the name Linux Ubuntu with your VM's name
| #!/usr/bin/env bash | |
| # | |
| # clean-snap-sync-external.sh v1.0.1 (2021-07-09) | |
| # | |
| # Changes | |
| # ------- | |
| # 2021-07-09: | |
| # - adjust logic to keep latest x, instead of delete oldest x | |
| # - make output cleaner (hide btrfs subvolume delete output) | |
| # |