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

I wrote a program that converted engineering specs from a "Wang Super No Problem #4" no kidding. I printed them out the serial port into text files and then imported them into Word Perfect. I even had to make the serial cable. They paid me $300 dollars in 1986. I will never forget it. I never had so much fun and they even will pay you! I was a full time programmer in a year, mostly with Clarion Professional Developer and have never looked back.

Although sitting here in my office again at 9:30 pm makes me wonder if I had kept my job as a life insurance agent, how would things have been different. Maybe my golf handicap.

It's a great and rewarding career. Now i am learning Haskell.

link|flag
vote up 0 vote down

I wrote a little math game in commodore basic for my 64 when I was about 11 or 12. I was very proud of how it showed you how to do multiplication of 3-digit numbers in a font I drew myself. (The numbers were about 1/5th the height of the screen for ease of reading on a TV.)

It was a trashy gosub/goto spaghetti mess that I would probably retch over if I stumbled over the source code today. But at the time I was rather proud of it.

link|flag
vote up 0 vote down

When I was 13 instead of doing all of the silly busy work calculations for my algebra/geometry class I decided to automate. I build a basic calculator in VisualBasic and added in all of my geometry functions. I could do linear and quadratic regressions, and solve for unknown sides of various shapes.

The best part was having the shapes displayed just like they were on the homework assignments. I just typed the known values into fields until it had enough info, then it spit out the unknowns into the other fields.

After I told my friends it became not only the first program I was proud of, but my first 'professional' program as well :)

link|flag
vote up 0 vote down

A snake game in Turbo Pascal, was the first real program I made.

link|flag
vote up 0 vote down

Mine was a quizzer program written in QBasic that was special for several reasons:

  • It had mouse support and clickable buttons that were styled after windows. Pretty cool stuff for a DOS-based environment!
  • The program read in its questions/answers from files on disk, so its data was completely configurable.
  • This was the largest program I had worked on at that time (QB was the first language I learned) and really helped me push my limits and learn the ins-and-outs of the language/environment. For example, at one point I even picked up a copy of QuickBasic to compile the code down to an EXE.

I've moved on to better stuff since then, but it would be fun to dig up that code if there is still a copy around someplace...

link|flag
vote up 0 vote down

I wrote an instant messenger chat bot platform in java that supported multiple protocols, multiple chat engines, and had the ability to spy on other conversations over IM. The whole thing was configurable using an XML config file.

While relatively simple, this was the first application that I "engineered" using proper architectural techniques. It came out quite well and had many downloads as an open source system.

link|flag
vote up 0 vote down

2D arcade in shoot-em-up style in C++/OpenGL with working AI and two different weapons. I was 12, I think.

I am proud because it was a turning point in my programming craft. I began to wonder how to simplify complex parts of the code, first time felt a "smell" of magic numbers, began to wonder if I can divide classes more and make them independent, and begin to think if I need to create a (what I now know is) smart pointer to manage memoryleaks (which were happening). It wasn't just a bunch of code in C or VB6 as before but something that I was rewriting to make it more readable.

Obviously it wasn't a true C++ that I was writing in, more like C with classes -- I didn't much know about STL.

link|flag
vote up 0 vote down

That would probably be my arbitrary-precision factorial program that I wrote in C for fun before I started college. But, even then, when I look back at the kind of code I sort of write back then, I wanna puke.

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

Wrote a clunky web-browser in HyperCard. Yes, really. Didn't do very good at all at parsing html (wasn't familiar with those design patterns then), but the browsing task worked fine.

I gave it up when I discovered my 512kE did not have enough memory to run HyperCard AND SLIP. Hmm... Still have the fat-mac, maybe I can make it happen in C.

link|flag
vote up 0 vote down

Multivariate regressions. BASIC. Circa 1981.

link|flag
vote up 0 vote down

I think it would have to be my Turbo Pascal rolodex program. It was a TSR. Those were the bomb, yo.

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

I wrote an application back in the mid 90's that would let anyone cancel posts on usenet newsgroups. It was never widely released.

I also wrote some assembly language graphics/sounds demos (demo scene stuff) back in the day (late 80's/early 90's). I still remember using look up tables and sin/cos and bit shifting for dividing. Not everyone had a FPU then. :-)

Also, in the 80's I wrote a terminal program and BBS software for the Atari ST.

Wow, this question brings back memories. :-)

link|flag
vote up 0 vote down

A C# based WinForms application in my systray that would listen for BlackBerry devices, identify it, and sync the particular iTunes playlist (sans DRM'd music) for that specific BlackBerry onto it's memory card.

It had preferences to sync one or multiple playlists (mixed media formats) into the correct locations on the BlackBerry for the media player to detect it and allow playback It also had the ability to manage multiple BlackBerry playlist settings so that it would sync my favorite music and movies to my Pearl, and then my wife's favorites to her Curve.

link|flag
vote up 0 vote down

In highschool I wrote a random insult generator during math class on my TI83 calculator, it would pick from several hardcoded lists of words and add them together to generate an insult. I gave a copy to a couple people via the link cable and by the end of the year it was floating around the entire school. I had several people show me the program on their calculators, to which i responded, "Ya, i made that" :D

link|flag
vote up 0 vote down

Many moons ago, I made an animated Jumpman graphic written in BASIC on my Atari 800.

link|flag
vote up 0 vote down

When I was around 9 or 10 I wrote a reusable and extendable menu system on the Sinclair ZX Spectrum 48k. That definitely was the first thing I was really proud of - that I still remember well today, that is.

One part I really liked about it was what at the time I thought of as "using GOSUB in creative ways"... which was very much eased by the fact that GOSUB in Speccy-BASIC accepted any old integer expression as an argument rather than being limited to constants like most other BASIC-dialects did at the time. It was also the first time I instinctively tried to clearly separate the presentation from the code behind it.

A few years later I also rewrote Larry Laffer as a text adventure (with soundtrack!) for the same machine... ;)

link|flag
vote up 0 vote down

I think the first program I wrote that I was truly proud of was an implementation of the AKS primality test. I had to write my own integer polynomial class with polynomial division that was hard to get right the first time.

link|flag
vote up 0 vote down

Back in university, I took a class named "Interactive Computing". This was just after Win 3.1 came out, but the class used APL as the teaching language.

A couple of us figured out how to shell out from the APL interpreter, load windows & start a window program - remember those days?

We initially got 0's, but after arguing that we stuck to the letter (if not the spirit) of the assignment, ended up with an A.

link|flag
vote up 0 vote down

Ha.

  • If I had to be honest, I'd have to say the first Logo Writer program I wrote which drew a scene and played a movie about a tragic helicopter crash.
  • Then there was a program I put together for a lego mindstorm robot I was proud of, which I wasn't happy with until it played the imperial death march as it pushed cans out of a circle.
  • After that, there's a lull in pride for a few years, then I recreated tetris in java for a subject. My only regret was never getting it to play the midi. Never got the hang of important the sound management library to get it to play the tetris theme in system beeps...still don't (forgot about that, might need to check into it later tonight)
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 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 0 vote down

I was in high school and wrote a rendition of spyhunter in QBasic and networked so that several people could play at once.

link|flag
vote up 0 vote down

The DECtape recovery program for the PDP-10, in 1969.

Through a cockpit error, the wrong tape's directory block could be written over the correct directory block, making all the tape's files unreadable. But the underlying file mapping information was still there, even though the file names were really lost.

This happened at my site, losing about 1 month's programming effort for a colleague.

The management wanted to write off to DECUS to try and obtain a recovery program. I offered to write one. Less than 24 hours later, wall clock time, I had a working prototype, and I had recovered the vital files from the tape that precipitated the crisis.

I was proud of that program because of the fast turnaround between problem statement and problem resolution.

The various UNDELETE programs written much later for CP/M and MS-DOS reminded me of this little effort of mine.

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

Hello World! Because it compiled and ran!

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

I wrote a simple slot-machine in Python. It started out with selecting 3 random numbers and checking to see if they matched, and went all the way to up to 5-way checking on 9 numbers with a bankroll and variable betting.

What made me proud was coming from a pure Basic background, it was my first time with iterative development, comments, refactoring, defined functions, and source control. I took it as proof Basic doesn't ruin you for life.

link|flag

Your Answer

Get an OpenID
or

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