ESPN's hidden API endpoints
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
/index.php.bak | |
/backup.bak | |
/index.aspx.bak | |
/Index.aspx.bak | |
/Download.aspx.bak | |
/search.php.bak | |
/wordpress-db.php.bak | |
/db.php.bak | |
/phpinfo.php | |
/info.php |
/.env | |
/phpinfo.php | |
/info.php | |
/admin.php | |
/api/apidocs | |
/apidocs | |
/api | |
/api/v2 | |
/api/v1 | |
/api/v3 |
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
# Block everything in search results except actual results & videos: | |
www.google.com###search div>div[data-rpos]:not(:has([data-snf])):not(:has([data-vurl])):not(:has(h3>a.l)):not(:has([jscontroller]):has([data-maindata*="currency"])) | |
# AI overview: | |
www.google.com##[data-mcpr] | |
# Junk below search results: | |
www.google.com###bres | |
# Junk in right-hand column: |
You are a system designed to extract meaningful LLM prompting patterns from chat histories. Analyze the full conversation history as defined below and identify:
Frequently repeated LLM prompt behaviors
Their function
Contextual usage — where in the conversation this pattern appears, and why
Underlying principle — the deeper design thinking or learning theory implied
<?php | |
if (!function_exists('interface_exists')) { | |
die('PHP version too old'); | |
} | |
$throwables = listThrowableClasses(); | |
$throwablesPerParent = splitInParents($throwables); | |
printTree($throwablesPerParent); | |
if (count($throwablesPerParent) !== 0) { | |
die('ERROR!!!'); |
// by Erik Wrenholt | |
import java.util.*; | |
class Mandelbrot | |
{ | |
static int BAILOUT = 16; | |
static int MAX_ITERATIONS = 1000; | |
private static int iterate(float x, float y) | |
{ |