From 9336d65c2bd4b011875b3ef6aa2e531fec28ecbe Mon Sep 17 00:00:00 2001 From: riseforever2026 Date: Sat, 19 Sep 2026 14:35:12 +0800 Subject: [PATCH] Updates --- src/content/pages/about.md | 6 +----- src/content/posts/2026/09/weekly-9-3.md | 18 ++++++++++++++++++ src/pages/archives/index.astro | 4 ++-- 3 files changed, 21 insertions(+), 7 deletions(-) create mode 100644 src/content/posts/2026/09/weekly-9-3.md diff --git a/src/content/pages/about.md b/src/content/pages/about.md index e876c88..aa9df67 100644 --- a/src/content/pages/about.md +++ b/src/content/pages/about.md @@ -3,8 +3,6 @@ cover: "https://image.luming.cool/i/2026/08/25/6a8d95c4195c9.webp" title: "关于" pubDate: "2026-07-22T01:28:00.000Z" updatedDate: "2026-07-27T05:26:00.000Z" -categories: -tags: slug: "about" comments: false --- @@ -13,9 +11,7 @@ comments: false 我是 RiseForever,真名路明,生于河南,高二。 -精神洁癖,多疑敏感,喜欢独处。 - -半个独立开发者,曾参与开发过注册量 1000+ 的软件,却因技术不精,导致用户白白流失。 +我很幸福。 ### 听歌 diff --git a/src/content/posts/2026/09/weekly-9-3.md b/src/content/posts/2026/09/weekly-9-3.md new file mode 100644 index 0000000..83f52aa --- /dev/null +++ b/src/content/posts/2026/09/weekly-9-3.md @@ -0,0 +1,18 @@ +--- +title: "周记 9-3:当老师遇上 AI" +pubDate: "2026-09-18T15:30:35.511Z" +categories: ['生活'] +tags: ['DeepSeek','AI'] +draft: true +comments: true +webmention: true +--- + +英语老师给我们布置了一项习作任务。题目是《A Funny Thing on Campus》。这个选题是我第一次见,没有任何可参考的素材,老师又要求午自习下课交。我不想在这个作文上浪费太多时间,又不想到时候交不上挨批。于是,中午回家,我请教了 DeepSeek 老师,让他给我写了四篇不重样的范文。我把它们打印了下来并带到了学校。 + +午自习,我选择了抄其中一篇,前桌选走了另一篇。我们都按时完成了任务。可当习作单发回手上时,我傻眼了——自己只得了 7 分,前桌得了 11 分,他的作文被当做范文展示。 + +DeepSeek 的写作能力是堪忧的,至少我用它写出的文章就没被老师看好过。前桌的作文被选成范文,实属意料之外。他是全班唯二被选作范文的学生之一。 + +老师在课上展示了范文。但是,不是原版,是所谓⌈DeepSeek 润色版⌋。她说,现在有了 AI,批改作文变得十分方便。她还让我们周末回家⌈学习使用 DeepSeek 批改并润色自己的英语作文⌋。 + diff --git a/src/pages/archives/index.astro b/src/pages/archives/index.astro index d50160e..ef6cbce 100644 --- a/src/pages/archives/index.astro +++ b/src/pages/archives/index.astro @@ -39,9 +39,9 @@ const visibleTags = tagLimit === 0 ? tags : tags.slice(0, Math.max(0, tagLimit)) .archives-tags h2 { margin: 0 0 1rem; font-size: 1.375rem; } .tag-cloud { display: flex; flex-wrap: wrap; gap: .625rem 1.25rem; font-size: 1rem; line-height: 1.75; } .tag-cloud a { position: relative; color: var(--color-text); } - .tag-cloud a::after { position: absolute; right: 0; bottom: -.12em; left: 0; border-bottom: 1px solid var(--color-accent); content: ''; transform: scaleX(0); transform-origin: left center; transition: transform 180ms ease-out; } + .tag-cloud a::after { position: absolute; right: 0; bottom: -.12em; left: 0; border-bottom: 1px solid var(--color-accent); content: ''; transform: scaleX(0); transform-origin: right center; transition: transform 180ms ease-out; } .tag-cloud a:is(:hover, :focus-visible) { color: var(--color-accent); } - .tag-cloud a:is(:hover, :focus-visible)::after { transform: scaleX(1); } + .tag-cloud a:is(:hover, :focus-visible)::after { transform: scaleX(1); transform-origin: left center; } .archive-year { padding: 1.75rem 0; } .archive-year:first-child { padding-top: 0; } .archive-year > h2 { margin: 0 0 1.25rem; color: var(--color-accent); font-size: 1.625rem; }