What is your best programming experience? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T12:03:32Zhttp://stackoverflow.com/feeds/question/303876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/303876/what-is-your-best-programming-experience8What is your best programming experience?Guge2008-11-19T23:58:39Z2009-01-16T15:56:47Z
<p>What has been your best programming experience so far?</p>
<p>Was it the first time you compiled hello.c?</p>
<p>Was it the first time you made your name fill your fathers TV with that 80's home computer?</p>
<p>Was it the time you saved the day by fixing that bug noone else understood?</p>
<p>Let's share our good moments!</p>
<p>(This is not a question of when you knew you would get into programming. I want stories of joy in programming after you became proficient.)</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303898#3038982Answer by Huntrods for What is your best programming experience?Huntrods2008-11-20T00:02:41Z2008-11-20T00:02:41Z<p>Probably the time I wrote a complete MIDI engine in C and assembler for a sound card that never quite made it to market. Wave-table based sound engine, and ahead of it's time. Had way too much fun.</p>
<p>-R</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303900#3039002Answer by eJames for What is your best programming experience?eJames2008-11-20T00:02:57Z2008-11-20T00:02:57Z<p>The moment that I realized that no programming language is perfect for all tasks. Each one has its merits, and the <i>right</i> one needs to be chosen for every project on an individual basis.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303920#3039202Answer by Marc Charbonneau for What is your best programming experience?Marc Charbonneau2008-11-20T00:10:12Z2008-11-20T00:10:12Z<p>Releasing a freeware application, seeing it get some publicity online, and watching the download count rise into the thousands and tens of thousands over the course of single afternoon. It wasn't the first application I made public, but it was one of the first really successful ones.</p>
<p>Of course, sometimes I think my worst moment was not considering charging a $1 license instead of going the freeware route. :)</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303962#3039622Answer by Jobi Joy for What is your best programming experience?Jobi Joy2008-11-20T00:26:51Z2008-11-20T00:47:01Z<p>Using <strong><em>Turbo C</em></strong> I have made a <strong><em>Bubble Sort</em></strong> that gave me a lot of confidence in the programming </p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303965#3039651Answer by yogman for What is your best programming experience?yogman2008-11-20T00:28:10Z2008-11-20T00:28:10Z<p>It was when I kept running to the computer room during every and each class recess (10 minutes). I was making a board game in Unix/C. Of course, I kept thinking about my program during classes as often as other boys think about sex. I was a high-school student back in the 1980s.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303968#3039680Answer by JB King for What is your best programming experience?JB King2008-11-20T00:28:55Z2008-11-20T00:28:55Z<p>When I first implemented a Design Pattern on my own, knowing that it was a specific pattern and seeing how well this could work in the future comes to mind as one of my best. This slightly beats the "It's alive!" when I first did some programming on my Commodore 64 back in the day and my e-shopping cart I did in 1998 would be my other two biggies.</p>
<p>I don't remember ever doing a hello.c, really. I remember doing a simple video game on a Commodore PET in assembly that may be my biggest achievement in that it had a few tricky parts like programming in the graphical parts and waste time routines as human reflexes weren't fast enough to get that fraction of a second that the PET took to take in the key stroke to move the little ship back and forth.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303977#3039771Answer by Dean for What is your best programming experience?Dean2008-11-20T00:32:15Z2008-11-20T00:32:15Z<p>Making a first-person 3D pacman clone in highschool while the students next to me tinkered in HTML.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303992#30399224Answer by Bill Karwin for What is your best programming experience?Bill Karwin2008-11-20T00:38:37Z2008-11-20T00:38:37Z<p>The most successful program I've ever written was a Perl script.</p>
<p>I wrote this for a woman I was dating (she was taking a Perl class at the time):</p>
<pre><code>#!/usr/bin/perl
map(($r=$_,map(($y=$r-$_/3,$l[24-$r].=(' ','@')[$y**2-20*$y+($_**2)/3<0]),(0..30)),),(0..24));
print join("\n", map(reverse($_).$_, @l)), "\n";
</code></pre>
<p>Last year she married me. :-)</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303993#3039932Answer by Sherm Pendley for What is your best programming experience?Sherm Pendley2008-11-20T00:38:45Z2008-11-20T00:38:45Z<p>I was working on a children's web site that focused on pre-school literacy skills, and I read an email from a proud mom whose child had finished reading a book from cover to cover for the first time.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303995#3039955Answer by Robert Gamble for What is your best programming experience?Robert Gamble2008-11-20T00:39:40Z2008-11-20T00:39:40Z<p>About two years into my programming career I was experienced with Perl, FoxPro, and a couple of other esoteric languages. I had just written a program in Perl that was as efficient as I could make it, but it was still an order of magnitude too slow to be run in production. I realized that Perl wasn't going to give me the speed that I needed and didn't have any better tools in my toolkit.</p>
<p>I had considered learning C in the past but was intimidated by all the horror stories I'd heard and a bad book I had picked up at one point. I decided that learning C to solve this problem was the only solution, I knew this would be a significant feat as the program in question did file i/o, bitwise arithmetic, used hashes and a number of other things I had no idea how I would do in C. I spent 20 hours that weekend reading K&R and doing the exercises. On Sunday I rewrote the entire program (only about 150 lines in Perl, about 500 in C) in C. The result was a speed increase of about 20 fold as well as a smaller memory footprint.</p>
<p>This was a great experience for me because I successfully overcame my fear of C, picked up what I needed to know in a relatively small timeframe, and used my new-found skills to overcome a real-world problem. It was a significant confidence booster and a turning point in my career, I am fluent in C now and haven't had any problems learning new languages or technologies.</p>
<p>Another nice moment came when, a couple of years later, I stumbled across that original C program I had written expecting to see a number of beginner mistakes, bad practices, etc. I went through the code line by line and couldn't find a single problem. I ran the code through lint and it found one issue: a comparison between a signed and an unsigned type. This didn't affect the program at all but I fixed it anyway and felt good realizing the quality of code I was able to kick out that weekend two years ago.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303996#3039963Answer by Daok for What is your best programming experience?Daok2008-11-20T00:40:15Z2008-11-20T00:46:49Z<p>When I realized that I was able to fill up all my computer needs just by programming a software. </p>
<p>Example of what I just said : If I need something to check my Rss, I can do it without other people or other software, I can do it by myself or if I need to create a list of data I know that I can do it with a script instead of doing everything manually. </p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304005#3040054Answer by Guge for What is your best programming experience?Guge2008-11-20T00:43:27Z2008-11-20T00:43:27Z<p>I'll humbly share my own best experience so far. I wouldn't do so in the question to not keep my story up above everybody elses.</p>
<p>A few years ago, while on holiday, I spent an evening trying to explain programming to my 8 year old nephew, and in the process writing a Connect4 game that we were unable to beat.</p>
<p>I started by showing him how to make C# draw circles on the screen, and then using a timer, how to make them fall down. Then how to click columns to put pieces into the board, and letting the computer add a black after my white, then how the program could understand if it had won or lost, then finally min-maxing for best moves.</p>
<p>The amazing thing was that I accomplished all this in a few hours, while having fun explaining everything to my very patient nephew.</p>
<p>It made me understand something about pair programming also. Having someone watching what you do, and even having to explain what you do, forces your concentration.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304006#3040068Answer by Angel for What is your best programming experience?Angel2008-11-20T00:43:29Z2008-11-20T00:43:29Z<p>When some friends and I won a computer game programming contest organized by PC World maganize in Spain. We gave the floppy to the organization 1 hour before the deadline and the next month the magazine was published with all the games people submitted. Everybody interested could play all the games and vote for the game they liked the most. 2 months after that, the organization called us and said we were the winners.</p>
<p>But the most important point wasn't winning the contest. There was no Internet available for the people at home, but we received a lot of postal mail asking us for more levels of the game, greeting us and telling how much they liked the game. That was the best part.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304047#3040477Answer by Robert Rossney for What is your best programming experience?Robert Rossney2008-11-20T01:10:44Z2008-11-20T01:10:44Z<p>It was also, in a way, my worst programming experience.</p>
<p>In 1987, I was the sole programmer on a team of about a dozen people, most of them analysts and trainers. We were implementing a statewide automation project in dozens of California courts. For many courts, ours were the very first computers they'd ever had.</p>
<p>The project manager was a marketer at heart, and he had (of course) overpromised. The annual user conference was coming up, and he'd announced a very long list of features that would be in the release we'd be demonstrating there. The last month before the conference was hellish for me, as I worked several 70-hour weeks in a row getting it all done.</p>
<p>This was the experience of everyone on the project (including the manager). When I rolled in to the Oakland Hyatt at 9pm the night before the conference, everyone else was there, red-eyed, exhausted, burnt-out, and terrified about what the upcoming week was going to be like. I installed the working build on the servers they'd brought for the conference, and went home.</p>
<p>I returned at 7 the next morning and took my seat in the conference hall, where 200 court staff from around the state were gathering. The project manager was scheduled to demo the software to the assembled at 9. At 8:45, he came and sat next to me. He looked like hell. I'd actually gotten sleep the night before, he hadn't. He had in his hand the memo I'd sent him detailing all the new features and explaining how to demo them.</p>
<p>"I don't understand this," he said. I looked at him. "You're going to have to do this."</p>
<p>And so, with no preparation whatsoever, I got up in front of 200 people (many of them, by the way, hostile), and spent the next two and a half hours demonstrating all of the work I'd done in the preceding six months.</p>
<p>Nothing crashed. Nothing even looked wrong. The users loved what they were seeing. Many of the new features were actually <em>applauded</em>. I finished the demo, handled questions and answers for half an hour, and walked off to substantial applause.</p>
<p>I quit, of course. That wasn't an experience anyone should have had to tolerate. Both the project manager and my boss (I worked for a subcontractor) apologized to me and told me that I was probably right to quit, too.</p>
<p>I ended up working with the project manager at a company he'd started for another seven years after that. He never, ever did that again.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304071#3040711Answer by Lance Roberts for What is your best programming experience?Lance Roberts2008-11-20T01:27:59Z2008-11-20T01:27:59Z<p>When I built the 3-d house walkthrough program and it worked.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304078#3040782Answer by Mike Dunlavey for What is your best programming experience?Mike Dunlavey2008-11-20T01:30:33Z2008-11-20T01:38:13Z<p>Gosh, there's so many...</p>
<ul>
<li><p>I wrote a program for closing out charity auctions, and have used it dozens of times, raising money for kids, libraries, schools, etc. That's really satisfying.</p></li>
<li><p>Discovery of Differential Execution. Niftiness matched only by the difficulty in communicating it.</p></li>
<li><p>Ditto for flyweight processes.</p></li>
<li><p>Ditto for performance tuning by call-stack sampling.</p></li>
<li><p>Completing a project in about 1/10 the cost budgeted, by using a code generator.</p></li>
<li><p>My first compiler.</p></li>
<li><p>My first window system.</p></li>
<li><p>When I wrote a light-pen drawing program, in assembly, for the TX-0 computer (the first machine to have magnetic core memory).</p></li>
<li><p>My first fortran program, to design 4-bar linkages.</p></li>
</ul>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304084#3040841Answer by K. Brafford for What is your best programming experience?K. Brafford2008-11-20T01:33:54Z2008-11-20T01:33:54Z<p>My best programming experience (on the Timex/Sinclair 1000):</p>
<pre><code>10 PRINT "KEITH IS AWESOME!"
20 GOTO 10
</code></pre>
<p>After the 30 minutes it took me to get this far, it was only better and more useful from there. I did that when I was something like 10 years old, and I never <em>ever</em> thought I would be able to make a living one day by telling computers what to do.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304126#3041261Answer by etlerant for What is your best programming experience?etlerant2008-11-20T01:58:56Z2008-11-20T01:58:56Z<p>Not one particular, but my best experiences usually come whenever I grasp a new concept. Some of my first experiences:</p>
<ul>
<li>Truly understanding objects and how they relate (including database tables)</li>
<li>Understanding anonymous functions</li>
</ul>
<p>Additionally, I always feel joyous when I fix and optimize a piece of broken code that used to spend <em>hours</em> processing data, putting a tremendous load on the system, and in general was a pain to work with. When it runs error-free, is easier to understand, is a tenth of the number of lines code, and uses less than a second to complete... makes me feel all giddy inside.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304385#3043850Answer by gonegonegone for What is your best programming experience?gonegonegone2008-11-20T05:13:36Z2008-11-20T05:13:36Z<p>I've missed out on so much fun, the beginning of computer programming. I wish I've could have been a part of it all from the very beginning, not that we don't have many exciting years to come. Of age I'm 21, just started a 5-year Master in informatics. After reading all of these wonderful stories I realize how much I will learn and develop as a programmer over the course of my education. Thanks! :) </p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/304893#3048931Answer by Chobicus for What is your best programming experience?Chobicus2008-11-20T10:32:25Z2008-11-20T10:32:25Z<p>Drawing hangman animation dunking a ball in basket on a <a href="http://en.wikipedia.org/wiki/TIM-011" rel="nofollow">tim-011</a> computer in our school.</p>
<p>Tim-011 had monochrome monitor.</p>
<p>I draw frames on a <a href="http://en.wikipedia.org/wiki/Graph_paper" rel="nofollow">millimeter paper</a> and then put them in code one by one just by "drawLine", "drawCircle"... </p>
<p>Pseudocode:</p>
<pre><code>drawFrame();
eraseScreen();
drawFrame();
eraseScreen();
...;
</code></pre>
<p>It was ugly but my Michael was dunking.</p>
<p>Teacher asked me how I did it and told me not to come to his class. :)</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/343716#3437163Answer by Walter Mitty for What is your best programming experience?Walter Mitty2008-12-05T12:47:28Z2008-12-05T12:47:28Z<p>My best experience was writing the automatic garbage collector for a language that was a little like Lisp. I was in charge of coding the memory management subsystem of the language, and the AGC was the major programming challenge of that subsystem.</p>
<p>Most of the other members of the team that wrote the language were either smarter than me or more proficient than me or both. It was a joy to work with them. We did a form of code review that's still seen as radical, decades later. We managed each other, and we each coded our own subsystem. </p>
<p>The AGC ran without detected bugs for over a year. Just as well. Debugging the thing would have been hell.</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/404526#4045260Answer by boost for What is your best programming experience?boost2009-01-01T04:39:21Z2009-01-01T04:39:21Z<p>Have had a few, but the one that comes to mind was a combination of Lotus cc:Mail, Applescript and Hypercard. I like getting different hardware to work with each other and this way a lot of fun.</p>
<ol>
<li>cc:Mail on a Pentium PC, receives a library search script and stores it in a text file on the server</li>
<li>Applescript, on the Mac, takes the file and passes it to a Hypercard library management tool. Hypercard outputs the resulting text file to the server</li>
<li>cc:Mail takes the text file and returns it to the original sender.</li>
</ol>
<p>That was back in 1998 in Karachi, Pakistan. </p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/420904#4209040Answer by Mark Brittingham for What is your best programming experience?Mark Brittingham2009-01-07T16:08:03Z2009-01-07T16:08:03Z<p>I started a software company back in 1991 more or less on a lark (I wanted to learn C after years doing Lisp/AI development). I assumed that I'd just sell a few packages via shareware for a few extra $$s and gain a new skill in the process. </p>
<p>Well, life has a way of changing your plans and that "shareware on the side" evolved into a real company. My best moment happened a few years ago when we won our industry's biggest award: a <em>Nova7</em> for "Best Computerized Technology Supplier" based on votes from actual users. We've won that award every year it has been given (5 in all) at this point but nothing compared with the rush of that first year's award. </p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/450758#4507581Answer by Shawn Craver for What is your best programming experience?Shawn Craver2009-01-16T15:32:58Z2009-01-16T15:32:58Z<p>I would say my best programing experience so far would have to be when I realized in high school that people would actually pay me to do this stuff. You mean I get to play with software all day, AND you'll pay me? </p>
<p>I know, not exactly a programing experience, but it kept me from going to business school just because "that's what you're supposed to do" if you're good with numbers, and kept me programming. </p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/450817#4508170Answer by StingyJack for What is your best programming experience?StingyJack2009-01-16T15:45:18Z2009-01-16T15:45:18Z<p>Figuring out the cause of <a href="http://stackoverflow.com/questions/424531/sqlclient-calls-causing-thread-was-being-aborted-at-sninativemethodwrapper-snipac">this</a>....</p>
http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/450872#4508720Answer by Kristopher Johnson for What is your best programming experience?Kristopher Johnson2009-01-16T15:56:47Z2009-01-16T15:56:47Z<p>I wrote a little video poker game for Palm OS. I watched my father and brother play it for a couple of hours. It made me feel good to have created something that they liked.</p>