↧
Answer by Zeta for Simple command-line password generator
Too much IO. Text.Regex.Posix is too much for those simple tests. Why not any isUpper, any isLower, any isDigit?Your program ignores --help and --with-symbols (have a look at...
View ArticleAnswer by Caridorc for Simple command-line password generator
I'm guessing my bottleneck here is that randomRIO takes a long time to return a value, is there any way to increase the speed, or get an array of values instead of grabbing them one at a time?Yes there...
View ArticleSimple command-line password generator
I'm very new to Haskell, I've read most of learnyouahaskell.com and played around with some simple things, but this is probably the most 'complicated' bit of Haskell I've written so far. I have an...
View Article