From 4a7144e858c3c2ee66853593a86947fe2863d317 Mon Sep 17 00:00:00 2001 From: "M. Taylor Saotome-Westlake" Date: Sat, 29 Oct 2022 08:21:19 -0700 Subject: [PATCH] memoir progress metrics MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This would be very Goodhartable (and doesn't take into account that blockquotes or pre-written content from earlier notes/drafts getting pasted into the ms. is easier than new ms. material), but I think it does show that I started taking things more seriously in July ("An Egoist Faith" having been published on 24 June). I'd have to hit 1265 each today and tomorrow in order to match August. (Monday I have to dayjob, and Alex Mennen's lecture series is covering spectral graph theory.) That's very ambitious, but not, I think, out of the question—if I take myself seriously. --- notes/memoir_wordcounts.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 notes/memoir_wordcounts.py diff --git a/notes/memoir_wordcounts.py b/notes/memoir_wordcounts.py new file mode 100755 index 0000000..1952e36 --- /dev/null +++ b/notes/memoir_wordcounts.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 + +import subprocess + +shas = [ + '347fe081c6', + '4681a3764a', + '867b6583c7', + 'a8b07bd83a', + 'cfdc07319c', + 'bbb4315cfe' +] + +for sha in shas: + subprocess.run(["git", "checkout", sha]) + subprocess.run("wc content/drafts/blanchards-dangerous-idea-and-the-plight-of-the-lucid-crossdreamer.md content/drafts/a-hill-of-validity-in-defense-of-meaning.md content/drafts/agreeing-with-stalin-in-ways-that-exhibit-generally-rationalist-principles.md".split()) + +# 30 Apr 347fe081c6 6746 +# 30 May 4681a3764a 10308 +3562 +# 30 Jun 867b6583c7 13313 +3005 +# 31 Jul a8b07bd83a 20391 +7078 +# 28 Aug cfdc07319c 36784 +16393 +# 30 Sep bbb4315cfe 49533 +12749 +# (October not quite over) +13862 -- 2.17.1