Skip to content

Instantly share code, notes, and snippets.

View kaypeter87's full-sized avatar
🐶
Barking code

Peter Kay kaypeter87

🐶
Barking code
View GitHub Profile
service {
dhcp-server {
disabled false
dynamic-dns-update {
enable true
}
global-parameters "key rndc-key { algorithm HMAC-MD5; secret paste_your_ddns_secret_here; };"
global-parameters "zone home.local. { primary 10.1.2.2; key rndc-key; }"
global-parameters "ddns-domainname "home.local.";"
global-parameters "ddns-rev-domainname "in-addr.arpa.";"
@kaypeter87
kaypeter87 / limb.go
Created May 7, 2019 13:46 — forked from kylebrandt/limb.go
drum limb combinations
package main
import (
"fmt"
"math/bits"
"sort"
)
type Limb byte