Tagged Questions
1
vote
2answers
216 views
Prevent code from getting mess
I am a student and a freelance programmer. These days I am developing a software in VB6 which has recently crossed 100KB of source code.
The main problem, I face is, many times I have to refactor my ...
4
votes
1answer
208 views
Distinguishing repetitive code with the same implementation
Given this sample code
import java.util.ArrayList;
import blackjack.model.items.Card;
public class BlackJackPlayer extends Player {
private double bet;
private Hand hand01 = new Hand();
...
50
votes
7answers
3k views
Is there something wrong with how we're doing version control?
I work with a team of programmers as the business analyst. We just released version 2.0 of our product and are working on the next version to be released in 3 months (it's an internal software ...
1
vote
5answers
128 views
Automatic sorting of class/module members and its possible impact on productivity and code quality
Recently I saw some possibilities of some IDEs (via plugins) to sort members of their classes/modules based on some criteria, sou you could have everything sorted automaticaly no matter where you ...
4
votes
5answers
558 views
Example bad code project to motivate refactoring / good design [closed]
This is sort of the opposite of Is there an open-source project that can be an example of well-written code?.
I am teaching software engineering to undergraduates and I would like a blob of object ...
0
votes
1answer
570 views
C++ IDE and tools with Clang integration [closed]
Recently I've read this blog about Google integrating Clang parser into their code analysis tools
This is something in which C++ is at least a decade behind other languages like Java, but now that ...