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

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

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

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

'Random Artist'

This was an automated VB application that randomly drew shapes on the screen, simulating art.

Wasn't much, but I loved it!

link|flag
vote up 0 vote down

A program for a graphical calculator that displays HAM moving from left to right, and CHEESE moving from right to left. When ever you stopped it, it took the position values, and worked out a vector product of the locations.

Found this whilst looking through my old stuff from school recently...

link|flag
vote up 0 vote down

A protection scheme where the password was actual a string of bytes that got casted to a function pointer that would allow access. If you pasted the correct string of bytes, the program would function as normal. If not, it would crash (if you were lucky!)

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

A long while back(10ish years), I was working on a game, and I wanted it to have unique character names in it.

So I created a simple name creation program in VB6. You chose the length of the name, and it would make one up from random letters. It did have some rules though. Like it wouldn't make a name with the same 3 characters in a row.

It also had options that could be set. You could tell it which letter combinations to not accept.

link|flag
vote up 0 vote down

Sudoku solver. both in excel and in C#

link|flag
vote up 0 vote down

After the canteen services were finally closed and replaced with expensive vending machines, one of my co-workers started running a tuck-shop. As this was around the .com bubble (circa 2001-2002) we nick-named it "Craig's Tuck Shop .com"

During a week's break visiting my Brother in London I knocked up a simple ordering and sweetie suggestion and voting website in PHP using flat-files, and registered the domain www.CraigsTuckShop.com

Alas it is no more ;o)

Craig - if you're on here, "happy days, man" :o)

link|flag
vote up 0 vote down

Scroll text intro with bouncing balls and "music" with Awk on a VT300 terminal.

Back in 1994, I wrote an Awk script that would take a text file as input and display a scroll text intro. The input text would be scrolled at the bottom of the screen with a large font. I had several "balls" of different sizes ("O", "o", "." characters) bounce around the screen, to the beat of "beep beep beep-beep-beep". All this was through the use of the VT300 control codes. At times when I wasn't killing time with stupid things like this, I was busy playing frisbee. College was fun.

link|flag
vote up 0 vote down

I once wrote a little "name generator" program in Microsoft Basic for the Dragon computer which randomly put together (theoretically) pronouncable syllables, thus creating names. Thankfully, it was put out of use long before my first-born arrived :-)

link|flag
vote up 0 vote down

I wrote a y-combinator in python... it was because of a lack of a scheme implementation while I was doing my homework. It looks like this:

makerec = lambda p: \
          (lambda mkfact: mkfact(mkfact)) \
          (lambda f: \
           p\
           (lambda arg: (f(f))(arg)))

fact = makerec(lambda f: lambda n: (n==0) and 1 or (n * f(n - 1)))

(Of course you can use it for things besides fact).

link|flag
vote up 0 vote down

Back in the mid-80s I wrote a very basic C++ interpreter on the Commodore 64 in Commodore Basic. If I recall, it would take as input some very limited C++ code and then step through the code. Not sure why I did it and it wasn't very useful, but interesting none-the-less.

link|flag
vote up 0 vote down

I used XSLT to interpret a stylesheet language.

I'll break that one up a bit.

  • I defined with a document model inspired from docbook, then started implementing XSLT stylesheets to render it to HTML and LaTeX.
  • Then I found I wanted a template language too, so I could have separate web page templates in which to inject my XSLT-generated HTML.
  • So I designed a simple template language with injection points for predefined values.
  • Then I found that I wanted to have factorized and reusable widgets to attach to the injection points. Such as fancy table of contents, indices, outliner-style site maps, etc.
  • So I designed a widget language that was interpreted in XSLT to generate content to inject into the templates.

I learned a few things from this venture, but one most of all: young enthusiastic students in software engineering have almost unlimited hacking energy. What they need most of all, and too often lack, is an experienced mentor to help them make good use of it.

link|flag
vote up 0 vote down

A program that did HTTP GET in Dell Outlet page and sought cheap notebooks!

link|flag
vote up 0 vote down

I guess for me it would be a little "game" I made called "Be The Wumpus." It's pushing things to call this a game, it's really just a goofy liitle project I did for fun. The game has no text or graphics, only audio. You're a blind, cave dwelling wumpus. By means of sound alone, (and, ok, a little xbox 360 gamepad rumble effect as well) you seek out and devour the unlucky wumpus hunters who fall into your lair. bethewumpus.sourceforge.net

link|flag
vote up 0 vote down

Back in the mid-80's I was doing a school project for an algorithms class, and found myself wanting three different sorting algorithms to emphericaly test and plot the runtimes of. Given my penchant for doing things the hard way, I wanted each to have a different time behavior.

O(n^2) and O(nlgn) are easy (bubble sort and pick your nlgn sort), but I was totally stuck for a third. I didn't want to just write the program to do busy work, I wanted an actual productive sorting algorithm that was worse than O(n^2).

The idea I finally hit on was writing an algorithm that systematicaly goes through every permutation of the ordering of the input ( O(n!) IIRC), then checks it to see if it is sorted. I believe I called it "Permutesort" in the paper. I figured it is probably the worst possible algorithm for sorting (that doesn't do non-sorting work), but as an undergrad I had no interest in doing the math to prove that.

I turns out these days someone has done the math with a related concept (random sorting) and proven it. They now call that algorithm bogosort. Bogosort isn't systematic though, so I still think my horrible sorting algorithm is far superior. :-)

link|flag
vote up 0 vote down

A few years ago I wrote an Applescript that made QuarkXpress construct a Photo Mosaic (an image made of tiny images).

link|flag
vote up 0 vote down

In one of my fits of "what project shall I do next?", I once decided to clone the major applications in Microsoft Windows... wait for it.... 3.1. Yes, that included a fully working calc, calendar, clock, rolodex, notepad, etc clone army.

I have to admit: most did look pretty similar/identical to their predecessors.

link|flag
vote up 0 vote down
(defun bp-folgers-crystalize ()
  "secretly replaces the meta-sytactic variable foo with folgers_crystals"
  (interactive)
  (let (
    (i (point)))
    (beginning-of-buffer)
    (while (search-forward "foo" nil t)
      (replace-match "folgers_crystals" nil t))
    (goto-char i)))

elisp

link|flag
vote up 0 vote down

Wrote few TSR programmes in C for DOS. One of them drops character while using DOS apps.

link|flag
vote up 0 vote down

On behalf of for , I wrote a VBA program; for users to enter text for teletype (yes, clackety-clack-buzz-buzz-teletype) format, and then stored those messages in an Oracle database (which was a backend for a different app, that was being used for the actual sending of the teletype messages to the printout machines). The VBA app also made a copy of the teletype message to an MS Word document, (formatted to a rigorous military spec), and could also parse these documents to read them back; part of the structure of the document went to Oracle, to feed the management app (ran on PPC AIX). The Word document also went to a document management system, managed by a client dll on the Windows side.

Anyway, the teletype format was pretty ancient, and was limited to so many columns and rows, and certain characters were control characters, so you can imagine how awful it was, using just the standard Microsoft VBA rich-text-box control, where the user can enter just about anything, and you can't do a damn thing to stop them or validate-out their control characters (the operators were used to entering them literally, on the physical teletype system - old habits die hard), or enforce any kind of characters-per-row limit (depending on what scaled-font they're using).

So I finally solved all those issues, and halfway through the dd-250 process, the agency decides they want to upgrade to the "new" teletype data standard (which is actually like 30 years old, at that point, as opposed to the 50 year old spec they originally had me coding to).

Oh yeah, and they wanted to be able to email these teletype messages too. Oh yeah - none of these systems were allowed to be connected to any kind of external network for email connectivity anyway. (the ONLY external connection was the outbound serial link to the teletype).

Can you say; "contract management?"

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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