I hereby claim:
- I am berg on github.
- I am bdb (https://keybase.io/bdb) on keybase.
- I have a public key whose fingerprint is CFA5 E015 C2B9 BB2B 4AEA 3FB5 34D2 5DC4 2B41 0C19
To claim this, I am signing this object:
blueprint: | |
name: "Z-Wave JS Scene Controller Zooz Zen37 800LR" | |
description: Create automations for the Zooz Zen37 800LR 4 button scene controller using the Z-WAVE JS integration. | |
domain: automation | |
input: | |
zen37lr: | |
name: Zooz ZEN37 wall remote | |
description: "List of available Zen37 800LR wall remotes." | |
selector: | |
device: |
I hereby claim:
To claim this, I am signing this object:
Looked at the host serving my Netflix streams today and noticed something new.
No clue if money is changing hands or not, and the return path is what actually matters, but it appears that Comcast and Netflix have reached some sort of agreement regarding direct interconnection.
$ traceroute -a 198.45.63.164
traceroute to 198.45.63.164 (198.45.63.164), 64 hops max, 52 byte packets
(hops 1-2 redacted)
import sys | |
import time | |
import json | |
import requests | |
endpoint = sys.argv[1] | |
while True: | |
r = requests.get(endpoint, stream=True, timeout=600) |
import os | |
import time | |
import requests | |
# export ADN_PROD_TOKEN="<your access token>" | |
token = os.environ['ADN_PROD_TOKEN'] | |
s = requests.Session() | |
s.headers['Authorization'] = 'BEARER ' + token |
Not set in stone. Loosely based upon the OpenPhoto schema for Photo.
{
"type": "wellknown:image",
"values": {
#!/usr/bin/env python | |
# | |
# Script to poll Ethernet interface counters from a SNMP host | |
# requires pysnmp and the handy snmpclient library from | |
# https://github.com/seveas/python-snmpclient | |
# | |
# licensed under creative commons CC0 (public domain) | |
# |
# iptables rules created | |
# flush forward rule | |
iptables -t mangle -F FORWARD | |
# match/count synthetic traffic | |
iptables -t mangle -A FORWARD -d 192.168.1.3 | |
# match/count xbox traffic |
#!/bin/sh | |
# iptables counter poller | |
# released under CC0 (public domain) | |
while true; do | |
((date +%s; \ | |
iptables -t mangle -x -L FORWARD -vvv -n \ | |
| tail +3 \ | |
| awk '{print $2}') \ |
#!/usr/bin/env python | |
# | |
# Script to poll DOCSIS downstream channel counters | |
# on Arris TM702G cable modems and similar | |
# | |
# licensed under creative commons CC0 (public domain) | |
# | |
import functools |