vote up 23 vote down star
8

Programmers are strange people. We build things out of thin air, a part of our sanity and with weird codes that would make any grown sane man cry.

But sometimes, a programmer builds a program that is too weird even by their insane standards.

What program have you created that is weird and strange?

(One program per answer please)

flag

82 Answers

vote up 2 vote down

I did a calculator that had no conditional code. Everything was done with goto's using array lookups into tables of label pointers.

OTOH

link|flag
show 1 more comment
vote up 2 vote down

In high school I wrote a program that wrote the appropriate commands to a programmable sound generator and printed four random letters on the screen at the same time. This was on a custom 6809 system.

The first time I demonstrated it to the deputy principal, the (random) sound it made was a sort of a sucking sound and the letters (again, random) were FCUK.

Thankfully, the deputy was amused. ;-)

link|flag
show 1 more comment
vote up 2 vote down

I worked with a guy who wrote a command line app to order burritos from La Costeña, a Mexican grocery store/taqueira in Mountain View, CA. I could never remember the command line syntax and I didn't order from a pattern to the .burritorc file was useless to me. I wrote a MOTIF-based app that gave the look and feel of La Costeña's FAX order form which then forked the command line app as a subprocess to send off the order.

I got moved into a Macintosh heavy group so to get my chops up, I ported it to the Mac, but instead of an order form, the main window featured a virtual tortilla upon which you dragged the things you wanted. It couldn't run the command line app, so I had to reimplement the ordering code, but that wasn't too hard.

Immortalized here.

link|flag
vote up 2 vote down

Another strange program I have written is a 3D modeling thingy that run on Palm PDA. I had a blast writing it so I kept going even implemented a plugin interface to build exporting capabilities for various file formats. I called it tinyGL, almost forgotten about it...

alt text

link|flag
vote up 2 vote down

As a project in College I had written a game in VB that read in student marks, adjusted the speed of the avatar representing them, then forced them to race from one end of the screen to the other.

link|flag
vote up 1 vote down

The shortest SQL code which does a word wrap on "Hello World" is what I wrote and here it is:

select 'World' as Hello

link|flag
vote up 1 vote down

I used Inline::Java to help test a vendor's application server. Even though it was supposed to emit plain XML over HTTP, it did so using a DataOutputStream, and I had already written the test harness in Perl. There's nothing quite so weird and wrong as mixing Perl and Java in the same source file.

link|flag
vote up 1 vote down

Template VooDoo to build an arbitrary precision int type that used asm add & carry and friends to do addition subtraction, multiplication and division. It was so nasty I had to disassemble the result just to tell if I got it right.

source

link|flag
vote up 1 vote down

No Spam, I was tired of people that send chain mail, because you now that emails in the forwards are gathered by spammers, so i made a site where you copy&paste the whole email and the system adds all emails addresses into a public list and give you the chance to send an email to all that people pointing the one that send the chain mail in the first place.

After that no one send me chain email, and now the list 335,386 emails :D.

link|flag
vote up 1 vote down

Final year CS project:

"The Post Room Computer" (A type of little man computer, but far more complicated and realistic). Full assembly system which complied the "assembly" code into machine code which could then be executed by an emulated computer. All fronted by a lovely GUI. I got paid over £600 to finish it off so they could use it to teach low-level computing concepts.

link|flag
vote up 1 vote down

DOS TSR (terminate and stay resident; for youngsters - a kind of background task in an inherently single-tasked single-threaded OS) that sleeped for 10 minutes and then displayed (in ASCII, of course) a single dot in the center of the screeen, which then expanded into a horizontal line. Then two circles appeared on that line and expanded into eyes. Eyes looked left and right and then closed back into a line which contracted into a dot which disappeared.

It was called "Big Brother is watching you" (inspired by 1984, not by reality show which didn't exist back then) and I did install it as a joke on few computers with great results (oh, no, we have a virus!).

link|flag
vote up 1 vote down

Many years ago whilst bored at work, I wrote a space invaders game in Attachmate! Basic using a SNA console style client meant to be used to view customer's accounts :)

link|flag
vote up 1 vote down

I wrote a program in Scheme that translates normal English text into egg language. I just put it up on Google Code.

link|flag
vote up 1 vote down

I got bored one day while doing Y2K testing and wrote a 2D hourglass simulator in VB where every grain of sand was simulated individually. It was fun watching it 'count down' as I waited for 5:30pm to come around.

A few weeks later I modded it to alter the amount sand in the hour glass, color etc.

Every now and then I revist the code and have been 'tweaking' this little toy ever since.

link|flag
vote up 1 vote down

I've come to this thread a bit late, but in a Computing class in high school, I wrote a BASIC program which ran an indefinite loop where it used the lprint command to continually print long lines of asterisks to the dot-matrix tractor-feed printer.

I put the compiled program into the autoexec.bat file of every computer. The computers were switched off at the end of the day, meaning that when the classes started the next day and everybody turned their computer on, the printers started randomly spewing out wads of paper.

Ahhh, the hilarity.

link|flag
show 2 more comments
vote up 1 vote down

I once wrote a Mandelbrot fractal generator using Excel. I resized the cells so all 256 columns fit on screen and shrunk the rows down so the cells were square. The in VBA code I calculated the bailout value and color for each cell and changed the cell background color. Basically it turned each cell in the spreadsheet into a pixel for a 256x256 Mandelbrot fractal image. I still have it laying around on my computer somewhere.

link|flag
vote up 1 vote down

Recursive descent parser of boolean expressions involving 0,1,and,or,not, and parentheses - in one line of SNOBOL.

link|flag
vote up 1 vote down

A web-controlled lava lamp, with live webcam. This was 1998, so this wasn't exactly revolutionary, but it was fun.

I emailed the link out, and was near-instantly greeted by a violent flurry of clicks from under my desk; the switch that drove the lamp contained a mechanical relay.

link|flag
vote up 1 vote down

In high school I had to write a Foxpro manual. The assignment was to make us enhance our touch typing skills... I didn't wanted to write that much, so I opened word and wrote a neat VBA script to open a help file, open the index, copy the content of every section and paste it on the current document. After that, remove all the soft carriage returns and apply some formatting.

All I had to do after that was put the header and footer. And wait one week until the due date :-D

link|flag
vote up 1 vote down

This is not me, but I think this kid will go places: The Upside-Down Ternet

link|flag
vote up 1 vote down

Bloons Pop 3 game analyzer. It's not unbeatable, but I can generally get the month's highest "legitimate" score (no protocol or memory hacking) on the first try. It was a serious challenge in interpreting partial data since its only input is a screenshot of the web browser (just like a user has).

I thought about releasing the source except for the move decision logic as a challenge to see if anyone can beat it. :o

Edit: It took about 3 weeks, with 2.5 being tuning the decision algorithm.

link|flag
vote up 1 vote down

I once played a LPmud called Genesis, and in this mud I was a fearsome priest of Takhisis (a really evil queen from the Dragonlance books).

All those priests used to mail really fancy ASCII art letters to each others by mail, and it really was a lot of work to create the same letters. But hey, thats what roleplaying is all about..

Being the lazy person I am, I said to myself.. I can code my own ASCII art editor.. Saves me a whole lot of trouble, and I can reply really fast as a priest in game, with a really fancy mail!

So I coded a crappy Java app with the letter design the priests used:

     ____________________________________________________________
    /'\                                                          \
   |   |                      Letter example                      |
   | \/__________________________________________________________/
   |                                                          |
    \                                                          \ 
     \                                                          \
     |                  Greetings Stackoverflow                 |
     |                                                          |
     |                                                          |
     |   Here is an example letter from my ASCII letter         |
     |   creator of old...                                      |
     |                                                          |
     |                                                          |
     |   Greetings,                                             |
     |                                                          |
     |         Arcturus, the Stackoverflow undergraduate        |
     |                                                          |
      \                                                          \
     _ \                                                          \
    / \ |                                                          |
    \__/__________________________________________________________/

Then it got a bit carried away actually.. I ended up adding 29 other ASCII designs, all which could be used with different headers, bodies, signatures.. you name it..

Here are some of my favorites:

  __
 (`/\
 `=\/\ __...--~~~~~-._   _.-~~~~~--...__
  `=\/\               \ /               \\
   `=\/                V                 \\
   //_\___--~~~~~~-._  |  _.-~~~~~~--...__\\
  //  ) (..----~~~~._\ | /_.~~~~----.....__\\
 ===( INK )==========\\|//====================
 ____\___/___________`---`_____________________________________________
||                                                                     ||
||                           Letter example                            ||
||                  --------------------------------                   ||
||                                                                     ||
||                       Greetings Stackoverflow                       ||
||                                                                     ||
||                                                                     ||
||  Here is an example letter from my ASCII letter creator of old...   ||
||                                                                     ||
||                                                                     ||
||  Greetings,                                                         ||
||                                                                     ||
||              Arcturus, the Stackoverflow undergraduate              ||
||_____________________________________________________________________||


                                                               .---.
                                                              /  .  \
                                                             |\_/|   |
                                                             |   |  /|
  .----------------------------------------------------------------' |
 /  .-.                                                              |
|  /   \                                                             |
| |\_.  |                                           Letter example   |
|\|  | /|                                                            |
| `---' |                                                            |
|       |                   Greetings Stackoverflow                  |
|       |                                                            |
|       |                                                            |
|       |   Here is an example letter from my ASCII letter           |
|       |   creator of old...                                        |
|       |                                                            |
|       |                                                            |
|       |   Greetings,                                               |
|       |                                                            |
|       |          Arcturus, the Stackoverflow undergraduate         |
|       |                                                            |
|       |                                                           /
|       |----------------------------------------------------------'
\       |
 \     /
  `---'



            ^^                   @@@@@@@@@
       ^^       ^^            @@@@@@@@@@@@@@@
                            @@@@@@@@@@@@@@@@@@              ^^
                           @@@@@@@@@@@@@@@@@@@@
 ~~~~ ~~ ~~~~~ ~~~~~~~~ ~~ &&&&&&&&&&&&&&&&&&&& ~~~~~~~ ~~~~~~~~~~~ ~~~
|~         ~~   ~  ~       ~~~~~~~~~~~~~~~~~~~~ ~       ~~     ~~ ~     |
|  ~      ~~      ~~ ~~ ~~  ~~~~~~~~~~~~~ ~~~~  ~     ~~~    ~ ~~~  ~ ~~|
|  ~  ~~     ~         ~      ~~~~~~  ~~ ~~~       ~~ ~ ~~  ~~ ~        |
|~  ~       ~ ~      ~           ~~ ~~~~~~  ~      ~~  ~             ~~ |
|      ~             ~        ~      ~      ~~   ~             ~        |
|                             Letter example                            |
|                                                                       |
|                         Greetings Stackoverflow                       |
|                                                                       |
|                                                                       |
|   Here is an example letter from my ASCII letter creator of old...    |
|                                                                       |
|                                                                       |
|   Greetings,                                                          |
|                                                                       |
|                Arcturus, the Stackoverflow undergraduate              |
|                                                                       |
|             |    |    |                                               |
|            )_)  )_)  )_)                                              |
|           )___))___))___)\                                            |
|          )____)____)_____)\\                                          |
|        _____|____|____|____\\\__                                      |
|    ~   \                   /  ~    ~  ~                 ~    ~        |
|        ~      ~      ~        ~   ~     ~      ~   ~       ~      ~   |
|~     ~     ~      ~     ~      ~      ~      ~    ~      ~       ~    |
~~~~ ~~ ~~~~~ ~~~~~~~~ ~~ ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ ~~~~~~~~~~~ ~~~~~


              (O)
              <M
   o          <M
  /| ......  /:M\------------------------------------------------,,,,,,
(O)[]XXXXXX[]I:K+}==========================================------------>
 -\| ^^^^^^  \:W/------------------------------------------------''''''
|  o          <W                                                 | 
|             <W                                Letter example   |
|             (O)                                                |
|                                                                |
|   Greetings Stackoverflow                                      |
|                                                                |
|                                                                |
|   Here is an example letter from my ASCII letter creator of    |
|   old...                                                       |
|                                                                |
|                                                                |
|   Greetings,                                                   |
|                                                                |
|            Arcturus, the StackOverflow undergraduate           |
|                                                                |
|________________________________________________________________|


                             /   \
 _                   )      ((   ))     (                    _
(@)                 /|\      ))_((     /|\                  (@)
|-|'\              / | \    ( \|/ )   / | \               /'|-|
| | --------------/--|-voV---\`|`/--Vov-|--\----------------| |
| |                    '^`   (o o)  '^`                     | |
| |                           \Y/                           | |
| |                                                         | |
| |                     Letter example                      | |
| |                      -------------                      | |
| |                 Greetings Stackoverflow                 | |
| |                                                         | |
| |                                                         | |
| |   Here is an example letter from my ASCII letter        | |
| |   creator of old...                                     | |
| |                                                         | |
| |                                                         | |
| |   Greetings,                                            | |
| |                                                         | |
| |        Arcturus, the Stackoverflow undergraduate        | |
| |                                                         | |
| |_________________________________________________________| |
|-|'/       l   /\ /          ( (       \ /\   l          `\|-|
(@)         l /   V            \ \       V   \ l            (@)
            l/                 _) )_          \I"



                   _,----,_                      _,----,
             ___,-'     /'  ____________________  `\     `-,___
             |,'       {,-~~-,               ,-~~-,}       `,|
             /       _/',-~~-(\,)         (,/)-~~-,`\_       \
           ,'   ,-,/'{ (     {vv}         {vv}     ) }`\,-,   `,
          , ,-,/      \ \     }{           }{     / /      \,-, ,
          ;/ |         ) }   (^^)         (^^)   { (         | \;
,,,,,,_,-~~-,_,-~~-,_,/ /                         \ \,_,-~~-,_,-~~-,_,,,,,,
''''~-,,-~~-,_,-~~-,_,-'                           `-,_,-~~-,_,-~~-,,-~````
             |                                               |
             |                                               |
             |                Letter example                 |
             |                                               |
             |            Greetings Stackoverflow            |
             |                                               |
             |                                               |
             |   Here is an example letter from my ASCII     |
             |   letter creator of old...                    |
             |                                               |
             |                                               |
             |   Greetings,                                  |
             |                                               |
             |   Arcturus, the Stackoverflow undergraduate   |
             |                                               |
             |_______________________________________________|

Some even had some random elements, so not every letter would look the same:

 ,----------------------------------------------------------,==.
/                                                          /__  \
\                                                          |(_\ /
/                                                          \-`-'
|                      Letter example                      |
{                  Greetings Stackoverflow                 }
\                                                          }
{                                                          /
\   Here is an example letter from my ASCII letter         |
/   creator of old...                                      {
/                                                          /
|                                                          }
\   Greetings,                                             /
{                                                          \
|         Arcturus, the StackOverflow undergraduate        {
|                                                          {____
}                                                          |__( \
\                                                          \    /
 `----------------------------------------------------------`=='

Some people were on to me eventually, so I shared my little application with fellow guild members.. I think they are still using today.. :)

COMMERCIAL WARNING: Genesis was really nice.. you should check it out ;)

link|flag
vote up 1 vote down

Two, actually, in the same vein.

The Data General Nova minicomputer (in 1969) had lights showing the 16 bit address and data on the bus during each clock cycle. This was great for debugging with a single step switch. Normally these lights were on in rather random patterns for each step. When the machine ran full speed, you got a smear in the lights from the analog integration of the digital bits as the incandescent lights tried to switch on and off at 1 Mhz, the machine clock speed.

There were also switches on the front panel, so one could toggle in a boot strap loader program in binary. To get the machine to work, you typically had to toggle in about 10-12 16 bit words, which was enough to read in a bigger program from the paper tape reader, etc. To use the machine, you had to be pretty good at toggling in these boot programs. When truly bored, we toggled in small programs to make the machine do odd things (can you believe I got paid to do this? Boy, was 1970 fun). The contest that kept our wasted attention was toggling in programs whose sole purpose was to zero out memory completely, including the boot program toggled in. If you succeeded, the 0 words everywhere was interpreted as JMP 0, and all the lights went out, which made the machine look like it had died. Nobody won the contest, but I succeeded in zeroing out all but one bit, leaving just one bit in the data register display smeared on. There just had to be a way to get that last bit off, I thought.

My real job was building a 16 user timesharing system for the machine. That's a whole story in itself that might qualify for this contest because we only had 8k words of memory and a 200Kb hard disk to swap to, but I'll let this pass. The timesharing system I built, when running, would produce a smear in the address and data lights on the front panel. You could tell what the OS was doing by the nature of the smear: this smear, idling in scheduler, that smear, loading a program, changing smear, doing work. Of course, as you got further away from the machine it was harder to tell what the smear was.

The zero-all-of-memory bootstrap contests suggested it might be possible to turn out all the lights, and in a 2 am burst of madness, I implemented this idea for when the scheduler was idle. (The way this worked, was when idle, the scheduler parked a 0 word in location 0 and jumped to location zero. A 0 word conventiently turned out be a "JMP TO 0" instruction. Consequently, the address and data lights all contained zero, so all the front panel lights went out. Interrupts with work got it out of this state). Having gotten it to work at 5 am I went home. Didn't tell anybody what I had done (yawn!)

I recieved a panicked phone call from the computing facility operator at 10 am the next day (the reward of the devils' work, so much for sleeping). He was frantic, because the machine lights were all ought, but the system appeared to be working. He thought he was going crazy.

I explained the trick, and he was greatly relieved.

I modified the code to toggle the carry bit every one second, so people could see some life.

I did get another call from the operator, who understood the basic trick, but I never did tell him how I got the carry bit to blink. He could never figure out how that JMP 0 instruction could do that. It didn't; I used the clock interrupt. Cheaters prosper.

But it was thereafter easy to tell when the machine was idle. The front panel blanked, with a blinking carry bit.

Too bad we have spend most of our work time doing more constructive things. That was a fun job for a geek.

link|flag
vote up 1 vote down

Quick 'n dirty audio delay / feedback effect on a Sun workstation, mildly amusing practical joke as it takes a while for colleagues to work out where the echo is coming from...

cat < /dev/audio > /dev/audio
link|flag
vote up 1 vote down

To relieve boredom at work: wrote an instance message chat-server (many-to-many): the main feature being that it used Microsoft Speech SDK to speak the messages out loud.

It was dead fun; because you leave yourself logged in and listen to music on headphones as normal: then randomly throughout the day, you can trade swear words and insults with colleagues - all spoken faithly in individually parameterized voices...

link|flag
vote up 1 vote down

I wrote a program that deleted the binary it was run from, having first overwritten it with 0x55's and 0xAA's to make sure it couldn't be "undeleted".

And I wrote a Brainfuck compiler in 99 bytes. That is, the binary was a 99-byte MS-DOS executable. Well I guess that's not as weird after all.

link|flag
vote up 0 vote down

Brain simulator.

link|flag
show 1 more comment
vote up 0 vote down

Mouse emulator for Psion Series 3a

link|flag
vote up 0 vote down

An old experimental MS-DOS polymorphic virus that infected COM and EXE files in assembly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.