Source Lines Of Code. A metric used to measure the size of a program by the count of lines.

learn more… | top users | synonyms

0
votes
1answer
29 views

using sloccount and grep to get the SLOC after the = symbol

I am trying to automate the process of getting the sloccount for a list of files in a directory and place them into a text file. I need to do this for more than one directory. the aim is to 'grep' the ...
0
votes
1answer
31 views

Length of Character as a valid measure for source code

say lenchar be the number of characters in source code, is it a valid measure for the length of source code?
2
votes
2answers
312 views

What is a good way to count source lines of code (SLOC) in a CoffeeScript project?

Is there a common way of counting source lines of code (SLOC) in a CoffeeScript project? I'm hoping for something that will traverse all of the directories in my project during the count. I found a ...
0
votes
5answers
206 views

SLOC tool for java with man-years estimation

I'm looking for a tool to count source lines of code for Java as well as giving an estimate of the number of man-years invested in the code. Since Java code tends to be more verbose than other ...
6
votes
1answer
2k views

How can I use gitstats to find out how many SLOC a Git repo has in total and per commiter?

I just installed GitStats, and I'm at that point where I have to say, "Now, what?". I see examples on the site of user lines of code, etc., but no examples of how to get simple stats like that. I ...
4
votes
2answers
1k 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
4
votes
2answers
1k 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 ...
0
votes
3answers
535 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 ...
1
vote
1answer
123 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 ?
8
votes
11answers
1k 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, ...
2
votes
1answer
124 views

Check SLOC and flag methods over 300 lines long

Is there a way I can automatically scan my source code for methods that are over (eg) 300 lines long so that they can be flagged for review (with an aim to refactoring to smaller methods) I expect ...
3
votes
4answers
384 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
3answers
211 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 ...
71
votes
4answers
47k 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 ...
2
votes
3answers
221 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 ...
28
votes
4answers
8k 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 ...