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 | |
| /* | |
| * Converts CSV to JSON | |
| * Example uses Google Spreadsheet CSV feed | |
| * csvToArray function I think I found on php.net | |
| */ | |
| header('Content-type: application/json'); | |
| // Set your CSV feed |
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
| //TOUCH EVENTS | |
| polyfillRequestAnimFrame(window); | |
| var touchDragX = 0; | |
| var lastTouchX = 0; | |
| var sliderapi = null; | |
| function onTouchStart (event) { | |
| touchDragX = 0; | |
| var touchPos = getTouchPos(event); |
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
| .roundcorners { position: relative; top: 0; left: 0; } | |
| .oldIE .roundcorners { overflow: visible; } | |
| .roundcornersInnerWrap { position: relative; top: 0; left: 0; } | |
| .roundcorners .insideW { background-image:url("../images/corners/cornerWhiteInside.png"); } | |
| .roundcorners .outsideW { background-image:url("../images/corners/cornerWhiteOutside.png"); } | |
| .roundcorners .outsideWNoBdr { background-image:url("../images/corners/cornerWhiteOutsideNoBdr.png"); } | |
| .roundcorners .outsideB { background-image:url("../images/corners/cornerBlackOutside.png"); } | |
| .roundcorners .roundcorner { position: absolute; z-index: 1000; display: block; height: 10px; width:10px; } | |
| .roundcorners .rcLeft.rcTop { left: 0; right: auto; top: 0; bottom: auto; background-position: left top; } | |
| .roundcorners .rcRight.rcTop { left: auto; right: 0; top: 0; bottom: auto; background-position: right top; } |
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 'rubygems' | |
| require 'mechanize' | |
| FIRST_NAME = 'FIRST_NAME' | |
| LAST_NAME = 'LAST_NAME' | |
| PHONE = 'PHONE' | |
| EMAIL = 'EMAIL@provider.com' | |
| PARTY_SIZE = 2 | |
| SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
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
| <!DOCTYPE html> | |
| <html lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.10.1/TweenMax.min.js"></script> | |
| <script> | |
| $(function(){ |
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 a = new Array(); | |
| a[0] = "myString1"; | |
| a[1] = "myString2"; | |
| a[2] = "myString3"; | |
| //short hand version | |
| var a = ["myString1", "myString2", "myString3"]; |
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
| //1 | |
| function Car(make, model, year, owner) { | |
| this.make = make; | |
| this.model = model; | |
| this.year = year; | |
| this.owner = owner; | |
| //Notice the use of this to assign values to the object's properties based on the values passed to the function. | |
| } | |
| //2 |
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
| //create the object with properties & values. | |
| var myCar = new Object(); | |
| myCar.make = "Ford"; | |
| myCar.model = "Mustang"; | |
| myCar.year = 1969; | |
| //then LOOP(enumerate) through all the properties of the object myCar | |
| function showProps(obj, objName) { | |
| var result = ""; | |
| for (var i in obj) { |
OlderNewer