The number of code lines. Can be used as a metric.
3
votes
4answers
61 views
Get number of lines for specific varchar in MS SQL
In MS SQL Server 2012 I have a database with a table containing a varchar column that holds some text that might even include line breaks.
Basic example:
CREATE TABLE Example
(
[ID] INT
, ...
0
votes
0answers
63 views
Lines of code ever written [closed]
Considering how long programming languages have existed, how many lines of code would one suppose has ever been written since the beginning of the electronic computer, as we know it?
Now, obviously ...
1
vote
1answer
58 views
Git/GitHub Total Number Of Lines Contributed For An Account
I want to get the total number of lines of code that an account on GitHub has done. This is not for judging productivity or whatever (LOC is a poor choice for that), it's really just for our ...
0
votes
2answers
72 views
How would you measure inserted / changed / removed code lines (LoC)?
My question concerns LoC metrics. I have to provide statistics of inserted, changed and removed lines. My users use ClearCase and the example below based on it, however I believe that my question is ...
0
votes
1answer
32 views
In Sonar, how do I tell where lines of code were added to?
Is there a way to drill down to see which directories/files have added lines of code?
Yesterday I see that my project added ~5k LOC. I think Sonar is confused, as we didn't add that many, we just ...
-1
votes
2answers
191 views
A one-liner to read text file into std::string in c++? [closed]
Is there a one-liner to read the contents of a (not very big) text file into a string?
The shortest I've found:
#include <string>
#include <fstream>
#include <streambuf>
...
0
votes
0answers
96 views
How to count lines of code for web sites in visual studio 2010?
I used to think Calculate Code Metrics feature in Visual Studio 2010 is capable of calculating lines of code for all types of projects; But today I realized that it can only calculate LOC and other ...
2
votes
0answers
72 views
Why doesn't NDepend produce a stable LOC count?
I am using the NDepend 4.1 API to count the lines of code in a Visual Studio 2010 solution that has a few projects, which are all targeting the .NET Framework 4. Here's my code:
var servicesProvider ...
0
votes
1answer
18 views
How to left-justify lines of code to the left edge of the window in eclipse
I have alot of code that has white space to the left of the lines of code in my eclipse project.
I would like to select pieces of this code and remove the extra white spacing so each line lines up ...
0
votes
0answers
70 views
statSVN and SLOCcount SLOC difference
I am doing a coursework where I require to work out the source lines of code, to do this I used statSVN to generate logs, reports and graphs. I used SLOCcount to work out the estimate of my system and ...
0
votes
4answers
324 views
Lines of code you have written
Out of curiosity, is there any way to get the number of lines of code you have written (in a specific project)?
I tried perforce with p4 describe #CLN | wc -l, but apart from so many edge cases ...
3
votes
1answer
134 views
How to count KLOC in a Java project (including front-end technologies)?
I would like to know the total KLOC of my projects including their front-end technologies (ex. freemarker). We are using IntelliJ IDE and Jacoco for metrics collection of Java (only) files. The ...
1
vote
1answer
108 views
retain indentation relative to first line on multiple line copy & paste
Sorry if this has been answered already, but nothing's coming in on google or stack's search.
When I copy & paste multiple lines in Notepadd++, all the lines hold their relative indentation, but ...
0
votes
1answer
99 views
multine count as two lines instead of single line? [closed]
I wrote a program that counts lines of codes from a python file but I have a small problem and I'm looking for a good way to do it .. I have few examples of multi-line and I want to count them as 2 ...
3
votes
2answers
366 views
Visual Studio code metrics misreporting lines of code
The code metrics analyser in Visual Studio, as well as the code metrics power tool, report the number of lines of code in the TestMethod method of the following code as 8.
At the most, I would expect ...
0
votes
0answers
50 views
How can i ignore generated files while using sloccount
how can i ignore sloccount.sc and xml files created when using sloccount
I use the following command:
sloccount --duplicates --wide --details . | | sed "/\/\.svn\//d" | tee sloccount.sc
i am using ...
3
votes
1answer
154 views
Why does Github list Django's total lines of code as over 800K?
https://github.com/django/django/graphs/code-frequency
It can't be that big can it? I've seen it listed elsewhere as only about 80k:
...
0
votes
1answer
491 views
IntelliJ Idea 11 - How to count lines of code(LOC)?
There is an old question about it, I just tried Statics plugin as some people mentioned, but I couldn't find anything associated with it after Idea restart. Does anyone knows a way(plugin, etc..) to ...
-1
votes
4answers
1k views
Counting lines of code
I was doing some research on line counters for C++ projects and I'm very interested in algorithms they use. Does anyone know where can I look at some implementation of such algorithms?
0
votes
1answer
559 views
How to find Lines of Code of packaged procedures and functions in Oracle [duplicate]
Possible Duplicate:
How to View Oracle Stored Procedure using SQLPlus?
Im new to Oracle. Could you please help me on this?
How to fine Lines of Code of packaged procedures and functions in ...
9
votes
2answers
4k views
How to count lines in a netbeans project
Hello I have netbeans 7 and I was wondering how to calculate the total lines for a project. I have looked through Google but every time I do it I only find dead ends or non working plugins. Does ...
0
votes
1answer
143 views
Estimate lines of code in BBC website
Does anyone have an estimation for lines of code in BBC News website? (and estimating strategy) http://www.bbc.co.uk/news/
I could not find any estimation methodologies. The closest answer was all ...
0
votes
1answer
72 views
Is there a max. limit for lines of code in Aptana 3?
i work with Aptana 3.0.6.
Today i opend a CSS file with 10302 lines of code and i can only make two or three click's and than Aptana freezes vor 5 seconds (or more).
Is there a limit for lines of ...
-1
votes
1answer
3k views
Lines-of-code estimations for Windows operating systems [closed]
I am curious about estimations for the number of lines of code that went into different versions of Windows, like Windows 2000, Windows Server 2008, Windows 7, etc. If possible, distinguishing between ...
7
votes
3answers
329 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 ...
0
votes
1answer
527 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 ...
4
votes
1answer
465 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?
2
votes
3answers
108 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
3answers
1k 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 ...
2
votes
1answer
228 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
1answer
72 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?
8
votes
5answers
8k 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) {
...
2
votes
3answers
1k 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 ...
1
vote
3answers
278 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 ...
3
votes
5answers
1k 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 ...
1
vote
1answer
338 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
113 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)
3
votes
7answers
2k 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
6
votes
4answers
3k 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.
1
vote
5answers
861 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 ...
3
votes
2answers
474 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
215 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 ...
4
votes
3answers
202 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?
...
0
votes
1answer
687 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 ...
22
votes
3answers
3k 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 ...
2
votes
1answer
132 views
What is the minimal licensable source code? [closed]
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;
...
3
votes
10answers
591 views
how big should function length be (lines of code in a function)? [duplicate]
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 ...
6
votes
1answer
1k 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 ...
0
votes
3answers
100 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.
2
votes
2answers
283 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 ...





