
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 …
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 …
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 …
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 …
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 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 …
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 …
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 …
Python \ random password generation code - Code Review Stack …
May 16, 2023 · The pseudo-random number generator implemented by random doesn't provide a truly random output and provides a predictable output, and as such isn't suited for password …
c# - Email Generator - Code Review Stack Exchange
Jun 28, 2019 · I've made a email generator, that uses a HTML template and replaces keywords in the template with information taken from a database. I'm looking to see if there is a way to …