
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 …
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, …
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 …
Writing a random password generator - Code Review Stack …
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, …
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 …
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 …
Random password cracker using brute force - Code Review Stack …
Jan 7, 2017 · I created a fun password cracker using literal brute force, searching each character to see if it matches an ASCII character ...
c# - Random string generation - Code Review Stack Exchange
Nov 12, 2011 · I'm using this C# function to generate random coupons for a system. How can I improve it? public static string GenerateCoupon(int length) { string result = string.Empty; …
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 …
Generate random string to match a specific pattern
Sep 23, 2021 · Do you want this to be 1-2 digits + 5*random uppercased letters + ... or it can be any random string?