#TIL 原来“一”虽然是一声,但是在某些情况下会变其他声调,比如“在一起”,“人的一生”。
> (「一」字單用或在一詞一句的末尾,念陰平聲;在去聲字前,念陽平聲;在陰平、陽平、上聲之前,念去聲。)
https://dict.revised.moe.edu.tw/dictView.jsp?ID=10504&la=0&powerMode=0
#TIL 原来“一”虽然是一声,但是在某些情况下会变其他声调,比如“在一起”,“人的一生”。
> (「一」字單用或在一詞一句的末尾,念陰平聲;在去聲字前,念陽平聲;在陰平、陽平、上聲之前,念去聲。)
https://dict.revised.moe.edu.tw/dictView.jsp?ID=10504&la=0&powerMode=0
原来五四的时候除了提出德先生(Democracy)赛先生(Science)以外,还有与之相对的费小姐(Freedom)和穆姑娘(Moral)。同样都是进步的口号和主张,什么时候是先生什么时候是小姐姑娘也挺有意思的……
#TIL 今天又学到一招怎么给纸质笔记本加标签,号称 Japanese notebook hack,非常简单,只需在笔记本里定一页做为标签的索引页,以后记笔记时按照标签在索引的行数给笔记页边缘对应的位置染上颜色,本子合上后可以看见各种标签(“类别”)怎么自然生长。我要马上用到我的 BuJo 里去,这个妙招还可以帮我提炼常用的大类而不是给每条信息瞎加一堆标签。
[image via HighFive Blog]
#TIL (Backup) GitHub Copilot to Generate Conventional Commit Messages
VSCode settings.json:
"github.copilot.chat.commitMessageGeneration.instructions": [
{ "text": "Use conventional commit format: type(scope): description." },
{ "text": "Use imperative mood: 'Add feature' not 'Added feature'." },
{ "text": "**Strictly use only lowercase English letters and safe English punctuation (like hyphens, commas, colons, and parentheses) in the commit message. Do not use uppercase letters or other languages' characters.**" },
{ "text": "Keep subject line under 50 characters." },
{ "text": "Use types: feat, fix, docs, style, refactor, perf, test, chore, ci." },
{ "text": "Include scope when relevant (e.g., api, ui, auth)." },
{ "text": "For additional details, use a well-structured body section." },
{ "text": "Use bullet points (*) for clarity." }
]