Skip to content

Instantly share code, notes, and snippets.

View IsaacVanName's full-sized avatar

Isaac Van Name IsaacVanName

View GitHub Profile
@jt2k
jt2k / convert.php
Created April 11, 2012 17:44
PHP Golf string inverter
<?php
$strings = array(
"\n"
);
if (!isset($argv[1]))
{
die("Please specify an input file\n");
}
@HenrikJoreteg
HenrikJoreteg / clientAndServerUtilFuncs.js
Created June 1, 2011 18:18
Solution for utility functions to be used with underscore.js as mixins or commonjs
/*
Building a module this way allows you to do this on the client:
<script src="underscore.js"></script>
<script src="myutils.js"></script>
Then use it in your code as children of '_' without polluting your global namespace.
_.myFunction();
@indexzero
indexzero / create.out
Created May 31, 2011 04:49
End-to-end output for deploying the express sample app on Nodejitsu
$ express express-test
create : express-test
create : express-test/app.js
create : express-test/public/stylesheets
create : express-test/public/stylesheets/style.css
create : express-test/public/images
create : express-test/public/javascripts
create : express-test/logs
create : express-test/pids
create : express-test/views