vote up 39 vote down star
24

What's the first program you ever wrote that you were proud of and why?

For me it was probably a Delphi 2 program I wrote that simply monitored Windows' memory usage and displayed a bar graph in the shell notification area like the Task Manager CPU graph, but in blue!

It was a big deal because I had a friend who was a better programmer than me and we were engaged in a silly race to find out who could be the first to figure out how to display something in the system tray (this would have been when the system tray was still quite new and exciting). I discovered the Shell_NotifyIcon API, worked out how to call it from Object Pascal and beat him to it. Granted, it doesn't seem a big deal now, but I hadn't been programming the PC or Windows for long at the time and it was a real breakthrough when the Windows API Gods deigned to display my icon next to the clock!

flag
2  
hehe, this became "my daddy can beat your daddy" kind of competition. – Sunny Nov 5 '08 at 20:54
4  
I always feel proud when I code something and it turns out that it actually works :D – StackedCrooked Jul 16 at 20:03
1  
for my understanding, why is this not considered "subjective"? – Thr4wn Aug 19 at 23:26
show 4 more comments

170 Answers

vote up 0 vote down

I wrote a program that converted engineering specs from a "Wang Super No Problem #4" no kidding. I printed them out the serial port into text files and then imported them into Word Perfect. I even had to make the serial cable. They paid me $300 dollars in 1986. I will never forget it. I never had so much fun and they even will pay you! I was a full time programmer in a year, mostly with Clarion Professional Developer and have never looked back.

Although sitting here in my office again at 9:30 pm makes me wonder if I had kept my job as a life insurance agent, how would things have been different. Maybe my golf handicap.

It's a great and rewarding career. Now i am learning Haskell.

link|flag
vote up 0 vote down

When I was about 12 or 13 I wrote a "choose your own adventure"-style adventure game in BASIC on my brother's TI graphing calculator. I think the story was that you went into a funhouse and got kidnapped. You had to decide whether to go left or right, run from your kidnapper or fight, etc., and I even had a few different endings.

link|flag
vote up 0 vote down

I was 7 or 8 years old when I started with GW-BASIC on my dad's 8086 using nothing but the GW-BASIC function reference book that came with MS-DOS 3.x. I created a calculator. I was extremely proud of discovering the algorithm to display the correct number as you were typing it. That is: The number on the display * 10 + the number you pressed = new number on the display. I've been hooked on programming ever since.

The second proudest I was of my 2.5D Wolfenstein-like engine/game I wrote in Q-Basic. It was only flat filled polygons and ran at up to 5 fps on the fastest Pentium I could get my hands on. I switched to C++/OpenGL after that.

link|flag
vote up 0 vote down

I wrote an accounts receivable system for a small music publishing company (circa 1980). It ran on a CDC Cyber on which the company was allowed to borrow some timesharing resources. The programs in the system were written in COBOL.

link|flag
vote up 0 vote down

It was Football Manager simulationg game I have written on my Atari 130XE when I was twelve. It was the only game I wrote that I actually played. It had graphical display of position of ball on the pitch. The only drawback was AI of course which was not there at all. All you had to do was to beat statistics.

The second was Genealogy program I made for my girlfriend and I actually sold about twenty copies later. These were first money I made as a programmer and I used them to but an electrical guitar :-)

link|flag
vote up 0 vote down

My first QBASIC textadventure. It was featuring an (IMO) amazing story with space pirates and the last survivor on board of a captured spacecraft. There also were nice colored console effects. I've had sent it to the PC-Games Magazine and the delivered it on CD with their next issue.

I still have it on my website for download. It is in German language :)

link|flag
vote up 0 vote down

Well, let's see. I was able to create an interface which was strikingly similar to industry standard (without ever SEEING said standard), I designed and built my first GUI, and I was able to translate XML to JavaScript through Actionscript... All and all, I would say that was pretty intense for someone who had only been at it for a year.

link|flag
vote up 0 vote down

I wrote a vocabulary database and test program in Mallard Basic on my dads Amstrad PCW 8512. I'd written programs on my Commodore 64 at that point, but this was the first one I wrote that was well written and did something useful.

Unfortunately I never did use it as intended, to improve my French and German at school, and ended up having to study Computer Science at University instead of whatever those grand subjects would have lead to.

link|flag
vote up 0 vote down

For me, I can't remember which of the two it was that came first, but it was either:

  1. An Object Pascal MIDI playback library that I released as freeware back in The Day. It was cool because it had a nice, device independent architecture, and it was the first thing I wrote where I really "got" OOP.

  2. A simple scheduling program for a small music school. He had really unique needs, and paid me $300 for the 30 hours or so that it took to put together the app. It was cool to me because I got to use my recently-learned on-disk B-Tree stuff to make searching for students lightning fast, and it used the Technojock Toolkit to make the displays all cool (you know, for a DOS program!) Oh, and it was my first paying gig. I was about 15, and never worked for $10 an hour since. :-)

link|flag
vote up 0 vote down

Well, I think the project that I just completed today could qualify for this. Even though I am nearing the end of my degree, I felt very satisfied once I finally got things working.

In our systems programming class we developed a very simple operating system which we then extended as smaller teams. My chosen project was to develop a hard disk driver, which I can easily say was one of the most difficult and yet rewarding programs that I had written in my short programming career. While it is not a fully featured driver, the code was written in only a few weeks with a full load of other courses, so I was very proud to actually get it working in time for our final demonstration to the professor.

Writing device drivers and operating system development in general has always been a major interest of mine, so this was an awesome project to do. I was ecstatic when I finally had my driver operating correctly and I could read/write without error to the disk.

While it was fun, I must say it is rather depressing when working with hardware and serious errors occur and you have absolutely no feedback as to what is happening.

link|flag
vote up 0 vote down

The pinnacle of uselessness: a graphical "demo" on the Amiga 500 back in the eighties, written completely in 68k assembly language. It featured dancing color bars fully controlled by copper lists and the amazing copper coprocessor, scrolling and waving text controller by shifting the monitor scanlines, ...

Even by today's standards, it's amazing what the Amiga could do.

Brings back memories...

link|flag
vote up 0 vote down

My academic project was a inventory system in Foxpro. But as I had a inclination towards C, I had prepared a welcome graphics screen in C / DOS . It made me feel good.

Next, I had a chance to work with mouse / keyboard handling on C , DOS. This was very interesting, as I got the chance to work with interrups. At that point of time int64x became my most used function, and led me to look into C more.

link|flag
vote up 0 vote down

I wrote a memory resident program in Pascal while at college that mimicked the effect of the Cascade Virus - where the letters would randomly fall to the bottom of the screen every so often. Also wrote one to bounce a few asterisks around the screen. Thought they were both pretty cool at the time..

link|flag
vote up 0 vote down

To me it was a Tic Tac Toe in Ada for a school project (1st year). It was really neat with XML logs and a cool structure. It also had an awesome shell UI with ASCII art and everything!

It wasn't my first program ever, but it was the first one that was doing something interesting.

link|flag
vote up 0 vote down

A QBasic program that rendered a 3D cube which I animated to rotate based on keyboard input. That was one of the moments where my young but nerdy brain realized that math is awesome.

link|flag
vote up 0 vote down
#include <stdio.h>

void main()
{
    printf( "Hello World!\n" );
}

Yes, I realized later (this was when I was 8 or 9 years old), that this is not the way we do things. I believe all of my C programs later used int main( int argc, char *argv[] ).

However, I was learning C with some friends (an elementary school user group.. ok, with a private teacher), and it was neat. We had a book, I think "Teach yourself C in 23 Easy Lessons" or something like that, and it came with, I think, Borland Turbo C Compiler.

This was circa 1995. I was proud of it.

link|flag
vote up 0 vote down

Back in 1997 I wrote a game called "The Pits" in Turbo Pascal. I basically found something on the 286's we were using that was game like, basically navigating a single character down an ever-changing tunnel as long as you could. I took that idea, revamped it a bit, added a couple cheat codes, some color, and it was my first 1000 line program. The memory still excites me!

link|flag
vote up 0 vote down

In ~1996, my roommate and I had networked our computers together (10 Mbps coax!) but still each individually dialed out to get to the Internet. This meant we were occasionally knocking each other off by trying to dial on an already-connected phone line.

I wrote a simple little network app that sat in the tray of Windows 95 and displayed a red or green light based on whether or not the other person was connected. We knew not to establish a dial-up connection if the light was red, and we stopped interrupting each others' downloads.

Yes, gateway / NAT software was available, but it was like $100!

link|flag
vote up 0 vote down

I wrote http://deweymusic.org/ over my summer break last year. I think it's really the first program I've written that I've been proud of for longer than a week.

Last night I found out that it was listed as one of the top five best legal MP3 download sites by a website in Germany. Right up there with Last.fm and Jamendo!

link|flag
vote up 0 vote down

I was just a little boy (maybe 10-11 years old) when I wrote a full fledged utility for disk operations on the C64, in BASIC. It displayed a graphical startup screen (pixel graphics, lot of video memory tinkering) and then a lot of options for disk operations (format, dir, load something, delete) and more obscure stuff. I still consider that child a little genius, because the C64 internals were not really a walk in the park, and you know, at that time there was no internet, and the few available stuff was written in an obscure idiom called english.

Another my (later, circa 16 yo) creation: I wrote a BASIC program to plot the mandelbrot set. Again, lot of pixel based graphics (I wish to point out that the video ram to pixel mapping was awful, I still remember it, so I had to study it very well). I went halfway through the fractal when, after 36 hours, a power loss put a halt to my experiment. It looked cool though.

link|flag
vote up 0 vote down

When I was 13, I wrote a program in i8080 machine codes that implemented sound reverberation using a cyclic buffer to store the sound samples it read from a port.

The computer I used only had 64 Kb total RAM, of them 48Kb were available to the user, so storing more than a few seconds of sound was impossible, and storing only a few seconds seemed pointless.

So I spent a day chewing on this issue and then after midnight when my parents were fast asleep, I got this idea of the cyclic buffer. I got up and sketched it in a school notebook and then implemented it the following morning.

link|flag
vote up 0 vote down

The earliest program I can remember being proud of was a GW-BASIC "game" of sorts. Move an ASCII smiley around with WASD and manouvre it onto the non-filled ASCII smiley. This was like, aaaaages ago, heh.

No wonder I liked things like ZZT and Megazeux so much.

link|flag
vote up 0 vote down

I wrote a PHP web app with a MySQL back end for managing a bunch of Anita Blake: Vampire Hunter fan fiction. I had gone to my dad (a Linux guy who does all his programming in the form of bash scripts) with the problem that I had all these stories and I wanted people to be able to sort them based on title, genre, rating, etc., but I didn't want to have to maintain such orders myself in hard-coded HTML pages. The only programming-related thing I had done before was a lot of HTML and CSS, and my dad suggested I try PHP with MySQL. This was middle or high school for me. I was so tickled with being able to store all the story content in a database (I think with only 1 table), then use nifty SELECT queries to get it out and stick it in a page, based on some GET parameter a user passed.

link|flag
vote up 0 vote down

I wrote a random 3D maze generator on a Ti-83's built in programming editor while on a 24-hour bus ride across the country.

The program was capable of generating 2D and 3D mazes, however in actuality it was capable of doing any number of "dimensions" however anything past 4D was pretty much meaningless to most people (i understand it as different sets of sets of "worlds" (no not a typo), but it gets messy after that).

Unfortunately the largest 3D maze the calculator could generate was a 8 x 8 x 8 cube due to memory constraints on the calculator, it also takes a whole 45 mins to generate. Needless to say, i was lucky that i had brought along a few extra batteries for the trip!

Looking back at the code i wrote, i have absolutely no idea how it works. It's a tangled mess of goto's and loops and if statements. To make matters worse, in order to speed up the Ti-83's processing, i removed all the white space in between everything...now its just a giant one line piece of code.

On a side note, none of my friends have ever solved a full 8 x 8 x 8 3D maze yet...

link|flag
vote up 0 vote down

An AOL "proggie" with a boatload of features - custom graphics, fonts. You could kick users, flood chats, fade text, mail bomb, and all sorts of cool things. I was 13 at the time, I think.

...or were you looking for software with less malevolent uses?

link|flag
vote up 0 vote down

I wrote a defragger for my TI-83+ during high school math class. Looks like I never uploaded it anywhere so I can't post a link.

link|flag
vote up 0 vote down

My Casio calculator came with two games you could copy the code of in BASIC: Golf and Gunmen. After copying them I invented a third game, Target, in which a target kept moving and upon stopping it you had to say in which position it was. Rather stupid, but it worked and I was proud, especially because it was as addictive as the other two, as I found out when I showed it to my brother and sister. It was great to create something that other people actually used :)

link|flag
vote up 0 vote down

I've only been coding for about 5 years. I was originally hired to do content updates inside of a XML-based CMS. I was thrown into the coding position because our content management system took a fatal dump. I used ColdFusion simply because our host at the time could support it (we were on Windows), and it didn't seem like there was too steep of a learning curve.

I was able to code a functional CMS within two weeks that was extensible and has been working, with hundreds of modifications, since then. The code for the CMS isn't the best, but I'm proud of it for being reliable over the years.

Unfortunately, this is the last year for it. We are redesigning the CMS with a different language and all of the current functionality will be considered in the redesign. Needless to say, it's done it's job.

link|flag
vote up 0 vote down

Most proudest piece of software ever written was back in the day on an old Basic Amstrad at the dawn of the X86. I thought it was the coolest looking thing ever and so i wrote a DOS emulator on the amstrad that would load applications and run programs and even axcept every DOS command i knew at the time (which was nice because back then software came with manuals and was easy to learn).

Call me young and silly but being 10 and having to play games by coding them yourself out of a book it seemed like the next logical step.

link|flag
vote up 0 vote down

A 180 bytes full working CMS with theming system. In PHP.

link|flag

Your Answer

Get an OpenID
or

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