Skip to content

Instantly share code, notes, and snippets.

View AaronSeibert's full-sized avatar

Aaron Seibert AaronSeibert

View GitHub Profile
@AaronSeibert
AaronSeibert / gist:b038a4338d747ed570def469824a1665
Created October 7, 2022 13:01
Debug info for parent association
{
"id": 26,
"name": "Office Lights",
"loc": "Office",
"values": [
{
"id": "26-32-0-currentValue",
"nodeId": 26,
"commandClass": 32,
"commandClassName": "Basic",
@AaronSeibert
AaronSeibert / gist:3776e72a40b3ae800a228c6e4058ef19
Created October 7, 2022 12:59
Target Device (Zooz ZEN20) Debug Info
{
"id": 28,
"name": "Office Rear Wall Power Strip",
"loc": "Office",
"values": [
{
"id": "28-37-0-currentValue",
"nodeId": 28,
"commandClass": 37,
"commandClassName": "Binary Switch",
[0] % tree
.
├── ansible.cfg
├── production
│   ├── group_vars
│   │   ├── nyc1
│   │   └── webservers
│   └── hosts
├── shared_hosting.retry
└── shared_hosting.yml
### Keybase proof
I hereby claim:
* I am aaronseibert on github.
* I am aaronseibert (https://keybase.io/aaronseibert) on keybase.
* I have a public key ASDHsdHB8gBIW8CGxMcoa17tkFWj90jE3r9dfKnwatD9-wo
To claim this, I am signing this object:
### Keybase proof
I hereby claim:
* I am lateral-october on github.
* I am aaron_seibert (https://keybase.io/aaron_seibert) on keybase.
* I have a public key ASD0q8ZkXvLZC5KvCZbGkd9wa2O1TpKolYsuh9UqmmCg9go
To claim this, I am signing this object:
@AaronSeibert
AaronSeibert / gist:1565820
Created January 5, 2012 15:53
Bash function for creating a new project and automatically creating a new repo on github
function newproject {
username=""
apikey=""
apiurl="http://github.com/api/v2/"
apiformat="json"
name=$@
# Create the repo on github
curl -F "login=${username}" -F "token=${apikey}" $apiurl$apiformat/repos/create -F "name=${name}"