This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
var Search = { | |
opened: [], | |
closed: [], | |
/* | |
BFS: function (tree) { | |
this.opened.push(tree); | |
while (this.opened.length > 0) { | |
this.walkBFS(this.opened[0]); |
<?php | |
$tiles1 = array( | |
"11", // 1 | |
"23", | |
"", | |
"44", // 2 | |
"11", | |
"", | |
"16", // 3 |
info: Welcome to Nodejitsu | |
info: It worked if it ends with Nodejitsu ok | |
info: Using config file /home/josh/.jitsuconf | |
info: Executing command apps deploy | |
info: Authenticated as goatslacker | |
info: Analyzing your application dependencies in server.js | |
node.js:181 | |
throw e; // process.nextTick error, or 'error' event on first tick | |
^ |
#!/bin/env node | |
const fs = require('fs'); | |
const path = process.argv.slice(2).shift() || "."; | |
const lipsum = (function () { | |
return "Lorem ipsum dolor sit amet consectetur adipiscing elit Vestibulum cursus diam nec leo pharetra id elementum enim egestas Nullam nec mauris justo id pharetra arcu Integer ut sapien sit amet tellus egestas molestie nec ornare turpis Mauris sed quam in elit blandit pulvinar vel nec leo Vivamus convallis aliquet mauris et cursus Aliquam bibendum eros vel erat pharetra nec varius ipsum molestie Curabitur elementum neque non tellus tempor dignissim Lorem ipsum dolor sit amet consectetur adipiscing elit Nunc dui nisl ullamcorper eu sagittis in cursus vel mauris Aliquam iaculis egestas libero sit amet lobortis metus porttitor quis Aliquam scelerisque vulputate libero vitae condimentum Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas Duis fringilla nisl eleifend lectus interdum id bibendum nibh ultricies Fusce quam mi semper vel sagittis et |
josh@n0va:~/Development/nms-server-deploy$ jitsu apps start nms-server | |
info: Welcome to Nodejitsu | |
info: It worked if it ends with Nodejitsu ok | |
info: Executing command apps start nms-server | |
info: Authenticated as goatslacker | |
info: Starting app nms-server | |
help: | |
help: Usage: | |
help: Starts the application in the current directory. If <name> | |
help: is supplied then that application is started instead. |
/*global module */ | |
/* | |
* Javascript Diff Algorithm | |
* By John Resig (http://ejohn.org/) | |
* Modified by Chu Alan "sprite" | |
* Modified by Josh Perez <[email protected]> | |
* | |
* Released under the MIT license. | |
* | |
* More Info: |
#!/usr/bin/env node | |
/*global require process */ | |
const exec = require('child_process').exec; | |
/** | |
Returns a function to be executed | |
@param cmd {string} the command to run | |
@param callback {Function} the Function to execute after the command finishes running | |
*/ |
<script type="text/javascript"> | |
var Search = { | |
opened: [], | |
closed: [], | |
or: [], | |
and: [], | |
DFS: function (tree) { |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
const fs = require('fs'); | |
const path = require('path'); | |
// FIXME - performance issue: When checking a directory which contains MANY nested directories | |
// the performance of this script suffers... | |
// most commonly found with svn projects that are > 500mb. | |
// perhaps we're stacking the stack way too high and need to pile through it before we can continue | |
// to add to it? | |
/** |