<?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>Thought on Ben&#39;s Blog</title>
    <link>https://jinpeng.cv/en/tags/thought/</link>
    <description>Recent content in Thought 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/thought/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>Jealousy and Comparison</title>
      <link>https://jinpeng.cv/en/posts/essay/jealous-and-comparison/</link>
      <pubDate>Wed, 11 Dec 2024 21:08:55 +0800</pubDate>
      <guid>https://jinpeng.cv/en/posts/essay/jealous-and-comparison/</guid>
      <description>Desc Text.</description>
      <content:encoded><![CDATA[<p>I am envious of certain things, not the luxurious ones like wealth or power, but rather talents and the like. For instance, people like Zhu Ziqing, Shi Tiesheng, and Lu Xun, to name a few, though I can&rsquo;t list more due to my limited knowledge.</p>
<p>There are many people in this world who possess extraordinary talents, minds, and inspirations. They often create works that strike a chord with people&rsquo;s hearts. They can shape the world through their creations, or at the very least, earn a living by exchanging their works for sustenance.</p>
<p>A minute ago, I was also pondering what meaningful things I could do that would also keep me from starving. Based on my own growth experiences and areas of expertise, I came up with two plausible answers. One is developing software, and the other is writing. Unfortunately, neither of these has brought me any profit so far, mainly because I haven&rsquo;t produced or created anything worth paying for. I haven&rsquo;t soothed people&rsquo;s weary bodies nor touched their souls, which is the root cause of my failure.</p>
<p>It&rsquo;s not that I want to do these two things for money; fundamentally, I love these activities, though the extent of my passion might make you question it. This leads to comparisons. The gap between me and other successful developers lies in the fact that I haven&rsquo;t invested enough time in this field. If I had been admitted to the information security major, things might have been very different. Many things I&rsquo;m interested in have been abandoned due to my laziness, procrastination, and other commitments.</p>
<p>Comparing myself to literary giants naturally leads to a clear conclusion. I also haven&rsquo;t invested enough time in this endeavor. Additionally, I&rsquo;m not particularly skilled at writing, which was evident from the very beginning of my learning process. I lack the necessary sense of rendering,铺垫, and修辞 that writing requires. I write merely to express the restless thoughts in my mind, which command my mediocre body, and I have no choice but to obey her orders, thus conveying her commands through my fingertips.</p>
<p>I believe my mind is the same as those of literary giants; they have the same bizarre, beautiful, absurd, tragic, and ugly thoughts. But my mediocre body hasn&rsquo;t been honed through socialization and technical training, which makes me compare and feel envious. I also want to become a literary giant, to captivate, shock, and touch souls with just the clatter of my fingertips.</p>
<p>Perhaps it&rsquo;s the desperation that breeds change. My brain only gives me commands to execute, never offering any reward. The current dire situation forces me to think about how to quietly engage in a side hustle while carrying out these orders. I think, perhaps with my peculiar and whimsical ideas, I could become a comforter of souls, offering services to souls in exchange for their rewards.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
