Tagged Questions
The reading-source-code tag has no wiki summary.
30
votes
9answers
1k views
What books help one to learn to read code? [closed]
Lion's Commentary on Unix Sixth Edition with Source Code is a wonderful book to learn how to read code. Reading code is important -- how does one learn how to write excellent code without having read ...
20
votes
21answers
1k views
Source Code Analysis - what do you do?
Situation: I have some source code, and I'm boning up on what happens. Who calls what, what goes where, etc, etc. (There is minimal documentation/comments, so I have to work it out myself).
Now, my ...
9
votes
8answers
396 views
How to begin reading a huge amount of source code?
I'm interested in a specific Java-based project and want to understand how it really works. My main problem is that there are different versions of documentation which are inconsistent. The source ...
5
votes
5answers
86 views
Stepping through an application
I started working on a new application. It is very large and there are a lot of layers to it. There isn't any documentation and not a lot of commenting.
Is there a tool someone can recommend that can ...
2
votes
5answers
3k views
Generic source code browser for Windows and Linux
I am looking for a generic source code browser for Windows and Linux. The languages I use are limited to C/C++, Python and Perl.
This tool must be able to show a view of classes/methods/functions in ...
1
vote
0answers
67 views
Tool for searching code, which outputs name of function [closed]
I'm looking for a free code search utility with a output, different from the ones I know. Instead of printing the file and line number and some lines of the context, I would like to know:
within ...
1
vote
2answers
45 views
Vertically aligned source code (should and/or how)
Call me picky but I really like vertically aligned source code. Take something like...
private long getGameTime() {
final String mode = GameSettings.getGameMode(this);
final Resources r = ...
1
vote
3answers
162 views
How to analyze a project
I've been wanting to help out with an open source project for some time now. I want to do this for two main reasons. I am a strong supporter of foss and I want to gain experience.
I've struggled to ...
1
vote
6answers
1k views
I want to read the source code of a real compiler. Suggestions on which & how? Any experiences to share?
In order to continue my dive into reading real code, I'd like to read and understand the source code of an actual in-use compiler. Is there one that you think is particularly well-written, elegant, ...
-1
votes
1answer
53 views
Where can we get explanations of the code of open source projects
Apart from inline code comments and the discussion forums of the respective open source projects, can anybody point me a single place where I can get the explanation of the code of open source ...