Elwynn Chen
Elwynn Chen
### 介绍 借助chatGPT,更好的结合整个网站的语境和领域,提供更准确的i18n文件翻译。可以一键导出多种语言的i18n文件,只需数十秒即可完整完整的多语言国际化。 ### Demo [](https://i18n.ing/) [](https://i18n.ing/) ### 地址 + Github: https://github.com/ObservedObserver/chatgpt-i18n + 网站:https://i18n.ing/ ### 特性 + 一键导出多语言 + 友好的在线编辑器 + 相比google translate更好的结合语境的翻译 + 大json翻译
fix: include source-map related files ## Description In Wepack5+, deps using source map but published exclude those files will receive lots of warnings. ## Related Issue ## Motivation and Context...
This is a PR made by @Shirllyuan internally, but havn't tested on win devices. + Operating Platform: Windows 10 Professional 21H1 64-bit operating system, x64-based processor + Processor: Intel(R) Core(TM)...
https://github.com/Kanaries/Rath/blob/ed6f3813fdc822a67529cd339a4e49bcb9163097/packages/rath-client/src/pages/dataSource/selection/database/reducer.ts#L9-L386 @AntoineYANG Please refactor all of this. It seems RxJS is unnecessary here. Only use RxJS when you have demands for high-order operators.
Thinking about exporting [pygwalker](https://github.com/kanaries/pygwalker) visualizations to Altair code in Python.
Original bug report: https://toriaezuugoku.com/pygwalker-2/ > Windows10 streamlit==1.27.0 pygwalker==0.4.7 It seems pygwalker does not rendered with correct size so the charts in the article only shows legend parts.  ## related...
PyGWalker supports export code in `graphic-walker` spec or `vega-lite` spec but those are specification from JavaScript ecosystem, which may not be familiar by developers in Python. It will be a...
There is no official documents explaining all the parameters and API of pygwalker.
+ 度量计算不再默认使用aggTree来全量完成,只在查询时去做计算。这本质上是因为我们兼容了`Holistic`度量使得实际在做聚合计算时并没有复用子节点的聚合结果,只是复用了子节点的分组索引。所以当前节点的聚合计算是独立于其他节点,不存在依赖关系的。我们只需要根据查询需求进行计算即可。 + 查询后节点的聚合值被缓存,缓存计算结果和计算信息(聚合函数,用以判断下次聚合是否需要重算)。 + 新插入节点等操作使用lazy更新。这是由于本次重构不再做全量度量聚合计算,导致momentCube本质上变为了与periodCube更为相近的结构。