From: M. Taylor Saotome-Westlake Date: Tue, 28 Apr 2020 07:28:53 +0000 (-0700) Subject: check in X-Git-Url: http://unremediatedgender.space/source?p=Ultimately_Untrue_Thought.git;a=commitdiff_plain;h=8e77d0f6a684630ee8fad47150763ef9f49c0b05 check in --- diff --git a/notes/human-diversity-notes.md b/notes/human-diversity-notes.md index 69de45c..3d58360 100644 --- a/notes/human-diversity-notes.md +++ b/notes/human-diversity-notes.md @@ -180,9 +180,7 @@ Anacholic's critique: https://twitter.com/AnechoicMedia_/status/1245997689113907 This was the linkpost description text I initially drafted, before deciding that the "Straussian coyness" I [occasionally]() [succumb]() to is ultimately unbecoming. -A Book Review - -(_Content warning_: [politics](https://www.lesswrong.com/posts/9weLK2AJ9JEt2Tt8f/politics-is-the-mind-killer). Read with caution, as always.) +## A Book Review Someone wrote a blog post reviewing a book by some sociologist named Murray. Never heard of him. Anyway, I couldn't get through the whole thing because the reviewer has this _really obnoxious_ writing style that uses way too many italics and exclamation points (as well as occasional weirdly out-of-place cuss words?!), but I did notice that he (?) links to _Less Wrong_ a few times, which is something I don't see "in the wild" very often these days, so I "thought it couldn't hurt" to share the link here in case one of you happens to find it interesting?? diff --git a/notes/notes.txt b/notes/notes.txt index 93e5195..c7d9bb1 100644 --- a/notes/notes.txt +++ b/notes/notes.txt @@ -1781,3 +1781,7 @@ https://www.facebook.com/strohl89/posts/10158118341274598?comment_id=10158118460 https://www.reddit.com/r/GCdebatesQT/comments/g53fgy/qt_which_pronouns_should_be_respected/fo6yk5i/ > It's possible that I would grow acclimated to this usage of singular "they" after sufficient exposure, but there are other reasons that I try to minimize my social interactions with people who use singular "they"--basically the same reasons that I try to minimize my social interactions with hardline cultural conservatives and evangelical Christians. We fundamentally disagree about some very basic principles, which means that every interaction is an exercise in biting my tongue. +https://www.catholicworldreport.com/2020/04/25/no-more-lies-dissenting-from-gender-ideology-and-the-trans-phenomenon/ +> by making non-procreative sex the new norm for everyone, a norm achieved primarily by chemical interference with female bodily functions, we ceased to be men and women and became merely heterosexuals and homosexuals. It was no very large step from there to seeing our dimorphic nature, our sexual complementarity, as lacking any real significance next to the pursuit of sexual pleasure and emotional thrills. + +Heinlein, Stranger in a Strange Land, pitied the in-betweeners diff --git a/notes/post_ideas.txt b/notes/post_ideas.txt index 451b2d0..8bcb61e 100644 --- a/notes/post_ideas.txt +++ b/notes/post_ideas.txt @@ -1,7 +1,7 @@ Scheduled— -X Peering Through Reverent Fingers -_ Book Review: Charles Murray's Human Diversity -X Teleology +27 Apr Peering Through Reverent Fingers +28 Apr Book Review: Charles Murray's Human Diversity +29 Apr Teleology Main path (important posts)— @@ -16,8 +16,9 @@ _ "More Than We Can Say": High-Dimensional Social Science and ... UUT— _ Beyond the Binary _ Hrunkner Unnerby and the Shallowness of Progress +_ Walker correspondence _ The Feeling Is Mutual -_ I, Too, Dislike It (Captions) +_ I, Too, Dislike It (Captions): sexuality stays with the body— http://theinsomniactg.blogspot.com/2019/07/knocked-out-of-my-body.html _ Travis's Trilemma: Creepy, Crazy, or Protected-Class (working title) _ Reply to Ozymandias on Lesbians and on Single-Sex Spaces _ Friendship Practices of the Secret-Sharing Plain Speech Valley Squirrels @@ -28,7 +29,8 @@ LW/aAL— _ Algorithmic Intent: A Hansonian Generalized Anti-Zombie Principle (LW) _ Zoom vs. EMH (LW) _ Comment on "Endogenous Epistemic Factionalization" -_ Don't "Click Here" +_ Skyrms on Deception + _ Contra Scott Alexander on Mental Illness; Or, Oh God, Please Don't (aAL/LW) _ Selective Reporting and Clustering _ Butting Heads; Or, Selective Reporting and the Tragedy of Cause Prioritization—marginally neglected truths are more @@ -42,6 +44,7 @@ Training Data—"get used" to the new definitions, in time if pro-reality trans people are allied with more numerous anti-reality trans people, that incentivizes me to join an anti-trans coalition, when what I actually (should) want is to cherry-pick the pro-reality people +another thing keeping me from trans-IDing: trans is "marked"; choosing it would mean associating with the crazy. Normal Society (with men named Zack) has its own madnesses and crimes, but Vocabulary as Capital Investment diff --git a/theme/static/js/comment_counts.js b/theme/static/js/comment_counts.js index d0df09b..1a3d281 100644 --- a/theme/static/js/comment_counts.js +++ b/theme/static/js/comment_counts.js @@ -1,11 +1,15 @@ function placeCommentCounts() { let containers = Array.from(document.querySelectorAll(".comments-link-container")); let paths = containers.map(function(span) { return span.dataset.path; }); + if (paths.length === 0) { + return; + } let request = new XMLHttpRequest(); request.open('POST', 'http://unremediatedgender.space/isso/count', true); request.setRequestHeader("Content-Type", "application/json"); + request.send(JSON.stringify(paths)); request.onload = function() {