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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaaaaaaa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 |