vote up 0 vote down star

I know this is an open-ended question, but I am very curious about how the collective minds of brilliant programmers here think about this one?

What do you think is the most difficult/challenging/demanding programming branch or discipline?

For example, AI, Graphics, Networking, cryptography, etc.

flag

23 Answers

vote up 6 vote down check

I would have to agree with the person who said "real time embedded devices". Too many factors to take into consideration. You absolutely cannot compromise on CPU cycles, and memory is really hard to come by as well. And not to mention the difficulties in debugging thanks to lack of tools and the fact that you just cannot put "printfs" to see what you are getting. Also you are not just dealing with logic, you are dealing with hardware. If something does not work, there might be a 100 different possible points of failure. I wrote a device driver in linux for a graphics card once, and THAT was horrible, i can only imagine what this would be like.

link|flag
vote up 11 vote down

Threading - doing it properly, avoiding race conditions and deadlocks in a reliable way.

link|flag
vote up 11 vote down

Documentation.

link|flag
vote up 9 vote down

Security - needed everywhere, but you can never be done.

link|flag
vote up 6 vote down

Real-time embedded-device programming.

link|flag
vote up 5 vote down

I think the question is based on a false premise - that is that any one programming discipline can be the hardest. Hard problems can be found anywhere as long as you look hard enough.

Many seasoned developers seem to have problems with lock-free concurrency though.

link|flag
vote up 3 vote down

Embedded. Often very poor debugging tools, and very limited resources so every byte still matters.

link|flag
vote up 2 vote down

Game Programming, especially at EA, ;)

link|flag
vote up 2 vote down

As stand-alone, crypto is harder to do "right".

As "something that must be in every code base", security in general: usually not taken into account until the last minute (if ever!)

link|flag
vote up 2 vote down

Whichever one you least like doing. For example, some folks here hate writing docs. I enjoy it. You might as well ask what's the best ice cream flavor.

link|flag
For those who deal with accounting - that would be Oxballs Sorbet, the weird new flavor from Baskin Robbins – DarenW Oct 27 '08 at 6:10
vote up 2 vote down

I think it was The Mythical Man Month that stated System Programming is 10x harder than Compiler Programming which is 10x harder than application programming. I believe 'harder' is in reference to time taken as a metric, though I would say it also requires greater skill and background knowledge. Steve Yegge has made the case that compiler programming separates the men from the boys. Which I guess is why I'm writing one myself!

link|flag
vote up 2 vote down

I would have to say cryptography, simply because it requires large cross-disciplinary knowledge in computer science and in pure mathematics.

Physics game engine design can also be quite challenging, since the equations governing the in-game physics are relatively simple & straightforward kinematics, but their implementation & optimization requires more knowledge and creativity.

[Edit: If you really want to blow your brains out, take a look at quantum cryptography. Shor's classic paper is a good starting point, and is strikingly elegant for such an awkward combination of applied computer science and physics).

link|flag
vote up 1 vote down

My guess would be 3D graphics and video game physics.

link|flag
vote up 1 vote down

From my experience at University this year, I would have to say Artificial Intelligence. Simply because you have to make so many judgement calls and because it's so hard to test and debug.

link|flag
vote up 1 vote down

Audio and video search by recognising the content in them

link|flag
vote up 1 vote down

User interface design.

Everybody sucks so badly at it that when someone does something only somewhat good, they rack in billions: look at Apple and Google.

Everything else, you can solve by putting good programmers and good management at it.

link|flag
vote up 1 vote down

Real-time multithreaded physics

link|flag
vote up 1 vote down

Easily Quantum Computing. At my university, it is standard for half the class to fail this course and very few truly understand the concepts. Quantum physics itself can be quite counter-intuitive, simply because human minds were not evolved to think in quantum.

link|flag
vote up 0 vote down

Testing. So much to cover.

link|flag
vote up 0 vote down

It will sound different than answers above, but i believe the most challenge discipline is Communication.

link|flag
vote up 0 vote down

"Reuse and Adaptation" can be challenging

  • Taking legacy code/design on one platform, understanding it and then 'relying' n it for a newer product on an entirely different o/s platform while meeting new performance metrics.
link|flag
vote up 0 vote down

Writing everything with O(log n) or better complexity.

link|flag
vote up 0 vote down

Documenting your work well nough for future reference/reuse/extending by another.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.