up vote 63 down vote favorite
32
share [g+] share [fb]

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!

link|improve this question
4  
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 '09 at 20:03
2  
for my understanding, why is this not considered "subjective"? – Thr4wn Aug 19 '09 at 23:26
1  
Maybe if I ask a question like this my rep will sky-rocket. Hmmm... -_- – Kensai Nov 22 '09 at 16:32
show 3 more comments
feedback

182 Answers

1 2 3 4 5 7

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

A Yahtzee game in BASIC on a C-64.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback
1 2 3 4 5 7

Your Answer

 
or
required, but never shown

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