Difference between revisions of "Statistics"
From OdaWiki
(→Lines of code) |
(→Lines of code) |
||
Line 6: | Line 6: | ||
LOC is not the best indicator of performance and is included here merely for entertainment value. At this rate (1300 revisions in 6 months), the graph suggests that we shall have no code remaining in 26 months! | LOC is not the best indicator of performance and is included here merely for entertainment value. At this rate (1300 revisions in 6 months), the graph suggests that we shall have no code remaining in 26 months! | ||
+ | |||
+ | And no, I didn't do this by hand, I used a script: | ||
+ | |||
+ | for i in `seq 1 13`; do svn update -r $(echo "$i*100"|bc); echo $(cat $(find . -iname "*.cpp") | wc -l) >> loc; done | ||
== SVN == | == SVN == | ||
See the [[svn]] page | See the [[svn]] page | ||
== IRC == | == IRC == |
Revision as of 01:30, 7 April 2006
This place collects interesting statistics about various aspects of the odamex project
Contents
Code
Lines of code
LOC is not the best indicator of performance and is included here merely for entertainment value. At this rate (1300 revisions in 6 months), the graph suggests that we shall have no code remaining in 26 months!
And no, I didn't do this by hand, I used a script:
for i in `seq 1 13`; do svn update -r $(echo "$i*100"|bc); echo $(cat $(find . -iname "*.cpp") | wc -l) >> loc; done
SVN
See the svn page