Skip to content

Instantly share code, notes, and snippets.

@highway900
highway900 / main.go
Created May 11, 2021 10:18 — forked from gjtorikian/main.go
Heroku chat sample
package main
import (
"encoding/json"
"io"
"log"
"net/http"
"os"
"github.com/go-redis/redis"
@highway900
highway900 / gist:c866d2460ee1e92a6df05c97bb140044
Created September 1, 2020 23:52 — forked from hummus/gist:8592113
aws cli + jq example
wget http://stedolan.github.io/jq/download/linux64/jq
aws ec2 describe-instances --filters "Name=tag:Name,Values=$NAME" \
"Name=instance-state-name,Values=running" \
| jq -r \
".Reservations[] | .Instances[] | .InstanceId" \
aws ec2 describe-volumes --filters \
"Name=status,Values=available" \
| jq -r ".Volumes[] | .VolumeId" \