Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@toberndo
toberndo / dedup.js
Created January 26, 2012 14:30
Test script with three different algorithms to remove duplicate elements from an array.
if (typeof process === 'undefined') {
process = {
memoryUsage: function() {
return {
heapTotal: 1048576
}
}
}
}
@toberndo
toberndo / index.html
Created July 6, 2012 08:27
Chrome extension sandbox pages test
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1>Inside the sandbox</h1>
</body>
</html>