
Python random word generator - Code Review Stack Exchange
Jun 10, 2020 · I want to implement a random word generator that would not use Import statements. The solution is working for a *nix system. The solution does yield a random word, but please suggest: …
Generating random email addresses - Code Review Stack Exchange
Jul 28, 2014 · The code below generates only 10 email domains. To me, this is bruteforce programming. Is there another random integer library? Could I use something like random.seed() in C++? What is a …
Writing a random password generator - Code Review Stack Exchange
Aug 30, 2024 · I got an idea of creating a random password generator. It generates passwords consisting of random characters. The user can exclude different types of characters (letters, …
Simple random password generator - Code Review Stack Exchange
Aug 15, 2016 · I decided to write a console program that can generate a random alphanumerical password in the C language. It's quite useful for when I'm making a new account and need to make …
Building an email generator using abstract factory pattern
Apr 5, 2020 · I'm trying to build a customer email generator in java using the abstract factory pattern. I understand how to use the factory method pattern; however, I'm a bit confused about the abstract …
Simple Random Password Generator in C# Updated
Oct 14, 2025 · This is an update to my Simple Random Password Generator. It has been renamed to SecurePasswordGenerator and uses RandomNumberGenerator instead of using Random.
Faux Random Maze Generator - Code Review Stack Exchange
Dec 27, 2024 · For a personal project, I've written a maze generator in Python that I will be using A* to navigate through (using C++). The biggest points of improvements I'm looking for are in the …
c++ - Random string generator - Code Review Stack Exchange
Feb 5, 2016 · I decided to make a random string generator for fun, and it works for the most part. Since I'm an amateur at programming, I thought I would post the code to get some feedback on it, and …
Random password generator in C - Code Review Stack Exchange
Dec 10, 2019 · But I think the biggest problem in OP's sample is use of a poor random generator to make a "random" password. I take issue with the Use a better random number generator section …
Random number generator - Code Review Stack Exchange
Aug 18, 2023 · That in turn will mean that the function is ever so slightly biased. Usually this amount of bias can be safely ignored, but now always. Instead it may be a better idea to use and rejection …