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
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
| // Run from the dev tools console of any Youtube video | |
| // Accurate as of July 2, 2020. | |
| // | |
| // Copy and paste this into the dev console in a browser with the desired video loaded. | |
| // | |
| // NOTE: Some Youtube videos do not directly expose the video url in the response. | |
| // This script doesn't currently attempt to handle those. It will work for most other general video types though. | |
| (async () => { | |
| const html = await fetch(window.location.href).then((resp) => resp.text()).then((text) => text); |
http://www.apple.com/live/
which redirect to something like http://www.apple.com/live/2015-june-event//live/2015-june-event/scripts/2015-june-event.built.jsp.events-delivery.apple.com.edgesuite.net
You find something like http://p.events-delivery.apple.com.edgesuite.net/15pijbnaefvpoijbaefvpihb06/js_files/event/url.json (details: host + path + url.json)http://p.events-delivery.apple.com.edgesuite.net/15pijbnaefvpoijbaefvpihb06/m3u8/hls_mvp.m3u8Now you can watch it in VLC or any other videoplayer that support M3U and MP4(H264+AAC)!
| require(["lib/play-manager"], function(a) { | |
| // via http://stackoverflow.com/a/6274381 | |
| //+ Jonas Raoni Soares Silva | |
| //@ http://jsfromhell.com/array/shuffle [v1.0] | |
| function shuf(o) { for(var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); } | |
| shuf(a.source.models); | |
| var c = a.getCurrentSound(), p = c ? c.isPaused() : false; | |
| a.playNext(); a.playPrev(); // poor man's refresh of current playing song | |
| if (p) a.pause(c); // preserve first-run state |
| <http://sailortalk.podOmatic.com/rss2.xml> | |
| HTTP://www.knient.com/CAL/CAL-Podcast/CAL-Podcast.xml | |
| Http://feeds.feedburner.com/fridgeandhbomb | |
| Http://feeds.feedburner.com/wfodicks | |
| Http://ravenc-taouf.podomatic.com/rss2.xml | |
| Http://www.calvaryonline.org/podcasts/podcast.xml | |
| Http://www.changkhui.com/XML/teemateepai.xml | |
| httP://dtfreunde.podcaster.de/Deutsches_Theater.rss | |
| http://-myantioch.sermon.tv/rss/main |
| // CSS Color Names | |
| // Compiled by @bobspace. | |
| // | |
| // A javascript object containing all of the color names listed in the CSS Spec. | |
| // This used to be a big array, but the hex values are useful too, so now it's an object. | |
| // If you need the names as an array use Object.keys, but you already knew that! | |
| // | |
| // The full list can be found here: https://www.w3schools.com/cssref/css_colors.asp | |
| // Use it as you please, 'cuz you can't, like, own a color, man. |