Skip to content

Instantly share code, notes, and snippets.

View BullShark's full-sized avatar

Christopher Lemire BullShark

  • San Antonio, Texas
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"
},
{
@maqnouch
maqnouch / README.md
Last active February 26, 2024 14:47
Signal Installation Steps
@sebble
sebble / stars.sh
Last active February 17, 2024 16:49
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