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

83 Answers

1 2 3 next
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 3 vote down

My weirdest program ever made was likely a Windows PE (.exe) -> Linux ELF converter, as part of the Alky project. A big chunk of Python code that would convert the exe into a .o and, through some ld magic, would end up producing a binary that would initialize all of the proper libraries to do the Win32 layer.

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

We are in the custom integration business. We had a customer ask us to put a sensor on the powder room toilet. When someone flushed the toilet during a party a flush sound is played through the whole home audio system. It is a novelty but it made the customer happy.

link|flag
10  
I don't even know where to begin with this...someone actually PAID for this to happen? – Thomas Owens Sep 23 '08 at 18:37
3  
if only they broadcasted all the other sounds too – boon Jul 1 at 4:38
vote up 10 vote down

Right now I'm writing software to track how many times people wash their hands in a hospital setting. Big Brother is here.

link|flag
show 4 more comments
vote up 0 vote down

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

link|flag
vote up 13 vote down

For one of my Computer Science masters project, I've made a CPU scheduler simulator ...in Microsoft Excel 97.

  • I've got job algorithms implemented.
  • You can simulate one second/tick intervals
  • Currently in used in a school somewhere (one of my classmates teaches and used my code to demonstrate CPU scheduling)
link|flag
show 3 more comments
vote up 4 vote down

I wrote a DNS server that used SOCK_RAW sockets to issue responses to queries, because I wanted to run two DNS servers, one for privileged users and one for unprivileged users, based on rules in the firewall.

Doing an iptables -j DNAT --to-port $highport allowed the secondary DNS server to receive the UDP DNS query packets, but when the response was issued, because of the way things worked, the response would come from the highport instead of the domain port that it was originally sent to, and the querying host would discard it.

As a result, I had to take requests via a normal UDP socket, construct the packets, do manual ARP requests and have an internal representation of the routing table, in order to send the response to the correct place from the correct port and to the correct port.

It was honestly the nastiest hack I've ever written.

link|flag
vote up 8 vote down

I wrote a duplicate file detector in Python using only lambda, no def, to prove it could be done and still be somewhat comprehensible. I'll leave it up to the reader to decide whether I succeeded:

import sys
import os
import hashlib

check_path = (lambda filepath, hashes, p = sys.stdout.write:
  (lambda hash = hashlib.sha1 (file (filepath).read ()).hexdigest ():
    ((hash in hashes) and (p ("DUPLICATE FILE\n"
                              "   %s\n"
                              "of %s\n" % (filepath, hashes[hash])))
     or hashes.setdefault (hash, filepath)))())

scan = (lambda dirpath, hashes = {}:
  map (lambda (root, dirs, files):
    map (lambda filename: check_path (os.path.join (root, filename), hashes), files), os.walk (dirpath)))

((len (sys.argv) > 1) and scan (sys.argv[1]))


I've also written a working GUI calculator similar to calc.exe with a main that consisted only of:

int main () { return 0; }
link|flag
6  
That's some awfully nice LISP you have there ;) – Cody Brocious Sep 23 '08 at 3:36
show 1 more comment
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 18 vote down

Microsoft Excel Minesweeper

I was being under-utilized at a temporary job I had during a summer several years ago. Unfortunately, they didn't have a minesweeper game on my workstation. I made one from an Excel spreadsheet and VBA. Because it was work-product, I can't post the code publicly- it remains the property of my former employer.

I cannot foresee any circumstance that would compel me to do that again.

link|flag
2  
Under-utilized? No internet access? It sounds like they tossed you in a hole and left you for dead. (Unless it wasn't a programming job. In either case, no internet is no fun.) – Cristián Romo Apr 13 at 23:19
show 2 more comments
vote up 12 vote down

Our receptionists would send out the Daily Birthdays email every day, an email to the entire company to announce who has their birthday that day (including weekends on Friday's email). This made everyone feel a little loved by this human touch.

They got a little tired of this, and since everyone's birthday is in the staff HR database already, it became my task to implement this in code. My nickname for it? Automated Love.

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

A friend and I wrote a worm called "traveller" written in shell script on an Apollo Domain network. It was harmless, but it would stamp a "passport" file whenever it arrived at a particular machine. We wanted to see how often it would zip around our small network (about 30 nodes).

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 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 4 vote down

I took the phonetic model from the Festival text to speech engine (when it was still in Scheme, SIOD) and turned the tree inside-out to produce a dictionary of homophones. The intent was to use it as a Phonetic Human Interactive Proof to help protect data on a web-site from being scraped. The normal site had an image based HIP (CAPTCHA), and the mirror-site that compiled with the American's With Disabilities act used the phonetic HIP.

link|flag
vote up 0 vote down

Someone very close to me wrote a Sudoku game in BASIC. Nice challenge.

link|flag
vote up 7 vote down

'The Wardrobe'. A database for clothing. Depending on wheather, mood, occassion etc it outputs the perfect combination for the day.

link|flag
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 6 vote down

I decided to use the Y-combinator pattern to reduce factorial in JavaScript down to the Peano axioms. That is I wrote factorial as a recursive function in terms of multiplication which was written recursively in terms of addition which was written recursively in terms of the functions +1 and -1. For some reason I got too much recursion when calculationg 8!. Pity.

The code is kind of long so I'll just provide a link.

Oddly enough my attempts at nice indentation don't seem to have made it very readable. Since I'm using a functional technique, maybe it would be better translated into Lisp?

Again the code is long, so I'll just provide another link.

Hmmm. People might not prefer it, but MIT Lisp proved it was better at recursion than JavaScript. It handled 8! successfully and failed at 9!. Should we consider this proof that Scheme is a better language than JavaScript? Or should we prefer Ruby for looking at the Ruby translation and deciding that no program could legitimately have that many braces open at once?

Obviously this is not a useful factorial algorithm. In the factorial thread I posted a far more efficient version of factorial.

link|flag
show 1 more comment
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 5 vote down

I'm into home automation, mostly using X10 modules. I'm also into theater lighting, sound, and special effects, so Halloween is a big deal to me.

One year I put it all together and ran my Halloween special effects from my computer. Not only did I have certain lights get brighter and dimmer at random, but I wired a relay into the switch of my fog machine, and had my computer randomly trigger the fog machine. But the fog machine would spittle if you let it on for too long without firing, so it would also have hard minimum and maximum cycle times. Best of all, I had a motion sensor on the stairs that would trigger a pair of strobe lights.

Second best is, before I built my MythTV box, I had an infrared transceiver on my server that could send channel commands to the cable box, and start/stop/record commands to two VCRs. I had my recording schedule in my crontab file, and at the correct times, the program I wrote would send the codes to turn on the cable box, change to the right channel, turn on one of the VCRs (load balanced), and start recording. At the end of the show it would shut everything down again.

link|flag
show 1 more comment
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 11 vote down

I made a llitte php spcrit taht mix wodrs folliwong the legned abuot taht invtietgasion taht seatts that if you scrmable the txet idsine a wrod, levinag the fsirt and the last ltteer unthocued you can stlil read it.

They siad that is bscauee we raed wlhoe wrdos, not ltteer by lteter.

link|flag
2  
I did the same thing but as an Outlook macro. I'd annoy my friends by running it on email before sending it to them. – Steve Hiner Nov 3 '08 at 20:56
3  
I did this too as my first programming project, but in Java. I made a whole bunch of methods to manipulate strings that were already in the API (like split) because I didn't know that. I'm one of those people on The Daily WTF who reinvents the wheel over and over. The code was awful. – JulianR Apr 13 at 22:29
show 3 more comments
vote up 20 vote down

My father was in radio communications on submarines in the British Royal Navy when he was younger. He's in his mid 60s now, but about 10 years ago he came across a defense job opening with ASIO (the Australian spy agency) keeping tabs on the radio chatter coming out of Indonesia. This was pre-Bali Bombing, so maybe ASIO knew something was going on back then.

I wrote a Pascal application that converted text strings into Morse code and played it out the PC speaker so he could check his Morse abilities. He could also use the spacebar as an input to "send" messages.

He didn't end up applying for the job, but he got a chance to show off his skills to us kids. He was proud that I could program the computer to talk Morse; I was proud of him for talking Morse without a computer.

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 0 vote down

Run-time executable decryptor. Some functions would be encrypted (using a strong algorithm, such as CAST5) within the executable itself, and the decryption routine would, at run-time, decrypt single instructions and single-step them. The decryption key could be supplied externally from the program.

link|flag
vote up 3 vote down

When I was in seventh grade I played around with VB 6.0. I decided I would make a "cheese database" which was a bunch of forms with cheese images, descriptions, and wine paring. I even had an easter egg in the app which played a sound of Homer saying "Mmmm... cheese".

link|flag
vote up 16 vote down

I once wrote an assembly interpreter in python for a fake assembly language our teacher was pestering us with. He would give us these ultra long, ultra complicated code listings and dare us to find out what it produced and what the "machine" looked like after each instruction. Then he would brag about how we were all too stupid to understand the machine and that Java was rotting our minds (it was!)... But I showed up with an Excel sheet with the machine state after executing each instruction per row :)

link|flag
1  
+1 for taking the teacher on. Sometimes, they just deserve it. – ojrac Apr 13 at 22:34
show 1 more comment
vote up 12 vote down

I built an online poker bot in C++ and it made a tidy profit, and only took 3 years to build! Woot!

link|flag
show 3 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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