The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
1answer
779 views

Is it *ever* okay to catch StackOverflowError in Java?

I used to think that it's not, but yesterday I had to do it. It's an application that uses Akka (an actor system implementation for the JVM) to process asynchronous jobs. One of the actors performs ...
0
votes
0answers
32 views

counting number of comparisons in quicksort Gives stackoverflow [migrated]

I am trying to write a program that counts the number of comparisons in a quicksort program. This is my code package algo_quicksort; public class Algo_quicksort { public static int ...
1
vote
0answers
16 views

What is the difference between “StackOverflow” and “/*Programmers*/”? [migrated]

I can see that StackOverflow and Programmers are both about programming. Isn't this redundant? Is there a difference?
-2
votes
5answers
275 views

Use stackoverflow link as replacement for source code comment [closed]

I found out nowadays, instead of writing comment for source code which requires clarification, most of the time there is just a link to stackoverflow Q&A. Does your source code also having such ...
0
votes
6answers
887 views

Heap overflow vs stack overflow

So as a general rule to avoid a stack overflow, big objects should be allocated to the heap (correct me if I am wrong). But, since the heap and the stack expand towards each other, wouldn't this cause ...
15
votes
3answers
782 views

How many are too many nested function calls?

Quoted from MSDN about StackOverflowException: The exception that is thrown when the execution stack overflows because it contains too many nested method calls. Too many is pretty vague here. ...
14
votes
1answer
441 views

How often is seq used in Haskell production code?

I have some experience writing small tools in Haskell and I find it very intuitive to use, especially for writing filters (using interact) that process their standard input and pipe it to standard ...
30
votes
7answers
1k views

How to advocate Stack Overflow at work

I am thinking of doing a short presentation at work about using Stack Overflow as a resource for your day job. What is the experience doing this? Would you deem it a valid resource to tell you ...
6
votes
5answers
372 views

How do I let programmers know something useful?

Quite often I go through pain to discover how to do something useful, in this case how to get PHP running on Google App Engine without the 'resin.jar too big' problem, but I have nowhere to let people ...
12
votes
7answers
520 views

What are the major challenges in creating a platform such as StackOverflow? [closed]

Let us assume you were to create a platform such as StackOverflow. It needs to be functional, fast and scalable, just like SO, in order to be successful. What are the major challenges you would face ...
7
votes
7answers
411 views

How do you find answers to coding questions? What could be improved?

There are a lot of ways to seek answers to programming questions; for example web search, online documentation, stackoverflow and asking colleagues. In your experience how do you search for and find ...
15
votes
10answers
2k views

What makes C developers so curious if “i++ == ++i”? [closed]

Just a random observation, it seems that on StackOverflow.com, there are questions about if "++i == i++". That question gets asked all the time though, I think I saw it asked about 6 or 7 times in the ...

1