2026-03-01

Luis and I had a promise to buy some groceries at T&T. We bought a lot of snacks and groceries. I also treated him to try Zongzi and steam buns, he liked these. It was fun to hangout with him, because he knows how to respect each other and he is inocence. I went to Safeway for buying some food, but got nothing due to no properly discount.

2026-03-01 · 1 min · 68 words · Jeapo

2026-02-01

🕒 15:00 | Optimized Obsidian Startup Speed By disabling some plugins and delaying the startup of others, I successfully improved the startup speed of #Obsidian on my phone. 🕒 15:04 | Tinkering with Vim I downloaded the nightly version of #Wezterm , and my terminal can now display images! However, there are still some minor issues affecting my #neovim workflow. At this point, one of the biggest reasons I want to buy a #MacBook is to have a perfect terminal environment for writing and note-taking. ...

2026-02-01 · 2 min · 315 words · Jeapo

2026-01-17

Today is Saturday. I woke up early to video call Huan before she went to bed. I scolded her a bit again because I feel she often represses her emotions just to be a “good person.” I don’t think that’s healthy, especially between family and partners—it’s important to be honest about how we feel. After the call, I started working on my assignment. I’ve really come to enjoy using Quarto and LaTeX to complete my homework; the results look very professional. ...

2026-01-17 · 2 min · 221 words · Jeapo

2026-01-10

I was on the phone with Huan this morning until almost 11:00 AM. Afterward, Dr. Zhao asked me to go grocery shopping with him so we could head back to his place to cook. As usual, we wandered around the mall for a bit and ended up having Mexican food again. Honestly, it wasn’t very good. Later, Dr. Zhao prepared a huge spread of dishes and invited two other friends over. After dinner, they were getting ready to watch a movie, but I decided to head home early. I wanted to make a few phone calls and get some rest. ...

2026-01-11 · 1 min · 106 words · Jeapo

2025-10-03

00:14 no more stroll It’s perfect now. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 # ===== CONFIG ===== $hostname = $env:COMPUTERNAME if ($hostname -eq "DESKTOP-KC9K3N7") { $vault = "D:\blog" } else { $vault = "D:\A\Jeapo's blog" } Set-Location -Path $vault # ===== DATE INFO ===== $yyyy = Get-Date -Format "yyyy" $month = Get-Date -Format "MMMM" $mm = Get-Date -Format "MM" $dd = Get-Date -Format "dd" $curtime = Get-Date -Format "HH:mm" $isodate = (Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") $folder = Join-Path $vault "\content\diary\$yyyy\$month" $file = Join-Path $folder "$yyyy-$mm-$dd.md" # ===== Ensure folders ===== if (-not (Test-Path $folder)) { New-Item -ItemType Directory -Path $folder | Out-Null } # ===== Create file with template if missing ===== if (-not (Test-Path $file)) { @" --- title: "$yyyy-$mm-$dd" date: "$isodate" categories: - diary series: tags: mood: weather: location: rating: 1 stime: release: 0 draft: true --- "@ | Set-Content $file } # ===== Input Mode ===== # Write-Host "Wow! What did you do just now?" -ForegroundColor Cyan # Write-Host "Type your entry. Press Enter 3 times to finish." -ForegroundColor DarkGray Write-Host "`r`n### $curtime " -ForegroundColor DarkYellow -NoNewline $lines = @() $emptyCount = 0 # 记录连续空行次数 while ($true) { $line = Read-Host if ([string]::IsNullOrWhiteSpace($line)) { $emptyCount++ if ($emptyCount -ge 3) { break } $lines += "" } else { $emptyCount = 0 $lines += $line } } $entry = $lines -join "`r`n" if ($entry.Trim().Length -gt 0) { Add-Content -Path $file -Value "`r`n### $curtime $entry" Write-Host "Saved to $file" } else { Write-Host "No entry written." } 00:21 Good Night Go to bed. ...

2025-10-03 · 1 min · 444 words · Jeapo