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

It might sound basic, but I built a calculator using Visual C++. We had an assignment to produce simple math functions in Intro to C++ and I took it a step further making a customized GUI. I was quite proud of myself, though my professor was less than interested.

link|flag
vote up 0 vote down

On my Apple ][ I wrote a hangman program. You could play against the computer either guessing the word or letting the computer guess. The computer built up a dictionary of words that you had used and picked one of those out at random. I was proud because it seemed to be learning, and I'd figured out how to write out a file to floppy disk from the program. It also had groovy "hires" graphics of the hangman drawing.

link|flag
vote up 0 vote down

JavaScript "WinBrick" (apparently it's actually called "Break Out"... but I knew it by a different name).

Check it out... (click on the link 'WinBrick' up there), and play "Brick Stage One" (tis the best).

link|flag
vote up 0 vote down

In grade school, I wrote a simple graphics editor for the Apple IIe. It mapped keyboard buttons to commands such as color selection, point and line creations, etc.

The fun part of the program was that it did not store the picture itself - it stored the key commands used to make the picture. This had the side effect that it would replay your actions on the screen when you loaded a file from disk, which gave a simplistic animation effect. Depending on what was being drawn, this could end up creating some very humorous effects.

It was great watching my friends compete about who could come up with the best/funniest pictures.

link|flag
vote up 0 vote down

A Yahtzee game in BASIC on a C-64.

link|flag
vote up 0 vote down

I wrote a bare bones C application that had it's own GUI and interfaced with a low level mouse driver back in the days of Dos. It was really fun having to draw the entire screen and I got it all working fairly seamlessly. I was really happy with how well it all came together even though it was just a learning exercise for myself.

-MrPortico

link|flag
vote up 0 vote down

I remember in early middle school I wrote a program in Basic to play a simple arrangement Toccata and Fugue in D minor on the internal speaker. I didn't have my Logitech SoundMan card yet. Those were the days...

link|flag
vote up 0 vote down

A simple and stupid drawing program for my TI-83.

link|flag
vote up 0 vote down

A breakout clone.

I'd always made lots of little programs, and I enjoyed making them, but I usually made them to try something out. They didn't have much real use. I had made some fun games in TI-BASIC that were pretty complex, but that was the closest to useful finished programs I had made.

Well one time I decided to make a breakout clone in C. I always liked making games, but usually I'd make bits work and get tired of it. This time everything came together and I kept it going.

Not only did the game work (ball bouncing around right, breaking bricks) but I added some extra features that made it all feel so complete (especially compared to older projects). It had a nice menu, multiple levels, and read the levels by reading bitmap images and interpreting the colors as kinds of bricks, which made it trivial to make new levels (instead of hardcoding them in the source).

The program worked and was fun. It felt like a real program. It was up there in quality with some of the freeware out there (not great stuff, but it felt mostly complete). I learned quite a bit about Allegro (the library I used) at the time, as well as ways of structuring the main loop of the program to support the menu and such.

I've made far more impressive programs since then doing database work, printing, 3D, and more. But that was the first time I made what felt like a REAL application or program and not some little one-off test program. That was my first program to be really proud of.

I really REALLY wish I still had it. I wrote it probably about '97-'99 or so during the summer, but if I saved it (I can't remember for sure) I know I lost it in a hard drive crash later ('02 or so).

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

I can recall a few instances of projects I was proud of - all around the same time. The initial foray with the TI994A I didn't count because I knew the basic programs I was writing were crap or I was just copying them out of a magazine:

So, here it goes: 1. Solution to an Artificial intelligence class problem - in Scheme - a generaic solver for missionary and cannibal problem for arbitrary boat sizes and arbitrary number of missionary and cannibals

  1. All the solutions to the SICP coursebook during my undergraduate class

  2. A project I completed for a friend's father for scheduling resources. This turned out to be an NP complete problem. I used a bunch of heuristics and didn't need the optimal solution - just any solution. I did that in C on 16 bit windows in Turbo C during my sophomore year I think.

  3. My final project for a C programming languages "lab" course. We had to write a spreadsheet. That was fun.

link|flag
vote up 2 vote down

I wrote a full Final Fantasy style role playing game engine in Qbasic when I was 12, complete with assembly graphics routines and smooth pixel by pixel scrolling.

Then I realized that making the game engine was a lot more fun than making the game.

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

In 9th grade (1981) I took a class in programming using BASIC on the Apple IIe. The first semester's project was a simple menu screen, which I finished the first day. By the end of the week I had written a 3D graphics program that drew a cube that rotated around all three axes and moved forward and backward in space. The teacher took one look at it and didn't bother me for the rest of the semester.

link|flag
vote up 0 vote down

A VT100 terminal emulator (with 80 columns, true descenders, and itty bitty fonts) for the Commodore 64.

link|flag
vote up 1 vote down

I wrote an infinite loop that alerted lyrics to a song. I sent it to everyone I knew.

My very first rick roll.

link|flag
vote up 0 vote down

I wrote some tiny clone of Visual C++ in Visual C++ 6.0...

The whole thing included a compiler (for some kind of structured pseudo code), a machine language translator, one interpreter (emuling a subset of x86 instructions), and a little debugger.

That was for a college project in data structures, when I was 17. I learned a lot of GUIs and data structures (an overkiller feature was the use of AVL Trees for the compilation ;)

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

I was 14, wrote a reaction test for MIKROSHA computer (based on Russian i8080 clone). Sent it to a distributor, it become popular and I got some money (equivalent of 7-10 icecreams). My parents were very proud and I understood that I can program for living...

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

In 1986, (Now I'm dating myself) I wrote a program in C for my Mechanical Engineering MSME degree that did Finite Element Analysis (FEA) Stress-Strain problem on an arbitrary arrangement of triangular geometric tesselations of a two-dimensional flat surface, with a defined load placed on it... The arrangement of triangular sections was an array of "triangle" structs each of which was defined as an array of three node structs,with the x-y point coordinates of the three corners of the triangle, each Node struct had an x and a y member...

As the FEA math required it, the program included a general routine to invert an diagonally symmetric square matrix of arbitrary size, so it had to use recursion at each level to "invert" the n-1 x n-1 submatrix for each element in the matrix at the parent level, until it was "inverting" the 1 x 1 matrix for each individual cell...

fun...

link|flag
vote up 0 vote down

In school with the orange book "Basic Basic" as my guide I wrote a program to compute the minimum final exam scores needed in various subjects in order to attain your final grade of choice: A, B, C etc.

link|flag
vote up 1 vote down

I used to alternatively run a BBS, a telnet client, and a few other things on my TRS-80, but it used to seem like it took forever to boot up. Sometimes I just wanted to hit the reset button and bail and have it bring up the BBS, or whatever else I might want running.

I had a joystick that had the feature of being able to "unlock" the springs so that it would not return to center.

So I figured out how to read it: Joysticks are just a capacitor and a variable resistor and a on/off reader. You charge the cap, then time how long it takes the reader to go back to "off".

Then I wrote a little assembly language program that could poll for the four cardinal positions and return them as an exit level to my batch file (or whatever passed for that back then, I forget).

Anyway, it worked well. If I left the joystick "up", it would bring up the BBS, ...

I wasn't proud so much for the technical skills as I was at the innovation of solving an unsolvable problem by thinking "outside the box".

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

I was 12. I wrote a program in my Apple IIe to input a series of up to 12 numbers and generate all possible combinations of six numbers so my father could try to win the lottery (he never did it btw).

link|flag
vote up 0 vote down

When I was young and just learning C++, I learned about file I/O and then immediately wrote a program that's basically a simplified version of tar. I wrote the entire thing in a couple of hours without really knowing the file I/O API. I was stunned when it compiled on the first try and ran bug-free...

link|flag
vote up 1 vote down

My old 99 MHz 386's hard drive crashed. So one cold December I wrote multiplayer pong with crazy obstacles by swapping DOS floppies with mouse floppies with BASIC floppies.

link|flag
vote up 1 vote down

Around 1993 I ported "TeX and friends" from Unix to the Amiga (aka "AmiWeb2c"). The "best" part of this implementation was an ARexx script that simulated the recursive construction of SMakefiles for the SAS/C compiler along the lines of "configure.sh".

Although a full compile of the set of programs took several hours on my A2000, it was always a moment of pride when the whole task finished successfully.

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

An embedded application that captured the input sent from an engine sensor, and dumped results over a serial port to a PC that processed the raw data. It was the first program I wrote that actually did something useful.

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

Your Answer

Get an OpenID
or

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