Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
4answers
17k views

Counting Line Numbers in Eclipse

I have a Java project in Eclipse with ~10 packages and ~10 class files per package. Is there a way to determine total lines of code for the whole project from within Eclipse? I am familiar with ...
17
votes
4answers
4k views

How can I graph the Lines of Code history for git repo?

Basically I want to get the number of lines-of-code in the repository after each commit. The only (really crappy) ways I have found is to use git filter-branch to run "wc -l *", and a script that run ...
6
votes
11answers
472 views

How bad is SLOC (source lines of code) as a metric?

We are documenting our software development process. For technical people, this is pretty easy: iterative development with internal milestones every four weeks, external every 3 months. However, ...
3
votes
2answers
296 views

Count Lines of Code on Netbeans PHP Project

How can i count the LOC of a Netbeans PHP-Project? i´m using Netbeans 7.0.1 on Windows 7
3
votes
4answers
244 views

Article about code density as a measure of programming language power

I remember reading an article saying something like "The number of bugs introduced doesn't vary much with different programming languages, but it depends pretty much on SLOC (source lines of ...
2
votes
2answers
299 views

What's the best tool for compiling SLOC/LOC statistics/count by author?

I can't find a free tool that will count the SLOCs on a VCS repository or working copy and produce a breakdown by the author responsible. Here are the features of the ones I've looked at. statsvn ...
2
votes
3answers
139 views

Implied meaning of Ratio of Physical to Logical SLOC

If there any implied meaning of a high or low ratio of Physical to Logical SLOC? Does it means anything like bad programming style or something merits consideration? Below is the metric of our ...
2
votes
3answers
172 views

How many SLOCs are you managing in your current work? [closed]

Right now I'm directly responsible for around 120k of Java code, about 3/5 is written using GWT. I can trace any functionality to a source file in less than 1min/30 secs. I have 3 years of ...
1
vote
1answer
72 views

Logical Line Counting in SLOC

How can i learn about Logical Line Counting in SLOC ? and where i can see some examples about Logical line counting ?
0
votes
3answers
249 views

How to estimate project size in SLOC when rewriting an aplication from one language to another?

I remember that in the past I found some statistics that were telling the expected size of a program based on the SLOC and programming language. I would like to do a rough estimate for reimplementing ...