Tagged Questions

74
votes
89answers
17k views

What are the worst working conditions you have written code in?

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 …
31
votes
121answers
6k views

What is the strangest programming language you have used?

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 …
23
votes
82answers
3k views

What is the strangest/weirdest program you’ve ever made?

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. But sometimes, a programmer builds a program that is …
17
votes
12answers
948 views

What’s the funniest user request you’ve ever had?

Users sometimes come up with the most amusing, weird and wonderful requirements for programmers to design and implement. Today I read a memo from my boss that we need the "ability to import any excel …
16
votes
10answers
2k views

Reverse engineering war stories

Sometimes you don't have the source code and need to reverse engineer a program or a black box. Any fun war stories? Here's one of mine: Some years ago I needed to rewrite a device driver for which …
13
votes
25answers
1k views

What interesting programming bugs have you seen?

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. Post stories that has happened to you or someone else …
12
votes
16answers
991 views

Any Real-Life Visual Source Safe Horror Stories

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. However, despite using VSS for over 10 years on …
6
votes
7answers
802 views

Maven Release Plugin war stories

Hello, 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 …
4
votes
19answers
385 views

Do you have examples of comments or todos that were difficult to interpret?

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 …
4
votes
3answers
180 views

How good are the tools to migrate to and from Team System?

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. How …
2
votes
6answers
187 views

Any “war stories” on bugs from missing things in the documentation of functions you invoked?

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 …
2
votes
22answers
667 views

Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?

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 …
-3
votes
6answers
226 views

For what did you ever need a Workaround [closed]

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 …