From: Zack M. Davis Date: Thu, 21 Dec 2023 23:50:29 +0000 (-0800) Subject: memoir: retitle pt. 5 X-Git-Url: http://unremediatedgender.space/source?a=commitdiff_plain;ds=sidebyside;h=ce2c27c5385ccbe71553699b37ded05a7f44252d;p=Ultimately_Untrue_Thought.git memoir: retitle pt. 5 "Zevi's Choice" was never a good title. This one alludes to a well-known meme, while reflecting the despair of the "Death With Dignity" era (and my personal despair in the "Challenges" era). --- diff --git a/content/drafts/zevis-choice.md b/content/drafts/guess-ill-die.md similarity index 99% rename from content/drafts/zevis-choice.md rename to content/drafts/guess-ill-die.md index 113e14e..53abc85 100644 --- a/content/drafts/zevis-choice.md +++ b/content/drafts/guess-ill-die.md @@ -1,4 +1,4 @@ -Title: Zevi's Choice +Title: Guess I'll Die Author: Zack M. Davis Date: 2023-12-30 11:00 Category: commentary diff --git a/notes/memoir_wordcounts.py b/notes/memoir_wordcounts.py index c462761..be5cd65 100755 --- a/notes/memoir_wordcounts.py +++ b/notes/memoir_wordcounts.py @@ -21,7 +21,7 @@ MONTHS = { } def wordcount_at_this_sha(): - result = subprocess.run("wc -w content/2023/blanchards-dangerous-idea-and-the-plight-of-the-lucid-crossdreamer.md content/2023/a-hill-of-validity-in-defense-of-meaning.md content/drafts/if-clarity-seems-like-death-to-them.md content/drafts/agreeing-with-stalin-in-ways-that-exhibit-generally-rationalist-principles.md content/drafts/zevis-choice.md content/drafts/on-the-public-anti-epistemology-of-dath-ilan.md content/drafts/standing-under-the-same-sky.md".split(), stdout=subprocess.PIPE) + result = subprocess.run("wc -w content/2023/blanchards-dangerous-idea-and-the-plight-of-the-lucid-crossdreamer.md content/2023/a-hill-of-validity-in-defense-of-meaning.md content/drafts/if-clarity-seems-like-death-to-them.md content/drafts/agreeing-with-stalin-in-ways-that-exhibit-generally-rationalist-principles.md content/drafts/guess-ill-die.md content/drafts/on-the-public-anti-epistemology-of-dath-ilan.md content/drafts/standing-under-the-same-sky.md".split(), stdout=subprocess.PIPE) wc_lines = result.stdout.decode('utf8').split('\n') total_line = wc_lines[-2] # last line is empty return int(total_line.split()[0])