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

When I was 13 I wrote an equation solver for the C64. It was a simple program, but had a nice GUI and a catchy name: Determinator.

I sent it to a German computer magazine and they paid me 200 bucks.
It was the first money I earned with programing and it made me really proud.

Some twenty years later I accidentally found that Determinator is still alive at plus4world.

link|flag
vote up 1 vote down

The first was a Frogger Clone on the TS 1000 (with the 16K memory add on).

Then I wrote a lunar lander clone for the Commodore 64. That was really cool.

(Sorry, I couldn't limit it to just one ;-)

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

A library for accessing the mouse on M$-DOS. For some strange reason I was very proud of this, since I suffered from the I-Know-it-all syndrome at the time.

link|flag
vote up 3 vote down

A Dungeons and Dragons Treasure Generator.

Remember the tables, the endless rolls to figure out what the party gets based on the treasure types from the monsters... Well, I had a complete automated system.

Ha ... Geeked out. Sooo fun.

link|flag
show 2 more comments
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

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

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

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

I was at a summer day camp and we were being taught Logo. For the end of the camp we were supposed to make some project to demonstrate on parents day.

I wrote code for a robotic wheelchair (made out of Legos) that had a laser sight on it that would try to find and run into other people's robots and projects. It worked really well, but I felt bad when it knocked down someone's tower project.

I was really proud of my destructive robot.

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

I challenged myself to write a Forth implementation in an hour. It turns out it wasn't that hard.

Later, I challenged myself to write a simple Scheme-ish language in two days. This was much harder but I had much more experience at that point, so I don't think it made me quite as proud.

link|flag
show 2 more comments
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

My Grade 11 programming final, made a DDR like game in Java to only Kelly Clarkson songs.

Edit: actually my first Counter-Strike AMX plugin was my proudest, I miss those times.

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 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

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

Nothing yet.

link|flag
vote up 2 vote down

I wrote the following formula in Excel. This was when I didn't have any formal experience/training in any programming

=IF(NOT(ISBLANK(E4)),CONCATENATE(PROPER(VLOOKUP(E4,$basic.$A$1:$Z$101,1)),"  ",PROPER(HLOOKUP(F4,$basic.$A$1:$Z$101,1)),"  ",PROPER(HLOOKUP(F4,$basic.$A$1:$Z$101,2))),IF(ISBLANK(B4)," ",CONCATENATE(PROPER(VLOOKUP(LEFT(B4,SEARCH(".",B4,1)-1),$code.$A$1:$Z$101,2,$C$3)),"  ",PROPER(HLOOKUP(RIGHT(B4,SEARCH(".",B4,1)-1),$code.$A$1:$Z$101,2,$D$3)),"  ",PROPER(HLOOKUP(RIGHT(B4,SEARCH(".",B4,1)-1),$code.$A$1:$Z$101,3,$D$3)))))

=IF(NOT(ISBLANK(E4)),ADDRESS((MATCH(E4,$rt.$A$1:$A$101,0)),MATCH(F4,$rt.$A$1:$Z$1,1),1,1,$B$3),IF(B4<>0,(ADDRESS((MATCH(LEFT(B4,SEARCH(".",B4,1)-1),$code.$A$1:$A$101,0))-1,MATCH(RIGHT(B4,SEARCH(".",B4,1)-1),$code.$A$1:$Z$1,0)-1,1,1,$B$3)),0))

Oh, yea, I wrote a series of such loooong excel formulae for various purposes. Some of those can be found in this application: Bizentass

Adding a few more from my long time ago excel adventures:

=IF(ISNUMBER($latest1.G14),IF($latest1.G14=0,IF($latest2.G14=0,IF(OR($latest1.F14=0,$latest1.G12=0),"","    --"),G714),IF($latest2.G14=0,G514,MIN(G514,G714))),$latest1.G14)

=IF(AND(($latest1.$A25=0),($latest1.E25=0),($latest1.E$1=0)),"",IF(AND(ISNUMBER($latest1.E25),$latest1.E25<>0),IF($rtprofit.F26="ns","      __",IF(ISNUMBER($rtprofit.F26),ROUNDUP($cost.E25*(1+$rtprofit.F26),$story.$H$20),"profit ?")),IF(NOT(OR(($latest1.$A25=0),($latest1.E$1=0))),"--",$latest1.E25)))

=(((B9-B10-B11)*B4*(1+B5))+B12+B14+((E3-D3)*B7)+((E4-D4)*B8))/B6
link|flag
show 1 more comment
vote up 0 vote down

A DOS graphing application made in QBASIC that would also give you roots of square functions, as well as some other characteristics.

Lost the sourcecode (I guess thankfuly), but I remember it was about 5000 lines and overabused GOTO:.

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

Tetris, because at that time I wanted to become a game programmer.

After that I couldn't stop my Tetris obsession, so I added a simple autoplay feature. I still wasn't satisfied so I implemented an autoplay AI that thinks up to 4 blocks ahead. At that point it became sort of a hobby start a Tetris game, mess it up beyond repair, and then let my AI take over, and watch it break down the 'wall' using the craziest combinations I've ever seen. Man I witnessed the most awesome Tetris games ever, played by my own program :D

Nowadays, when I want to learn a new programming language, I tend to use Tetris as a first project, feeling slightly guilty for not having overcome the obsession with this game..

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

It was a little before its time. :)

using System;
using System.Learning;

namespace Skynet
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Shall we play a game?");
            Console.ReadLine();
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

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