Skip to content

Instantly share code, notes, and snippets.

@reconbot
reconbot / build.ts
Created June 14, 2021 01:39
Build and watch commands for esbuild and architect https://arc.codes
import { buildFunctions, findFunctions } from './lib-build'
async function run() {
const funcs = await findFunctions()
await buildFunctions(funcs)
}
run()
@shazron
shazron / check_apache_jira.sh
Created August 12, 2012 14:07
Check Apache Jira at a 5 minute interval
while :; do curl https://issues.apache.org/jira 2>/dev/null | (grep "Maintenance in progress" || say "The Apache Jeera Site is back online.") | grep -v "<h1>Maintenance in progress</h1>"; sleep 300; done