i made a simple anagram animation tool with css/js
i would also like to make a good anagram generator. the tools i saw online generally sucked
most had a hard limit on the number of letters, and in general i can see there are challenges finding all the anagrams with a lot of letters
i think i can do better by not traversing the entire search space and optimising for common words as well as a good range of vowels/consontants in the remaining letter pool
i think i could also get better performance with the anagram dictionary data structure i used a few years ago for the bookworm adventures tool
if possible i will make it a webpage that does computation client side, but i don't want it to hang the browser if i can't get it running fast enough. so maybe it will be a desktop application or script instead