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 challenged myself to write a Forth implementation in an hour. It turns out it wasn't that hard.

Later, I challenged myself to write a simple Scheme-ish language in two days. This was much harder but I had much more experience at that point, so I don't think it made me quite as proud.

link|flag
show 2 more comments
vote up 1 vote down

Nothing yet.

link|flag
vote up 1 vote down

It was a little before its time. :)

using System;
using System.Learning;

namespace Skynet
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Shall we play a game?");
            Console.ReadLine();
        }
    }
}
link|flag
vote up 1 vote down

I wrote an infinite loop that alerted lyrics to a song. I sent it to everyone I knew.

My very first rick roll.

link|flag
vote up 1 vote down

My old 99 MHz 386's hard drive crashed. So one cold December I wrote multiplayer pong with crazy obstacles by swapping DOS floppies with mouse floppies with BASIC floppies.

link|flag
vote up 1 vote down

I'm fairly new to programming. Me and a friend do some of the puzzles on www.projecteuler.net. He makes them in C# and i do them in PHP because my knowledge of C# isn't that great.

On one assignment you had to calculate something which returned a very big integer and PHP doesn't return the full number, only the Scientific notation. So I wrote a function that would calculate it and return the whole number instead of just the scientific notation.

function bigexpo($nummer,$macht)
{
    if($macht == 0)
    {
    	return 1;
    	break;
    }
    if($macht == 1)
    {
    	return $nummer;
    	break;
    }
    $array[] = $nummer;
    for($i=1; $i < $macht; $i++)
    {
    	$count = count($array);
    	for($b = 0; $b < $count; $b++)
    	{
    		$array[$b] = $array[$b] * $nummer;
    	}
    	for($c = 0; $c < $count; $c++)
    	{
    		while($array[$c] > 9)
    		{
    			if($array[$c] >=100)
    			{
    				$array[$c] -= 100;
    				$array[$c+2] += 2;
    			}
    			elseif($array[$c] <100 && $array[$c] >= 50)
    			{
    				$array[$c] -= 50;
    				$array[$c+1] += 5;	
    			}
    			else
    			{
    				$array[$c] -= 10;
    				$array[$c+1] += 1;
    			}
    		}
    	}
    }

    $count = count($array);
    for($i = $count; $i >= 0; $i--)
    {
    	echo $array[$i];		
    }
}
link|flag
vote up 1 vote down

The first was a Frogger Clone on the TS 1000 (with the 16K memory add on).

Then I wrote a lunar lander clone for the Commodore 64. That was really cool.

(Sorry, I couldn't limit it to just one ;-)

link|flag
vote up 1 vote down

I'm completely addicted to the feeling of writing something I'm really proud of. It's why I got into programming. Some examples:

  1. My very first program, written in HyperCard on System 6. I was trying to program a video game, but never got past the opening sequence, which was an animation of rain falling. I was still very proud of this.
  2. My first non-trivial C program. It was a bookkeeping program and I had an awful time with keeping monetary amounts typed correctly as doubles.
  3. My first LR parser. Parsers are hard!
link|flag
show 1 more comment
vote up 1 vote down

For our final project in Assembly class my friends and I wrote Frogger. Two of us worked on creating a bitmap loader and two of us worked on the movement/collision detection. Once we were both finished, both halves integrated together quite smoothly (much better than any of us was expecting.)

Since it was a 1st semester class and due in December, we even threw together a reskinned winter version that featured snow instead of grass and Santa Clause in his sleigh + reindeer instead of cars. :)

link|flag
vote up 0 vote down

When I was young and just learning C++, I learned about file I/O and then immediately wrote a program that's basically a simplified version of tar. I wrote the entire thing in a couple of hours without really knowing the file I/O API. I was stunned when it compiled on the first try and ran bug-free...

link|flag
vote up 0 vote down

I was 12. I wrote a program in my Apple IIe to input a series of up to 12 numbers and generate all possible combinations of six numbers so my father could try to win the lottery (he never did it btw).

link|flag
vote up 0 vote down

I wrote minesweeper using the TI-83 BASIC compiler sophmore year of high school. In retrospect that was really impressive, especially given that I typed the whole darn thing out using the calculator keyboard.

That was the last thing I wrote that I was truly proud of.

Ignorance is bliss and nowadays every project is an exercise in understanding how little I knew when I started on it and how I have been doing everything wrong till this morning. FULL REWRITE!!!

link|flag
vote up 0 vote down

In school with the orange book "Basic Basic" as my guide I wrote a program to compute the minimum final exam scores needed in various subjects in order to attain your final grade of choice: A, B, C etc.

link|flag
vote up 0 vote down

I wrote some tiny clone of Visual C++ in Visual C++ 6.0...

The whole thing included a compiler (for some kind of structured pseudo code), a machine language translator, one interpreter (emuling a subset of x86 instructions), and a little debugger.

That was for a college project in data structures, when I was 17. I learned a lot of GUIs and data structures (an overkiller feature was the use of AVL Trees for the compilation ;)

link|flag
vote up 0 vote down

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

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

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

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

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

A Yahtzee game in BASIC on a C-64.

link|flag
vote up 0 vote down

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

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

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

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

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

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

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

link|flag
vote up 0 vote down

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

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

Your Answer

Get an OpenID
or

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