short url: caseywatts.com/selfpublish
my book is out! an applied psychology / self-help book targeted at developers: Debugging Your Brain
Markdown --> PDF (as a booklet!)
Markdown --> EPUB and MOBI
| groups: | |
| - name: node_exporter_alerts | |
| rules: | |
| - alert: Node down | |
| expr: up{job="monitoring-pi"} == 0 | |
| for: 2m | |
| labels: | |
| severity: warning | |
| annotations: | |
| title: Node {{ $labels.instance }} is down |
| #!/usr/bin/env bash | |
| name=fooAlert-$RANDOM | |
| url='http://localhost:9093/api/v1/alerts' | |
| bold=$(tput bold) | |
| normal=$(tput sgr0) | |
| generate_post_data() { | |
| cat <<EOF | |
| [{ |
short url: caseywatts.com/selfpublish
my book is out! an applied psychology / self-help book targeted at developers: Debugging Your Brain
Markdown --> PDF (as a booklet!)
Markdown --> EPUB and MOBI
| # Set variables in .bashrc file | |
| # don't forget to change your path correctly! | |
| export GOPATH=$HOME/golang | |
| export GOROOT=/usr/local/opt/go/libexec | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GOROOT/bin |
| #!/usr/bin/python | |
| import pwd | |
| import os | |
| import re | |
| import glob | |
| PROC_TCP = "/proc/net/tcp" | |
| STATE = { | |
| '01':'ESTABLISHED', |