memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit f853096ac0246a493cda7dfd07eaaf58ed9f4e90
parent dbaa369b02a1acdb29a39267a76e9ae37893ddc7
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Tue, 13 Mar 2018 07:09:44 +0100

Touch up intro and tweak word counting script

(It's *critical* that I get  the imaginary file hierarchy right before
I actually commit those notes, you see)

Make sure update-count.sh only looks at committed files; there's going
to  be a  lot  of untracked  files  in  there.  Maybe  I  could add  a
"possibly lost" count for those?

Diffstat:
Mindex.md | 16++++++++--------
Mupdate-count.sh | 2+-
2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/index.md b/index.md @@ -1,5 +1,5 @@ # Peniblec's Memory Leaks -## still reachable: 244 words in 2 pages +## still reachable: 0 words in 0 pages Hi! I am a software engineer interested in [a bunch of things]. @@ -12,10 +12,10 @@ This is the somewhere. Also I'd like to join the [blogging bandwagon] someday, and maybe publishing this stuff is a good first step; in practice though I don't -have anything interesting to talk about. `$DAYJOB` is as -closed-source as it gets; I did send a few trivial patches to some -free-software projects, and I have an ever-growing [list of itches] I -intend to scratch someday, but they're not exactly noteworthy. +have much to say. `$DAYJOB` is as closed-source as it gets; I did +send a few trivial patches to some free-software projects, and I have +an ever-growing [list of itches] I intend to scratch someday, but +they're not exactly noteworthy. I find it tough to cook up meaningful patches while desperately [trying to keep up with my industry], [screwing around with my @@ -27,9 +27,9 @@ Also I like to read and watch and play [lots of silly shit]. And I guess that just about wraps up this joke of an introduction. -[a bunch of stuff]: cv.md +[a bunch of stuff]: personal/cv.md [blogging bandwagon]: reviews/blog-roll.md -[list of itches]: todos/itches.md +[list of itches]: personal/itches.md [trying to keep up with my industry]: reviews/technical/index.md -[screwing around with my computers]: admin/setups.md +[screwing around with my computers]: personal/setups.md [lots of silly shit]: reviews/entertainment.md diff --git a/update-count.sh b/update-count.sh @@ -14,7 +14,7 @@ count-leaks () echo ${words} ${pages} } -read words pages < <(find . -name '*.md' | count-leaks) +read words pages < <(git ls-files '*.md' | count-leaks) pattern="\([0-9]*\) words in \([0-9]*\) pages" actual="${words} words in ${pages} pages"