Tagged Questions
The number of code lines. Can be used as a metric.
95
votes
14answers
49k views
How do you count the lines of code in a Visual Studio solution?
Is it possible to find the number of lines of code in an entire solution? I've heard of MZ-Tools, but is there an open source equivalent?
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 ...
11
votes
2answers
937 views
Counting changed lines of code over time
Is there any good tool that computes the number of changed lines of code over a certain time period in a mercurial repository? Something along the lines of statsvn would be great, but anything ...
10
votes
5answers
2k views
Good PHP Metric tools
I have been coding in PHP for a while using Netbeans but it does not provide any tools for obtaining code metrics. I have also used SourceMonitor before but it does not support PHP, same with Code ...
10
votes
11answers
675 views
How to present your code to potential buyers?
I'll do a demo of my code to slightly non-technical audience, and I need to show them what I've got in my project (about 15K lines of code). I'm trying to convince them that I've spend time on the ...
9
votes
6answers
762 views
Is LOC correct parameter for project estimation? [closed]
Is LOC correct parameter for project estimation?
there are so many scenarios where complexity takes much more time for a single line of code,
other than LOC what could be the suggested parameter for ...
7
votes
3answers
66 views
Does initiating a large class on a page slow it down?
I am in the process of writing a class that will probably end up being around 3000 lines of code.
What I would like to know is very simple, will initiating this class at the top of each page slow ...
7
votes
19answers
1k views
What is a line of code?
I realize there's no definitely "right" answer to this question, but when people talk about lines of code, what do they mean? In C++ for example, do you count blank lines? comments? lines with just ...
7
votes
4answers
18k views
Query to list SQL Server stored procedures along with lines of code for each procedure
I want a query that returns a list of all the (user) stored procedures in a database by name, with the number of lines of code for each one.
i.e.
sp_name lines_of_code
-------- -------------
...
5
votes
3answers
855 views
Eclipse metrics plugin for C++
Does anyone know a good metrics plugin for Eclipse that works with C++ ?
I'm looking for lines of code mainly. Thanks.
5
votes
3answers
3k views
Lines-of-code counting for many C# solutions
I am currently researching a solution for counting lines of code in C#.
I pretty much need a combination of the following two tools:
...
5
votes
4answers
3k views
Visual Studio - Determining Lines No Of Lines of code in a project
Visual Studio - Determining Lines No Of Lines of code in a project - is this possible in VS 2008?
4
votes
1answer
101 views
How do I display the total number of lines in the Emacs modeline
The default Emacs modeline only shows the current line number and its percentage in relation to the total line numbers. How do I make it show the line total as well?
4
votes
3answers
145 views
Software lines of code measurement - are comments included?
As a hobby project and as a learning exercise, I decided to implement a software lines of code measurement script in Python.
However, I have a question:
Are comments included in the measurement?
...
4
votes
1answer
469 views
Basis for claim that the number of bugs per line of code is constant regardless of the language used
I've heard people say (although I can't recall who in particular) that the number of bugs per line of code is roughly constant regardless of what language is used. What is the research that backs this ...
4
votes
14answers
1k views
Simple script to count NLOC?
Do you know a simple script to count NLOCs (netto lines of code). The script should count lines of C Code. It should not count empty lines or lines with just braces. But it doesn't need to be overly ...
4
votes
3answers
818 views
What's is a good ratio of Class to Lines of Code for Object-Oriented languages?
What's is a good ratio for the number Classes to Lines of Code for an Object-Oriented language (say C++,C#,Java and their likes)?
Many people, including managers, like the traditional LOC (lines of ...
3
votes
0answers
39 views
How much code should I be responsible for? [migrated]
I'm trying to look for some sort of fuzzy metric that I can use to compare my workload with others in my field.
Through colleagues and exit interviews, I have heard that at my small company I am ...
3
votes
5answers
416 views
Eclipse plugin for measuring lines of code
I'm running Eclipse Helios (3.6) and was wondering if there is a nice plugin out there that will count the number of logical lines of code in a java source file. By logical, I mean
if (j > 6) {
...
3
votes
10answers
288 views
how big should function length be (lines of code in a function)? [closed]
Possible Duplicate:
How many lines of code should a function/procedure/method have?
I would like to know how many lines of code should be function have? How many lines is too much.
I read ...
3
votes
8answers
615 views
How many lines of PHP code is too many for one file?
I'm creating a PHP file that does 2 mysql database calls and the rest of the script is if statements for things like file_exists and other simple variables. I have about 2000 lines of code in this ...
3
votes
9answers
325 views
How many lines of code will be saved using JQuery instead of straight JavaScript?
Maybe someone more familiar with the topic can help me to simplify or write the question correctly. We are looking for metrics on JQuery or even other JS Frameworks in comparison with the use of ...
3
votes
8answers
844 views
C# penalty for number of lines of code?
Are there limits or performance penalties on the amount of code inside of my home.cs form?
I am writing a database application front-end in C# in Visual Studio 2008. The way things are lining up, I ...
2
votes
3answers
77 views
SWT needs to much lines of code
I wondering why swt is so inconvenient to use. We as programmers have to produce tons of unnecessary source code. Here an example.
Label label = new Label(parent, SWT.NONE);
...
2
votes
5answers
366 views
Easy way to count lines of code using reflection
I need a (very rough) estimation on the lines of code (none-blank, none-comment) of an .net Assembly (c#). Is there an easy way to do this using reflection?
I would prefer a hand-written tool (so I ...
2
votes
6answers
363 views
How to calculate the number of lines in source code
As the title says how i can calculate the total number of lines in a source code folder using bash commands
2
votes
1answer
115 views
What is the minimal licensable source code?
Let's suppose I want to "protect" this code about being used without attribution, patenting it, or through any open source licence...
#include<stdio.h>
int main (void)
{
int version=2;
...
2
votes
2answers
230 views
How do the size standard libraries compare for different languages
Someone was recently raving about how great jQuery was and how it made javascript into a pleasure and also how the whole source code was so small(and one file).
I looked it up on www.ohloh.net/ and ...
1
vote
3answers
131 views
Utility To Count Number Of Lines Of Code In Python Or Bash
Is there a quick and dirty way in either python or bash script, that can recursively descend a directory and count the total number of lines of code? We would like to be able to exclude certain ...
1
vote
1answer
62 views
How to you measure lines of front-end code (HTML, CSS, JS, JSP)?
The company I work for is being audited and I have to provide some metrics on our codebase.
I have provided some statistics on our Java code using some plugins for Eclipse.
But I also need to ...
1
vote
3answers
192 views
Windows diff tool to extract lines of code written and time spend
Is there a tool for Windows that can read the Delphi history files.
and extract the lines-of-code written per session along with the timestamps of the sessions.
What info do I want
session_id ...
1
vote
1answer
151 views
How to calculate lines of code, comments and docstrings for a Python module?
Is there a tool or snippet that produces the following output in some form:
lines_of_code = 98
lines_of_comments = 24
lines_of_documentation = 11
NOTE 1: I will then try to feed this data to ...
1
vote
4answers
82 views
Countlines of code : include deleted lines?
Should we need to consider deleted lines of code , along with inserted(added)/modified lines of code while taking metrics? ( say revision's to code made me to delete some lines of code)
1
vote
5answers
404 views
count lines of code between two versions
Is there any way to compare lines of code between two clearcase versions , or for that matter whatever the version controller , I want to compare two different version say compare main branch with the ...
1
vote
1answer
287 views
Merging selective lines of code using Git?
I would like to force git to always merge using a (kind of) 3-way conflicts resolution. Moreover, I want to do it to the point of being able to choose single lines.
At the moment I am merging two ...
1
vote
3answers
176 views
How do I get a breakup of my Lines Of Code?
Is there a tool that calculates various LOC statistics? It would have to support popular languages like C++, C#, Python, PHP, JavaScript, ActionScript, etc and interpret code accordingly.
An example ...
1
vote
3answers
76 views
what is the best program for arranging codes?
i need a program that make my php and html codes tidy.i mean remove unnecessary spaces,tabs,newlines and ... .
thanks for helping.
1
vote
5answers
1k views
How might I determine the number of lines of code in a C++ project?
Is there a quick way, in Visual Studio, to know how many lines of code exist in a project?
1
vote
4answers
509 views
Useless code metric: Yearly revenue per line of code [closed]
The world is full of useless code metrics so I thought I would add one of my own I even found someone talking about revenue per line of code.
So what is the yearly revenue of the product you're ...
0
votes
1answer
44 views
Ruby on Rails Validates Method Structure
I have a fairly simple ruby syntax question (and a couple other clarifications), and I can't figure it out for the life of me.
The context is I have pretty common model class subclassing ...
0
votes
1answer
16 views
What is “Third Generation Scale”?
In the context of counting source lines of code (SLoC) what is the "Third Generation Scale" factor that is defined on each programming language?
0
votes
3answers
168 views
Count total number of lines in a project excluding certain folders or files
Using the command:
wc -l + `find . -name \* -print`
You can get the total number of lines of all files inside a folder.
But imagine you have some folders (for example libraries), which you don't ...
0
votes
1answer
411 views
Eclipse Class Count Lines Plugin?
I need a plugin that can count the lines of code that a particular class uses. This includes the code within the particular class, and the number of lines of code in all the classes that it uses as ...
0
votes
2answers
582 views
Subversion. Metrics. Get lines of added/updated code for each file in check-in programmatically
I need your advice. In my application I need to get programmatically such metrics for users check-ins as lines of added/updated code for each file in check-in. This app is writed on c# and uses the ...
0
votes
1answer
62 views
Can anybody recommend a program that generates a graph the lines of code count?
I've found a lot of programs and scripts for counting the number of lines of code using Google, but what I'm looking for is something that graphs it in real time. I'm hoping this will motivate myself ...
0
votes
5answers
948 views
What is the best way to measure “lines-of-code”? [closed]
Duplicate of http://stackoverflow.com/questions/353380/what-is-a-line-of-code
Should you count end-lines? Should you base it on delimiters in your language, such as semi-colons? Should you count all ...