
java - ASCII-Art Generator - Code Review Stack Exchange
Apr 27, 2020 · Introduction For the purpose of learning how to work with pictures in Java, I created an ASCII-Art Generator. The program can do two things: Convert pictures into ASCII-Art Convert text …
library - ASCII art generator in C - Code Review Stack Exchange
Sep 24, 2015 · I have written an ASCII art generator library. I was practicing data abstraction and code abstraction and I wanted to know if there is something that can be improved. File tree: | |--Ma...
python - ASCII generator - Code Review Stack Exchange
Oct 8, 2015 · Today I stumbled upon CodinGame, a site with programming challenges. I'll describe one of them. ASCII art allows you to represent forms by using characters. To be precise, in our case, …
More efficient way to create an ASCII maze using box characters
Jun 27, 2021 · I've written a C# program to generate a random maze, and then draw that maze in the Console mode using box-drawing characters, e.g. ─ │ ┌ ┐ ┬ ┼ etc. It works fine, as below, but I'm …
Random String generator in C - Code Review Stack Exchange
Jul 31, 2013 · I created this small function just to practice C code. It's a simple random string generator.
Python ASCII-Art Text Generator - Code Review Stack Exchange
Oct 25, 2016 · The configuration file format is as follows: First line: the height of every character in the configuration file (number of lines). Second line: the key. A string containing the letters in the order …
Python command-line program that generates passwords
May 18, 2023 · This script generates cryptographically secure passwords. The characters used by the passwords are chosen from the 94 printable ASCII characters that aren't blank characters or control …
ASCII art smoke wisp generator - Code Review Stack Exchange
Nov 17, 2022 · I've written a Python function that generates a smoke wisp/genie-tail shape using all 26 (and only 26) letters of the alphabet. Here are some examples of the kind of ASCII art I'm trying to …
CLI ASCII Maze Generator / Python 3.9 - Code Review Stack Exchange
May 31, 2021 · CLI ASCII Maze Generator / Python 3.9 Ask Question Asked 4 years, 6 months ago Modified 4 years, 6 months ago
Generate random string to match a specific pattern
Sep 23, 2021 · In your random_char function, you don't use x at all. Replace it with _ (it's conventional in python to use _ for throwaway variables). y could also be renamed to something more descriptive. …