←back to thread

296 points reverseCh | 1 comments | | HN request time: 0.307s | source

I recently came across the concept of "useless" programs - pieces of code that serve no practical purpose but are fun, creative, or challenging to write. These could be anything from elaborate ASCII art generators to programs that solve imaginary problems. I'm curious to hear about the most interesting or creative "useless" programs the HN community has written. What was your motivation? What unexpected challenges did you face? Did you learn anything valuable from the experience? Some examples to get the ball rolling: 1. A program that prints the lyrics of "99 Bottles of Beer" in binary. A text-based game where you play as a semicolon trying to find its way to the end of a line of code. A script that translates English text into Shakespearean insults. Share your creations, no matter how quirky or impractical. Let's celebrate the joy of coding for coding's sake!
Show context
jinay ◴[] No.41920264[source]
When I was first learning computer vision, I wrote a program that could tell the time from an image of a clock [1]. I had no purpose for it besides the fact that it seemed like a cool problem to try and solve.

Years later, I get an email from a stranger in Korea, asking me how to run my program. Why would he want to use my silly program? Turns out you can adapt the code to read analog pressure gauges which is really useful for chemical plants. Goes to show that there's often a use for most things.

[1] https://github.com/jinayjain/timekeeper

replies(12): >>41921284 #>>41921434 #>>41921458 #>>41921846 #>>41923054 #>>41923488 #>>41923997 #>>41924793 #>>41925039 #>>41925087 #>>41933954 #>>41936559 #
nasseri ◴[] No.41921284[source]
That is so frickin cool!
replies(1): >>41921513 #
1. jinay ◴[] No.41921513[source]
Thanks!