About 25,100 results
Open links in new tab
  1. 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 …

  2. 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, …

  3. 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, …

  4. 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 …

  5. 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 …

  6. 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 …

  7. 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 …

  8. 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 …

  9. random - Custom UUID implementation on C++ - Code Review …

    May 28, 2021 · Do you only need one random ID, or one every once in a long while? OK. But if you're calling this repeatedly, you're doing the expensive overhead of initializing the random …

  10. Basic word search puzzle generator - Code Review Stack Exchange

    Sep 9, 2025 · This is code for a basic word search puzzle generator (also "wordsearch"). The code: Creates a 10 x 10 grid of letters. Words are hidden …