About 20,500 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 random.seed() in C++? What is a …

  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, but please suggest: …

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

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

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

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

  7. 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 somewhere in the grid, horizontally or …

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

  9. 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 improve the …

  10. 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; Random random = new