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
5
votes
2
answers
598
views
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:
...
1
vote
2
answers
113
views
simple Text Table utility
A small utility to print data in an ascii table
TextTable
...
6
votes
1
answer
217
views
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:
...
3
votes
1
answer
93
views
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 ...
0
votes
2
answers
527
views
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.
...
9
votes
1
answer
2k
views
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, ...
3
votes
1
answer
149
views
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 ...
5
votes
1
answer
1k
views
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 ...
3
votes
2
answers
209
views
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" ...
2
votes
1
answer
213
views
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.
...
1
vote
1
answer
103
views
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 ...
1
vote
2
answers
1k
views
Create an ASCII table from CSV
The following code convert csv to ascii table.
...
0
votes
1
answer
81
views
4
votes
0
answers
60
views
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:
...
4
votes
4
answers
931
views
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 ...