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
function log(message) { | |
document.getElementById('status').textContent += message + '\n'; | |
} | |
log('running...'); | |
var suite = new Benchmark.Suite; | |
// add tests | |
suite.add('RegExp#test', function() { | |
/o/.test('Hello World!'); |
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
REGEDIT4 | |
[HKEY_CLASSES_ROOT\sop] | |
@="URL:sop Protocol" | |
"URL Protocol"="" | |
[HKEY_CLASSES_ROOT\sop\shell] | |
[HKEY_CLASSES_ROOT\sop\shell\open] |
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
<template> | |
Hello world! | |
</template> |