Questions tagged [ascii-art]
ASCII Art is a graphic design technique that uses the 93 printable/space characters of the 128-character ASCII set to create images.
154 questions
5votes
2answers
575views
Java - Converting a skip list to the ASCII art
Intro This post won't present the actual mechanics of the skip list. Instead, all I got here is the facility for converting skip lists to funky ASCII art. For example, the unit test prints: ...
1vote
2answers
105views
simple Text Table utility
A small utility to print data in an ascii table TextTable ...
6votes
1answer
198views
ASCII art smoke wisp generator
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 produce: ...
3votes
1answer
72views
Drawing a pair of triangular walls for CS50 Mario
This is my code for the CS50 Mario (more comfortable). Answers can be found all over the net however I wrote this myself. I would like to refactor to its maximum potential (just for my own improvement ...
0votes
2answers
503views
Drawing a rectangular playing field
I created a method to print a playing field in the console, but I think there are much better ways to do this than mine. ...
9votes
1answer
2kviews
Convert image into ASCII art
I made a python script that takes an image and converts it into an ASCII-art representation and saves it as a .txt file. The logic is somewhat simple. It resizes the image to a manageable size, ...
3votes
1answer
139views
Rendering a cross in ASCII art
I've recently tried to write my functions by using composition. But this one, renderCross' is especially difficult to convert fully. How would I write this ...
5votes
1answer
979views
Formatting a table using unicode symbols in python
The goal of the project is to take in input for a data, perhaps in the future as a csv, then print it out using UNICODE box-drawing characters. The main function ...
3votes
2answers
179views
Alphabet Rangoli
I have written alphabet rangoli code in python and would like to get it reviewed. The goal is to print concentric diamond shapes made of letters, with "a" at the center, "b" ...
2votes
1answer
194views
c++ CLI Ascii image renderer
I am wondering if this is written well or not, I am just a beginner and would like some feedback what should I improve on. Thanks. ...
1vote
1answer
85views
Outputting a graphic using functions
How would you make this piece of code more simple/efficient? The problem should not be solved with one print statement, rather with functions Could you also give me any advice how I can come to your ...
1vote
2answers
1kviews
Create an ASCII table from CSV
The following code convert csv to ascii table. ...
0votes
1answer
62views
4votes
0answers
50views
Diagonal square spiral pattern in Vyxal
I wrote this code as a reference implementation for this challenge. How can I make it more readable and/or efficient? The goal is to take an integer and create patterns like the following: ...
4votes
4answers
895views
Output a pyramid of numbers
I have this problem where I've to print a number pyramid by taking input from the user. 1 2 3 2 3 4 5 4 3 4 5 6 7 6 5 4 5 6 7 8 9 8 7 6 5 I've ...