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
Node 6.10.5 | |
--harmony (enable all completed harmony features) | |
--harmony_shipping (enable all shipped harmony features) | |
--harmony_array_prototype_values (enable "harmony Array.prototype.values" (in progress)) | |
--harmony_function_sent (enable "harmony function.sent" (in progress)) | |
--harmony_sharedarraybuffer (enable "harmony sharedarraybuffer" (in progress)) | |
--harmony_simd (enable "harmony simd" (in progress)) | |
--harmony_do_expressions (enable "harmony do-expressions" (in progress)) | |
--harmony_restrictive_generators (enable "harmony restrictions on generator declarations" (in progress)) | |
--harmony_regexp_named_captures (enable "harmony regexp named captures" (in progress)) |
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
<video id="localVideo"></video> | |
<script src="https://cdn.icecomm.io/icecomm.js"></script> | |
<script> | |
var comm = new Icecomm("my_api_key"); | |
comm.connect("Room 101"); | |
comm.on("local", function(peer) { | |
$("#localVideo").get(0).src = peer.stream; | |
}); | |
comm.on("connected", function(peer) { |
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
<cfoutput> | |
<cfset list = "a,b,c"> | |
Original list: #list#<br /><br /> | |
<cfset combos = {}> | |
<cfloop from="1" to="#ListLen(list)#" index="i"> | |
<cfset workingList = list> |
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
Show hidden characters
/* | |
SublimeLinter default settings | |
*/ | |
{ | |
"sublimelinter_gutter_marks": true, | |
"sublimelinter_delay": 1, | |
"sublimelinter_mark_style": "none" | |
} |
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> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<script src="/js/lib/jquery-1.9.1.min.js"></script> | |
</head> | |
<body> | |
</body> |