Skip to content

Instantly share code, notes, and snippets.

View kvignos's full-sized avatar

Kathleen Vignos kvignos

View GitHub Profile
@kvignos
kvignos / 01-01-outbrain-example-recirc.js
Last active May 8, 2017 05:50
WIRED Day of REST 2016 Conference Presentation - Code Snippets
// Author: Ross Patton (abbreviated by KV)
// Link to WIRED json feed
var apiUrl = 'http://' + location.host + '/wp-json/wp/v2/posts/';
// Fallback if OBR not available
if ( typeof OBR === 'undefined' ) {
$( getAll('poweredByOutbrain') ).remove();
return $.getJSON( apiUrl, function(res) {
@kvignos
kvignos / Trump
Created August 7, 2015 19:53
You Know What Else Sucks About Donald Trump? His Branding [45vh, verticalAlignment: "center"]
{
"role": "container",
"style": {
"backgroundColor": "#000"
},
"layout": {
"columnStart": 0,
"columnSpan": 7,
"ignoreDocumentMargin": true,
"margin": {
@kvignos
kvignos / Google Algo
Created August 7, 2015 19:51
Google's Search Algorithm Could Steal the Presidency [30vh, verticalAlignment: "center"]
{
"role": "container",
"style": {
"backgroundColor": "#000"
},
"layout": {
"columnStart": 0,
"columnSpan": 7,
"ignoreDocumentMargin": true,
"margin": {
@kvignos
kvignos / MH370
Created August 7, 2015 19:49
Our New Best Guess for Where to Find MH370: The Indian Ocean [50vh, verticalAlignment: "bottom"]
{
"role": "container",
"style": {
"backgroundColor": "#000"
},
"layout": {
"columnStart": 0,
"columnSpan": 7,
"ignoreDocumentMargin": true,
"margin": {
@kvignos
kvignos / pangea-data-mapping-and-integrity.php
Created March 26, 2014 19:28
Pangea Data Mapping and Integrity
#!/usr/bin/php
<?php
$time_start = microtime( true );
//mysql setup
$host = 'localhost';
$user = 'root';
$pass = 'root';
$db = 'wordpress';