I guess the term “ajax clouds” is now more appropriate.

Debtags clouds have evolved. They’re no longer a static page with a single cloud that will forward you to the more complex browsing tool by Enrico, but now the cloud will adapt to your previous choices, and allow the selection of multiple tags.

The biggest issue probably is tag naming now (e.g. what is the difference between “role”, “use” and “scope” (unfold them to get an idea) or between “interface” and “uitoolkit” (interface is mostly commandline vs. fullscreen vs. windowed vs. 3d; uitoolkit is gtk vs. qt vs. whatever) - unless you’re familiar with these terms, you’ll probably find it still hard to navigate the tag cloud.

Still I hope this inspires you to think of new UIs doable with tag information (which is a small step towards the semantic web; actually these facets here are quite similar to RDF triples…)

These is so much things I’d like to try out with this data…

If you have suggestions, please share them via email.

For those interested in the technical stuff: tag clouds are loaded via ajax, served from a database with ~120 MB of precalculated, precompressed json files. Precalculation is rather expensive; on my 4+ years old laptop it took about 105 minutes (76 minutes of CPU time). Storing them in the filesystem instead of a BerkeleyDB hashtable took more than 4 hours. The outmost (i.e. largest amount of data) set takes 1.1 seconds to compute; there are 344871 precomputed tag selections, so it precalculated 75 selections per second on average. Yes, complexity is not linear; benefits from caching large results are huge.

I’d really love to run a similar interface for e.g. last.fm, but I guess this would not work as well; their tags aren’t grouped in facets. But I have some ideas to make up for that.

P.S. This is also my first real Ajax app (except for using json instead of XML). And I still hate Javascript.

[Update: I’ve worked around an issue with opera (which is stricter on javascript object syntax than mozilla). I havn’t tried Internet Exploder yet. But this is a navigation experiment, not an application to be deployed…]