Tagged Questions

Documentation is a file or set of files that come with a program which detail the programs operation.

learn more… | top users | synonyms (1)

131
votes
49answers
7k views

What is self-documenting code and can it replace well documented code?

I have a colleague who insists that his code doesn't need comments, it's "self documenting." I've reviewed his code, and while it's clearer than code which I've seen others produce, I still disagree ...
87
votes
10answers
2k views

Why are the built in functions in PHP named so randomly?

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type ...
71
votes
15answers
4k views

Creating Great API Documentation: Tools and Techniques [closed]

I'm tasked with creating a web service that will be used by several different developers using different platforms, working for different companies, and having greatly varying skill levels. As such, ...
70
votes
11answers
30k views

Where can I download the jQuery API documentation?

Since I pound API docs pretty hard when I'm coding, I like to have them on my local disk. jQuery.com lists a lot of sources for browsing the API documentation online, but I haven't found anywhere I ...
67
votes
15answers
13k views

Good introduction to the .NET Reactive Framework

Aside from the Microsoft documentation, is there a good introduction and tutorial to the Microsoft Reactive (Rx) framework? Also, what is a good example (with code) that Reactive makes easier of a ...
62
votes
31answers
77k views

What is the most readable, appealing font?

What is the most readable, appealing font? Besides Wingdings, of course. I'm not talking programming font, but for design docs, documentation, web pages, etc. What wins? Times New Roman 10pt, Arial ...
56
votes
17answers
12k views

Best Tips for documenting code using doxygen?

My team is starting to document our C code using doxygen, paying particular attention to our public API headers. There appears to be a lot of flexibility and different special commands in doxygen, ...
53
votes
10answers
16k views

Examples of Requirement Documents

I was wondering if anyone could provide me some information on what they put in a requirements document, how do you structure it? I'm the lead for the first time ever and I want to make sure I provide ...
52
votes
10answers
21k views

Generating Documentation from C# XML Comments

I've recently started a new project and I'm using C# for the first time. I've found that while Visual Studio is helpful in creating C#'s XML comments to document your classes and methods, there's not ...
48
votes
15answers
2k views

Hired as a developer to maintain and update current code base, no docs!

This is my first job after graduating: I was hired with literally one day overlap from the last remaining developer's last day and my first day. I was given a very very quick rundown of basic ...
46
votes
23answers
8k views

Is a successor for TeX/LaTeX in sight?

TeX/LaTeX is great, I use it in many ways. Some of its advantages are: it uses text files, this way the input-files can be diffed and many tools exist to work with text it is very flexible it has a ...
45
votes
58answers
5k views

When NOT to comment code [closed]

What are your "favourite" overuses / misconceptions about commenting the code? Why do you sometimes think commenting is a pain? What arguments would you use to convince others that less is more at ...
42
votes
7answers
11k views

Python documentation generator

I'm looking for a documentation generator for python. I'm familiar with javadoc, and I tried Doxygen, but it seems quite unfit and counter-intuitive for Python. Any ideas? Adam EDIT Apart from the ...
42
votes
6answers
7k views

Compare and contrast the lightweight markup languages (Textile, Markdown, and reStructuredText) [closed]

Please identify the most popular lightweight markup languages and compare their strengths and weaknesses. These languages should be general-purpose markup for technical prose, such as for ...
42
votes
21answers
2k views

Taking over a project - What should I ask the previous programmer?

I'm taking over a development of a commercial web site. This site was developed over two years by another programmer. It's mostly a one-man job (maintain and expand the site). I'll have a 2-3 days ...
41
votes
4answers
1k views

Why does .NET 4.0 sort this array differently than .NET 3.5?

This stackoverflow question raised an interesting question about sorting double arrays with NaN values. The OP posted the following code: static void Main(string[] args) { double[] someArray = { ...
39
votes
2answers
590 views

Parentheses altering semantics of function call result

It was noted in another question that wrapping the result of a PHP function call in parentheses can somehow convert the result into a fully-fledged expression, such that the following works: <?php ...
39
votes
60answers
4k views

Why do software engineers hate writing documentation?

I ask because I quite enjoy it! I'm talking about design documentation and implementation notes (NOT user manuals), which are non-existent in most of the codebases I've been handed. I can understand ...
38
votes
11answers
3k views

Hidden features of Qt

A little is hidden in Qt given splendid documentation. But given vastness of Qt functionality paradoxically many useful features have been overlooked by me (and reimplemented or work-arounded). What ...
38
votes
6answers
9k views

Suggest a good Doxygen stylesheet

I am using Doxygen to generate HTML documentation from my code. However I find that default stylesheet has quite poor choice of fonts and layout. I know I can write my own CSS file to get exactly the ...
37
votes
3answers
48k views

How do I write a Technical Specification document for my software project?

I've seen a few questions around here saying that there's no need to write a beefy Technical Specification if the Functional Specification has all of the functionality. What about situations where the ...
37
votes
19answers
8k views

Tips to create a useful user-manual

If I start writing a user-manual for applications I have written, I have a hard time to look at the application from a users standpoint. I know it's not very useful to write something like: To use ...
36
votes
24answers
2k views

What, if any, documentation should be written before quitting a job?

I'm involved in a project where it's in a state that works well for the client, but ultimately needs a lot of intricate supplementary work for future success. If I left tomorrow, the other developers ...
35
votes
8answers
6k views

Technical tips for writing great JavaDoc

What are your technical tips for writing great JavaDoc? I'm looking for things beyond the standard "Explain the function well" content-based tips. We all know that! (right?) I'm interested in ...
34
votes
8answers
6k views

How to document thrown exceptions in c#/.net

I am currently writing a small framework that will be used internally by other developers within the company. I want to provide good Intellisense information, but I am not sure how to document thrown ...
33
votes
4answers
834 views

Can we shed some definitive light on how python packaging and import works?

I had my fair chance of getting through the python management of modules, and every time is a challenge: packaging is not what people do every day, and it becomes a burden to learn, and a burden to ...
33
votes
7answers
5k views

Writing Maintainable Event-Driven Code

I have just recently started playing with event-driven architectures, coming from a pretty standard object-oriented mindset. The first thing I noticed was that the difficulty in understanding and ...
33
votes
12answers
2k views

Minimalistic tools for developer documentation

I am currently working on a large PHP CMS / Framework and documenting it extensively as I go along. In addition to phpdoc-style inline comments, I need to document XML structures, details on concepts ...
33
votes
21answers
1k views

How “self-documenting” can code be without being annoying?

I am not sure what the best practices are here, but I often see abbreviated variable names especially when the scope is small. So (to use simple Ruby examples) instead of def add_location(name, ...
33
votes
9answers
11k views

How do you document your source code in Xcode?

I'm a Mac developer with a very strong Java background. I've documented my sources using Javadoc, a lot. What's the way to go with Cocoa and Xcode? Are there any documentation tools supplied ...
33
votes
15answers
2k views

Where is the best online Javascript language documentation?

When I do a search, the results are a bit hit-and-miss; many of the 'documentation' sites seem more advertising than information. What are the good sources of Javascript language info on the web?
32
votes
4answers
594 views

Is there a reference of default keyboard behaviours for Silverlight 4 controls?

In the official Microsoft documentation there's only one paragraph mentioning how controls behave to keyboard (at least what I could find): ...
31
votes
39answers
2k views

How to convince people to comment their code

What are good arguments to convince others to comment their code? I notice many programmers favor the perceived speed of writing code without comments over leaving some documentation for themselves ...
30
votes
3answers
282 views

Good alternatives to Sandcastle to generate MSDN-style documentation

I've been using Sandcastle for 2 years to generate the documentation for an open-source library. But now I'm looking for an alternative, because: Even when using Sandcastle Help File Builder, ...
28
votes
12answers
2k views

Are there some good and modern alternatives to Javadoc?

Let's face it: You don't need to be a designer to see that default Javadoc looks ugly. There are some resources on the web which offer re-styled Javadoc. But the default behaviour represents the ...
28
votes
10answers
3k views

Application (Not a Markup Language) for Producing a User Manual

Can anyone recommend a program to create user manuals with? Not a markup language (like LaTeX or DocBook) but more something interactive like Scribus. As I'm not the only one that will update the ...
28
votes
12answers
17k views

Best hosted wiki solution for private wikis?

I previously asked about how people organize their online resources and researched data, where one of the suggested tools was using a private wiki. I want to try this out and thus I am looking for a ...
26
votes
7answers
475 views

What should people new to Python know about its community and ecosystem?

I'm cobbling together some sort of an introduction to Python, but one that focuses on the community and the ecosystem around Python rather than just the language. With How to Think Like a Computer ...
26
votes
25answers
2k views

What do you consider good API documentation?

I have always liked the documentation on Java APIs, generally speaking, but I know some people consider them lacking. So I'm wondering, what do you consider a good example of API documentation? ...
25
votes
20answers
4k views

Do you still use UML? How? What for?

Few years back everybody in our shop was crazy with UML. Now everybody seems to have cooled off. I am curious if there is still widespread use of UML in software projects. If so, is this usage ...
24
votes
1answer
1k views

How can I create annotated source code like underscore.js?

I absolutely love the annotated source code that accompanies the underscore.js library: http://documentcloud.github.com/underscore/docs/underscore.html How did they do that? Is there a script ...
24
votes
4answers
5k views

How to write a good README

I guess everyone has seen a README file, but I would like the definitive guide on how to write an excellent README file with the least amount of energy spent on it. What's a README file? What should ...
24
votes
5answers
16k views

Simple OCR programming tutorials/articles

I'm interested in simple OCR methods and algorithms. And with simple I mean simple! Best would be a tutorial/article/documentation without dependencies on 3rd party librarys if that's even possible. ...
24
votes
18answers
12k views

Do you say “Click the button” or “Click ON the button”?

English is not my natural language, but I still have to write a user's guide for my application in English. If I want to instruct the user to click the "Cancel" button do I say: Click the Cancel ...
23
votes
3answers
7k views

Doxygen vs Javadoc

I just realized from an article in CACM that Doxygen works with Java (and several other languages) too. But Java has already the Javadoc tool. Can someone explain what are the pros and cons of either ...
22
votes
3answers
5k views

Mono Cecil documentation and tutorials?

I am new to Mono Cecil! Any comprehensive documentations and tutorials on Mono Cecil? I have seen these articles and video below, so don't give me these links again: ...
22
votes
9answers
3k views

Ways to synchronize interface and implementation comments in C#

Are there automatic ways to sync comments between an interface and its implementation? I'm currently documenting them both and wouldn't like to manually keep them in sync. UPDATE: Consider this ...
22
votes
9answers
13k views

Does Microsoft SkyDrive have an API?

So with the recent news that Microsoft Skydrive is going to get bumped to 25GB of storage per account, does anyone know if SkyDrive has an API? (And if so, where are the docs?)
22
votes
5answers
545 views

Is help file (or user manual) dead?

Back in the days of Unix, you couldn't even close a software without reading the man page first. Then came Mac and Windows with consistent menu layout and keyboard shortcuts, but you still saw paper ...
21
votes
13answers
1k views

What constitutes a development environment, and how do you document it?

What items go into a software shop's development environment, how do you document it, and what processes do you follow to make changes? I thinking about this from the standpoint where I want to make ...

1 2 3 4 5 55