Tagged Questions
8
votes
4answers
87 views
when answering a coding question, is it better to just answer the question, or rewrite the OP's code?
For example, if the OP asks why the array arr is not full in the following code:
for (var i=0;i<10;++i) {
var arr=new Array();
arr[i]=i;
}
Is it better to simply say "put the arr ...
2
votes
0answers
61 views
What is StackOverflow's code analysis and code style settings?
Which tools SO uses to validate the code?
Is Code Analysis used?
Which rules are included?
To validate the code style
Which tool is used?
Which rules are included?
4
votes
1answer
107 views
How much code is too much?
I'm banging my head against the wall trying to find a decent example of the Twisted framework with GTK. I had the idea to use SO to get me going, so my idea was to:
Write a simple PyGTK program ...
4
votes
1answer
81 views
Integrated revision control
How does SO/SF/SU manage the Integrated revision control of the questions and answers? Did they use some open source library, or did they write their own system. Either way, I would really like to ...
1
vote
2answers
299 views
Can I post code on Stack Overflow without asking a question?
I started to create a post on the regular stackoverflow site regarding creating extensions for a StringBuilder. Basically, the original code I had written was in VB.NET and I needed to port it to C#. ...