Skip to content

Instantly share code, notes, and snippets.

View breezewish's full-sized avatar

Wish breezewish

View GitHub Profile
@breezewish
breezewish / grafana-export.js
Created August 18, 2020 14:53
Export current Grafana dashboard (for Grafana v6.x.x)
(function () {
function escapeHtml(unsafe) {
return unsafe
.replace(/&/g, "&")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
@breezewish
breezewish / left-code.go
Last active December 24, 2025 06:53
Auto retry on Cloudflare 400 / 524 errors
// Usage: go run left-code.go
// Configure: base_url = "http://127.0.0.1:1400/codex/v1"
package main
import (
"bytes"
"flag"
"fmt"
"io"