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
| jQuery(function($){ | |
| var $flexslider = $('.flexslider'), | |
| $slides = $flexslider.find('li'), | |
| stripComment = function(string) { | |
| return string.replace(/<!--/g, '').replace(/-->/g, ''); | |
| }, | |
| initItem = function(item) { | |
| var $this = $(item); | |
| if(!$this.hasClass('init')) { |
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
| <p>News:</p> | |
| <article> | |
| <header> | |
| <h1 class="entry-title"><a href="/news/hey-look-it-s-news/">Sample News Story</a></h1> | |
| <h2 class="publish-info"><time class="pubdate" datetime="2010-08-31T10:00:00-05:00"><b>Published:</b> August 31, 2010</time></h2> | |
| <h3 class="author"><b>Author:</b> Erik Runyon</h3> | |
| </header> | |
| </article> | |
| <p>Events:</p> |
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
| var s = d.createElement(t), options = { | |
| 'userName':'foo', | |
| 'formHash':'stringofcharacters', | |
| 'autoResize':true, | |
| 'height':'877', | |
| 'async':true, | |
| 'host':'wufoo.com', | |
| 'header':'hide', | |
| 'defaultValues':'field1='+ getParameterByName('field1') + '&field2=' + getParameterByName('field2'), | |
| 'ssl':true |
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
| function getParameterByName(name) { | |
| name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); | |
| var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), | |
| results = regex.exec(location.search); | |
| return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); | |
| } |
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
| var s = d.createElement(t), options = { | |
| 'userName':'foo', | |
| 'formHash':'stringofcharacters', | |
| 'autoResize':true, | |
| 'height':'877', | |
| 'async':true, | |
| 'host':'wufoo.com', | |
| 'header':'hide', | |
| 'defaultValues':'field1='+ screen.width + 'x' + screen.height +'&field2=' + navigator.userAgent, | |
| 'ssl':true |
I hereby claim:
- I am erunyon on github.
- I am erunyon (https://keybase.io/erunyon) on keybase.
- I have a public key whose fingerprint is 4FBF 15AE 6457 691D 7751 90C9 B717 D425 ECEE E281
To claim this, I am signing this object:
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
| require "json" | |
| require "httparty" | |
| require 'jwt' | |
| require 'pp' | |
| KEY = "YOUR_KEY" | |
| SECRET = "YOUR_SECRET" | |
| PROG = "THE_PROGRAM_ID" | |
| class Passkit |