Skip to content

Instantly share code, notes, and snippets.

@louspringer
Last active February 24, 2026 07:57
Show Gist options
  • Select an option

  • Save louspringer/adf591b819eae3e68bcac2b9701ec207 to your computer and use it in GitHub Desktop.

Select an option

Save louspringer/adf591b819eae3e68bcac2b9701ec207 to your computer and use it in GitHub Desktop.
Reading depth vs shallow processing addendum + hashtags
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Addendum: Depth, Devices, and Literacy System Failure

The blunt thesis

This is not a paper vs screen holy war. It is a training architecture problem.

If the environment rewards skimming, speed, and novelty, we train shallow cognition. If the environment rewards sustained reading, retrieval, writing, and debate, we train judgment.

Speed feels smart. Depth is smart.

Where the original argument is right

  • Deep reading is typically easier in low-distraction formats, often print.
  • Swipe/scroll UX can amplify context switching and shallow processing.
  • Fast retrieval can create confidence without durable understanding.

Where the original argument overreaches

  • System 2 = superego is a category mistake.
    • Kahneman's dual-process model and Freud's structural model are different theories.
  • Screens cause hippocampal shrinkage is not established as a broad causal law.
    • Existing child screen-neuro studies are often correlational and should not be oversold.
  • Paper uniquely myelinates learning pathways is not a paper-exclusive evidence claim.
    • Neuroplasticity is real, but medium-specific mechanistic certainty is overstated.

What evidence currently supports

  • Meta-analyses show a small but real print advantage for some comprehension contexts, especially informational text and time pressure.
  • Newer analyses suggest the gap can narrow with better digital design and pedagogy.
  • Literacy strongly links to life outcomes (employment, wages, social participation), which makes this a policy-level issue, not a device flame war.

Diagram: Failure Loop

flowchart TD
    A[Fast, reward-heavy UX] --> B[Shallow processing]
    B --> C[Weak consolidation]
    C --> D[Fragile inference / low transfer]
    D --> E[Performance anxiety / avoidance]
    E --> F[More low-friction consumption]
    F --> A
Loading

Diagram: Intervention Stack

flowchart LR
    I1[Explicit phonics + decoding] --> O1[Foundational fluency]
    I2[Knowledge-rich curriculum] --> O2[Background knowledge]
    I3[Sustained silent reading + annotation] --> O3[Deep comprehension]
    I4[Retrieval practice + writing] --> O4[Durable memory]
    I5[Structured discussion + argument] --> O5[Judgment]
    O1 --> G[Reading proficiency]
    O2 --> G
    O3 --> G
    O4 --> G
    O5 --> G
Loading

Ontology Slice (TTL)

@prefix ex: <https://example.org/learning#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ex:LearningMedium a rdfs:Class .
ex:CognitiveMode a rdfs:Class .
ex:Outcome a rdfs:Class .
ex:Intervention a rdfs:Class .
ex:EvidenceClaim a rdfs:Class .

ex:Paper a ex:LearningMedium .
ex:Screen a ex:LearningMedium .

ex:DeepProcessing a ex:CognitiveMode .
ex:ShallowProcessing a ex:CognitiveMode .

ex:Comprehension a ex:Outcome .
ex:Retention a ex:Outcome .
ex:CriticalReasoning a ex:Outcome .

ex:influences a rdf:Property .
ex:supports a rdf:Property .
ex:hasEvidenceStrength a rdf:Property .

ex:Claim_PrintAdvantage a ex:EvidenceClaim ;
  ex:influences ex:Comprehension ;
  ex:hasEvidenceStrength "moderate"^^xsd:string .

Constraint Slice (SHACL)

@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix ex: <https://example.org/learning#> .

ex:EvidenceClaimShape a sh:NodeShape ;
  sh:targetClass ex:EvidenceClaim ;
  sh:property [
    sh:path ex:hasEvidenceStrength ;
    sh:in ("low" "moderate" "high") ;
    sh:minCount 1 ;
    sh:maxCount 1
  ] ;
  sh:property [
    sh:path ex:influences ;
    sh:minCount 1
  ] .

Visual Anchors

Vintage propaganda anchor Post-apocalyptic environment anchor Hybrid style anchor

Practical line to post

We’re not choosing between books and devices; we’re choosing what kind of minds our systems train. If we optimize for speed and novelty, we get brittle understanding. If we optimize for depth and retrieval, we get judgment.

References (opened and checked)

Hashtag Set

#LiteracyCrisis #ScienceOfReading #DeepLearningNotDoomScrolling #EducationReform #CognitiveDevelopment #LearningDesign #DigitalWellbeing #AIandEducation #TeachForUnderstanding #ReadToThink

Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment