Skip to content

Instantly share code, notes, and snippets.

@jimblandy
Created March 10, 2025 22:06
Show Gist options
  • Save jimblandy/616562c324711b32fc0228c05ea009ba to your computer and use it in GitHub Desktop.
Save jimblandy/616562c324711b32fc0228c05ea009ba to your computer and use it in GitHub Desktop.

I'm writing a book about Rust. One phenomenon I've noticed while working on the book is that, after I've been working on a particular passage for a while and I've read it over many times, it becomes hard for me to really "see" the text of the passage clearly, and follow its flow the way a new reader would. The process of revision becomes difficult because it's harder to actually pay attention to the text that I've read so many times before. Subjectively, it's almost as if something in my mind has become saturated, and can't absorb any more.

From a cognitive science or psychological point of view, what's going on here? Is there anything I can do to help me work on my text more effectively?

What you're describing is a well-documented cognitive phenomenon known as textual habituation or perceptual fluency. Essentially, the brain becomes so familiar with the text that it stops processing it deeply. Instead of actively reading each word, your mind starts skimming or filling in gaps based on memory. This makes it hard to notice awkward phrasing, inconsistencies, or unclear passages.

Why This Happens:

  1. Repetition-Induced Blindness: The more times you see the same text, the less your brain actively "reads" it.

  2. Predictive Processing: Your brain relies on past exposure to predict what the text says, leading to automatic skipping or assumptions.

  3. Cognitive Load Reduction: The brain prioritizes efficiency, so once something seems "known," it stops engaging with it deeply.

  4. Attentional Saturation: Similar to how you might "tune out" a repetitive sound, you stop paying close attention to text you've overexposed yourself to.

Strategies to Refresh Your Perspective:

  1. Change the Medium

    • Print out the text and mark it up by hand.

    • Read it on a different screen (e.g., phone vs. computer).

    • Change the font or formatting to trick your brain into seeing it as "new."

  2. Time Away (Incubation Effect)

    • Put the passage aside for a day or more.

    • Work on another section and return later with fresh eyes.

  3. Read Aloud

    • Forces you to process each word.

    • Helps catch awkward phrasing or rhythm issues.

  4. Get an AI or Another Person to Read It Back to You

    • A text-to-speech tool or having someone else read it aloud can reveal issues you missed.
  5. Shuffle the Structure

    • Read paragraphs out of order to focus on individual sections rather than the overall flow.
  6. Use a New Mode of Input

    • Rewrite a passage from memory instead of copying and editing.

    • Summarize the key ideas and then rewrite from scratch.

  7. Peer Review or External Feedback

    • Even just explaining the passage to someone else can expose unclear parts.

These tricks help "reset" your brain’s familiarity, allowing you to read your text with fresh attention.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment