-
Notifications
You must be signed in to change notification settings - Fork 27
✨ feat: add nie-story developer interview article #235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
929375f
b8417e4
be7c116
f303245
054d411
209d360
6049b28
ea49643
f1422db
fd958c5
bd27b2a
9c469b2
f3dc478
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,218 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| title: 【开源江湖闲聊录】从启航到启航:聂师傅的开源成长记 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| date: 2026-02-27 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| author: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| name: 孙钟恺 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| github: sunzhongkai588 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| co_authors: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - name: 聂宇旋 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| github: Echo-Nie | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| category: developer-story | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 这是一篇关于聂师傅的采访,记录了他从参与飞桨开源社区到加入飞桨团队实习的成长故事。他从 `GitHub` 闲逛时偶然发现飞桨活动开始,一路参与了启航计划、黑客松等项目,最终加入飞桨推理组进行实习,一路上体验了很多不一样的风景。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <!-- more --> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <!-- 导入聊天框 --> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <script setup> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import Message from '../.vitepress/components/Message.vue' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| import MessageBox from '../.vitepress/components/MessageBox.vue' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </script> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <!-- 导入聊天框功能 --> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <style> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| figure { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| text-align: center; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| figcaption { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| color: orange; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| border-bottom: 1px solid #d9d9d9; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| display: inline-block; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| color: #999; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| padding: 2px; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </style> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## 一、前言 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 聂师傅,GitHub ID 是 [Echo-Nie](https://github.com/Echo-Nie),最开始参与启航计划,后面又持续参与了一些黑客松的开源项目,并担任了多期的助教。之后他加入了飞桨团队,并在推理组完成了近四五个月的实习。如今他已保研至北京大学,即将开启研究生阶段的学习。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| **一些生活照 🐶** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <!-- 🐱 --> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <div style="display: flex; justify-content: space-between"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <figure style="width: 47.5%"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <img src="../images/nie-story/nie-1.jpg" alt="帅照1" /> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <figcaption>帅照1</figcaption> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </figure> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <figure style="width: 48.1%"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <img src="../images/nie-story/nie-2.jpg" alt="帅照2" /> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <figcaption>帅照2</figcaption> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </figure> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## 二、采访内容 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1. **先简单自我介绍一下吧** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <MessageBox> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <Message name="Echo-Nie" github="Echo-Nie"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 大家好,我是聂宇旋,GitHub ID 是 Echo-Nie,现在是一名大四本科生。2024 年 7 月,我通过 C4‑AI 大赛与飞桨结缘,随后参与启航计划,后面又持续参与了一些黑客松的开源项目。之后我加入了飞桨团队,并在推理组完成了近四五个月的实习。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </Message> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </MessageBox> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2. **你当时是什么渠道接触到飞桨的?** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <MessageBox> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <Message name="Echo-Nie" github="Echo-Nie"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 很随意……我当时就是逛 `GitHub`,点着点着就点到了飞桨的活动了。然后我就去微信上搜了一下相关的关键词,找到了飞桨的启航计划,就这样接触到了。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 因为我经常会看 `GitHub` 的新鲜东西,然后当时的 `issue` 可能比较新,我就关注到了,具体的过程有些忘记了,我都会先去微信、小红书这类信息比较集中的渠道,查找活动介绍和报名方式,再进一步深入了解。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </Message> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| </MessageBox> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+59
to
+73
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <MessageBox> | |
| <Message name="Echo-Nie" github="Echo-Nie"> | |
| 大家好,我是聂宇旋,GitHub ID 是 Echo-Nie,现在是一名大四本科生。2024 年 7 月,我通过 C4‑AI 大赛与飞桨结缘,随后参与启航计划,后面又持续参与了一些黑客松的开源项目。之后我加入了飞桨团队,并在推理组完成了近四五个月的实习。 | |
| </Message> | |
| </MessageBox> | |
| 2. **你当时是什么渠道接触到飞桨的?** | |
| <MessageBox> | |
| <Message name="Echo-Nie" github="Echo-Nie"> | |
| 很随意……我当时就是逛 `GitHub`,点着点着就点到了飞桨的活动了。然后我就去微信上搜了一下相关的关键词,找到了飞桨的启航计划,就这样接触到了。 | |
| 因为我经常会看 `GitHub` 的新鲜东西,然后当时的 `issue` 可能比较新,我就关注到了,具体的过程有些忘记了,我都会先去微信、小红书这类信息比较集中的渠道,查找活动介绍和报名方式,再进一步深入了解。 | |
| </Message> | |
| </MessageBox> | |
| <MessageBox> | |
| <Message name="Echo-Nie" github="Echo-Nie"> | |
| 大家好,我是聂宇旋,GitHub ID 是 Echo-Nie,现在是一名大四本科生。2024 年 7 月,我通过 C4‑AI 大赛与飞桨结缘,随后参与启航计划,后面又持续参与了一些黑客松的开源项目。之后我加入了飞桨团队,并在推理组完成了近四五个月的实习。 | |
| </Message> | |
| </MessageBox> | |
| 2. **你当时是什么渠道接触到飞桨的?** | |
| <MessageBox> | |
| <Message name="Echo-Nie" github="Echo-Nie"> | |
| 很随意……我当时就是逛 `GitHub`,点着点着就点到了飞桨的活动了。然后我就去微信上搜了一下相关的关键词,找到了飞桨的启航计划,就这样接触到了。 | |
| 因为我经常会看 `GitHub` 的新鲜东西,然后当时的 `issue` 可能比较新,我就关注到了,具体的过程有些忘记了,我都会先去微信、小红书这类信息比较集中的渠道,查找活动介绍和报名方式,再进一步深入了解。 | |
| </Message> | |
| </MessageBox> |
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这段中文语境里使用了英文双引号 "(例如 "我该做什么、我适合做什么"),与仓库中文排版习惯(使用中文引号“”)不一致,也容易被 lint/格式化规则抓到。建议将文中的英文引号统一替换为中文引号,并顺带检查全文类似用法。
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
技术术语如 Paddle、AIStudio 等应添加反引号标记。建议将 Paddle 改为 `Paddle`,AIStudio 改为 `AIStudio`。
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
根据代码规范,应当为代码片段、变量名等添加反引号标记以示区分。这里的 copy 是一个操作动词,建议改为 `copy`,同样 PR、CI、bug、patch 等技术术语也应考虑添加反引号标记。
sunzhongkai588 marked this conversation as resolved.
Show resolved
Hide resolved
sunzhongkai588 marked this conversation as resolved.
Show resolved
Hide resolved
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
技术术语 GitHub 应添加反引号标记,建议改为 `GitHub`。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这段有多余空格与标点前空格(例如“本科生。 2024 年…”、“实习 。”),会影响阅读体验。建议去掉句号后的多余空格,并移除句末标点前的空格。