5
votes
11answers
128 views
How to make documents evolve?
Hi All:
We programmers write code and we write comments to code, but we rarely write documents. But IMO writing documents is important and time-saving since when you've written a …
2
votes
6answers
88 views
Where do I find detailed documentation for .Net?
Here's an example of a wasted day:
(1) I want to find out exactly what Binding.FormattingEnabled does.
(2) I type MSDN Binding.FormattingEnabled into google and go to the page.
…
6
votes
9answers
169 views
Should we be adding comments after code blocks, rather than before?
This post (When not to comment code) has a great discussion about commenting styles.
I agree with the sentiment to commenting the intent of the code ("why") rather than the "what" …
0
votes
4answers
20 views
Up-to-date XML-Documentation Builder for C#
I want to start using XML-Documentation of my code and am desperately searching for an up-to-date (meaning .NET-3.5 SP1) to do so.
I found NDoc, but it only supports .NET-1.1 and …
12
votes
21answers
577 views
Should I document my private methods?
Private methods documentation can only be seen by who has access to the source code. Is it worth the effort spent on it?
-2
votes
2answers
25 views
NET24 and XPNET
Where can I find the NET24 and XPNET manuals?
1
vote
6answers
74 views
When does technical documentation violate the DRY principle?
We had a project where things got in a bit of a mess a while ago because of inexperienced developers.
The main issue was the fact that the programmers rushed directly into writin …
1
vote
4answers
72 views
What documentation is “standard” before developing an application?
I've been tasked to write alot of documentation recently. I know it's the kind of thing some developer's probably cringe at but I don't really mind too much. My question is, what a …
2
votes
1answer
41 views
Sphinx for php code documentation
Sphinx is a Python library to generate nice documentation from a set of ReST formatted text files. Not the tool used for full-text searching
I'm also fully aware of doxygen / php …
0
votes
4answers
67 views
Including commented Class declaration in implementation file
Hi All,
Everyone knows the advantages of a more readable code. So in order to make my code more readable what i do normally is include the commented class declaration in the imple …
0
votes
4answers
37 views
How to document the Main method?
Okay, so I've got a .NET console application with it's Main method, contained in a Program class. You know, the usual:
class Program
{
static void Main(string[] args)
{
…
6
votes
7answers
113 views
What amount of documentation is needed for a non-trivial one-man software project
I have been writing software for about 2 years and am now in charge of determining what documentation is to be produced for software projects in my department due to being the only …
3
votes
2answers
77 views
R documentation with Roxygen?
I find R documentation to be important but also time-consuming to create/maintain. Has anyone used Roxygen yet, and if so, does it help in maintaining an R package? I've used Dox …
1
vote
3answers
37 views
Where can I find documentation for enyim and memcached?
Where can I find a complete documentation for enyim and memcached?
0
votes
5answers
129 views
Where can I find a Python lib documentation??!!
Hello again. Am looking for a full and official Python standard lib reference. I can't seem to find proper documentation for Python's built-in library anywhere, similar to javadocs …
