Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
401 views

Overcoming C limitations for large projects

One aspect where C shows its age is the encapsulation of code. Many modern languages has classes, namespaces, packages... a much more convenient to organize code than just a simple "include". Since C ...
6
votes
7answers
331 views

Coding Pratice: What are your thoughts on a 1.7 Million LOC project?

I am listening to a panel discussion where a person mentions their 'engine' is not 1.3 but now is 1.7 million lines of code. That frightens me. I can't imagine that number of lines, the amount of ...
5
votes
2answers
83 views

Are there technical reasons to avoid creating highly tangled package dependencies in large Java projects?

I'm new to modern Java compilers and Virtual Machines, so I'm curious, what technical issues do large Java projects (5000+ sizable classes) encounter, during compilation and at runtime, as the gordian ...
4
votes
3answers
236 views

What C++ book talks about recommended ways of organizing big project C++ code?

I would like to know about books that talk about design issues like when to use namespaces and other coding standards to write good quality efficient C++ code. One that talks about Code testing will ...
2
votes
4answers
311 views

Structuring a Large PHP Project

PHP is a largely flexible language, I could do this anyhow and anywhere. However, what would you consider to be best practices for structuring large projects? I have built a bespoke CMS for a client, ...
2
votes
2answers
415 views

MSTest + MSBuild + Many test projects

I am responsible for maintaining the msbuild scripts for a large project. The solution contains about 90 projects each having their own test project. As part of the build process all test projects ...
2
votes
3answers
155 views

Copying a foreign Subversion repository to keep under dependencies

I want to keep dependencies for my project in our own repository, that way we have consistent libraries for the entire team to work with. For example, I want our project to use the Boost libraries. ...
1
vote
8answers
264 views

Our project contains 2600 class files - where and how should we start writing junit tests?

Our project contains 2600 class files and we have decided to start using automated tests. We know we have should have started this 2599 class files ago, but how and where should large projects start ...
0
votes
0answers
76 views

Linking libraries and executables using cmake

I'm working in a reasonably large c++ project (composed of some executable and libraries) and I'm struggling with some building issues. Using cmake, every time I modify the code of a library I need ...
0
votes
0answers
453 views

Silverlight + WCF in a large ERP project - How to handle changes on Server/Service Side?

we are rebuilding our ERP-Application from a procedural programmed desktop app to a web-based solution and want to use Silverlight togehter with a WCF Service. Now we are struggling with an ...