vote up 42 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

173 Answers

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

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

link|flag
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 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 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 56 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
33  
+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
11  
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

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

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

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

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

A Yahtzee game in BASIC on a C-64.

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

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

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

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

Maybe that TI-57 program that drawn (non-duplicated) random numbers for French Lotto. Hey, it generated 5 good numbers (out of 6 on 49 possibilities) for a grid, which allowed me to buy my first computer! (a CBM 4016, 1MHz CPU, 16KB of memory).

And the first elaborate program I wrote was a full screen text editor on Unix (SCO Unix on PC) in C using Curses. I wrote it because I don't like vi which was the only editor available there... And I learned a lot in the process.

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

The first program I ever wrote displayed a large heart from a Timex Sinclair 1000 (with 14K RAM expansion!) on an attached TV (no monitors yet), which I made for my high school English class. The assignment was essentially show-and-tell of something that you love.

My second program, which became the first of which I was really proud, was a 3D wire frame graphics modeling engine on an Apple II. It loaded a wire-frame model into memory, then displayed it as green lines (edges) on a black background, which you could then "walk through" using the arrow/PgUp/PgDn keys.

My third program, which became the first of which I was really proud that I actually shared with another human being, was a complete and faithful implementation of the Yahtzee dice game for the Hewlett-Packard 2000C timeshare mainframe. On the one black & white video terminal, it would do full-screen refreshes for each move, but on the many printer terminals it would save paper by adjusting to show only immediate information about your current move, and show the entire "board" only when specifically requested by command.

I did all these during my first semester of my sophomore year in high school.

My "heart" program got lots of giggles from my classmates. Almost no one ever saw my 3D graphics engine, but I played with it a lot. But my Yahtzee program was played by everyone in my beginning computer class, and eventually by everyone in EVERY computer class, so that I ended up getting the only "A" in my class because no one else was finishing their assignments. At the end of the year, I became the shoe-in for the Computer Student of the Year Award because everyone was addicted to my game, and everyone knew me on sight.

link|flag
vote up 0 vote down

The first one I got really proud of was the first one I wrote on my own, using Delphi, when I was still taking programming classes. It was a prank program, that would change the location of the OK button, count how many times you tried to click it, print different messages depending on how long did you keep trying and some other stuff... I never sent it to anyone, but I was really proud of all the things I learned on my own

link|flag
vote up 0 vote down

A 1 hour exercise programming that take 2 arbitrarly long integers (i.e. longer than 4 bytes) and multiply them. Flawless! (of course we didn't have much time to test it properly...)

link|flag
vote up 0 vote down

It was in 1983... A TV game named "The count is right" was very popular in France. You get 6 numbers between 1 and 100 and you should find the best way to combine them using simple operations to reach or be as closer as possible to a random number between 100 and 999. Players got 45 seconds to do it. (ex: 795= (1+2+2x25) x (25-10))

I did program a solver for this game on my Oric 1. it's heart was a 6502 at 1Mhz and Basic was way too slow. Even assembler was to slow without some neat algorithm tricks and I was very happy when I succeeded to go down around 20s.

link|flag
vote up 17 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
2  
adding the semicolon took you from cool to 733t – Neil N Jul 20 at 22:34
7  
"From cool to teet?" – deceze Jul 30 at 2:56
show 3 more comments
vote up 0 vote down

Easychat -> application over intranet to chat, send offline messages, and such.

link|flag
vote up 0 vote down

A Que card app.

Some years ago I was taking a french class and had a pile of little que-cards. I also owned a Palm.

I figured I'd spend a day and writer a quick little que card app.. Took me about 6 hours. I put it out on the net for free. (why not?)

About 6 months later Katrina happened, a month after that, someone gave a school in the area a pile of palms. They wrote me a letter saying thanks.. The installed the software on all the palms that were donated.
Kids are using the program to help with math and history..

If I stop programing today I can say I've done my job. Something I did contributed to the world.

link|flag
vote up 0 vote down

A TI-83 Calcualtor game where you move a "U" to catch a falling "*". That was my benchmark for any game I made on that.

link|flag
vote up 0 vote down

TI-83 also.... My first program ever was the first program I was ever proud of.

Pong written in BASIC on the TI-83+, I wish I still had the code today... several(4-7) hours typed on the calculator itself.. chock full of ludicrous amounts of labels and GOTOs for program control and slow as molasses, not to mention the final program took up a good third of your storage... but hey! it worked, and it was pong!

Thank you for this moment of nostalgia I'm having now :)

link|flag

Your Answer

Get an OpenID
or

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