Tagged Questions

1
vote
3answers
312 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 …
8
votes
7answers
140 views

Is LOC correct parameter for project estimation?

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 …
5
votes
24answers
875 views

How many lines should a method typically have? [closed]

Possible Duplicate: How many lines of code is too many? I'm not really that new to programming but I am new to standards as a whole. Any professionals here care to share what's the standard …
3
votes
9answers
222 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 …
2
votes
5answers
153 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 …
7
votes
11answers
407 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 …
5
votes
18answers
792 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 …
1
vote
5answers
358 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?
0
votes
4answers
263 views

Useless code metric: Yearly revenue per line of code

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 …
5
votes
3answers
697 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 …
0
votes
5answers
355 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 …
2
votes
14answers
644 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
2answers
2k 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 -------- ------------- …
2
votes
7answers
494 views

C# lines of code penalty

I wondered if anyone knows of limits or performance penaties on the amount of code inside of my home.cs form? I am writting a database application front-end in c# in Visual Stuido 2008. The way …