Quick guide to Google closure compiler tool

Google’s closure compiler is an impressive tool that parses JavaScript code and make various optimizations on it, including minimizing its size. This post will provide what is needed to effectively utilize it in minimum time. Step 1 – verify consistant property access methods in your code ∞ The first thing you should do is make …

Continue reading ‘Quick guide to Google closure compiler tool’ »

Fastest Scrabble Algorithm ?

After making a small change, I’ve managed to improve the algorithm so that the computer will make a move in under a second every turn. Considering this is all written in pure JavaScript and runs on the browser, I’m starting to wonder whether the algorithm I wrote is the fastest existing scrabble algorithm out there…