Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

76
votes
32answers
7k views

What is some great source code to read?

Following the advice of Scott Hanselman, I'm looking for good source code to read. Here's what is currently on my list: Scott's posts CodeProject How about you? What source code do you read? It ...
43
votes
12answers
2k views

Code reading: where can I read great, modern, and well-documented C++ code?

Reading code is one of the best ways to learn new idioms, tricks, and techniques. Sadly it's very common to find badly written C++ code. Some use C++ as if it was C, others as if it was Java, some ...
32
votes
13answers
1k views

How do I begin reading source code?

I understand the value of reading source code, and I am trying my best to read as much as I can. However, every time I try getting into a 'large' (i.e. complete) project of sorts, I am overwhelmed. ...
30
votes
21answers
2k views

How do you learn other people's code?

I've been a programmer for years now and I feel very comfortable in a handful of languages, especially C. What I find baffling is that while I have no problem reading code from textbooks and example ...
28
votes
14answers
2k views

Code to read and learn from [closed]

The best way to learn programming is by writing programs. Reading programs written by brilliant programmers is equally important. If someone asks me for source code to read and learn from, without a ...
22
votes
16answers
2k views

Good C code to read for learning

To learn a language it is recommended to read some good code written in it. I want to recommend to friend some good C code to read. What projects are suitable online for reading good code? Criteria: ...
21
votes
8answers
780 views

Recommended JavaScript annotated source code for learning

I have recently found annotated source code for underscore.js and backbone.js I'm currently going through these reading them to learn how other authors structure and write javascript code. It's a ...
19
votes
11answers
1k views

Best practices for pronouncing C code

As my formal education in programming pre-dates C, I learnt C from K&R and other texts. Are there helpful conventions for vocalising C code when reading and writing it? For example, in d = ...
19
votes
12answers
2k views

Good techniques for understanding someone else's code

What techniques can anyone suggest for understanding a new piece of code? Here are some of the things I find sort-of work: 1) Print the code out, on a colour printer, with syntax highlighting, ...
18
votes
5answers
883 views

I want to start reading the Python source code. Where should I start

I want to start reading the Python source code. My experience, I know Python and Java very well. I know some other languages at various levels of proficiency, but neither C/C+/ particularly well. I ...
14
votes
9answers
529 views

Learning Clojure by reading core.clj

I came across the tweet today: Start each day by reading the implementation of a function or macro in Clojure's core.clj. My Clojure knowledge is really basic, I can hardly read other's ...
13
votes
18answers
1k views

Good code to read?

Lurking around on Stack Overflow, I have seen a couple of comments like "reading code is better than reading codes" and "join open source projects and read other people's code, that will teach you". ...
13
votes
6answers
8k views

Generic Exception Handling in Python the “Right Way”

Sometimes I find myself in the situation where I want to execute several sequential commands like such: try: foo(a, b) except Exception, e: baz(e) try: bar(c, d) except Exception, e: ...
9
votes
7answers
672 views

Some really good examples of well written javascript

Can anyone point me in the direction of some really well written javascript examples. I have been trying to improve my javascript after reading a lot from douglas crockford book etc but i wondered ...
9
votes
3answers
479 views

What C++ OSS project has good source code to learn from? [closed]

Possible Duplicate: Code reading: where can I read great, modern, and well-documented C++ code? Is there an open source project written in C++ that you would in particular recommend for ...
8
votes
13answers
3k views

Good examples of C applications?

Everyone knows that C is hard to program in, provides you with almost no useful abstractions, and is even dangerous. However, given enough design and discipline, it's possible to write clean, ...
8
votes
10answers
1k views

Where can I read good code? Any resources for that?

I read lot of articles saying that "Reading others code will helps you to be a better programmer". But where can I read good code and bad code so that I can learn how to and how not to code. If you ...
7
votes
4answers
384 views

Examples of good code to learn Ruby?

I am a self-taught programmer, and I know I should be reading good code in order to learn more, and unlearn the bad stuff I've learned. The problem is, I don't know where to start. What Ruby ...
7
votes
4answers
905 views

Good people or projects to follow in github?

I'm following a a bunch of interesting projects on Github lately, What projects or people are you following ? I'm not talking only ruby, or RoR, projects. I'm looking forward to see projects that ...
7
votes
4answers
463 views

code-reading books [closed]

I have been hanging around Borders (the bookstore) lately and have seen some books about "code reading". It covers topics like how to read code and understand it effectively, and how to (if required) ...
6
votes
14answers
945 views

What are the skills needed to read and understand other people's code? [closed]

I have got a new job, and in this job I need to go through other people's code to understand the application. What are the skills which I must acquire to accomplish the task of reading and ...
6
votes
5answers
470 views

What are some small, fast and lightweight open source applications (µTorrent -esque)?

Possible duplicate What is the best open source example of a lightweight Windows Application? µTorrent is a small bit-torrent client, a really small one. It doesn't come with an installer, ...
6
votes
9answers
351 views

How do you read an existing Rails project?

When you start working on an existing Rails project what are the steps that you take to understand the code? Where do you start? What do you use to get a high level view before drilling down into ...
5
votes
7answers
157 views

Understanding large php code, what techniques to use?

I have been handed over a large undocumented code of a application written in php as the original coder went AWOL. My task is to add new features but I can't do that without understanding the code.I ...
5
votes
5answers
219 views

Tools and techniques to improve comprehension of unfamiliar code?

I've realised that my greatest weakness as a programming student is my poor ability to comprehend other people's code. I have no trouble whatsoever with 'textbook' code, or clearly-commented code, ...
5
votes
5answers
278 views

What is the best approach to reading and understanding the code of a large scale project?

Say you decide to work on Open Source Software and you are faced with a project with millions of lines of source code, what do you do? What are the best methods to tackling this project and getting a ...
5
votes
8answers
895 views

Good example of C++ application?

everyone. Where I can find some good example application written in C++? I want to read some code in my spare time, how can I get started?
4
votes
1answer
151 views

Well written Objective-C Open Source to learn from?

I'd like to improve my Objective-C skills by learning from good Objective-C code. What projects are recommendable for this purpose? Is there any open source project which is exceptionally well written ...
4
votes
6answers
279 views

Where can I find some C# source code that is worth learning from?

I hear a lot of people say that one of the best ways to learn to write good code is to read good code, dig through it, and figure out what it's doing. That's fine and all, but how do I know it's good ...
3
votes
5answers
76 views

What's the best way of define transformation rules in ruby?

Some times you need to "map" a set of values against another set of values, so when you get a value from the first set, you return the corresponding value of the other. It's like the concept of ...
3
votes
2answers
190 views

Is there good source code related to web development to learn from?

I've recently read Code Reading and found that if I wanted to grow my skills as a software developer it would be useful for me to read more code. I'm currently working in the world of mod_perl, ...
3
votes
7answers
691 views

Whose code do you read because it's fun, useful and educational?

Whose code do you read because it's fun, useful and educational? For example, I am really liking Peter Norvig's code. His python samples (Solving Every Sudoku Puzzle, How to Write a Spelling ...
3
votes
2answers
415 views

Simplest “Oh duh!” moment when looking at others' source

When have you found something that gave you pause and made you realize that more cooks in the kitchen is sometimes a good thing? Specifically, simple things you've seen that made you wonder why you ...
2
votes
1answer
70 views

Eclipse - inline open declaration?

Eclipse has the handy option to hit f3 when the cursor is on a method to open the declaration. However, is there a way (via some plugin or otherwise) to do something similar, but inline the method ...
2
votes
2answers
2k views

Is there a source insight like code reader on Mac?

Or what app do you use to read code on Mac?
2
votes
1answer
1k views

Examples of well written simple PyGTK apps?

I'm looking to get my hands dirty with PyGTK and was wondering if anyone can recommend any relatively simple, really cleanly written PyGTK apps that I can look to for best practices or examples? Any ...
2
votes
2answers
115 views

library/module or my code? what is better? (ruby)

I asked my question and got two answers one is piece of code and the other one is to use a library/module. I am wondering what is better to use. Does it actually matter? Is there any difference in ...
2
votes
5answers
324 views

Design and Readbility

I am working on a project written in C++ which involves modification of existing code. The code uses object oriented principles(design patterns) heavily and also complicated stuff like smart ...
2
votes
4answers
1k views

How do I start reading the PHP source code?

The source code for the PHP interpreter is absolutely mystifying to me. The thing is, I'd like to learn more about it, so I can avoid making Schlemiel-style mistakes. This is a huge project, some ...
1
vote
3answers
1k views

How to read source code of Rails sample project?

Reading source code of sample projects, such as Beast and Bort, are recommended as a good way to learn rails. But I found myself getting lost in reading source code of these projects, cause the ...
0
votes
0answers
21 views

Reading event-driven code

I need to modify a rather huge event-driven Java application, and I am looking for techniques and processes to follow to understand the internal mechanisms. It use the event library seda.sandStorm for ...
0
votes
0answers
20 views

For ASP.NET/C# developers: How do you read code? [closed]

Do you just read code using the Visual Studio IDE? Do you utilize any special plugins? Do you run the program and use a debugger and step through the code? How many monitors do you use to read code? ...
0
votes
3answers
108 views

Is this snippet creating an anonymous Perl hash?

While reading the snippets provided by FormFiller ( where I kinda got by accident ) , I noticed this line: $f->add_filler( password => Interactive => []); Is this password => ...
-6
votes
5answers
105 views

Following a huge Python program [closed]

I have a huge Python program which I want to understand how it works and make changes. What is recommended way to do this? Is there a tool to tell me which functions called when, and with what ...