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
PREREQUISITES | |
This assumes that you have already experimented with creating instances under EC2 and know | |
how to use ssh keys to access an instance. If not, try experimenting with that first and | |
setup some keys. | |
This also assume that you have a Security Group with Port 80 available. If not, experiment | |
with creating one of those as well. | |
CREATE A NEW INSTANCE |
A complete gdb to lldb command map.
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
import Foundation | |
protocol ServiceLocator { | |
func getService<T>(type: T.Type) -> T? | |
func getService<T>() -> T? | |
} | |
extension ServiceLocator { |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |