Skip to content

Instantly share code, notes, and snippets.

@josefsalyer
Created January 7, 2011 02:03
Show Gist options
  • Save josefsalyer/768992 to your computer and use it in GitHub Desktop.
Save josefsalyer/768992 to your computer and use it in GitHub Desktop.
if (module === require.main) {
inspect = function(obj) {
return sys.debug(sys.inspect(obj, 5));
};
debugcb = function(err, results) {
inspect(err);
return inspect(results);
};
for (i=0;i<=100;i++) {
exports.upcomingEpisodesInLineup("DISH770", "183931", debugcb)
}
for (i=0;i<=100;i++) {
exports.upcomingShowsInLineupHack("DISH770", "183931", debugcb)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment