I hope it's Monday-itis kicking in at the moment, but something I feel should be quite easy - or at least elegant - is giving me a brain fart. The use case is this:
Find all possible combinations of a specific word, where letters can be any case or replaced with letters. For instance:
Word: 'Password' Combinations: 'PASSWORD', 'P@ssw0rd', 'p@55w0rD' ...
I do not want to write 7 loops to find this out, even though it's a once off script we'll never ever use again.