Skip to content

Instantly share code, notes, and snippets.

View brthurr's full-sized avatar

Shawn Johnson brthurr

View GitHub Profile
@nntrn
nntrn / espn-api-list.md
Last active May 21, 2025 23:08
List of nfl api endpoints from espn

List of NFL API Endpoints

This page has been updated a lot in the past 3 years. Older revisions you might like more than this one:

@waleedahmad
waleedahmad / post_install.sh
Last active May 20, 2025 09:10
Ubuntu post installation script for installing software of your choice.
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
else
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y