Search Results

4
votes
2
votes

What are the 10 most marketable programming languages to learn (in order)?

Marketable for high salaries or marketable for any salary? The two probably go in opposite directions. MSN …
0
votes

Correlation between verbosity and bondage-and-discipline

To echo what Friedrich said, the bondage you are referring to is either not having a language that can take advantage of the structure inherent in the code you write (a great example is pattern mat …
8
votes

When is it ok to break “the law of demeter”?

It's okay to break any rule when you understand the consequences and are willing to either deal with the fallout or fix it. Usually that means living with it forever until you get fired or quit or …
2
votes

Who cares… as long as the result is ok?

The border is when you are dealing with write-once, read-never code. Only then does it ultimately not matter what you are doing (in that instance) because you will never use it again. Unfortunately …
2
votes

What’s your favorite “programmer ignorance” pet peeve?

The difference between "I need to get this done" and "I need to get this done here" (as in I need to add code in this specific location). By far the biggest issue I have encountered in scaling syst …
0
votes

When coding, what do you worry about?

How do/will I test this? …
2
votes

Will computers ever be too fast?

Brute force is always a valid option. So until computing is either infinitely fast or expressible along some axis that is the equivalent, they can always be faster. Although there are proba …
1
vote

What are your criteria for choosing a framework or library?

For C/C++, non-tools development: Can I configure how it allocates memory? Can I control how it performs I/O? Can I control its concurrency? For tools …
1
vote

What is the code snippet you are most proud of?

#ifdef <insert debug predefine here> void debug_print(const char *format, ...); #else #define debug_print sizeof #endif …
0
votes

I am compiling a Rules of Programming Mindset for my team: What are yours?

Understand the intent of the SOLID principles (or any other set of principles or methodology). …
0
votes

Links Between Personality-Types and Language/Technology Preferences?

I'd say all personality types eventually gravitate towards C++, LISP, Ada, or Haskell. …
1
vote

Do Dependency Injection frameworks lead to poor/lazy design?

I must be high, because I thought the whole point of dependency injection is that the code that does stuff simply declares its dependencies so that someone who's creating it will know what to creat …
3
votes

Why is good UI design so hard for some Developers?

"Designing from both sides of the screen" presents a very simple but profound reason as to why programmers find UI design hard: programmers are trained to think in terms of edge cases while UI desi …

1 2 next
15 30 50 per page