This file contains 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
<title> remote ios debugging port scanner </title> | |
<h1> remote ios debugging port scanner </h1> | |
<cfscript> | |
ports = [9000]; | |
for (i= 9220; i < 9230; i++) | |
ports.append(i); | |
for (port in ports){ | |
writeOutput("port #port#"); | |
http url = "http://127.0.0.1:" & port & "/json" timeout=1; |
This file contains 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> | |
<meta name="description" content="bootstrap 4 example with requirejs"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Bootstrap 4 with requirejs demo</title> | |
</head> | |
<body> | |
Unfortunately, I keep getting this error |
This file contains 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
<Cftry> | |
<cfhttp | |
url = "https://upload.wikimedia.org/wikipedia/en/2/25/Channel_digital_image_CMYK_color.jpg" | |
result = "result"> | |
</cfhttp> | |
<cfcatch type="any"> | |
<cfdump var="#cfcatch#"> | |
</cfcatch> | |
</Cftry> | |
<Cfdump var="#result#"> |
This file contains 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> | |
<meta charset="utf-8"/> | |
<title>new Array vs pre populating an array</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
This file contains 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> | |
<meta charset="utf-8"/> | |
<title>bracket notation vs charAt</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
This file contains 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> | |
<meta name="robots" content="noindex"> | |
<html> | |
<head> | |
<title>Geolocation Test Harness</title> | |
<meta name="description" content="Geolocation Test Harness"> | |
<script src="https://code.jquery.com/jquery-1.11.3.js"></script> | |
<title>chrome gps test</title> | |
<script> | |
var startTime = null; |
This file contains 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>Offline/Online event toggling demo</title> | |
<script> | |
var online = function () { | |
logger("<B>online</B>"); | |
} | |
var offline = function () { | |
logger("offline"); |