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

An Asteroids clone in QBasic. It was awesome!

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

on qbasic show text that you type

link|flag
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 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 6 vote down
10 PRINT "HELLO"
20 GOTO 10
link|flag
show 2 more comments
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 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 0 vote down

It was a program to control the access to computer lab. It may be ugly, un-optimized, but I'm very proud of it because I used everything I knew at the moment (OO, friend functions, overloading operators).

Whenever I see the code I get funny feeling. I really should try to get it running again (it was made in Borland C++) I made a little map of how the computer lab was arranged (all in command prompt) so a user could see which computers were free, where out of service, didn't have internet, etc. I got an A+ on that project :D

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

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

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

Hello World! Because it compiled and ran!

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

Your Answer

Get an OpenID
or

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