check in
authorZack M. Davis <ultimatelyuntruethought@gmail.com>
Tue, 13 Feb 2024 18:01:03 +0000 (10:01 -0800)
committerZack M. Davis <ultimatelyuntruethought@gmail.com>
Tue, 13 Feb 2024 18:01:03 +0000 (10:01 -0800)
content/drafts/agreeing-with-stalin-in-ways-that-exhibit-generally-rationalist-principles.md
notes/memoir-sections.md
notes/memoir_wordcounts.csv
notes/patriate_links.py

index 5e38d16..1eddba2 100644 (file)
@@ -377,7 +377,7 @@ He [later clarified on Twitter](https://twitter.com/ESYudkowsky/status/140482128
 
 But if Stalin is committed to convincing gender-dysphoric males that they need to cut their dicks off, and you're committed to not disagreeing with Stalin, you _shouldn't_ mostly believe it when gender-dysphoric males thank you for providing the final piece of evidence they needed to realize that they need to cut their dicks off, for the same reason a self-aware Republican shill shouldn't uncritically believe it when people thank him for warning them against Democrat treachery. We know—he's told us very clearly—that Yudkowsky isn't trying to be a neutral purveyor of decision-relevant information on this topic; he's not going to tell us about reasons not to transition. He's playing on a different chessboard.
 
-### A Fire of Inner Life
+### People Who Are Trying to Be People Want to Improve Their Self-Models
 
 "[P]eople do _know_ they're living in a half-Stalinist environment," Yudkowsky claims. "I think people are better off at the end of that," he says. But who are "people", specifically? One of the problems with utilitarianism is that it doesn't interact well with game theory. If a policy makes most people better off, at the cost of throwing a few others under the bus, is enacting that policy the right thing to do?
 
index e573a8e..31f8a07 100644 (file)
@@ -1,9 +1,31 @@
+pt. 4 edit tier—
+✓ "A Fire" § title
+_ revise the start of §6 to say he came by core pronoun stance honestly
+_ revise "too good a writer" to be more explicit "someone could be that naive"
+_ footnote about how I could be blamed for being too credulous
+_ say that explicitly, up front, at the start of that … chunk.
+_ edit post to clarify "nudging the cognition"
+_ revise start of §6 to say that
+_ look for a place to link "Faction formation"
+_ Tail's objection to FFS example
+_ Brennan "everyone else should participate" needs more wording adjustments
+_ the mailing list post noted it as a "common sexual fantasy"
+_ Sept. 2020 clarification noted that a distinction should be made between
+_ emphasize that 2018 thread was policing TERF-like pronoun usage, not just disapproving of gender-based pronouns
+_ https://cognition.cafe/p/on-lies-and-liars
+_ cite more sneers; use a footnote to pack in as many as possible
+_ Dawkins and Jerry Coyne and https://www.thefp.com/p/carole-hooven-why-i-left-harvard
 
 time-sensitive globals TODOs—
-_ rewrite pt. 4
-_ consult Anna
 ✓ consult Said
-_ publish pt. 4
+✓ patriate-links script TODOs
+_ remaining pt. 4 edit tier
+_ draft Twitter thread
+_ draft #drama strategy comments
+_ consult Anna
+_ #drama strategy session
+_ bully Jeff Ladish
+_ PUBLISH pt. 4!!
 
 --------
 
@@ -16,27 +38,11 @@ _ apply pro edit pt. 5
 
 ✓ consult Tail
 
-_ bully Jeff Ladish
-_ #drama strategy session
 
 _ consult lc
 _ consult David Xu
 _ psychiatric disaster private doc
 
-
-pt. 4 edit tier—
-_ say that explicitly, up front, at the start of that … chunk.
-_ edit post to clarify "nudging the cognition"
-_ look for a place to link "Faction formation"
-_ Tail's objection to FFS example
-_ the mailing list post noted it as a "common sexual fantasy"
-_ Sept. 2020 clarification noted that a distinction should be made between
-_ emphasize that 2018 thread was policing TERF-like pronoun usage, not just disapproving of gender-based pronouns
-_ https://cognition.cafe/p/on-lies-and-liars
-_ cite more sneers; use a footnote to pack in as many as possible
-_ Dawkins and Jerry Coyne and https://www.thefp.com/p/carole-hooven-why-i-left-harvard
-
-
 pt. 5 edit tier—
 ✓ sucking Scott's dick is helpful because he's now the main gateway instead of HPMOR
 _ Previously-on summary
index df168a3..7ae5111 100644 (file)
 02/08/2024,118628,0\r
 02/09/2024,118628,0\r
 02/10/2024,118628,0\r
-02/11/2024,,\r
-\r
-\r
+02/11/2024,118630,2\r
+02/12/2024,118637,7\r
+02/13/2024,,
\ No newline at end of file
index 3cc6ee7..c1f23cc 100755 (executable)
@@ -11,10 +11,10 @@ input_file_path = sys.argv[1]
 output_file_path = "out.md"
 
 # Define the regular expression patterns for Markdown links and anchors
-markdown_link_pattern = re.compile(r'\]\(/(\d{4}/\w{3}/[-\w]+/)\)')
+relative_link_pattern = re.compile(r'\]\(/(\d{4}/\w{3}/[-\w]+/)(#[-\w]+)?\)')
+relative_image_link_pattern = re.compile(r'\]\((/images/[-\w./]+)\)')
 anchor_pattern = re.compile(r'<a id="[-\w]+"></a>')
 
-# TODO: don't neglect links with #-section
 # TODO: don't neglect images
 
 # Read the content of the original markdown file
@@ -22,7 +22,8 @@ with open(input_file_path, 'r') as file:
     content = file.read()
 
 # Replace the Markdown links with the new format
-rewritten_content = markdown_link_pattern.sub(r'](http://unremediatedgender.space/\1)', content)
+rewritten_content = relative_link_pattern.sub(r'](http://unremediatedgender.space/\1)', content)
+rewritten_content = relative_image_link_pattern.sub(r'](http://unremediatedgender.space/\1)', rewritten_content)
 
 # Remove the anchors
 rewritten_content = anchor_pattern.sub('', rewritten_content)