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
| <?php | |
| /* | |
| * Example code showing how to hook WordPress to add fields to the taxonomny term edit screen. | |
| * | |
| * This example is meant to show how, not to be a drop in example. | |
| * | |
| * This example was written in response to this question: | |
| * | |
| * http://lists.automattic.com/pipermail/wp-hackers/2010-August/033671.html | |
| * |
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
| <?php | |
| /* | |
| Plugin Name: Homepage Settings for BigBang | |
| Plugin URI: http://www.inboundnow.com/ | |
| Description: Adds additional functionality to the big bang theme. | |
| Author: David Wells | |
| Author URI: http://www.inboundnow.com | |
| */ | |
| // Specify Hooks/Filters |
| var gulp = require('gulp'), | |
| sass = require('gulp-sass'), | |
| rename = require('gulp-rename'), | |
| cssmin = require('gulp-cssnano'), | |
| prefix = require('gulp-autoprefixer'), | |
| plumber = require('gulp-plumber'), | |
| notify = require('gulp-notify'), | |
| sassLint = require('gulp-sass-lint'), | |
| sourcemaps = require('gulp-sourcemaps'); | |
| // Temporary solution until gulp 4 |
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
| /********************************************************************************************************************** | |
| This Google Ads script checks a single Google grants account for mandatory requirements and logs the results in a Google Spreadsheet | |
| UPDATED : 23.02.2024 : Updated to v16 api + updated the adgroup counting to consider DSA (thanks Frederique Boitelle for reporting this issue). | |
| Author : Suisseo (Vincent Hsu) | |
| More Info : https://www.suisseo.ch/en/blog/google-ad-grants-script/ | |
| 1. Detect if Campaigns are set to 'maximize conversion' to allow bids higher that 2 dollars | |
| 2. Detect if each Campaign has at least 2 active ad groups with at least 2 active text (or at least 1 RSA) | |
| 3. Detect if each account has at least 2 active Sitelinks | |
| 4. Detect if each campaign has geo-targeting . |