Buckyballs and Zen Magnets make nearly identical magnetic toys. Zen Magnets started a campaign where they sold both sets on eBay and asked customers to compare. Buckyballs CEO responded with a legal threat, and Zen Magnets posted a video on YouTube responding to their threat, showing how to compare the quality of both the toys….
Month: September 2010
Anonymous self-invoked recursive-function in Javascript
I needed to do an n-ary tree traversal recently with some Javascript code that I’m working on and I initially wrote an iterative n-ary tree-traversal algorithm (using a node stack with a while loop). I wanted to keep track of some extra (depth-dependent) data during the traversal and I didn’t like the way I was…