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

A mini Star Trek Next Gen "adventure" game (you had about five choices in the entire game), complete with title sequence and explosions in ASCII art (with a "sleep 1" in between each frame), when I was 9 and got a hold of my Dad's 286 laptop.

I later "upgraded" it to use "for ii = 1 to 10000 ... next ii" no-op loops to get more than one frame per second. A true thedailywtf.com candidate in the making. :-|

link|flag
vote up 0 vote down

First I am and always have been a smart ass. In college I knew more about programming the 60 year old civil engineer who drew the short straw and had to teach freshmen FORTRAN. He got even, Instead of assigning a final test, he gave everyone a different assigment as a final grade. Mine was to write a FORTRAN program, using a punch card deck, to convert Roman numerals to decimal and back. For anyone under a certain age, FORTRAN has almost no string handling functions. I rewrote it 3 times before I was satisfied. I still have that card deck some place in the attic. Oh yea I did get a A for the course.

link|flag
vote up 0 vote down

I wrote a chat client for our LAN in Flash using an swf to exe converter. I actually learn't programming in ActionScript just for this application. It was such a rush to see something I made work.

link|flag
vote up 0 vote down

I wrote a TI Basic Hockey game when I was in high school.

But I'm most proud of a C++ sidescrolling ASCII-based Windows console sidescroller. It had an easy plaintext (editable in Notepad) level capability which allowed anyone to make levels. Apparently, it's still shown by my instructor in his C++ classes.

link|flag
vote up 0 vote down

I remember being quite chuffed with a player vs CPU game of pong I wrote for my calculator. Can't remember the model now though so -1 for geek points :)

link|flag
vote up 0 vote down

I wrote a program in Atari LOGO on my Atari 800XL that used the animated turtles the language provided to allow two joysticks hooked up to the machine to 'fly' the turtles around the screen (You could morph the turtles to look like whatever you wanted, so I made them look like an X-Wing and a Tie Fighter from Star Wars :)

I remember implenting firing lasers too, but I never got that working 100%.

Anyway, much fun. Right around that same time I remember writing an ultra simplistic screen paint program in Atari BASIC - you painted with the joystick and changed color by pushing the fire button :)

I also remember being tickled pink when I wrote a program in 6502 Assembly with a BASIC loader (No expensive Assembler cartridges for me) that flashed the screen different colors and made a sprite whizz vertically up the screen (Horizontal movement was hard - you had to actually copy the image through memory).

Ah those were the days!

link|flag
vote up 0 vote down

I wrote a game in CA Clipper, it was a space invaders clone but I was very very excited about it, it had even sound (using beeps).

link|flag
vote up 0 vote down

This was a while ago, but it was the first C++ program i wrote pretty much, all it did was compare two strings to see if they were anagrams, the bonus marks were to also implement an pangram checker.

For the anagram part, i just checked in the standard library for a .compare() function for strings, my program was pretty simple, input, .compare(), output, but most of the class didn't think to use a built in function, and did all sorts of crazy things to check.

My teacher at the time always said "Don't reinvent the wheel" and thats why i was proud of this program :P

link|flag
vote up 0 vote down

Around 1994-1995 we had this Excalibur BBS system where the client ran in Windows and you could do more than one thing at a time, like download files, read forums, and even get onto the Internet. One of these systems required the user to pay to gain access and the payment process was slow. You could sign up and wait for someone to process your credit card offline, or you could mail a check and wait for that to get processed.

Since some people wanted access RIGHT NOW, we used a telephone service that you would call to get a code, and the charge would show up on your telephone bill. I wrote the part where the user entered the code, the code was validated off some master list, and the user was then granted access to the system based on the code. It was my first real application using Borland C++ that made use of DLLs.

We called it the Telephone Access Billing System (TABS) and had a few Excalibur BBS systems using the software, until most people stopped using dial up and found better ways to get onto the Internet.

link|flag
vote up 0 vote down

When I was 13 or so, I acquired an Atari 800XL and started writing games, partly in assembly and partly in Basic. One of my games (called Wheelchair Jack, about a guy that had to navigate through a cave in a wheelchair with a jet-engine attached [don't ask ;-)]) had this feature where the background scrolled horizontally, with a speed that depended on how close the main character was to the edge of the screen. This part of the code was programmed in the vertical blank interrupt to avoid any jittering and boy was it cool! (for 1983).

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

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

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

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

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

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

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

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

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

Multivariate regressions. BASIC. Circa 1981.

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

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

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

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

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

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

Your Answer

Get an OpenID
or

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