The code-walkthrough tag has no wiki summary.
1
vote
3answers
207 views
How does this Java code snippet “work”?
The Java interview question is:
Without using a temporary buffer, separate the 0's and 1's from an array, placing all 0's to the left and 1's to the right. Print the result as a string. For ...
7
votes
1answer
6k views
Django form.save step by step
Let's say I have a form for adding/editing products (with field 'user' being a foreign key to my User) triggered from two separate view functions - add/edit :
def product_add(request):
...
9
votes
6answers
3k views
Recommend good online sample walkthrough of TDD?
I find unit testing vital.
Several times I have tried the TDD but given up on it as sitting down with a piece of paper and drawing out a few diagrams first always seem more productive. As so many ...
6
votes
2answers
1k views
Learning Mono Source Code
I am interested in contributing something to mono whether it is a documentation or what ever. As a first step, I downloaded the source tree for going through the code. However, I thought if some one ...
2
votes
2answers
943 views
Visual Studio 2010 Beta 2 and Entity Framework walkthrough
I am in the process of evaluating Visual Studio 2010 Beta 2 and looking for possible replacements for current our data access layer.
The Entity Framework looks like a promising replacement to the ...
22
votes
4answers
6k views
How Does FireFox Work? Source Code Walk Through?
I'd like to learn how FireFox works behind the scenes. I'd like to understand the source code and the different components but the code-base is rather large and I'm not sure where to start.
I'm ...
18
votes
7answers
8k views
Code Walkthrough vs. Code Review [closed]
How many of you use walkthroughs instead of reviews? Or in conjunction with Reviews? Or only use walkthroughs?
Are Walkthroughs beneficial and how have you all implemented code walkthroughs?