Skip to content

Instantly share code, notes, and snippets.

// Do you think this is valid JS?
// Hint: copy this code to your dev tools conosle.
var emptyString = "
";
function runTest(n) {
'use strict';
/* The Computer Language Benchmarks Game
http://benchmarksgame.alioth.debian.org/
contributed by Isaac Gouy
Optimized by Roy Williams
Changed to JS arrays by Anvaka
*/
/**
/* The Computer Language Benchmarks Game
http://benchmarksgame.alioth.debian.org/
contributed by Isaac Gouy
Optimized by Roy Williams*/
/**
* @type {number}
*/
var PI = 3.141592653589793;
function runtIt(n) {
'use strict';
/* The Computer Language Benchmarks Game
http://benchmarksgame.alioth.debian.org/
contributed by Isaac Gouy
Optimized by Roy Williams
"Deoptimized" to plain JS objects by Anvaka*/
/**
* @type {number}
var createArray = function (length) {
var arr = [];
for(var i = 0; i < length; ++i) {
arr[i] = 0.1;
}
return arr;
},
length = 10000,
arr1 = createArray(length),
arr2 = createArray(length);
/**
* Mixin to let object fire events and let consumers
* listen to those events.
*
* @param object {Object} - producer of events.
* @param contract {Array of strings} - optional events contract.
*
* Examples:
* var obj = eventify({});
* // now you can listen to object's events:
// what needs to be changed in this code, to satsify requirements below:
function () {
function foo() {
var a = 42,
b = function () { console.log('hi'); };
}
// a and b should be available in this scope (but not the outter)
// No other modifications to this scope are allowed
function bar() {
// could use a, b.
@anvaka
anvaka / quine1.js
Last active December 12, 2015 10:18
Just having fun... This function prints itself to the console.
(function () {
var arr = ["(function () {", "var arr = [", "arr[1] += arr.map(function(x) { return String.fromCharCode(0x22) + x + String.fromCharCode(0x22); }).join(', ') + '];';", "arr.forEach(function(x) { console.log(x); });", "}())"];
arr[1] += arr.map(function(x) { return String.fromCharCode(0x22) + x + String.fromCharCode(0x22); }).join(', ') + '];';
arr.forEach(function(x) { console.log(x); });
}())
forEachUnlinkedNode : function (nodeId, callback, oriented) {
var graph = this,
node = graph.getNode(nodeId),
linkedNodeId,
currentNodeId;
if (node && typeof callback === 'function') {
var linkedNodes = {};
graph.forEachLinkedNode(nodeId, function (node) { linkedNodes[node.id] = true; }, oriented);
@anvaka
anvaka / buildObjectGraph.js
Created November 20, 2012 21:48
Graph for internal JS objects call
function buildObjectCallGraph(obj, timeOutId) {
if (typeof Viva === 'undefined') {
if (!timeOutId) {
var head = document.getElementsByTagName('head')[0],
script = document.createElement('script');
script.setAttribute('src', 'https://raw.github.com/anvaka/VivaGraphJS/master/dist/vivagraph.min.js');
script.setAttribute("type","text/javascript");
head.appendChild(script);
}
var timeOutId = setTimeout(function() {