Songchen Tan

Results 13 issues of Songchen Tan

I just noticed that we cannot retrieve the database description (defined here) from GraphQL I took a look at the source code, and found that the `NotionAPIDatabase` interface you extracted...

I'm currently looking on LIT's documentation to learn how to write more comprehensive test, but let's just first put it here.

I am trying to use a Strapi plugin [Navigation](https://www.npmjs.com/package/strapi-plugin-navigation) which provides API like this: ``` GET https:///api/navigation/render/1 ``` which did not happen to be the standard collection / single type...

# I am submitting a new Community Plugin ## Repo URL Link to my plugin: https://github.com/tansongchen/obsidian-note-synchronizer ## Release Checklist - [x] I have tested the plugin on - [x] Windows...

Ready for review
Changes requested

Gatsby v5 has recently been [released](https://www.gatsbyjs.com/docs/reference/release-notes/v5.0/). Please take a look at the compatibility with it at your convenience 😄

首先感谢作者维护词库的努力。我正在基于雾凇拼音的词库制作一款[音形码](https://github.com/sbsrf/sbsrf/blob/main/scripts/sbpy.ts#L57),在脚本处理的过程中发现一些特殊的音节在注释中,且没有相关的频率信息,较难通过批处理来启用这些音节。涉及到的音节和字为 ``` 嗯 ng 呣 m 呒 m 哼 hng 欸 ê ``` 请问这些拼音能否像 `others.dict.yaml` 中的字词一样,同时支持正音和容错音,并在容错音上提示正音? --- 对于 `ng, m` 来说我理解可能是因为精确匹配的优先级高于简拼造成冲突才屏蔽的,这个可以通过 lua 来解决排序的问题,把这些不常用字放到后面。总之希望还是至少能用正确的拼音打出来,这样规范性上会好一点。

我想基于雾凇拼音的词库制作一个含有声调的拼音输入方案。对于单字来说,8105 和 41448 两个文件读音的来源也包含了声调;但是对于词组来说,不清楚 base, ext 两个词典的读音标注是怎么完成的。有没有相关的脚本可以参考?

最近试图在 Ubuntu 上安装 ibus-rime,发现包含的 librime 版本为 1.7.3,而 librime 本身已达 1.8.5。能否更新本仓库重新打包发布?

Add Halley's method by computing Hessian-vector-vector product with TaylorDiff.jl in $O(n)$ time. Note that this isn't structured as something like "HessianCache", but instead structured as a descent method, which can...

在使用中,观察到以下现象:如果使用 Memory 的 `update_userdict()` 函数更新了用户词典,则这个更新的内容一般不会立刻反映出来,但如果按了回车等 Rime 不会处理的键,就能立刻反映出来。我认为原因是:TableTranslator 和 ScriptTranslator 都在一开始调用了 `FinishSession()` 这个函数,以保证上一次的写入生效,但是 lua 中的 Memory 没有暴露这个函数,因此无法调用。 建议把 ```cpp bool StartSession(); bool FinishSession(); bool DiscardSession(); ``` 这几个函数也加入 lua 接口,方便开发者调用。