Tagged Questions

3
votes
18answers
233 views

Is it necessary to be an expert in “X” to be a qualified manager of people that do “X”?

I've spent several years in software development, using many different languages/technologies. To be clear, I have 10 years of software development experience myself. Now as I wa …
32
votes
11answers
934 views

Code Golf: Hourglass

The challenge The shortest code by character count to output a hourglass according to user input. Input is composed of two numbers: First number is a greater than 1 integer that …
3
votes
5answers
104 views

What are the overall most valuable/profitable programming expertises?

Hi, I would like to know if it's possible to point it out, and if so If anyone would know to summarize, considering things well beyond the basics and expectable of course, what wo …
5
votes
5answers
65 views

How might a class like .NET’s ConcurrentBag<T> be implemented?

I find myself very intrigued by the existence of a ConcurrentBag<T> class in the upcoming .NET 4.0 framework: Bags are useful for storing objects when ordering doesn't ma …
3
votes
7answers
188 views

Is there a “good enough” hash function for the average programmer?

We are told that we should implement hashCode() for our classes but most people like me have no real idea of how to do this or what happens if we get it "wrong". For example I have …
1
vote
3answers
52 views

Different syntax for method invocation in OO languages

I know: C++, Java, and tons others: object.method() , object.method(arg) Objective-C: [object method] , [object method:arg] Smalltalk: object method , object method: arg …
332
votes
382answers
54k views

What’s your most controversial programming opinion?

This is definitely subjective, but I'd like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately. The idea for t …
-9
votes
2answers
111 views

For what reason does an IDE not check to see if it can create a binary before compiling? [closed]

Is there a specific reason as to why an IDE would go through the trouble of compiling a project only to have it fail when linking? I won't tell you why this bothers me, because a …
10
votes
5answers
169 views

Dependency Injection best practices and anti-patterns

I'm relatively unskilled in Dependency Injection, and I'd like to learn some best practices and anti-patterns to use and avoid respectively when using DI.
30
votes
13answers
1k views

Code Golf: Spider webs

The challenge The shortest code by character count to output a spider web with rings equal to user's input. A spider web is started by reconstructing the center ring: \_|_/ …
276
votes
356answers
32k views

What is the single most effective thing you did to improve your programming skills?

Looking back at my career and life as a programmer, there were plenty of different ways I improved my programming skills - reading code, writing code, reading books, listening to p …
4
votes
3answers
96 views

Best algorithm for matching colours.

Hi, I got array of some (about 200) colours in RGB format. I want to write program that taking any RGB colour and trying to match colour from my array that is most "similar". Of c …
138
votes
146answers
8k views

What are common UI misconceptions and annoyances?

I often use applications and electronic devices for which I think: "Why on earth did they engineer that thing as it is? They must have known that it is a pain in the neck to work w …
1
vote
9answers
228 views

What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?

It goes without saying that using hard-coded, hex literal pointers is a disaster: int *i = 0xDEADBEEF; // god knows if that location is available However, what exactly is the da …
133
votes
161answers
11k views

What is your longest-held programming assumption that turned out to be incorrect?

I am doing some research into common errors and poor assumptions made by junior (and perhaps senior) software engineers. What was your longest-held poor assumption that was eventu …

1 2 3 4 5 142 next
15 30 50 per page