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

prev 1 2 3 4 5 6
vote up 0 vote down

A 180 bytes full working CMS with theming system. In PHP.

link|flag
vote up 0 vote down

Like about a million other people; I wrote a scheme implementation in college. I was very proud of the fact that programs that other people wrote (a set of reference code from the professor) all worked. I had never written a program that could be programmed before.

I still have that code, but its in K&R and probably embarrassingly bad.

link|flag
vote up 0 vote down

My first operating system. I'd never taken on something so big, and watching it run programs and handle networking was an awesome experience. Things have only gotten better from there.

link|flag
vote up 0 vote down

A simple and stupid drawing program for my TI-83.

link|flag
vote up 0 vote down

A 1 hour exercise programming that take 2 arbitrarly long integers (i.e. longer than 4 bytes) and multiply them. Flawless! (of course we didn't have much time to test it properly...)

link|flag
vote up 0 vote down

A Que card app.

Some years ago I was taking a french class and had a pile of little que-cards. I also owned a Palm.

I figured I'd spend a day and writer a quick little que card app.. Took me about 6 hours. I put it out on the net for free. (why not?)

About 6 months later Katrina happened, a month after that, someone gave a school in the area a pile of palms. They wrote me a letter saying thanks.. The installed the software on all the palms that were donated.
Kids are using the program to help with math and history..

If I stop programing today I can say I've done my job. Something I did contributed to the world.

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

My Grade 11 programming final, made a DDR like game in Java to only Kelly Clarkson songs.

Edit: actually my first Counter-Strike AMX plugin was my proudest, I miss those times.

link|flag
vote up 0 vote down

A VT100 terminal emulator (with 80 columns, true descenders, and itty bitty fonts) for the Commodore 64.

link|flag
vote up 0 vote down

A program for finding duplicate files in Python.

link|flag
vote up 0 vote down

About 30 years ago, I wrote a lot of programs on my ZX-81 and then ZX Spectrum 48K all which I proudly tried to show any and everyone who would give me the time of day. I do not remember any of them.

The earliest "program" I wrote and was proud of and remember was a two market simulation written using the Lotus Symphony (I cannot believe this: It still exists!!!) macro language which was a huge step up from the Lotus 1-2-3 macro language. It asked for demand and supply parameters for the two markets and estimated new equilibrium price and output levels in both markets after a demand or supply shock.

I wish I had a 51/4 drive some place that could read those old floppies.

link|flag
vote up 0 vote down

I managed to create a basic target-shooting game on an old Casio Scientific Calculator when I was about 15. You have three points, and you could use any of the three to either move your 'ship' on the graphival screen, fire at the other 'ship', or focus your aim better. Then the enemy ship had the same options (all using the random number function). It worked perfectly unless a game went on for too long, in which case it would produce a Nesting Error due to the calculator's limits on programs calling other programs and a maximum of 10 Gotos in a program. And 4k of memory, of course. Got more enjoyment out of writing the thing than playing it, needless to say.

link|flag
vote up 0 vote down

The program am I most proud of making is FastFlick. I've worked on it for about 5 days but to me it felt like weeks!

When it finally was finished I was kind of bummed out it didn't recieve much attention but looking back on it I can sort of see why.

Anyways, if you want to check it out here's the link: Link

link|flag
vote up 0 vote down

Mine was the first Asp.Net website I created for myself. Looking back it was horrible: server-side includes instead of Master Pages, all embedded SQL with no stored procedures, most of the code in the code-behind instead of creating user controls.

Wow ... maybe I'm not so proud of it after all.

link|flag
vote up 0 vote down

Back in 1992, I was learning to program on a MUD. I came up with a random way for monsters to roam from room to room, so of course I made all my monsters roam. Silly, but what I'm most proud of, is that my code is still running to this day as the mud still exists, and still gets played by crazy Finns (www.bat.org).

link|flag
vote up 0 vote down

A football pools prediction program in Basic on a BBC Micro Model B. I was about thirteen. I got 7 score draws in the first week. Shame I was too poor to actually enter a coupon.

Of course, only Brits of a certain age will understand a word of the above.

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

A DOS graphing application made in QBASIC that would also give you roots of square functions, as well as some other characteristics.

Lost the sourcecode (I guess thankfuly), but I remember it was about 5000 lines and overabused GOTO:.

link|flag
vote up 0 vote down

Actually, in my case it's not so much a specific program but discovering I had come up with something much like MCV without ever reading about it.

Of course it wasn't like sitting down, developing a concept and thinking of dividing my application into models, controllers and views. But rather a trial and error process that ultimately lead me to a very similar concept: I had so-called classes, which served much like models, my controllers were called modules and my views were in a folder called templates. I even had naming conventions much like RoR has, as I later discovered.

When I first found that I had pretty much come up with the idea behind MVC I felt (I guess like we all do every once in a while) like the best programmer in the whole world. Or at least second-best. Second to the guy coming up with MVC first ;)

link|flag
vote up 0 vote down

I guess it will be a AStar Game Solver (n-Puzzle).

Although now, i look at it and think, "What was i thinking?" :)

link|flag
vote up 0 vote down

I was quite proud of the first program I wrote and designed from scratch: it was a program for graphing my astronomy homework. It was in FORTRAN, and took me several hours - a lot longer than simply drawing the points would have been! - but I felt so excited when it ran.

The parsers I wrote later pleased me, and I was especially pleased with an application that remained in use for well over 10 years. More recently, I was very proud of a test driven application. Here the pride was less at the wonderfulness of the code, and more because the test first design has meant that it's been very easy to implement features, which - so far - have been defect free.

In general, each program I've written that either used everything I knew, or simplified processes, or provided services that no one else did has made me very happy.

link|flag
vote up 0 vote down

Hacking Lemonade Stand on the Apple IIc... nothing like being a young geek with a list of keywords. MSDN is so much nicer then having to figure out the command syntax by tearing apart programs.

link|flag
vote up 0 vote down

Whenever I started programming, I was about 12 or 13. I was using a language called DakBasic.

I made a very basic media player(calling it mplayer as I had no idea of the existing mplayer out there already) and I was very proud of that day.

Well, one day me and my friend had to wake up really early but neither of us had a "good" alarm(a loud one) so I made a slight modification to my program to where it could be called batch style and made a scheduled task to run my program with a music file at 5am.

It was amazing cause it was like the first truly practical use of my programming skills..

Also, I was impressed when I made an 8086 emulator and then over a year later someone visited my project and ran some existing code in it and it just worked for them(after they built some devices to go along with the 8086)

Edit:

Oh yea I also wrote a very funny program for windows. It was a breeze to write(I think amounted to like 30 or 40 lines of significant code) Basically it would open your CD drive and popup a message box. When you clicked "Ok" it would pop up another one. It would tell a story with this message box. Also, I created a separate thread for opening the CD drive, so everytime you tried to close the CD drive it would just reopen.

I created 2 versions. One was called ending.exe and the other nonending.exe. One, whenever it got to the end of the story, it didn't recurse into itself(saying something like "And then he told me a story: ") and one did.

I had to take the never ending one down off of my website whenever I heard a lot of people complaining about how every CD drive in the library was open(at high school) and wouldn't close. I thought it was hilarious but I didn't want to be accused of writing a virus

link|flag
vote up -1 vote down

on qbasic show text that you type

link|flag
prev 1 2 3 4 5 6

Your Answer

Get an OpenID
or

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