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
| <html> | |
| <head> | |
| <title>Zip through the Jungle</title> | |
| <style type="text/css"> | |
| body{ | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| font-family: "ProximaNova Light", sans-serif; | |
| } |
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
| <html> | |
| <head> | |
| <title>Zip through the Jungle</title> | |
| <style type="text/css"> | |
| body{ | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| font-family: "ProximaNova Light", sans-serif; | |
| } |
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
| <html> | |
| <head> | |
| <title>Ch10-sighting</title> | |
| <link rel="stylesheet" type="text/css" href="jquery-ui-1.8.16.custom/css/sunny/jquery-ui-1.8.16.custom.css"> | |
| <script type="text/javascript" src="jquery-ui-1.8.16.custom/js/jquery-1.6.2.min.js"></script> | |
| <script type="text/javascript" src="jquery-ui-1.8.16.custom/js/jquery-ui-1.8.16.custom.min.js"></script> | |
| <script type="text/javascript"> | |
| function hexFromRGB(r,g,b){ |
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> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| $("#detectUA").click(function(){ | |
| var UA = navigator.userAgent; | |
| if(UA.includes("Edge")){ | |
| alert("Please use IE to open this website!"); | |
| } |
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
| using System; | |
| namespace ParkingCalculate | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Car myCar = new Car(); | |
| myCar.inTime = new DateTime(2015,7,5,19,30,00); | |
| myCar.outTime = DateTime.Now; |
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
| using System; | |
| namespace ParkingCalculate | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Car myCar = new Car(); | |
| myCar.inTime = new DateTime(2015,7,5,19,30,00); | |
| myCar.outTime = DateTime.Now; |
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
| using System; | |
| namespace ParkingCalculate | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Car myCar = new Car(); | |
| myCar.inTime = new DateTime(2015,7,5,19,30,00); | |
| myCar.outTime = DateTime.Now; |
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
| <html> | |
| <head> | |
| <title>Black 21</title> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.9.3/lodash.min.js"></script> | |
| <script type="text/javascript"> | |
| deck=[]; | |
| round=[]; | |
| //initialize the deck array |
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
| deck=[]; | |
| //initialize the deck array | |
| for(var i=0;i<52;i++){ | |
| deck[i]=i; | |
| } | |
| deck=_.shuffle(deck); | |
| console.log(deck); | |
| suite=['spades','heart','diamond','club']; | |
| count=0; |
NewerOlder