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

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

I was 13 or 14. We had some coursework for an exam based around a game played with dice; it was all about probability and prediction. To begin with, though, the coursework demanded that you played a "significant" number of games to gather results. Most people saw this as an excuse to kill time in lessons devoted to the coursework, just rolling die after die after die.

After about 50 runs, I decided that it was dumb doing this by hand when we had computers to do this kind of boring, repetitive work for us.

So I spent my research-phase woring on implementing the game in QBasic. The program asked for how many games you wanted played, and dumped out the distribution of results. I could run 10,000 games in a few minutes on a DX2/66. So I ended up with easily the largest number of sample games played in the class (with, of course, the same distribution of results as everyone else - just with a much smoother graph), and also with a cute appendix with the sourcecode in.

Not my first program by a long way, but the first one I was proud of - it solved a problem I'd identified.

link|flag
vote up 2 vote down

Hobby sphere: I once made a tekst adventure game in the time when they where still hot.

Educational sphere: My master thesis. A complete tool to apply object oriented metrics to software.

Professional: A tool to measure and model the performance of complex computer systems.

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

Back in 1981 I wrote a version of Defender for the Commodore PET (it was called Paladin). At the time, since I just got my PET, I didn't have a disk drive yet only a cassette tape recorder/player.

There was an 6502 assembler for the PET but it required a disk drive so couldn't use it. :-(

So I programmed my game in 6502 using the build-in hex editor, it was about 13k of programming goodness and was pretty cool for it's time. That was my first video game and I've been doing games ever since.

Back then, if you crashed the computer you lost all your changes so I had to make sure I saved my changes often.

You kids don't know how easy you've got it with all these fancy compilers / debuggers and IDEs.

Now get off my lawn!

link|flag
show 1 more comment
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 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 1 vote down

An application that would automatically click the mouse for me so that I would not get OOS from some silly arcade game.

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

An Asteroids clone in QBasic. It was awesome!

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

I'm late to the party, but I'll throw this into the ring.

The first program I was truly proud of was a demon dialer I wrote to crack MCI. I hacked it on my Atari 800 (!). It worked through the T: driver to the Atari 1030 300 baud modem (!!).

It was simple, but I wrote it to be feature-rich. You entered the local MCI phone number, a range of code numbers, and a long-distance number to verify access. (Kids, this is how it was in the far-distant 80s. You called your long-distance provider on a local Ma Bell line, entered an access code, and then dialed long-distance numbers on MCI's dime.)

My program dialed the local MCI number, waited a configurable number of seconds (say, 5), then beeped down the line the next code number. It would then send down the long-distance number, which was to be a highly-available modem, such as a point-of-presence for CompuServe or The Source or such. If the 1030 detected a carrier, it logged the code number as a success. Otherwise, onto the next number. When the program finished, it would write to disk a printer-ready report of verified access codes. The report took me the most time, believe it or not, and I was proud of how smart it all looked.

Well, MCI's codes back then (1984?) were five digits long, not a hard crack. The first day I came home from school with a report of eight long-distance codes. Am I smart? No, MCI was dumb. Years later a coworker of mine told me of a professor at UC Santa Barbara assigned him a combinatorics problem related to MCI's choice of code length. I proudly told him I had beat the problem.

My program spread to high-school-level hacker BBS', and I enjoyed a brief recognition as an Atari hacker. I also shared those MCI codes with my high school buddies, who thought I was working small miracles with "a game machine." I wound up invited to an online hacker's club which did nothing but talk about how cool it would be to hack the nuclear codes from Reagan. Nothing came of that, as you might guess.

It was a cool little program.

link|flag
vote up 1 vote down

Windows 98.

link|flag
vote up 1 vote down

I wrote a spell checking application.

It took a text file as input, and compared all of the words to a dictionary. The dictionary was being stored in memory as a BST, so it took a couple of seconds to load, but the actual spell checking was done very quickly.

Once all of the spell checking was done it would print any possibly wrong words and their position in the text file.

Sure, it's nothing much to write now, but back when I wrote it I was pretty chuffed that I could write an application that would not only work, but was actually useful. While I wouldn't ever use this application for spell-checking, it did teach me a few things along the way.

link|flag
vote up 1 vote down

In 7th grade, when me and a friend got into a fight over who could program our TI-83 calculators better. After suffering numerous humiliating defeats, I finally made a prime factor program that could factor faster than his (but only in large numbers) and had much smaller memory usage.

Eventually, he prevailed as the superior programmer, making connect4 and hangman while I was still stuck on pong (note: don't try to make pong on a calcuator using BASIC. It doesn't work well at all).

The joke's on him, however, because I optimized all his games after he was done with them, then added my name to the "CREDITS" page he habitually inserted.

link|flag
vote up 1 vote down

My first program that I wrote in C (not counting "hello world") was for a monitoring and control application for a NASA satellite.

link|flag
1  
I call bullshit on this. Your second ever C program controlled a NASA satellite? – Charlie Somerville May 30 at 9:50
show 1 more comment
vote up 1 vote down

I was quite proud of a program I wrote for the Commodore 64, in about 1987, which read the disk directory and sorted it alphabetically and printed it out on the screen. Wrote it in 6502 assembler on paper, typed it into the assembly monitor and it worked first time. :)

I was also very proud of a bresenham line drawing program that I wrote in assembler, which would draw a line using points from x1,y1 to x2,y2. It took me ages to work it all through from first principles but I'm sure it didn't seem so impressive to others!

link|flag
vote up 1 vote down

I think the first program I was really proud of was an adventure game like thing that I wrote in Java Swing. (I stole the graphics from Space Quest 4, copying each frame as I paused the action). I looked up an algorithm to draw a line with so I could make "Roger" walk to where ever the user clicked. I also used trig to figure out which direction "Roger" was walking so that the right set of images would be displayed to simulate him walking N, S, E, W or NW, NE, SE, or SW.

At one point I screwed up the the algorithm and he was doing the moon walk like Michael Jackson.

link|flag
vote up 1 vote down

My first program I was kind of proud of was a Knight Rider game written in BASIC on a C64. Must be more than 20 years ago. It was very simple of course. You had an interface that emulated KITT's cockpit and could activate things like "super persuit mode". The display would flash or make other funny things to show you what KITT's current state was.

Later on, in school, I wrote a race simulator for the TI-82. The calculator's display would show a part of a lane which would become narrower the further you drove. You had to make sure that your car did not leave the track and dodged obstacles. It was a major success in class. Unfortunately, for our final exams all calculators were collected and their memory flushed. Gone was this masterpiece of mankind.

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

A lot of the programs that I've made are pretty mundane, but during my vBulletin modification days I had written an article system to allow users to use their vBulletin forum software to power their website, allowing users to generate their own content for your site. It lasted for about a month and the new version of vBulletin came out, making my work obsolete.

As I'm still a beginner with the whole programming thing I decided to write a program to test my skills, so I decided to write a cinema booking system. Two days later I had two written in C and Java, introducing me to more practical use with pointers and ArrayLists. All in all, these are my favourites because they're the first programs that have really demonstrated my ability to my most important critic. Myself.

link|flag
vote up 1 vote down

I had derived a shortest path algorithm from a simple path algorithm for an assignment in my second semester of college. What makes me proud is that I tried to derive an algorithm instead of searching the internet for one.

link|flag
vote up 1 vote down

I wrote a function plotter in high school with QBasic, Now that I think about it had a great exception handling system, that makes me proud

link|flag
vote up 1 vote down

I wrote a lightcycle game based on the Tron movie on my Vic-20. Then re-wrote it for my Atari 1200. I was pretty proud of it at the time. It even used SAM (remember that?) to speak the score after each round.

link|flag
vote up 1 vote down

My first program was:

10 print "Hello World!"
20 goto 10

This was on an Commodore Plus/4. Long time ago and i was proud about it, since it was running big time on my tv set.

Cheers, murphy

link|flag
vote up 1 vote down

I'm currently specifying and writing a (domain specific) programming language.

My intention is to design something like XSLT, but with better algorithmic abilities and more powerful in most aspects (that's a lot of work!).

I'm very proud of it ;)
It's my first big project I'm proud of.

Most basic functionality works already.

It will be released under the GPL when ready (just give me one more year).

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

Your Answer

Get an OpenID
or

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