<?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>Swimming on Ben&#39;s Blog</title>
    <link>https://jinpeng.cv/en/tags/swimming/</link>
    <description>Recent content in Swimming 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/swimming/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>2025-11-26</title>
      <link>https://jinpeng.cv/en/diary/2025/november/2025-11-26/</link>
      <pubDate>Wed, 26 Nov 2025 23:58:20 -0700</pubDate>
      <guid>https://jinpeng.cv/en/diary/2025/november/2025-11-26/</guid>
      <description>&lt;p&gt;Today was worn out because I did the RFI 6 from 10 am to next day am.&lt;/p&gt;
&lt;p&gt;I didn&amp;rsquo;t sleep well last night, so I bought a coffee at Tim Hortons when I came school.&lt;/p&gt;
&lt;p&gt;Amir and I wanted to go swimming, however the east pool was not available for public, at the same time, the west pool was very crowded.&lt;/p&gt;
&lt;p&gt;We already changed our trunks and took a shower, we only could change back and leave.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Today was worn out because I did the RFI 6 from 10 am to next day am.</p>
<p>I didn&rsquo;t sleep well last night, so I bought a coffee at Tim Hortons when I came school.</p>
<p>Amir and I wanted to go swimming, however the east pool was not available for public, at the same time, the west pool was very crowded.</p>
<p>We already changed our trunks and took a shower, we only could change back and leave.</p>
<p>Since we separated, amir was very happy and went to the karaoke.</p>
<p>When I got home, I found my cactus was freezing though I put it inside my room and next to the opened window.</p>
]]></content:encoded>
    </item>
    <item>
      <title>2025-11-21</title>
      <link>https://jinpeng.cv/en/diary/2025/november/2025-11-21/</link>
      <pubDate>Fri, 21 Nov 2025 19:05:06 -0700</pubDate>
      <guid>https://jinpeng.cv/en/diary/2025/november/2025-11-21/</guid>
      <description>&lt;blockquote class=&#34;alert-blockquote alert-note&#34; &gt;
    &lt;p class=&#34;alert-heading callout-title&#34;&gt;
      &lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; viewBox=&#34;0 0 24 24&#34; width=&#34;24&#34; height=&#34;24&#34; fill=&#34;none&#34; stroke=&#34;currentColor&#34; stroke-width=&#34;1.5&#34; stroke-linecap=&#34;round&#34; stroke-linejoin=&#34;round&#34;&gt;
        &lt;path d=&#34;M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z&#34;&gt;&lt;/path&gt;&lt;path d=&#34;m15 5 4 4&#34;&gt;&lt;/path&gt;
      &lt;/svg&gt;
      
      &lt;span&gt;Record on Nov 24, 2025&lt;br&gt;&lt;/span&gt;
      
    &lt;/p&gt;
    &lt;div class=&#34;alert-content callout-content&#34;&gt;
      &lt;p&gt;I almost forgot today&amp;rsquo;s things.&lt;/p&gt;
    &lt;/div&gt;
  &lt;/blockquote&gt;
  

&lt;script&gt;
  document.addEventListener(&#34;DOMContentLoaded&#34;, function () {
    document.querySelectorAll(&#34;.alert-blockquote&#34;).forEach(function (e) {
        
        var foldAttr = e.getAttribute(&#34;data-collapsible&#34;);
        if (foldAttr === &#34;+&#34; || foldAttr === &#34;-&#34;) {
            e.classList.add(&#34;is-collapsible&#34;);

            var titleElem = e.querySelector(&#34;.callout-title&#34;);
            var contentElem = e.querySelector(&#34;.callout-content&#34;);

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

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

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

                
                var foldButton = document.createElement(&#34;div&#34;);
                foldButton.className = &#34;callout-fold&#34;;

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

                foldButton.addEventListener(&#34;click&#34;, function (event) {
                    event.preventDefault();
                    toggleState();
                });

                
                titleElem.appendChild(foldButton);

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

                
                updateState(isCollapsed, false);
            }
        }
    });
});
&lt;/script&gt;
&lt;p&gt;I attended the Sensing techniques and Data Analytics at noon. and I used Quarto + Beamer to finish a Beamer slides. I like this things to release human productivity.&lt;/p&gt;</description>
      <content:encoded><![CDATA[  

  


  
  <blockquote class="alert-blockquote alert-note" >
    <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>Record on Nov 24, 2025<br></span>
      
    </p>
    <div class="alert-content callout-content">
      <p>I almost forgot today&rsquo;s things.</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>
<p>I attended the Sensing techniques and Data Analytics at noon. and I used Quarto + Beamer to finish a Beamer slides. I like this things to release human productivity.</p>
<p>In the evening, I went to the apartment&rsquo;s swimming pool to learn swimming. I should be more brave.</p>
]]></content:encoded>
    </item>
    <item>
      <title>2025-11-18</title>
      <link>https://jinpeng.cv/en/diary/2025/november/2025-11-18/</link>
      <pubDate>Tue, 18 Nov 2025 23:55:38 -0700</pubDate>
      <guid>https://jinpeng.cv/en/diary/2025/november/2025-11-18/</guid>
      <description>&lt;p&gt;Today was my first time to go swimming formally. It&amp;rsquo;s a little bad because I soaked too much water. As a new experience, however, it&amp;rsquo;s definitely good.&lt;/p&gt;
&lt;p&gt;Amir can swimming, but I can&amp;rsquo;t; I need to learn it. Thank my little Huan delivered gaggles and trunks to me. It&amp;rsquo;s really useful.&lt;/p&gt;
&lt;p&gt;Dr.zhao retook graduation photos today, he was very happy, so many people said congratulations to him. The everyone of our group took a photo with him individually.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Today was my first time to go swimming formally. It&rsquo;s a little bad because I soaked too much water. As a new experience, however, it&rsquo;s definitely good.</p>
<p>Amir can swimming, but I can&rsquo;t; I need to learn it. Thank my little Huan delivered gaggles and trunks to me. It&rsquo;s really useful.</p>
<p>Dr.zhao retook graduation photos today, he was very happy, so many people said congratulations to him. The everyone of our group took a photo with him individually.</p>
<h2 id="grammar-check">Grammar check</h2>
<p>Here&rsquo;s the grammar and clarity check for your diary entry:</p>
<table>
  <thead>
      <tr>
          <th>Original</th>
          <th>Correct</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>&ldquo;Today was my first time to go swimming formally.&rdquo;</td>
          <td>&ldquo;Today was my first time going swimming formally.&rdquo;</td>
      </tr>
      <tr>
          <td>&ldquo;It&rsquo;s a little bad because I soaked too much water.&rdquo;</td>
          <td>&ldquo;It wasn&rsquo;t great because I swallowed too much water.&rdquo;</td>
      </tr>
      <tr>
          <td>&ldquo;Amir can swimming, but I can&rsquo;t&rdquo;</td>
          <td>&ldquo;Amir can swim, but I can&rsquo;t&rdquo;</td>
      </tr>
      <tr>
          <td>&ldquo;Thank my little Huan delivered gaggles and trunks to me.&rdquo;</td>
          <td>&ldquo;Thank you to my little Huan for delivering goggles and trunks to me.&rdquo;</td>
      </tr>
      <tr>
          <td>&ldquo;Dr.zhao retook graduation photos today&rdquo;</td>
          <td>&ldquo;Dr. Zhao retook his graduation photos today&rdquo;</td>
      </tr>
      <tr>
          <td>&ldquo;The everyone of our group took a photo with him individually.&rdquo;</td>
          <td>&ldquo;Everyone in our group took individual photos with him.&rdquo;</td>
      </tr>
  </tbody>
</table>
<p>The rest of your writing is grammatically correct and natural. The diary entry effectively communicates your experiences while maintaining a personal tone. The corrections mainly address small grammatical issues and improve clarity in a few spots.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
