Neopoligen Lines Of Code
October 2024
This is the first project of this size that I've coded on my own. I was curious how big it is. This is the output from tokei on Oct. 24, 2024:
> dojo ~/workshop/neopoligen/cli/src · OK · [dev] > tokei =============================================================================== Language Files Lines Code Comments Blanks =============================================================================== Plain Text 1 10 0 6 4 ------------------------------------------------------------------------------- Rust 77 15111 10384 3934 793 |- Markdown 4 78 0 65 13 (Total) 15189 10384 3999 806 =============================================================================== Total 78 15121 10384 3940 797 ===============================================================================
I didn't know rust when I firsted started and am still learning (even though I'm two years into the project). I expect the number would be somewhat less if I started from my current knowledge base. In fact, I'm working on some refactors that should reduce it.
I don't really care about lines of code in a practical sense, but it's kinda fun to see that I've made something that crossed 10K lines.
Before clean up on Oct. 31, 2024
=============================================================================== Language Files Lines Code Comments Blanks =============================================================================== Plain Text 4 15 0 9 6 ------------------------------------------------------------------------------- Rust 144 21385 14762 5356 1267 |- Markdown 5 81 0 68 13 (Total) 21466 14762 5424 1280 =============================================================================== Total 148 21400 14762 5365 1273 ===============================================================================
After code cleanup
=============================================================================== Language Files Lines Code Comments Blanks =============================================================================== Plain Text 3 5 0 3 2 ------------------------------------------------------------------------------- Rust 64 8158 6044 1574 540 |- Markdown 3 19 0 16 3 (Total) 8177 6044 1590 543 =============================================================================== Total 67 8163 6044 1577 542 ===============================================================================
end of line