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
<script> | |
jQuery(document).on('ready', function(){ | |
mapInfo = []; | |
mapActions(); | |
jQuery.getScript('https://www.google.com/jsapi?key=' + nebula.site.options.nebula_google_browser_api_key, function(){ | |
google.load('maps', '3', { | |
callback: function(){ | |
getAllLocations(); | |
} |
function once(fn, args, unique){ | |
if ( typeof onces === 'undefined' ){ | |
onces = {}; | |
} | |
if ( typeof fn === 'function' ){ //If the first parameter is a function | |
if ( typeof args === 'string' ){ //If no parameters | |
args = []; | |
unique = args; | |
} |
<?php | |
//Add Open/Closed info to location listing columns | |
add_filter('manage_edit-location_columns', 'schc_location_hours_columns_head'); | |
function schc_location_hours_columns_head($defaults){ | |
$defaults['openclosed'] = 'Open/Closed'; | |
return $defaults; | |
} | |
add_action('manage_location_posts_custom_column', 'schc_location_hours_columns_content', 15, 3); | |
function schc_location_hours_columns_content($column_name, $id){ | |
if ( $column_name == 'openclosed' ){ |
<?php | |
/*========================== | |
This snippet shows how to add an active user count to the WordPress Dashboard. | |
Copy these contents to functions.php | |
===========================*/ | |
//Active Users Metabox | |
add_action('wp_dashboard_setup', 'gearside_activeusers_metabox'); | |
function gearside_activeusers_metabox(){ |
jQuery('a.some-link').on('mousedown tap touch', function(e){ | |
eventIntent = ( e.which >= 2 )? 'Intent' : 'Explicit'; | |
ga('set', 'dimension3', eventIntent); | |
ga('send', 'event', 'Category', 'Action', 'Label', 'Value'); | |
}); |
function cloudflareDevModeToggle(toggle){ | |
if ( !toggle ){ | |
toggle = 'on'; | |
} | |
jQuery('.devmodeicon').removeClass('fa-bolt fa-medkit').addClass('fa-spin fa-spinner'); | |
jQuery.ajax({ | |
type: "POST", | |
url: bloginfo["admin_ajax"], |
AT&T: 5551234567@txt.att.net | |
Sprint: 5551234567@messaging.sprintpcs.com | |
T-Mobile: 5551234567@tmomail.net | |
Verizon: 5551234567@vtext.com | |
3 River Wireless: 5551234567@sms.3rivers.net | |
ACS Wireless: 5551234567@paging.acswireless.com | |
Alltel: 5551234567@message.alltel.com | |
AT&T: 5551234567@txt.att.net |
100dollars-seo.com | |
4webmasters.org | |
7makemoneyonline.com | |
aliexpress.com | |
anticrawler.org | |
best-seo-offer.com | |
best-seo-solution.com | |
bestwebsitesawards.com | |
blackhatworth.com | |
buttons-for-website.com |
/* Show the move cursor to demonstrate drag/drop scrolling on the interface. */ | |
#board { | |
cursor: move; | |
} | |
#board .list { | |
cursor: default; | |
} | |
/* Change the background to a texture while maintaining board color. */ |