use strict;
my $peters = { };
my $val = 3;
my $pans = sub{
my $val = 5;
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
var outsiderID; | |
$("#kelvarnsen").on('event',function(){ | |
var id = $("#artvandelay").attr("id"); | |
outsiderID = id; | |
}); | |
$("pennypacker").on('event',function(){ |
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
/* app.js */ | |
require("./mastah.js"); | |
require("./comp1.js"); | |
require("./comp2.js"); | |
/* call all reflected items in mastah.js */ | |
var temp, parse; | |
for(var i in mastah.names){ | |
temp = mastah.components; | |
parse = mastah.names[i].split("."); |
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
wchar_t[] index = new wchar_t[256]; //change 256 to number of unique chars in both streams or max number possible of uniques | |
item* push(wchar_t v,int c,item* curr){ | |
curr->value = v; | |
curr->count = c; | |
index[v] = &curr; | |
curr->next = (item*)(malloc(sizeof(item))); | |
return curr->next; | |
} |
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
/* | |
module a | |
*/ | |
module.exports = function(self){ | |
return { | |
echo:function(){ | |
console.log(self.echo); | |
} | |
}; | |
}; |
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
-var pad = function(decimal){ return decimal.toFixed(2); }; | |
h2 Hi NoNuby | |
div!= pad(locals.val1); | |
div!= pad(locals.val2); |
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
fuor:four | |
O | |
/ / \ \ | |
f o u r | |
| | | | |
o u r | |
| | | |
u r | |
| |
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
var http = require("http"); | |
var madworld = "i axe to axe"; | |
http.createServer(function(req, res){ | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end(madworld); | |
}).listen(6679, '127.0.0.1'); |
OlderNewer