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
| <script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script> | |
| <script type="text/javascript" src="/js/jquery.validate.min.js"></script> | |
| <script type="text/javascript" src="/js/jquery.validate.additional.js"></script> | |
| <style> | |
| li.error, label.error, p.error{color:#F00;} | |
| #entryForm ol{list-style-type:none;} | |
| #entryForm label{display:block; margin-top:6px;} | |
| #entryForm label.error{margin-top:0px;} | |
| </style> |
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
| /* json_storage.js | |
| * @danott | |
| * 26 APR 2011 | |
| * | |
| * Building on a thread from Stack Overflow, override localStorage and sessionStorage's | |
| * getter and setter functions to allow for storing objects and arrays. | |
| * | |
| * Original thread: | |
| * http://stackoverflow.com/questions/2010892/storing-objects-in-html5-localstorage | |
| */ |
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 | |
| /** | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * Anyone is free to copy, modify, publish, use, compile, sell, or | |
| * distribute this software, either in source code form or as a compiled | |
| * binary, for any purpose, commercial or non-commercial, and by any | |
| * means. | |
| * |
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 | |
| // Require the TwitterOAuth library. http://github.com/abraham/twitteroauth | |
| require_once('twitteroauth/twitteroauth.php'); | |
| $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_SECRET); | |
| // Empty array that will be used to store followers. | |
| $profiles = array(); | |
| // Get the ids of all followers. | |
| $ids = $connection->get('followers/ids'); | |
| // Chunk the ids in to arrays of 100. |
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 TextChange Plugin | |
| * http://www.zurb.com/playground/jquery-text-change-custom-event | |
| * | |
| * Copyright 2010, ZURB | |
| * Released under the MIT License | |
| */ | |
| (function ($) { | |
| $.event.special.textchange = { |
NewerOlder