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

1 2 3 4 5 6 next
vote up 176 vote down

I always think the software I wrote yesterday sucks, the software I'm writing today is cool, and the software I'm going to write tomorrow will rock!

link|flag
10  
maybe you just learn a lot faster than I do, but it usually takes me a couple weeks before my old stuff looks crufty :-P – Yoooder May 6 at 0:32
2  
@Steve: haha, thats so true. I wonder if thats linked to the type of programmer you are? i.e. I find I'm always trying to implement technologies or patterns I've never used before, whereas others might concentrate more on solidifying skills....umm, I sound quite flaky.. – andy May 6 at 1:12
show 2 more comments
vote up 53 vote down

I didn't study computer science in college (at least, not at first), so I had to teach myself a lot of the fundamentals.

In my first programming job, I encountered an interesting situation where I wanted to iterate through a sorted array. Because I didn't know the standard library well enough, I didn't know that there were standard sorting routines. And I didn't know anything about standard algorithms. (In fact, I don't think I even knew what the word "algorithm" meant.)

So I got out a pen and a pad of paper and started brainstorming a generalizable technique for sorting an array, regardless of its initial state. After about 20 minutes, I came up with this little gem (in pseudocode):

function sort(array) {
   boolean isSorted = false
   while (!isSorted) {
      isSorted = true
      for (i = 1 .. array.length) {
         if (array[i] < array[i - 1]) {
            array.swap(i, i - 1)
            isSorted= false
         }
      }
   }
}

I was very proud of myself for discovering this little swapping trick.

I remember thinking about those guys who could solve a rubik's cube, regardless of its initial state, by following a series of steps. And that always amazed me. How could it be possible to solve all the millions of different rubik's cube permutations with only one simple formula???

To me, my sorting trick felt like a similar accomplishment.

A few weeks later, I was telling one of my buddies about this sorting algorithm I had invented, and he said "That's just a bubble sort! You didn't invent it, and it's one of the worst ways to sort an array, with n-squared performance!"

After he explained to me what he was talking about (I had also never heard of big-oh notation at that point), I was a little bit deflated, feeling a little less clever than when I had walked into the room.

But I distinctly remember the feeling of pride that I had at the "eureka" moment when I figured out the "swap-sort routine" (which, I think, is what I called it back then).

link|flag
31  
+1 - Never care who did it first, as long as you did it yourself! – SnOrfus May 6 at 1:35
1  
+1 for the same reason as SnOrfus – Michael Buen May 6 at 1:43
1  
If you found that by yourself really early on than you don't suck, no matter how badly this sort sucks. Hey for the first 20 years the best way CS knew was salt-shaker sort which was derived from bubble sort (took (N/2)^2 time). – Joshua May 6 at 1:43
7  
You most certainly did invent bubble sort! You just weren't the first to have invented it. – Nick Lewis Aug 19 at 23:17
show 3 more comments
vote up 32 vote down

I always liked the maze screensaver that Sun workstations had, the one that drew the maze then solved it.

So I wrote one for Windows in VB6. I released it as "T-Shirt ware", ie, if you like it, send me a t-shirt. I got a few of the most hideous company t-shirts ever produced.

Unfortunately, I have no idea where the code is now. I think you can still find the screensaver out there somewhere though.

link|flag
28  
T-Shirt ware is the coolest thing I've heard all week. I'm gonna come up with something to release just to get the worst T-shirts ever. – BFreeman Nov 7 '08 at 6:26
1  
I heared about postcardware. Do you like this? Send me a postcard. Teeshirt is better though, I wouldnt send a postcard but I would send a t-shirt :-) – Josef Sábl May 10 at 21:49
show 3 more comments
vote up 21 vote down

In 1981, I was sitting Air Defense alert and got a bit bored... and I wrote a program for a hewlett packard hand-held calculater (called an HP-41C)

that took airspeed, altitude, flight path dive angle, and calculated the weapons ballistics gunsight settings for an USAF F-4 Phantom dive bombing run.

alt text

link|flag
3  
The first program that I felt proud about was an unbeatable tic-tac-toe game for the HP-41C. – Glenn Nov 6 '08 at 2:08
show 3 more comments
vote up 16 vote down

A program to draw a donut in original Basic on an 8086.

Hey, I was 5 at the time, I was allowed to be proud of it!

link|flag
15  
5?? I'm tempted to downvote due to bluffing. – dmindreader May 10 at 22:46
4  
Umm. I think I was writing in BASIC at 6 or 7.. what's your point dmindreader? – mpbloch Jul 16 at 17:28
1  
When I was 5 I chewed on the TV remote control. – StackedCrooked Sep 23 at 22:00
show 3 more comments
vote up 16 vote down
10 PRINT "THIS STORE SUCKS!!!"
20 GOTO 10

This was in an electronics store, on a display model 8-bit something-or-other.

link|flag
1  
I always put on a trailing ; so that it would suppress the carriage return and fill the screen. I was 11 so gimme some slack. – MikeJ May 15 at 18:04
1  
adding the semicolon took you from cool to 733t – Neil N Jul 20 at 22:34
6  
"From cool to teet?" – deceze Jul 30 at 2:56
show 3 more comments
vote up 15 vote down

Wrote a game for the Apple II called "Suicide!" (incorrectly listed as "Suicide"), which has three things going for it:

  1. It was the first video game with punctuation in its title
  2. I wrote the bulk of it when I was 13 in 6502 assembly
  3. The splat sounds when the guys hit the ground are pretty awesome
link|flag
vote up 11 vote down

For me it would have to be an animated 3D wireframe cube in Turbo C++ 1.0 for Dos when I was 13 or so. I showed my parents and they were like, "so?". But it was a major achievement for me at the time - this was well before the internet and 3D engines, so had to work it all out myself.

link|flag
vote up 10 vote down

Multi-threaded, multi-panel, internationalized (as much as the underlying DOS supported) clock for DESQview, all written in i386 assembly!

link|flag
1  
So much love, awesome and heart blood have been poured into that humble clock, and yet no (ordinary) user in the world will ever understand the feat. :) – Christian Vest Hansen Nov 5 '08 at 22:45
show 1 more comment
vote up 10 vote down

I wrote a solar system simulator in Turbo Pascal 5.0 that had planets moving on elliptical trajectories on the screen when I was in the 9th grade.

link|flag
3  
Did pluto and neptune ever crash in your simulation? :D – Drew Aug 19 at 23:35
show 1 more comment
vote up 9 vote down

Hello World! Because it compiled and ran!

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

I can look at every bit of code that I have ever written and think "I can do this to make this better". I know...but it's my neurosis and I like it.

link|flag
vote up 6 vote down

I wrote a Christmas program that played 4 songs and showed four sets of graphics on a Radio Shack MC-10. I was 10 myself.

My father would play a key on a piano and I would keep typing new numbers to POKE until I found the closest sound to what I wanted... we are not musical, it was pathetic.

I was frustrated, because this, my first program, used up all the memory in the computer (4K of RAM).

Man, I am a geek.

link|flag
show 2 more comments
vote up 6 vote down

I wrote a multi-threading library for HDOS in 8080 assembly language. Since the underlying OS was not re-entrant, it had to intercept system calls to make sure that only one thread could use the OS at any time. I was only in high school at the time, I was amazed that it worked and that it was actually pretty robust.

link|flag
1  
+1 I am always chuffed when I create a system, debug it and it turns out to be very robust. It is like magic! – Tom Leys Jul 20 at 22:35
vote up 6 vote down
10 PRINT "HELLO"
20 GOTO 10
link|flag
show 2 more comments
vote up 5 vote down

I wrote a C++ program to manage a sub sandwich shop with some friends in CSC 2xx. This was my first C++ project of any size. I was proud because:

  1. We actually used Windows - everything I had done to that point was in DOS (1992). This was a risk but it really paid off. Our program was much more user friendly than that produced by other teams.
  2. It was a team effort that was very successful. We all worked on sub-components, and glued it all together at the end of the project. We spent a couple of days debugging it in my dorm room before it was due. It was my first, true team development experience.
  3. It was fully featured. I was surprised at the program. I think you really could have run a sub shop with it.
  4. We got an A and high praise from a tough CompSci prof.

The program was extremely primitive compared to what I write now, but it exhibited everything that is good about business programming for me. I was able to hang out with fellow nerds and watch sci-fi movies while writing richly featured, functional software.

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

Humane chmod

The first program I code that I was proud of was a shell replacement/complement for chmod command in unix.

I think (no, I'm sure, It must have) been written in sh.

We were learning C in second semester and we all were troubled with the new environment: UNIX (until that day I though DOS and Operating System were interchangeably words OMG). I must have been 19 years old.

It was quite challenging to edit code and make it work there.

After several frustrating minutes one manages to edit and compile hello world:

$ vi hello.c 
~ #include<stdio.h>
~
~ void main()
~ { 
~
~  printf("Hello\n");
~
~ }
~
:wq
$ cc hello.c
$ a.out
$ Hello

Uff quite an accomplishment!! Formating was a bonus!!

Well next thing you wanted to make your "golden" hello.c read only for you don't want to screw it by mistake and then make it editable again, you were faced to deal with....

chmod!!!


 $ chmod 777 Hello.c ( or was it 755? 153 rwx??? aaarg!!! )

Everyone hate it!!!

So I came up with something that would accept the file permissions as parameter like this

chmod rwxr--r-- Hello.c

And then

chmod --------- Hello.c

Or

chmod r-xr-x-r-- Hello.c

Whatever you wanted! ( well almost , later I learn there was some other file permission ) ) But the point was that you write it exactly the way you see it in ls -l. Plus if it couldn't handle the input it forwarded to /bin/chmod :P

Micro celebrity!!, the script was very popular in my class and was distributed all over the place.

A few weeks later someone discover "man" and not only discover it but really put attention to it and discovered that

chmod u+w Hello.c

and

chmod u-w Hello.c

did the job already, and that was the end of my script.

Well. Then I really got hooked into programming and a new world opened in front my eyes!!!

link|flag
2  
Actually, I'd really like chmod to accept r-xr-x-r---like input. I so rarely use the darn thing I always forget who was supposed to be u, g, o and a, especially since I tend to confuse o with owner. – deceze Jul 30 at 3:11
vote up 4 vote down

I built a back end to a flash front end. The backend did the following: Pulled data from flash, stored it in a custom created file storage system (which allowed saves, deletes, and updates), and fed the data back to flash. And it all WORKED :D.

link|flag
vote up 4 vote down

I wrote a musical application in BASIC that displayed the score sheet on the monitor and change the note colors as it played the music (kinda like a musical Karaoke). I wish I had kept the code around... :(

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

A large upgrade to an existing warehousing system with extensive re-modelling of the back-end.

It's in use every day and to this day not one bug has been reported with it. :D

The apps I wrote before it I was only satisfied with as opposed to being truly proud.

link|flag
vote up 3 vote down

I had an assignment in university to determine which of several prospective employees would bring the most value to a shop. They provided us with a sample of customers coming into the store on a few days and a selection of potential employees. I felt that they didn't really provide us with sufficient data to make the analysis, so I wrote a program that uses Poisson Distributions to create more sample sets based on the few sample sets we were given and bootstrapping the sample to generate more samples. A fairly elegant over-engineered solution to the problem, and it impressed the prof.

link|flag
vote up 3 vote down

I don't remember what the program even did, but I was 9 years old and it was written on a TI-99 4A.

alt text

One of the ones that didn't have a disk drive, but made you plug in a cassette recorder to save programs on. I noticed that the recorder in the book looked an awful lot like the one my sister had gotten for her birthday, so I "borrowed" it and tried it out. I still get a little bit excited thinking about the first time I actually got a program to save and reload from that thing. It's the first time I can remember figuring out something technical as a kid.

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

Poohwer, a 4k intro for The Gathering 1997. x86 16-bit assembly all the way, most of the code was done using pen and paper during lessons in school :).

link|flag
1  
Works on DosBox... nice! – Liran Orevi Jul 16 at 20:49
vote up 3 vote down

I'm with Bill the Lizard. My first programming success was on a TI-99 4A. I still remember the BASIC programming book that came with it. It detailed all the BASIC keywords, one per page, and employed a large legible font. I think the readability was key to my early attempts at programming. If it had been a complicated language or a scary book, I'd probably have quit before I started.

My first program that I was proud of involved drawing Pac man on the screen and getting him to move across the screen. I never did get the program finished so I could control him using the joystick. Oh well :)

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

A shoot-em-up on the TRS-80 (assembly language, sound, joystick support).

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

I animated a bicycle using the old CGI and Borland Pascal for DOS.

link|flag
vote up 2 vote down

I wrote a game in BASIC on a Vic 20 in 1985 that consisted of 9 separate games on 9 adjoining screens that you walked in & out of. It was called "Meltdown" - 3 nuclear rods went missing and you had to go find them. Robts chased you and things shot at you and it had a maze somewhere. I actually enjoyed playing it, even after having written it. I had the luxury of the Super Expander so I had 6-1/2k or RAM to burn and reeeally sophisticated graphics.

The game got lost in the annals of time. I probably taped some crappy 80's album over it.

Then I went on to do various random things in Television & film, thinking that computer programming would get me nowhere. Doh! Gross FAIL in parental guidance there. I am only now returning to re-learn how to code. Have I missed anything?

I think I peaked too early.

link|flag
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

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