<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Charlie on Ben&#39;s Blog</title>
    <link>https://jinpeng.cv/en/tags/charlie/</link>
    <description>Recent content in Charlie on Ben&#39;s Blog</description>
    <generator>Hugo -- 0.154.0</generator>
    <language>en</language>
    <copyright>©️ 2025 Ben</copyright>
    <lastBuildDate>Mon, 09 Mar 2026 22:26:59 -0600</lastBuildDate>
    <atom:link href="https://jinpeng.cv/en/tags/charlie/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>April 15, 2025</title>
      <link>https://jinpeng.cv/en/diary/2025/april/2025-04-15/</link>
      <pubDate>Tue, 15 Apr 2025 09:39:15 +0000</pubDate>
      <guid>https://jinpeng.cv/en/diary/2025/april/2025-04-15/</guid>
      <description>&lt;p&gt;I said my diary is very similar to the &amp;ldquo;Progress Reports&amp;rdquo; written by Charlie, but writing it doesn’t necessarily make one improve. It’s more about observing one’s own life cycle and seeing which stage one is currently in.&lt;/p&gt;
&lt;h3 id=&#34;1739-finished-reading-flowers-for-algernon&#34;&gt;17:39 Finished reading &lt;em&gt;Flowers for Algernon&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;Yesterday, I read about two-thirds of the book and wrote a letter to Huanhuan: &lt;a href=&#34;https://jinpeng.cv/en/letter/letter_202504142002/&#34;&gt;Seeing True Love Is a Difficult Thing&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But after finishing the book, I had more thoughts. I pondered the differences between the same person named Charlie at an IQ of 185 versus 68. I reflected on how society overlooks individual lives and existence, from small things like the purpose of brain surgery to larger issues like various experiments, policies, and wars in society. This world is full of selfish people, and harm caused by selfishness is everywhere. On different scales, each of us could be a victim like Charlie, or we might inadvertently become perpetrators.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I said my diary is very similar to the &ldquo;Progress Reports&rdquo; written by Charlie, but writing it doesn’t necessarily make one improve. It’s more about observing one’s own life cycle and seeing which stage one is currently in.</p>
<h3 id="1739-finished-reading-flowers-for-algernon">17:39 Finished reading <em>Flowers for Algernon</em></h3>
<p>Yesterday, I read about two-thirds of the book and wrote a letter to Huanhuan: <a href="/en/letter/letter_202504142002/">Seeing True Love Is a Difficult Thing</a>.</p>
<p>But after finishing the book, I had more thoughts. I pondered the differences between the same person named Charlie at an IQ of 185 versus 68. I reflected on how society overlooks individual lives and existence, from small things like the purpose of brain surgery to larger issues like various experiments, policies, and wars in society. This world is full of selfish people, and harm caused by selfishness is everywhere. On different scales, each of us could be a victim like Charlie, or we might inadvertently become perpetrators.</p>
<p>As for love, it seems like an elusive thing. Was the love between Charlie and Alice real and eternal? Clearly not. Love requires conditions and capability; otherwise, Charlie wouldn’t have pushed Alice away as he rapidly deteriorated. But perhaps choosing not to love is also a deeper form of love.</p>
<p>And what about Fay? Couldn’t the connection between her and Charlie be called love? Fay saw the charming qualities in Charlie and harbored no ill intentions. Her departure was only because Charlie wanted her to leave. Could it be that the foolish Charlie always adored Alice, while Fay was the partner the intelligent Charlie chose and desired? To answer this, perhaps we need to reverse the question and define precisely <mark style="background: #ADCCFFA6;">what is not love</mark>.</p>
<h3 id="1946-after-dinner">19:46 After dinner</h3>
<p>I love potatoes stir-fried until golden, with a bit of salt and chili, paired with freshly steamed hot rice and a pot of vegetables. Delicious.</p>
<p>There are too many slapdash operations. Suddenly, many institutions and official sources announced the release of provincial exam rankings, and everyone thought they were really out—but they weren’t. Is it so hard to release the results, or does someone have other ideas?</p>
<h3 id="2217-back-from-a-walk-with-mom">22:17 Back from a walk with Mom</h3>
<p>After dinner today, I called Mom again, and she still wanted to come out for a walk to get familiar with the route. I was feeling particularly lazy, so I called Mom and asked her to come find me along Xiangyang Road, giving her a chance to get more familiar with the area.</p>
<p>Tomorrow, I need to focus on practicing some questions—I have an exam to take this weekend.</p>
  

  


  
  <blockquote class="alert-blockquote alert-fix" >
    <p class="alert-heading callout-title">
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
        <path d="M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z"></path><path d="m15 5 4 4"></path>
      </svg>
      
      <span>Fix</span>
      
    </p>
    <div class="alert-content callout-content">
      <p>Additionally, a few days ago, I noticed that the back cover of my phone was cracked, so I ordered a new one from Taobao. It arrived today. I couldn’t wait to pick it up from the delivery station. After using a hairdryer to soften the adhesive and cleaning off the residual glue, I replaced it with the new back cover. The result is relatively perfect, though not an absolutely seamless fit.</p>
    </div>
  </blockquote>
  

<script>
  document.addEventListener("DOMContentLoaded", function () {
    document.querySelectorAll(".alert-blockquote").forEach(function (e) {
        
        var foldAttr = e.getAttribute("data-collapsible");
        if (foldAttr === "+" || foldAttr === "-") {
            e.classList.add("is-collapsible");

            var titleElem = e.querySelector(".callout-title");
            var contentElem = e.querySelector(".callout-content");

            if (titleElem && contentElem && !titleElem.querySelector(".callout-fold")) {
                var isCollapsed = foldAttr === "-"; 
                var toggleState = function () {
                    updateState(!isCollapsed, true);
                };

                var updateState = function (collapsed, animate) {
                    isCollapsed = collapsed;
                    e.classList.toggle("is-collapsed", collapsed);
                    contentElem.style.display = collapsed ? "none" : "block";

                    
                    
                    var svgIcon = foldButton.querySelector("svg");
                    if (svgIcon) {
                        svgIcon.style.transform = collapsed ? "rotate(-90deg)" : "rotate(0deg)";
                        svgIcon.style.transition = "transform 0.2s ease-in-out";
                    }
                };

                
                var foldButton = document.createElement("div");
                foldButton.className = "callout-fold";

                
                foldButton.innerHTML = `
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg-icon lucide-chevron-down">
                        <path d="m6 9 6 6 6-6"></path>
                    </svg>
                `;

                foldButton.addEventListener("click", function (event) {
                    event.preventDefault();
                    toggleState();
                });

                
                titleElem.appendChild(foldButton);

                
                titleElem.addEventListener("click", function (event) {
                    if (!event.defaultPrevented) {
                        event.preventDefault();
                        toggleState();
                    }
                });

                
                updateState(isCollapsed, false);
            }
        }
    });
});
</script>
]]></content:encoded>
    </item>
    <item>
      <title>If You Were Charlie, Would You Agree to the Surgery? | To Zhu</title>
      <link>https://jinpeng.cv/en/letter/letter_202503312031/</link>
      <pubDate>Mon, 31 Mar 2025 12:31:36 +0000</pubDate>
      <guid>https://jinpeng.cv/en/letter/letter_202503312031/</guid>
      <description>&lt;p&gt;Dear Zhuzhu,&lt;/p&gt;
&lt;p&gt;Recently, my work has started to slow down. I really love this grounded feeling of focusing intensely to finish tasks and then leisurely sending emails. Today is Friday, and we’ll be seeing each other soon. Just thinking about it makes my heart play &lt;em&gt;Like Sunday, Like Rain&lt;/em&gt; uncontrollably—haha, I’ve been completely obsessed with this song lately.&lt;/p&gt;
&lt;p&gt;I want to share with you a book I just finished: &lt;em&gt;Flowers for Algernon&lt;/em&gt;. By the end, I was sobbing uncontrollably, secretly shedding &amp;ldquo;little pearls&amp;rdquo; again.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Dear Zhuzhu,</p>
<p>Recently, my work has started to slow down. I really love this grounded feeling of focusing intensely to finish tasks and then leisurely sending emails. Today is Friday, and we’ll be seeing each other soon. Just thinking about it makes my heart play <em>Like Sunday, Like Rain</em> uncontrollably—haha, I’ve been completely obsessed with this song lately.</p>
<p>I want to share with you a book I just finished: <em>Flowers for Algernon</em>. By the end, I was sobbing uncontrollably, secretly shedding &ldquo;little pearls&rdquo; again.</p>
<p>The protagonist, Charlie Gordon, is a man with an intellectual disability. He is kind-hearted, diligent at work, and eager to become smarter, but due to his congenital condition, he faces constant discrimination. One day, he is selected to participate in a scientific experiment. The experiment successfully enhanced the intelligence of a white mouse named Algernon, and now Charlie is the human subject, undergoing brain surgery to boost his intellect. After the surgery, Charlie’s IQ skyrockets. He attends university, studies, and becomes a knowledgeable genius. But as his mind awakens, he begins to recall lost familial love from his childhood, the mockery and exclusion from his so-called &ldquo;friends,&rdquo; and the complexities of human nature in modern society. He realizes that even after becoming smarter, the things he thought he would gain start to crumble. To the experimenters, he is merely a successful test subject, not a person deserving of respect, care, or acceptance.</p>
<p>Later, Algernon’s intelligence suddenly declines, and he dies. Through his research, Charlie discovers that the intelligence enhancement is only temporary, inevitably followed by decline and death. Charlie faces the agony of a countdown to his end, slowly approaching death.</p>
<p>After finishing the book, I began pondering some questions.</p>
<p><strong>What is a person?</strong></p>
<p>I remember that night when you asked me, &ldquo;What is a person?&rdquo; At the time, I answered from a biological perspective, but your answer was, &ldquo;A person is the sum of social relationships.&rdquo; Throughout the book, after Charlie gains high intelligence, he repeats over and over, &ldquo;I am a person. I was a person even before the surgery.&rdquo; Whether now or in the past, what we pursue as &ldquo;personhood&rdquo; is no longer just about using tools, thinking, or walking upright. It carries a strong social dimension—we crave recognition, care, and fulfillment. But was Charlie, with his intellectual disability, not a person before? He was kind, sincere, hardworking, self-sufficient, and persistent in learning. In my heart, he already surpassed many so-called &ldquo;normal&rdquo; people.</p>
<p><strong>Does enhanced intelligence make one a person?</strong></p>
<p>I don’t think so. If someone’s intelligence is heightened but they lack emotions, they’re no different from a cold machine. The book says, &ldquo;Without the tempering of human emotions, intelligence and education are utterly worthless.&rdquo; The measure of a person shouldn’t rely solely on scientific metrics. Extraordinary intelligence doesn’t grant someone a radiant soul. As independent individuals within social relationships, learning helps us cultivate better personalities. And the bonds we form with others allow us to better understand ourselves and the world.</p>
<p><strong>If you were Charlie, would you undergo the surgery? (What about you, Zhuzhu?)</strong></p>
<p>I think I would. Even if it meant facing the pain of intellectual decline and death like he did, I’d still choose it. Looking at Charlie’s life, his &ldquo;moment of brilliance&rdquo; was fleeting, but it was largely fulfilling. After his intelligence improved, he acquired vast knowledge, mastered multiple languages, and conducted independent research. When he learned his intelligence would decline, he returned to the home he had lost and regained warmth from his family. He found love and realized it wasn’t just about physical intimacy. He went back to the bakery where he once worked and found true friends. Those around him, upon learning of his journey, came to respect his courage and pursuit, and Charlie ultimately earned recognition as a person. If I were destined to live a stable but ignorant life in darkness, but had even a sliver of a chance to grasp the light, I’d choose that path without hesitation, just like Charlie.</p>
<p>Zhuzhu, I think whether we’re in darkness or light, or whether others are in darkness or light, we must always strive for the world and the love we originally envisioned. In that world, we treat every life as equal and worthy of respect, never mocking others or flaunting our arrogance.</p>
<p>The book opens with a quote from Plato’s <em>Republic</em>:</p>
<p>&ldquo;Anyone with common sense remembers that the eyes can be confused in two ways and from two causes: coming from light into darkness or from darkness into light. The same applies to the mind’s eye. When someone sees a soul confused and unable to see clearly, they shouldn’t laugh mindlessly but ask whether this soul has just come from a brighter life and is unable to see because it’s unaccustomed to the dark, or whether it’s come from darkness into the light and is dazzled by the brilliance. They would consider one happy for their condition and circumstances, and pity the other. Or if they must laugh at the soul emerging from the light, their laughter would be less absurd than laughing at the soul returning from the darkness into the light.&rdquo;</p>
<p>Love,<br>
Huanhuan</p>
<p>March 28, 2025</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
