Skip to content

Instantly share code, notes, and snippets.

View BullShark's full-sized avatar

Christopher Lemire BullShark

View GitHub Profile
@gvlx
gvlx / network.trr.resolvers.json
Last active August 20, 2020 20:59
network.trr.resolvers
[
{
"name": "Cloudflare",
"url": "https://mozilla.cloudflare-dns.com/dns-query"
},
{
"name": "Quad9",
"url": "https://dns.quad9.net/dns-query"
},
{
@sebble
sebble / stars.sh
Last active June 7, 2025 13:20
List all starred repositories of a GitHub user.
#!/bin/bash
USER=${1:-sebble}
STARS=$(curl -sI https://api.github.com/users/$USER/starred?per_page=1|egrep '^Link'|egrep -o 'page=[0-9]+'|tail -1|cut -c6-)
PAGES=$((658/100+1))
echo You have $STARS starred repositories.
echo