Skip to content

Instantly share code, notes, and snippets.

View DracoBlue's full-sized avatar

DracoBlue

View GitHub Profile
fs.readFile(this.files[uri], "binary", function(err, content) {
if (err) {
res.sendHeader(404, {
});
} else {
res.sendHeader(200, {
"Content-Type": mime_type,
"Cache-Control": "public, max-age=300"
});
res.write(content, "binary");
/*
* NodeJS Test Case for the blog post:
* "What's faster: JSON.parse+stringify or extend/mixin?"
* http://dracoblue.net/dev/whats-faster-jsonparsestringify-or-extendmixin/166/
*/
extend = process.mixin;
extend(true, {}, {})
var sys = require("sys");
<?php
protected $module_folders = null;
/**
* Extended initializeModule for Agavi, allowing multiple modules-folders. *
*/
public function initializeModule($moduleName)
{
$lowerModuleName = strtolower($moduleName);
function a(b, c, callback) {
mysql_query("insert into magic_table pseudocode query (...)", function(status, data) {
if (status) {
callback(false, "Cannot add item!");
return ;
}
// do custom code
callback(true);
});
}