Skip to content

Instantly share code, notes, and snippets.

View mattapayne's full-sized avatar

Matt Payne mattapayne

View GitHub Profile
@mattapayne
mattapayne / Enhance Links
Last active August 29, 2015 14:02
Enhance specific links with incoming query string parameters
@mattapayne
mattapayne / InstructorMixPanelInclude.js
Last active August 29, 2015 14:10
MixPanel Instructors Code
//In the page Head:
<script type="text/javascript">
(function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" "); for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertB
//In the page Head:
<script type="text/javascript" src="https://www.thinkific.com/scripts/utilities.js"></script>
<script type="text/javascript">
(function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" "); for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="//cdn.mxpnl
@mattapayne
mattapayne / matts-nginx-conf
Created July 5, 2015 22:27
Matt's Development Nginx Config
worker_processes 10;
pid /var/run/nginx.pid;
events
{
worker_connections 1024;
}
@mattapayne
mattapayne / gist:215657dddca386d2dd68
Last active August 29, 2015 14:24
OSX Yosemite Thinkific Nginx Conf
worker_processes 10;
pid /var/run/nginx.pid;
events
{
worker_connections 1024;
}
#Using Gistr within a view
<%= gist(12345) -%>
JSONArray objects = new JSONArray(response);
configure do
RDefensio::API.configure do |conf|
conf.api_key = App::Config.defensio_api_key
conf.owner_url = App::Config.defensio_owner_url
end
end
#To announce an article:
RDefensio::API.announce_article({
"article-author" => "Me",
"article-author-email" => "my@email.com",
"article-title" => @post.title,
"article-content" => @post.body,
"permalink" => @post.slug
}
#To audit a comment: