Tagged Questions
The loc tag has no wiki summary.
5
votes
20answers
2k views
Ever hear of developers getting paid per line of code?
Has anyone ever heard of developers being paid per line of code written?
A friend tells me that many were paid this way in the 60s and early 70s.
I was around then, but have to admit that I've never ...
5
votes
2answers
1k views
LoC (lines of code) metrics for .NET 2.0 c# projects
please suggest me some free tools which will help me to get LOC metrics for C# projects using command line.
4
votes
2answers
167 views
File locks for linux
I tried using temp files:
char *temp = tempnam(NULL, "myapp_");
printf("Tempname: %s", temp) // Prints /tmp/myapp_random
while (1) { }
But when I check /tmp (while the app is still running), ...
4
votes
2answers
89 views
Finding a repository LOC's added in a specific commit
Is it possible to find a repository's total lines of code added in a specific commit?
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 ...
3
votes
2answers
300 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
3answers
258 views
Resources containing cross-language benchmarks?
What resources are available that use benchmarks for comparing programming languages?
I am interested in both
How quickly a program in a given language can execute a given benchmark?
How many lines ...
1
vote
1answer
739 views
Count total number of lines in Netbeans
Is there any way to count the total number of lines inside a php project?
1
vote
2answers
255 views
Project Lines of Code / LOC from TextMate?
I'm trying to find a trivially easy way of estimating the LOC for my Rails project, including views and CSS.
Is there a way to do this using TextMate?
If not, how else can one go about getting a ...
1
vote
4answers
800 views
Use of LOC to determine project size
How many lines of code (LOC) does it take to be considered a large project? How about for just one person writing it?
I know this metric is questionable, but there is a significant difference, for a ...
0
votes
2answers
58 views
`git push` without faking how much lines I have actually written
Well, situation is that I need to know how LoC (lines of code) I have written so far. It's easy because GitHub.com has 'Stats & Graphs' - 'Impact' section where it's all clearly visible.
The ...
0
votes
2answers
46 views
Identify LOC for each file in iOS project - ObjectiveC based application development
Is there tool that will give me a detailed report on number lines each file/class in project has?
I tried CLOC. All that I get is that the project level and that is nice to start with. I want a ...
0
votes
1answer
22 views
Counting conditional statements in Eclipse
I want to count the occurrence of conditional statements like if, else if, for, case. Using normal eclipse search may give results which includes "if" from a comments. Is there any plugin to do this ...
0
votes
3answers
169 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
4answers
627 views
C Program to Count Lines of Code
I'm writing a simple LOC counter in C to count how many lines of code are in my C source files. It's meant to be run from the command line, redirecting the target file as input and seeing a total ...
0
votes
1answer
468 views
Can't call handler in an AsyncTask?
I want to create a background thread (execute even if my activity dies) that update my data location et send it to my server with an http resquest. But it occurs an exception:
02-01 07:50:18.172: ...
0
votes
2answers
49 views
How to keep a record how many changes (in terms of LOC) to I make?
I want to keep a record how many changes do I make to my source code in terms of LOC.
For example, let's say I have a directory with sources/header files, etc. I need a tool that shows me
what ...
0
votes
4answers
331 views
Lines of code in your VB project
What is the easiest/simplest way of finding out the number of lines in your VB project?