What is the strangest/weirdest program you've ever made? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T01:49:29Z http://stackoverflow.com/feeds/question/118919 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made 23 What is the strangest/weirdest program you've ever made? MrValdez 2008-09-23T03:21:25Z 2009-11-21T00:22:26Z <p>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.</p> <p>But sometimes, a programmer builds a program that is too weird even by their insane standards.</p> <p>What program have you created that is weird and strange?</p> <p>(One program per answer please)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118927#118927 0 Answer by MusiGenesis for What is the strangest/weirdest program you've ever made? MusiGenesis 2008-09-23T03:23:02Z 2008-09-23T03:23:02Z <p>Brain simulator.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118932#118932 0 Answer by Cade Roux for What is the strangest/weirdest program you've ever made? Cade Roux 2008-09-23T03:24:43Z 2008-09-23T03:24:43Z <p>Mouse emulator for Psion Series 3a</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118934#118934 3 Answer by Cody Brocious for What is the strangest/weirdest program you've ever made? Cody Brocious 2008-09-23T03:24:52Z 2008-09-23T03:24:52Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118936#118936 57 Answer by mcotton for What is the strangest/weirdest program you've ever made? mcotton 2008-09-23T03:25:23Z 2008-09-23T03:25:23Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118940#118940 10 Answer by JasonS for What is the strangest/weirdest program you've ever made? JasonS 2008-09-23T03:26:39Z 2008-09-23T03:26:39Z <p>Right now I'm writing software to track how many times people wash their hands in a hospital setting. Big Brother is here.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118941#118941 0 Answer by Arthur Vanderbilt for What is the strangest/weirdest program you've ever made? Arthur Vanderbilt 2008-09-23T03:26:40Z 2008-09-23T03:26:40Z <p>An old experimental MS-DOS polymorphic virus that infected COM and EXE files in assembly.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118944#118944 13 Answer by MrValdez for What is the strangest/weirdest program you've ever made? MrValdez 2008-09-23T03:27:19Z 2008-09-23T03:27:19Z <p>For one of my Computer Science masters project, I've made a CPU scheduler simulator ...in Microsoft Excel 97.</p> <ul> <li>I've got job algorithms implemented.</li> <li>You can simulate one second/tick intervals</li> <li>Currently in used in a school somewhere (one of my classmates teaches and used my code to demonstrate CPU scheduling)</li> </ul> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118957#118957 4 Answer by Jerub for What is the strangest/weirdest program you've ever made? Jerub 2008-09-23T03:31:41Z 2008-09-23T03:31:41Z <p>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.</p> <p>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.</p> <p>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.</p> <p>It was honestly the nastiest hack I've ever written.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118963#118963 7 Answer by John Millikin for What is the strangest/weirdest program you've ever made? John Millikin 2008-09-23T03:33:19Z 2008-09-23T03:33:19Z <p>I wrote a duplicate file detector in Python using only <code>lambda</code>, no <code>def</code>, to prove it could be done and still be somewhat comprehensible. I'll leave it up to the reader to decide whether I succeeded:</p> <pre><code>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) &gt; 1) and scan (sys.argv[1])) </code></pre> <p><hr /></p> <p>I've also written a working GUI calculator similar to calc.exe with a main that consisted only of:</p> <pre><code>int main () { return 0; } </code></pre> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118986#118986 1 Answer by fooledbyprimes for What is the strangest/weirdest program you've ever made? fooledbyprimes 2008-09-23T03:42:24Z 2008-09-23T03:42:24Z <p>The shortest SQL code which does a word wrap on "Hello World" is what I wrote and here it is:</p> <p>select 'World' as Hello</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119028#119028 18 Answer by schwerwolf for What is the strangest/weirdest program you've ever made? schwerwolf 2008-09-23T03:57:50Z 2008-09-23T03:57:50Z <p><strong>Microsoft Excel Minesweeper</strong></p> <p>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.</p> <p>I cannot foresee any circumstance that would compel me to do that again.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119037#119037 12 Answer by Mark Glorie for What is the strangest/weirdest program you've ever made? Mark Glorie 2008-09-23T03:59:59Z 2008-09-23T03:59:59Z <p>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. </p> <p>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? <strong>Automated Love</strong>.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119043#119043 0 Answer by Ferruccio for What is the strangest/weirdest program you've ever made? Ferruccio 2008-09-23T04:00:56Z 2008-09-23T04:00:56Z <p>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).</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119050#119050 1 Answer by Marcel Levy for What is the strangest/weirdest program you've ever made? Marcel Levy 2008-09-23T04:02:53Z 2008-09-23T04:02:53Z <p>I used <a href="http://search.cpan.org/dist/Inline-Java/Java.pod" rel="nofollow">Inline::Java</a> to help test a vendor's application server. Even though it was supposed to emit plain XML over HTTP, it did so using a <code>DataOutputStream</code>, 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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119061#119061 2 Answer by EnderMB for What is the strangest/weirdest program you've ever made? EnderMB 2008-09-23T04:06:37Z 2009-06-17T21:53:54Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119074#119074 4 Answer by Kyle Burton for What is the strangest/weirdest program you've ever made? Kyle Burton 2008-09-23T04:09:46Z 2008-09-23T04:09:46Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119078#119078 0 Answer by Pascal Paradis for What is the strangest/weirdest program you've ever made? Pascal Paradis 2008-09-23T04:10:44Z 2008-09-23T04:10:44Z <p>Someone very close to me wrote a Sudoku game in BASIC. Nice challenge. </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119094#119094 7 Answer by Jacqueline for What is the strangest/weirdest program you've ever made? Jacqueline 2008-09-23T04:14:09Z 2008-09-23T04:14:09Z <p>'The Wardrobe'. A database for clothing. Depending on wheather, mood, occassion etc it outputs the perfect combination for the day.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119147#119147 2 Answer by BCS for What is the strangest/weirdest program you've ever made? BCS 2008-09-23T04:32:08Z 2008-09-23T04:32:08Z <p>I did a calculator that had no conditional code. Everything was done with goto's using array lookups into tables of label pointers.</p> <p><a href="http://omg.worsethanfailure.com/" rel="nofollow">OTOH</a></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119151#119151 6 Answer by bentilly for What is the strangest/weirdest program you've ever made? bentilly 2008-09-23T04:34:34Z 2008-09-23T04:34:34Z <p>I decided to use the <a href="http://stackoverflow.com/questions/97637/good-explanation-of-combinators-for-non-mathematicians">Y-combinator</a> 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.</p> <p>The code is kind of long so I'll just provide a <a href="http://z.iwethey.org/forums/render/content/show?contentid=196923" rel="nofollow">link</a>.</p> <p>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?</p> <p>Again the code is long, so I'll just provide another <a href="http://z.iwethey.org/forums/render/content/show?contentid=197108" rel="nofollow">link</a>.</p> <p>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?</p> <p>Obviously this is not a useful factorial algorithm. In the factorial thread I posted a <a href="http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages#90589">far more efficient</a> version of factorial.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119155#119155 1 Answer by BCS for What is the strangest/weirdest program you've ever made? BCS 2008-09-23T04:35:21Z 2008-09-23T04:35:21Z <p>Template VooDoo to build an arbitrary precision int type that used asm add &amp; 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.</p> <p><a href="http://www.dsource.org/projects/scrapple/browser/trunk/bignum" rel="nofollow">source</a></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119275#119275 5 Answer by dj_segfault for What is the strangest/weirdest program you've ever made? dj_segfault 2008-09-23T05:24:31Z 2008-09-23T05:24:31Z <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119285#119285 1 Answer by levhita for What is the strangest/weirdest program you've ever made? levhita 2008-09-23T05:31:27Z 2008-09-23T05:31:27Z <p><a href="http://nospam.levhita.net" rel="nofollow">No Spam</a>, 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&amp;paste the whole email and the system adds all emails addresses into a <a href="http://nospam.levhita.net/list.php" rel="nofollow">public list</a> 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.</p> <p>After that no one send me chain email, and now the list 335,386 emails :D. </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119290#119290 11 Answer by levhita for What is the strangest/weirdest program you've ever made? levhita 2008-09-23T05:37:12Z 2008-09-23T05:37:12Z <p>I made <a href="http://labs.levhita.net/scramble.php" rel="nofollow">a llitte php spcrit</a> 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. </p> <p>They siad that is bscauee we raed wlhoe wrdos, not ltteer by lteter. </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119311#119311 20 Answer by mlambie for What is the strangest/weirdest program you've ever made? mlambie 2008-09-23T05:51:36Z 2008-09-23T05:51:36Z <p>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.</p> <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119322#119322 1 Answer by Richie_W for What is the strangest/weirdest program you've ever made? Richie_W 2008-09-23T05:56:19Z 2008-09-23T05:56:19Z <p>Final year CS project:</p> <p>"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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119381#119381 0 Answer by zvrba for What is the strangest/weirdest program you've ever made? zvrba 2008-09-23T06:27:18Z 2008-09-23T06:27:18Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119417#119417 3 Answer by EliThompson for What is the strangest/weirdest program you've ever made? EliThompson 2008-09-23T06:37:44Z 2008-09-23T06:37:44Z <p>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".</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119445#119445 15 Answer by Daren Thomas for What is the strangest/weirdest program you've ever made? Daren Thomas 2008-09-23T06:47:14Z 2008-09-23T06:47:14Z <p>I once wrote an <strong>assembly interpreter in python</strong> 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 :)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119447#119447 12 Answer by Anonymous for What is the strangest/weirdest program you've ever made? Anonymous 2008-09-23T06:48:34Z 2008-09-23T06:48:34Z <p>I built an <a href="http://www.codingthewheel.com/archives/how-i-built-a-working-poker-bot" rel="nofollow">online poker bot</a> in C++ and it made a tidy profit, and only took 3 years to build! Woot!</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119448#119448 1 Answer by gabr for What is the strangest/weirdest program you've ever made? gabr 2008-09-23T06:48:35Z 2008-09-23T06:48:35Z <p>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.</p> <p>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!).</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119787#119787 39 Answer by Wedge for What is the strangest/weirdest program you've ever made? Wedge 2008-09-23T08:15:16Z 2008-09-23T08:15:16Z <p>I once made a perl script to insert ascii art into other people's web server logs.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/120253#120253 4 Answer by acarien for What is the strangest/weirdest program you've ever made? acarien 2008-09-23T10:36:08Z 2008-09-23T10:36:08Z <p>A C interpreter in Prolog (it handled a subset of C (with memory management)).</p> <p>A simple web browser in Prolog.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/120292#120292 5 Answer by RAGNO for What is the strangest/weirdest program you've ever made? RAGNO 2008-09-23T10:48:29Z 2008-09-23T10:48:29Z <p>A 'Turkey Management System' <BR> C++ , Motif Script GUI <BR> Controlled the turkey feeding rota's and grooming data for a turkey farm.<BR>It used previous weeks data to modify yield calculations etc.....and i did it for fun...no customer....<br>must have had turkey on the brain, or bird flu?!</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/120297#120297 7 Answer by epatel for What is the strangest/weirdest program you've ever made? epatel 2008-09-23T10:50:17Z 2009-06-17T21:51:15Z <p>I once put an emulator of a <a href="http://oldcomputers.net/jupiter-ace.html" rel="nofollow">Jupiter ACE</a> in a <a href="http://en.wikipedia.org/wiki/Cave%5FAutomatic%5FVirtual%5FEnvironment" rel="nofollow">CAVE</a> with 4 sides. The emulator was interfaced through a 3D model of the computer and a TV set and one could type on the keys to ie load a game.</p> <p>This was late 1997 and the setup was a SGI rack IR Onyx with 4 barco projectors and was priced to almost 2 million USD...and on this I emulated an "outsider" home computer from the early 80'th which had a price of 150 USD.</p> <p>My collegues shook their heads and I knew then that I nailed it :)</p> <p>A windows version is available <a href="http://hem.passagen.se/tiletech/vace3d.zip" rel="nofollow">here</a></p> <p><img src="http://hem.passagen.se/tiletech/images/vace.gif" alt="alt text" /></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/120413#120413 0 Answer by Wild Thing for What is the strangest/weirdest program you've ever made? Wild Thing 2008-09-23T11:29:30Z 2008-09-23T11:29:30Z <p><strong>'Random Artist'</strong></p> <p>This was an automated VB application that randomly drew shapes on the screen, simulating art.</p> <p>Wasn't much, but I loved it!</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/120472#120472 0 Answer by Rich Bradshaw for What is the strangest/weirdest program you've ever made? Rich Bradshaw 2008-09-23T11:40:12Z 2008-09-23T11:40:12Z <p>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.</p> <p>Found this whilst looking through my old stuff from school recently...</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/122643#122643 66 Answer by bentilly for What is the strangest/weirdest program you've ever made? bentilly 2008-09-23T18:01:17Z 2008-09-23T18:01:17Z <p>This one wasn't me, but it was my friend Scott Anderson. He had a problem. He had 7 cats, who all thought it great fun to climb the Christmas tree. Which destroyed the tree. He taught them not to do it when he was around, but he was generally asleep at 2 AM so that didn't protect the key.</p> <p>He therefore bought a motion sensor and (after some experimentation) wrote a program so that when it sensed motion it would run the vacuum cleaner for 30 seconds. After a week of random, "WHIRR!" "Mrow!" and then a mad cat dash, often resulting in thumps of collisions, the cats learned that the Christmas tree was <strong>not</strong> to be trifled with.</p> <p>Bonus points for when his wife forgot the system was there and was caught trying to sneak presents under the tree!</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/122851#122851 10 Answer by epatel for What is the strangest/weirdest program you've ever made? epatel 2008-09-23T18:31:31Z 2008-09-23T18:31:31Z <p>Oh yes, forgot to mention the <a href="http://memention.com/js/" rel="nofollow">Dancing Steve Jobs</a> that can be run in iTunes as an visualizer. Some ideas just have to be realized :)</p> <p><img src="http://memention.com/js/js.gif"></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/122875#122875 0 Answer by ilitirit for What is the strangest/weirdest program you've ever made? ilitirit 2008-09-23T18:35:04Z 2008-09-23T18:35:04Z <p>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!)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/122943#122943 0 Answer by Echo for What is the strangest/weirdest program you've ever made? Echo 2008-09-23T18:43:44Z 2008-09-23T18:43:44Z <p>A long while back(10ish years), I was working on a game, and I wanted it to have unique character names in it.</p> <p>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. </p> <p>It also had options that could be set. You could tell it which letter combinations to not accept. </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/141831#141831 1 Answer by Joe Lencioni for What is the strangest/weirdest program you've ever made? Joe Lencioni 2008-09-26T20:39:02Z 2008-10-06T17:12:34Z <p>I wrote a program in Scheme that translates normal English text into <a href="http://en.wikipedia.org/wiki/Language_game#List_of_common_language_games" rel="nofollow">egg language</a>. I just put it up <a href="http://code.google.com/p/egglanguagetranslator/" rel="nofollow">on Google Code</a>.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/141870#141870 4 Answer by joeld42 for What is the strangest/weirdest program you've ever made? joeld42 2008-09-26T20:46:09Z 2008-09-26T20:46:09Z <p>My most recent weird project: A word processor that threatens to destroy what you've written.</p> <p><a href="http://www.vickijoel.org/write-attack" rel="nofollow" title="Write Attack!">Write Attack!</a></p> <p>It's for <a href="http://www.nanowrimo.org" rel="nofollow" title="NaNoWriMo">NaNoWrimo 2008</a>.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/141889#141889 0 Answer by Kevin for What is the strangest/weirdest program you've ever made? Kevin 2008-09-26T20:49:59Z 2008-09-26T20:49:59Z <p>Sudoku solver. both in excel and in C#</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/144715#144715 2 Answer by Peter K. for What is the strangest/weirdest program you've ever made? Peter K. 2008-09-27T23:19:24Z 2008-09-27T23:19:24Z <p>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.</p> <p>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.</p> <p>Thankfully, the deputy was amused. ;-)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/166308#166308 0 Answer by Andrew for What is the strangest/weirdest program you've ever made? Andrew 2008-10-03T10:47:35Z 2008-10-03T10:47:35Z <p>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"</p> <p>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 <a href="http://www.CraigsTuckShop.com" rel="nofollow">www.CraigsTuckShop.com</a></p> <p>Alas it is no more ;o)</p> <p>Craig - if you're on here, "happy days, man" :o)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/166352#166352 1 Answer by pezi_pink_squirrel for What is the strangest/weirdest program you've ever made? pezi_pink_squirrel 2008-10-03T11:06:00Z 2008-10-03T11:06:00Z <p>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 :) </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/175249#175249 4 Answer by Dillie-O for What is the strangest/weirdest program you've ever made? Dillie-O 2008-10-06T17:15:23Z 2008-10-06T17:15:23Z <p>Not too intense on the programming angle, but I setup an RSS feed for the coffee machine in our building so that folks could make a quick post when they started up a fresh pot. We were spread out enough that I thought having a little notifier would be handy, without coding from scratch, but everybody looked at me a little funny 8^D</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/175339#175339 0 Answer by Ates Goral for What is the strangest/weirdest program you've ever made? Ates Goral 2008-10-06T17:39:36Z 2008-10-06T17:39:36Z <p>Scroll text intro with bouncing balls and "music" with Awk on a VT300 terminal.</p> <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211165#211165 0 Answer by Ola Eldøy for What is the strangest/weirdest program you've ever made? Ola Eldøy 2008-10-17T05:33:19Z 2008-10-17T05:33:19Z <p>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 :-)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211170#211170 3 Answer by Ola Eldøy for What is the strangest/weirdest program you've ever made? Ola Eldøy 2008-10-17T05:39:52Z 2008-10-17T05:39:52Z <p>In order to get out of bed in the morning, I wrote a wake-up program which produced endless beep sounds. The pitch for each beep was random, and there were 5 beeps every second. The sound was extremely unpleasant, and with the volume turned sufficiently up, it effectively achieved the desired result - a shocked, but nonetheless awake version of myself.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211179#211179 1 Answer by Jack for What is the strangest/weirdest program you've ever made? Jack 2008-10-17T05:44:59Z 2008-10-17T05:44:59Z <p>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.</p> <p>A few weeks later I modded it to alter the amount sand in the hour glass, color etc.</p> <p>Every now and then I revist the code and have been 'tweaking' this little toy ever since.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211190#211190 1 Answer by LeopardSkinPillBoxHat for What is the strangest/weirdest program you've ever made? LeopardSkinPillBoxHat 2008-10-17T05:54:39Z 2008-10-17T05:54:39Z <p>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.</p> <p>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.</p> <p>Ahhh, the hilarity.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211208#211208 0 Answer by Claudiu for What is the strangest/weirdest program you've ever made? Claudiu 2008-10-17T06:13:53Z 2008-10-17T06:13:53Z <p>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:</p> <pre><code>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))) </code></pre> <p>(Of course you can use it for things besides fact).</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211235#211235 3 Answer by Robert Rossney for What is the strangest/weirdest program you've ever made? Robert Rossney 2008-10-17T06:40:21Z 2008-10-17T06:40:21Z <p>One of the first things I do to learn a new programming language is to write a program that analyzes a source text and then uses a Markov-chain analysis to generate random gibberish that's somehow written in the style of the source text. I think I've done this in six or seven languages now.</p> <p>Why I love Python: It took me about two hours to get it working. And that two hours included building a little IDE in C# that executes the program using IronPython, because I didn't realize I could just use IDLE or grab Eclipse.</p> <p>It's actually not a bad program, for one written by someone who doesn't know Python (it's importing clr so that it can use the CLR's Random class; making this work in vanilla Python is an exercise for the reader):</p> <pre><code>import sys import clr from System import Random r = Random() def buildmap(text, size): map = { } for i in range(0, len(text)): if i + size &lt; len(text): word = text[i:i + size] next = text[i + size] else: overlap = (i + size + 1) - len(text) word = text[i:] + text[:overlap - 1] next = text[overlap - 1] if not map.has_key(word): map[word] = [ ] map[word].append(next) return map def producetext(map, length): word = map.keys()[0] output = [ ] for ch in word: output.append(ch) count = 0 while True: count = count + 1 if count &gt; length: break char = map[word][r.Next(len(map[word]))] output.append(char) word = word[1:len(word)] + char return "".join(output) text = sys.stdin.read() map = buildmap(text, 6) print producetext(map, 1500) </code></pre> <p>Not bad, though not as Pythonic as it could be. Here's some sample output. Determining what the input was is another exercise for the reader:</p> <pre>Open your hat get your hat get your hair Your face like a Cuban plane My love is like ribbons And the swamplands From the hillside struggling to the casements Rip the Florida coast to the searchlights up Turn the helicopter passes We're pretty sure they're here will walk again Put on the wind stopping Feel the way down with a broadsword</pre> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/211273#211273 1 Answer by Steve Hiner for What is the strangest/weirdest program you've ever made? Steve Hiner 2008-10-17T07:07:05Z 2008-10-17T07:07:05Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/223117#223117 1 Answer by Liudvikas Bukys for What is the strangest/weirdest program you've ever made? Liudvikas Bukys 2008-10-21T19:16:45Z 2008-10-21T19:16:45Z <p>Recursive descent parser of boolean expressions involving 0,1,and,or,not, and parentheses - in one line of SNOBOL.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/223160#223160 2 Answer by plinth for What is the strangest/weirdest program you've ever made? plinth 2008-10-21T19:29:24Z 2008-10-21T19:29:24Z <p>I worked with a guy who wrote a command line app to order burritos from La Coste&ntilde;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&ntilde;a's FAX order form which then forked the command line app as a subprocess to send off the order.</p> <p>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.</p> <p><a href="http://www.netfunny.com/rhf/jokes/94q1/burritopgm.html" rel="nofollow">Immortalized here.</a></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/223182#223182 0 Answer by Harpua for What is the strangest/weirdest program you've ever made? Harpua 2008-10-21T19:37:13Z 2008-10-21T19:37:13Z <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/223191#223191 0 Answer by ddaa for What is the strangest/weirdest program you've ever made? ddaa 2008-10-21T19:39:05Z 2008-10-21T19:39:05Z <p>I used <a href="http://www.w3.org/TR/xslt" rel="nofollow">XSLT</a> to interpret a stylesheet language.</p> <p>I'll break that one up a bit.</p> <ul> <li>I defined with a document model inspired from docbook, then started implementing XSLT stylesheets to render it to HTML and LaTeX.</li> <li>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.</li> <li>So I designed a simple template language with injection points for predefined values.</li> <li>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.</li> <li>So I designed a widget language that was interpreted in XSLT to generate content to inject into the templates.</li> </ul> <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/351458#351458 1 Answer by interstar for What is the strangest/weirdest program you've ever made? interstar 2008-12-09T00:48:37Z 2009-07-23T01:30:54Z <p><a href="http://www.gbloink.com" rel="nofollow">Gbloink</a>! </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/351618#351618 5 Answer by Jason Baker for What is the strangest/weirdest program you've ever made? Jason Baker 2008-12-09T02:33:48Z 2008-12-09T02:33:48Z <p>My teacher told us to write a useful program using recursion. I wrote a zombie apocalypse simulation program that would figure out how many humans would be converted into zombies and how many zombies would be killed each day.</p> <p>By my calculations, my town <em>would</em> survive a zombie attack, but only 6 people would survive.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/538502#538502 2 Answer by epatel for What is the strangest/weirdest program you've ever made? epatel 2009-02-11T19:59:43Z 2009-02-11T19:59:43Z <p>Another <em>strange</em> program I have written is a 3D modeling <em>thingy</em> 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 <a href="http://www.memention.com/edward/tinygl/" rel="nofollow">tinyGL</a>, almost forgotten about it...</p> <p><img src="http://www.memention.com/edward/tinygl/screen.gif" alt="alt text" /></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/745535#745535 51 Answer by Rob P. for What is the strangest/weirdest program you've ever made? Rob P. 2009-04-13T21:52:31Z 2009-08-06T15:03:07Z <p>I'm not sure if this qualifies but....</p> <p>In college, I had a professor who was trying to make a joke (I'm quite sure nobody laughed). But, as we were handing in our latest programming assignments (a .Net GUI app that drew some things on the screen - nothing fancy) he said, 'For extra credit - you can write a program that will grade all of these!' (referring to the 30-something assignments sitting on his desk).</p> <p>Naturally, being somewhat a class clown; I took him at his word. This was a Tuesday and our next class met on Thursday.</p> <p>My program would run through all of the .exe's in a particular folder, 'test' and 'grade' them. The directions for the assignment were obnoxiously direct; to the point of telling you exactly what to name each control on the form. I was able to use Win32 API calls to determine if those buttons really did exist. Then it would perform a mouse click and verify that the shapes that were supposed to be drawn on the screen were actually being drawn by using 'GetPixel' along with some logic to determine what shape it was.</p> <p>It was certainly hack-ish; and rushed - but I was quite proud of myself. </p> <p>I cleaned up the code and printed the source and put it in one of them 'I spent $1.00 on plastic, therefore whatever paper is in here must be important' things from the student center.</p> <p>I showed up to class on Thursday after pulling an all-nighter to get it finished. If I'd only spent that much time working on actual assignments. Class began...after about five minutes I interrupted and asked if he would be collecting the Extra Credit assignment today? He looked confused and asked, 'What extra credit'. It was pretty classic. I said, 'The assignment grading program!'.</p> <p>He took the assignment and continued on with class. That evening I received an e-mail from him asking me to stop by his office on Friday. I did, and he offered me a graduate assistanceship (IE - no tuition to go to graduate school + monthly stipend to assist a professor).</p> <p>In terms of 'dollar per hour' it was the most productive programming I ever did.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/745582#745582 1 Answer by riney for What is the strangest/weirdest program you've ever made? riney 2009-04-13T22:13:15Z 2009-04-13T22:13:15Z <p>A web-controlled lava lamp, with live webcam. This was 1998, so this wasn't exactly revolutionary, but it was fun.</p> <p>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.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/745606#745606 0 Answer by Franco for What is the strangest/weirdest program you've ever made? Franco 2009-04-13T22:19:52Z 2009-04-13T22:19:52Z <p>A program that did HTTP GET in Dell Outlet page and sought cheap notebooks!</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/745651#745651 0 Answer by smcameron for What is the strangest/weirdest program you've ever made? smcameron 2009-04-13T22:38:03Z 2009-04-13T22:38:03Z <p>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</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/745699#745699 0 Answer by T.E.D. for What is the strangest/weirdest program you've ever made? T.E.D. 2009-04-13T22:58:50Z 2009-04-13T22:58:50Z <p>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. </p> <p>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).</p> <p>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 <em>possible</em> 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.</p> <p>I turns out these days someone has done the math with a related concept (random sorting) and proven it. They now call that algorithm <a href="http://en.wikipedia.org/wiki/Bogosort" rel="nofollow">bogosort</a>. Bogosort isn't systematic though, so I still think my horrible sorting algorithm is far superior. :-)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/763475#763475 0 Answer by willc2 for What is the strangest/weirdest program you've ever made? willc2 2009-04-18T13:57:11Z 2009-04-18T13:57:11Z <p>A few years ago I wrote an Applescript that made QuarkXpress construct a Photo Mosaic (an image made of tiny images). </p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1009644#1009644 1 Answer by Suvesh Pratapa for What is the strangest/weirdest program you've ever made? Suvesh Pratapa 2009-06-17T21:37:15Z 2009-07-23T01:30:22Z <p>This is not me, but I think this kid will go places: <a href="http://www.ex-parrot.com/~pete/upside-down-ternet.html" rel="nofollow">The Upside-Down Ternet</a></p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1067290#1067290 1 Answer by The Disintegrator for What is the strangest/weirdest program you've ever made? The Disintegrator 2009-07-01T04:35:49Z 2009-07-05T22:02:27Z <p>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.</p> <p>All I had to do after that was put the header and footer. And wait one week until the due date :-D</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1067447#1067447 5 Answer by Joe White for What is the strangest/weirdest program you've ever made? Joe White 2009-07-01T05:42:52Z 2009-07-01T05:42:52Z <p>When I was in college, one of the other CS students claimed to have found a vulnerability in the way Novell authenticates passwords on the network, and backed it up by telling me (correctly) my network password, which I promptly changed.</p> <p>But a while later, I noticed that, on some of the computers in some of the computer labs, my first login attempt would always fail, no matter how carefully I typed my password.</p> <p>I did some poking around. This was back in the DOS-and-Windows-3.11 days, and the Novell login app was a text-mode DOS app. I found that what he had <em>really</em> done was to write his own DOS app that looked like Novell's login screen, and added it to Autoexec.bat on some of the computers. After you typed in your username and password, his app would say "bad password", then exit back to Autoexec.bat, which would continue on to the <em>real</em> Novell login app. But not before his app had saved your login and password to a hidden, semi-ROT13-encrypted file.</p> <p>So I wrote an app of my own, saved it in my home directory on the network, and set it to run every time I logged in from any computer in the network. My app would look for his password file on the local hard drive, hunt through it looking for my login name, and replace my ROT13-ed password with characters that, when decrypted, would be a long sequence of BEL characters.</p> <p>Never did hear if he found my app, but I like the mental image of him frantically hitting Ctrl+Break so that everyone else in the lab, looking to see why his computer is making all that racket, doesn't catch him with his list of hacked passwords onscreen...</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1115641#1115641 1 Answer by Ira Baxter for What is the strangest/weirdest program you've ever made? Ira Baxter 2009-07-12T09:31:32Z 2009-09-09T05:39:05Z <p>Two, actually, in the same vein.</p> <p>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.</p> <p>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.</p> <p>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. </p> <p>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!)</p> <p>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, <em>but the system appeared to be working</em>. He thought he was going crazy.</p> <p>I explained the trick, and he was greatly relieved.</p> <p>I modified the code to toggle the carry bit every one second, so people could see some life.</p> <p>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.</p> <p>But it was thereafter easy to tell when the machine was idle. The front panel blanked, with a blinking carry bit.</p> <p>Too bad we have spend most of our work time doing more constructive things. That was a fun job for a geek.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1169141#1169141 1 Answer by 280Z28 for What is the strangest/weirdest program you've ever made? 280Z28 2009-07-23T01:37:00Z 2009-07-23T01:37:00Z <p>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).</p> <p>I thought about releasing the source except for the move decision logic as a challenge to see if anyone can beat it. :o</p> <p>Edit: It took about 3 weeks, with 2.5 being tuning the decision algorithm.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1175880#1175880 0 Answer by Andrew Szeto for What is the strangest/weirdest program you've ever made? Andrew Szeto 2009-07-24T05:41:24Z 2009-07-24T05:41:24Z <p>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.</p> <p>I have to admit: most did look pretty similar/identical to their predecessors.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1238298#1238298 1 Answer by Arcturus for What is the strangest/weirdest program you've ever made? Arcturus 2009-08-06T11:26:28Z 2009-08-06T15:28:47Z <p>I once played a LPmud called <a href="http://en.wikipedia.org/wiki/Genesis%5FLPMud" rel="nofollow">Genesis</a>, and in this <a href="http://en.wikipedia.org/wiki/MUD" rel="nofollow">mud</a> I was a fearsome priest of Takhisis (a really evil queen from the Dragonlance books).</p> <p>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..</p> <p>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!</p> <p>So I coded a crappy Java app with the letter design the priests used:</p> <pre><code> ____________________________________________________________ /'\ \ | | Letter example | | \/__________________________________________________________/ | | \ \ \ \ | Greetings Stackoverflow | | | | | | Here is an example letter from my ASCII letter | | creator of old... | | | | | | Greetings, | | | | Arcturus, the Stackoverflow undergraduate | | | \ \ _ \ \ / \ | | \__/__________________________________________________________/ </code></pre> <p>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..</p> <p>Here are some of my favorites:</p> <pre><code> __ (`/\ `=\/\ __...--~~~~~-._ _.-~~~~~--...__ `=\/\ \ / \\ `=\/ 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 | | | | | | / | |----------------------------------------------------------' \ | \ / `---' ^^ @@@@@@@@@ ^^ ^^ @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@ ^^ @@@@@@@@@@@@@@@@@@@@ ~~~~ ~~ ~~~~~ ~~~~~~~~ ~~ &amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp; ~~~~~~~ ~~~~~~~~~~~ ~~~ |~ ~~ ~ ~ ~~~~~~~~~~~~~~~~~~~~ ~ ~~ ~~ ~ | | ~ ~~ ~~ ~~ ~~ ~~~~~~~~~~~~~ ~~~~ ~ ~~~ ~ ~~~ ~ ~~| | ~ ~~ ~ ~ ~~~~~~ ~~ ~~~ ~~ ~ ~~ ~~ ~ | |~ ~ ~ ~ ~ ~~ ~~~~~~ ~ ~~ ~ ~~ | | ~ ~ ~ ~ ~~ ~ ~ | | Letter example | | | | Greetings Stackoverflow | | | | | | Here is an example letter from my ASCII letter creator of old... | | | | | | Greetings, | | | | Arcturus, the Stackoverflow undergraduate | | | | | | | | | )_) )_) )_) | | )___))___))___)\ | | )____)____)_____)\\ | | _____|____|____|____\\\__ | | ~ \ / ~ ~ ~ ~ ~ | | ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ | |~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ | ~~~~ ~~ ~~~~~ ~~~~~~~~ ~~ ~~~~~~~~~~~~~~~~~~~~ ~~~~~~~ ~~~~~~~~~~~ ~~~~~ (O) &lt;M o &lt;M /| ...... /:M\------------------------------------------------,,,,,, (O)[]XXXXXX[]I:K+}==========================================------------&gt; -\| ^^^^^^ \:W/------------------------------------------------'''''' | o &lt;W | | &lt;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 | | | |_______________________________________________| </code></pre> <p>Some even had some random elements, so not every letter would look the same:</p> <pre><code> ,----------------------------------------------------------,==. / /__ \ \ |(_\ / / \-`-' | Letter example | { Greetings Stackoverflow } \ } { / \ Here is an example letter from my ASCII letter | / creator of old... { / / | } \ Greetings, / { \ | Arcturus, the StackOverflow undergraduate { | {____ } |__( \ \ \ / `----------------------------------------------------------`==' </code></pre> <p>Some people were on to me eventually, so I shared my little application with fellow guild members.. I think they are still using today.. :)</p> <p>COMMERCIAL WARNING: Genesis was really nice.. you should check it out ;)</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1688956#1688956 1 Answer by monojohnny for What is the strangest/weirdest program you've ever made? monojohnny 2009-11-06T17:05:04Z 2009-11-06T17:05:04Z <p>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...</p> <pre><code>cat &lt; /dev/audio &gt; /dev/audio </code></pre> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1688978#1688978 0 Answer by Brian Postow for What is the strangest/weirdest program you've ever made? Brian Postow 2009-11-06T17:10:49Z 2009-11-06T17:10:49Z <pre><code>(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))) </code></pre> <p>elisp</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1688981#1688981 1 Answer by monojohnny for What is the strangest/weirdest program you've ever made? monojohnny 2009-11-06T17:11:35Z 2009-11-06T17:11:35Z <p>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.</p> <p>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...</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1689008#1689008 0 Answer by curious_geek for What is the strangest/weirdest program you've ever made? curious_geek 2009-11-06T17:15:03Z 2009-11-06T17:15:03Z <p>Wrote few <strong>TSR</strong> programmes in C for DOS. One of them drops character while using DOS apps.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1691103#1691103 0 Answer by NDP for What is the strangest/weirdest program you've ever made? NDP 2009-11-06T22:59:26Z 2009-11-06T22:59:26Z <p>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. </p> <p>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). </p> <p>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).</p> <p>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).</p> <p>Can you say; "contract management?"</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/1774038#1774038 1 Answer by hemflit for What is the strangest/weirdest program you've ever made? hemflit 2009-11-21T00:22:26Z 2009-11-21T00:22:26Z <p>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".</p> <p>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.</p>