Skip to content

Instantly share code, notes, and snippets.

View thefrugaldev's full-sized avatar
🏠
Working from home

Clayton thefrugaldev

🏠
Working from home
View GitHub Profile
@thefrugaldev
thefrugaldev / espn-api-list.md
Created November 3, 2023 18:41 — forked from nntrn/espn-api-list.md
List of nfl api endpoints from espn

List of NFL API Endpoints

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

  • June 2021 - list of endpoints for other sports/leagues (i.e. basketball, baseball, lacrosse, rugby)
  • August 2021 - get historical fantasy league data
  • September 2021 - list of endpoints in plain text
  • May 2023 - collapsed endpoint response examples

Additional Resources

@thefrugaldev
thefrugaldev / test_file.txt
Created January 8, 2021 20:32
A brand new gist
Hello World!
@thefrugaldev
thefrugaldev / test_file.txt
Created January 8, 2021 14:23
A brand new gist
Hello World!
@thefrugaldev
thefrugaldev / home.js
Last active April 26, 2020 20:00
Code snippets for the firebase-react-redux blog post: https://thefrugal.dev/blog/integrating-firebase-with-react-redux/
import React from "react";
const Home = () => (
<div className="jumbotron">
<p>Welcome to our Firebase application!</p>
</div>
);
export default Home;