active questions tagged war-stories - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:24:11Z http://stackoverflow.com/feeds/tag/war-stories http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made 23 What is the strangest/weirdest program you've ever made? MrValdez 2008-09-23T03:21:25Z 2009-11-21T00:22:26Z <p>Programmers are strange people. We build things out of thin air, a part of our sanity and with weird codes that would make any grown sane man cry.</p> <p>But sometimes, a programmer builds a program that is too weird even by their insane standards.</p> <p>What program have you created that is weird and strange?</p> <p>(One program per answer please)</p> http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in 74 What are the worst working conditions you have written code in? Saurabh Sawant 2009-04-12T10:35:15Z 2009-11-20T06:44:11Z <p>There are good times and there are worst times. I recently had to write code in a hot room with temperatures near 107°F (42°C); nothing to sit on; 64 Kbps inconsistent internet connection; warm water for drinking and a lot of distractions and interruptions. I am sure many people have been in similar situations and I would like to know your experiences.</p> <p>More experiences at <a href="http://news.ycombinator.com/item?id=558365" rel="nofollow">HackerNews</a> about the same topic.</p> <p>Even more experiences at <a href="http://ask.slashdot.org/article.pl?sid=09/04/13/167201" rel="nofollow">Slashdot</a> about the same subject.</p> http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used 31 What is the strangest programming language you have used? Anders Sandvig 2008-09-15T14:11:35Z 2009-11-18T22:18:20Z <p>For me I think it has to be the scripting language of an old proprietary telephony platform I used in the early 2000s. The language itself was not so bad, but the fact that it was meant to be edited with a drag-and-drop GUI, which did not expose all the functionality I needed, was quite frustrating. I also remember having to manually implement many common functions, such as calculating the length of a string. </p> <p>Whenever I wanted to use "custom" or "advanced" functions, I had to edit the script files in a text editor, but as soon as I opened the files in the GUI again they were reformatted and restructured, which usually resulted in broken code. And, of course, this was an interpreted language, so I would not know it was broken until I actually ran it&mdash;oh, and did I mention that it did not run the same in the simulator as in the live environment? </p> <p>So, what is the strangest programming language or environment you have used, and why did you use it?</p> <p><strong>Note that I'm interested in languages and environments that you have actually used for "real-world" situations, so Whitespace, Brainf***k and friends are not valid&mdash;unless you have used them for something "real", of course.</strong></p> http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen 13 What interesting programming bugs have you seen? MrValdez 2008-11-26T00:33:50Z 2009-11-07T07:08:04Z <p>Finding bugs is part of a programmer's lifestyle. But there are some bugs that are just plain weird and the solution to them are unintuitive.</p> <p>Post stories that has happened to you or someone else that involves these types of bugs. If you want, you can post links to great programming bug stories.</p> <p>One bug story per post but you can post as many war stories as you want.</p> http://stackoverflow.com/questions/718582/whats-the-funniest-user-request-youve-ever-had 17 What's the funniest user request you've ever had? Shaul 2009-04-05T08:28:10Z 2009-11-06T15:14:36Z <p>Users sometimes come up with the most amusing, weird and wonderful requirements for programmers to design and implement.</p> <p>Today I read a memo from my boss that we need the "ability to import any excel or access data, irrespective of size, easily and quickly."</p> <p>From the same memo, we have a requirement to "know if anyone unauthorized accessed the system" - as if a hacker is going to leave his calling card wedged between an index and a foreign key somewhere.</p> <p>I think my boss has been watching too much "Star Trek"... :)</p> <p>What's the funniest user request you've ever had?</p> http://stackoverflow.com/questions/520926/any-real-life-visual-source-safe-horror-stories 12 Any Real-Life Visual Source Safe Horror Stories JohnFx 2009-02-06T16:15:10Z 2009-09-23T20:44:50Z <p>VSS is much maligned and perhaps justifiably so. Please don't confuse me as an apologist for it, as I gave up on it a while back in favor of Vault. </p> <p>However, despite using VSS for over 10 years on numerous projects with development teams between 3 and 10 developers, I never experienced (or to be fair, noticed) any data loss. I will admit it frequently reported corruption and needed repair, and was extremely slow over WAN connections, but I don't recall a single instance where I couldn't get something back that I needed in all that time. Ultimately I switched for performance reasons, lack of features, and general uneasiness about how often it asked me to run the repair utility.</p> <p>Given the considerable sentiment that it is a source code destruction system, I was just curious to hear some <strong><em>first hand accounts</em></strong> of data loss and the circumstances surrounding them (i.e. Team size, Remote connections, project size) and the outcome (total data loss, partial data loss, were network backups sufficient to get it back?). </p> <p>I am not looking for comparisons of it against other SCM systems, I am just trying to get a feel for how much of the tarnish on VSS is from first hand experience rather than legend.</p> http://stackoverflow.com/questions/810957/maven-release-plugin-war-stories 6 Maven Release Plugin war stories MasterPeter 2009-05-01T10:44:36Z 2009-07-24T18:26:52Z <p>Hello,</p> <p>I have been given the task of exploring the maven-release-plugin before we try using it on our project. As of now, the releases are done manually on request. This process involves (skip this part if you're not interested, it's just to give you an idea):</p> <ul> <li>In the head, open the base POM file: <ul> <li>Increment the numbering of the \project\version element, but keep the -SNAPSHOT suffix.</li> <li>In the \project\dependencyManagement element, look for all the project dependencies that are being released in this build, and increment the version number references \project\dependencyManagement\dependencies\dependency\version, but keep the -SNAPSHOT suffix.</li> </ul></li> <li>Open each sub-module's POM file in turn and increment the numbering of the \project\version element, but keep the -SNAPSHOT suffix.</li> <li>In a command prompt, navigate to the root of the head codebase and run mvn clean install.</li> <li>Ensure that all the version dependencies work correctly, and the full test suite runs successfully. </li> <li>Commit changes to the head.</li> </ul> <p>As you can see, this is a lengthy and dull process which cries out for automation. I have found this <a href="http://stackoverflow.com/questions/782301/maven-release-via-hudson">question on SO</a> where people recommend doing releases manually, which is kind of against what I am trying to achieve.</p> <h3>Automate this</h3> <p>We would like to automate this process using the maven-release-plugin but we are a bit wary of doing this. My research has led me to believing that the plugin should work reliably and do the job.</p> <p>I have seen the <code>-DdryRun=true</code> option for the <code>release:prepare</code> target which also makes the impression that it can be tested safely beforehand. Also the Maven <code>release:rollback</code> target seems to provide a reasonable means of reconciling from an error. But I am still not sure. Not as sure as I would like to be about this plugin.</p> <p>My question is, do you have any war stories related to the maven-release-plugin? Any good/bad experience with it? Is the plugin robust enough to trust it?</p> <pre>&lt;&lt;&lt;EDIT</pre> <p>I also heard that the plugin integrates well with the SCM tools such as SVN, CVS. We are currently using CVS, and would like the plugin to perform the following tasks as well:</p> <ul> <li>tag the release in CVS with the appropriate release number</li> <li>create branches in CVS with appropriate names</li> <li>should allow us to do a release from a branch with minimal config hassle</li> </ul> <p>Have you got experience with this? Does it work well? Is it reliable?</p> <pre>&gt;&gt;&gt;</pre> http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe 2 Orders of Magnitude: What was the lowest-level code you have worked on? The highest level? pookleblinky 2008-10-17T08:05:51Z 2009-07-04T08:01:33Z <p>Dijkstra once noted that a programmer can reasonably expect to have to work within a range of at least thirty orders of magnitude- from dealing with individual bits all the way up to gigabyte-sized units.</p> <p>Let's test this. In your career, what was the smallest level of data manipulation you have worked on, and the largest? In which direction has your career moved: toward the bare metal, or toward inhumanly large constructs?</p> <p>Extra kudos to those brave punch-card veterans of the days of <a href="http://catb.org/jargon/html/story-of-mel.html" rel="nofollow">Mel</a> who have survived and even thrived in the transition from raw binary to massive software architecture. We salute you.</p> http://stackoverflow.com/questions/193016/reverse-engineering-war-stories 16 Reverse engineering war stories Kluge 2008-10-10T21:05:58Z 2009-06-08T19:21:41Z <p>Sometimes you don't have the source code and need to reverse engineer a program or a black box. Any fun war stories?</p> <p>Here's one of mine:</p> <p>Some years ago I needed to rewrite a device driver for which I didn't have source code. The device driver ran on an old CP/M microcomputer and drove a dedicated phototypesetting machine through a serial port. (Wow, I'm showing my age here...) Almost no documentation for the phototypesetting machine was available to me.</p> <p>I finally hacked together a serial port monitor on a DOS PC that mimicked the responses of the phototypesetting machine. I cabled the DOS PC to the CP/M machine and started logging the data coming out of the device driver as I feed data in through the CP/M machine. This enabled me to figure out the handshaking and encoding used by the device driver and re-create an equivalent one for a DOS machine.</p> http://stackoverflow.com/questions/765151/for-what-did-you-ever-need-a-workaround -3 For what did you ever need a Workaround [closed] Peter 2009-04-19T09:55:38Z 2009-04-19T14:28:16Z <p>Many workaround I have encountered where actually just caused by bad code practices or lack of knowledge. But of course, sometimes you just run into bugs, constraints or odd situations when you just <em>need</em> a workaround.</p> <p>I hope a list of workarounds will reveal as well known as not so known issues that could come in handy for a lot of people.</p> <p>Of course posting workarounds is kinda risky :-) Did you really needed that workaround, or is there sth. you missed? </p> http://stackoverflow.com/questions/319489/do-you-have-examples-of-comments-or-todos-that-were-difficult-to-interpret 4 Do you have examples of comments or todos that were difficult to interpret? Uri 2008-11-26T01:28:49Z 2008-12-12T07:32:07Z <p>I'm writing a chapter of my dissertation that deals with contextual cues and I'm looking for good examples of comments (or todo comments) where it's obvious that whoever wrote them had some knowledge that he didn't bother sharing with future readers, making them difficult to interpret. </p> <p>Examples from publicly available code would be especially appreciated!</p> <p>I am looking for both actual comments (header or on a piece of code) and todos. </p> http://stackoverflow.com/questions/328538/any-war-stories-on-bugs-from-missing-things-in-the-documentation-of-functions-y 2 Any "war stories" on bugs from missing things in the documentation of functions you invoked? Uri 2008-11-30T06:41:24Z 2008-11-30T08:22:45Z <p>I'm looking for interesting war stories on situations where you had a bug because you missed something important in the documentation of a class you were instantiating or a function/method you were using.</p> <p>For example, I recently messed up by not reading the documentation for the Java Calendar class and noticing that it counts months from 0... Very nasty surprise that I found the first time I was dealing with a date in December.</p> <p>Any stories, especially in Java, would be appreciated.</p> <p>(This is for my PhD research, I'm interested in other people's experiences)</p> http://stackoverflow.com/questions/71749/how-good-are-the-tools-to-migrate-to-and-from-team-system 4 How good are the tools to migrate to and from Team System? Sklivvz 2008-09-16T12:35:07Z 2008-11-07T16:21:02Z <p>I was wondering if anyone tried migrating between TS and SVN/CC. What I mean by migrating is importing and exporting the repository between source control systems without losing the history.</p> <p>How good are the tools to migrate to and from VSTS? </p> <p>I am also interested in knowing any opinion regarding using Team System from users of SVN and continuous integration.</p> <p>EDIT: Assume I need the history, otherwise why use a SCM?</p>