Skip to content

Instantly share code, notes, and snippets.

View vbatts's full-sized avatar
🧁

Vincent Batts vbatts

🧁
View GitHub Profile
@vbatts
vbatts / gateway-prep.sh
Last active March 9, 2022 12:00
things for using Azure Gateway
#!/bin/bash
set -eu
conf_zip=""
if [ -f kv0.zip ] ; then
conf_zip="kv0.zip"
fi
if [ -f kv1.zip ] ; then
conf_zip="kv1.zip"
@vbatts
vbatts / main.go
Last active December 19, 2022 20:50
terrible instagram export HTML
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"sort"
"strings"
"time"