74
votes
49answers
4k views
Self-documenting 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 …
36
votes
9answers
1k 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 …
33
votes
10answers
2k 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 …
32
votes
15answers
1k 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 …
31
votes
21answers
1k 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 …
29
votes
26answers
1k views
Merit of screencasts vs text-based documentation? [closed]
There seems to be a growing trend of presenting information in videos instead of text. It was highly annoying when I got started with Ruby on Rails (though they seem to have improved) and now I just …
28
votes
58answers
3k views
When NOT to comment code
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 …
26
votes
24answers
1k 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 …
26
votes
37answers
1k 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 …
25
votes
19answers
2k 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 …
22
votes
20answers
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, …
21
votes
13answers
913 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?
20
votes
19answers
2k views
Is a successor for TeX/LaTeX in sight?
TeX/LaTeX is great, I use it in many ways. Some of it's 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 …
20
votes
53answers
2k views
Why do software engineers hate writing documentation?
I ask because I quite enjoy it! I'm talking about design documentation and implentation notes (NOT user manuals), which are non-existent in most of the codebases I've been handed. I can understand why …
20
votes
13answers
2k 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, …
