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 seed = '1', rands; | |
| Math.seedrandom(seed); | |
| if ( | |
| window.seed && window.seed !== seed || | |
| !window.rands | |
| ) { | |
| rands = window.rands = []; | |
| for (var i = 0; i < 50000; i++) { | |
| rands.push(Math.random()); | |
| } |
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> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> | |
| </head> | |
| <script type="text/javascript" language="JavaScript"> | |
| var user = "gazetteer"; | |
| var pass = "Demo1234" | |
| var uriLogin = "http://restapitest.actuate.com:5000/ihub/v1/login"; | |
| var uriSearch = "http://restapitest.actuate.com:5000/ihub/v1/files"; |
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> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> | |
| <style type="text/css"> | |
| table, th, td { | |
| border: 1px solid black; | |
| border-collapse: collapse; | |
| } | |
| </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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |