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.
159 questions
6
votes
3
answers
641
views
ASCII-based Lightweight Browser with Clippy-Style Helper in Python (Updated)
This question used to contain a mistake in the code, so I had to debug and reformat it. This is the correct version.
Why I made it
A friend and I wanted to make a lightweight browser, since our ...
1
vote
2
answers
122
views
ASCII-based Lightweight Browser with Clippy-Style Helper in Python [duplicate]
Note that this is the original version which has not been formatted to comply to PEP-8 and contains an error in the code. Please visit the updated version instead to post answers, comments and/or cast ...
7
votes
3
answers
808
views
Optimizing real-time ASCII playback in Python when each frame is fetched as a PNG via GET
Why I made it
I wrote this script for one simple purpose: to Rickroll my friends.
How it works
This is the workflow:
It fetches a .png frame from a PHP endpoint on a website I own. The frame number ...
4
votes
2
answers
681
views
Unicode-based platformer game in Python (Updated)
I already asked this question, but the script I provided was not compliant to PEP-8, so I rewrote the script for better readability.
I'm making a platformer game called Uni where this small character ...
6
votes
3
answers
1k
views
Unicode-based platformer game in Python
I'm making a platformer game called Uni where this small character has to go as high as possible, in which the player constantly has to choose between jumping (W) going left or right (A-D) climbing ...
5
votes
2
answers
604
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
219
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
530
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
150
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
210
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
214
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.
...