Skip to content

Instantly share code, notes, and snippets.

openapi: 3.0.1
info:
title: YouTube Tutorial Plugin
description: Plugin for finding relevant YouTube tutorials.
version: 'v1'
servers:
- url: example.com
paths:
/api/tutorials:
get:
@heyitsnoah
heyitsnoah / scrubs
Created December 8, 2017 19:40 — forked from naveen/scrubs
Scrubs: Your monthly notice to go through and disconnect unused applications across various services.
Your monthly notice to go through and disconnect unused applications across various services.
Twitter: https://twitter.com/settings/applications
Dropbox: https://www.dropbox.com/account#security
Facebook: https://www.facebook.com/settings?tab=applications
Google Apps: https://security.google.com/settings/security/permissions?pli=1
Google Ads: http://www.google.com/ads/preferences
Google Account: https://security.google.com/settings/security/secureaccount
Foursquare: https://foursquare.com/settings/connections
Instagram: https://instagram.com/accounts/manage_access
@heyitsnoah
heyitsnoah / gist:8277144
Last active January 2, 2016 08:29
Percolate Styleguide on Buzzwords

Before we dig into some of Percolate-specific vocab, a word on using buzzwords: They stink and we love them. Those two things sound like they're in opposition, but they're really not. Buzzwords are buzzwords because they've come to mean something to an audience. When it helps us make a point, it's acceptable and preferred to use one of these words (consider this the "don't cut off your nose to spite your face" rule of this guide). With that said, as a brand we don't use buzzwords as an evasive maneuver. Never try to deflect focus by throwing around a word or turn of phrase that you know doesn't add anything to the larger point you're trying to make.

@heyitsnoah
heyitsnoah / gist:3939080
Created October 23, 2012 14:32
140 Char Tweets by @gretchen
Data skewed to digital savvy- yellow pgs survey would be vry diff. RT @jeanlucr: 96% Of US Small Businesses On Facebook http://t.co/uQYrvBfC
@vanessacamones @nicolejordan @geekychic @melissarowley @gretchen @acoolong @courtney_annie my fb has list of every track we played, yea wow
How often are you using google+ @nicolejordan @kyrareed @N8theSk8 @MelissaRowley @vZa @nicadler @PKRippa @Chanslor @geekychic @andysternberg
Thank you to everyone on the @LiveNation social team for such a great day! Well deserved! cc: @hussain @yotsechan #teamworkmakesthedreamwork
data geeks rejoice RT @stevefurman: <So cool> RT @kaykas: Quadrigram: New visual programming environment launches http://t.co/0kQ1wJmd
.@SocialMedia411 is this weird stat since they have market saturation? How much time spent on platform seems like more relevant metric to me
.@barrycunningham thanks! And glad you like! Being able to give fans REALLY cool prizes is one of the best parts of my job @LiveNationShows!
Enter for chances to win HUGE prizes
@heyitsnoah
heyitsnoah / gist:1894321
Created February 23, 2012 18:54
Checking To See if a Post is from Percolate
<?php
$category = get_the_category();
// Check to see if the post has the category "percolate" ... You can set the default category in the plugin.
if($category[0]->slug == 'percolate') : ?>
THIS IS WHERE YOU PUT YOUR PERCOLATE SPECIFIC FORMATTING
<?php else : ?>
THIS IS WHERE YOU PUT YOUR FORMATTING FOR NON-PERCOLATE POSTS