Zhenzhen Zhao

Results 39 comments of Zhenzhen Zhao

I have solved it by writing an extra plugin and enabled it in `__init__.py` just for `*_by_lua` directives. Plugin code in here: https://gist.github.com/Triple-Z/64a0b6ad8fb673d77712e5aabfebfe82 Maybe I can create a PR for...

@gshulegaard I have a WIP PR in here: https://github.com/nginxinc/crossplane/pull/86 > although it might be worth considering adding a flag to enable/disable it by the user. I will check this and...

@aluttik Thx & I will check on this :)

在支付宝的账单中,似乎当存在“交易关闭”的交易时,会同时有一笔对应“退款”的交易? 如果总是对应的话,是否不需要人工再次确认呢? 例子见此:https://github.com/deb-sig/double-entry-generator/blob/79ee3196b4819b023d9265fe465fd912ad11129b/example/alipay/example-alipay-output.beancount#L89-L111

> 另外,退款和支付可以Link起来。 好主意,但实现起来可能有点难度

@RangerNJU https://github.com/deb-sig/double-entry-generator/issues/44#issuecomment-1033411594 应该是不一定对应的。

I have met the same issue when i use `router.Use(cors.Default())` . And I solved it by: ```golang func CORS() gin.HandlerFunc { return func(c *gin.Context) { c.Writer.Header().Set("Access-Control-Allow-Origin", "*") c.Writer.Header().Set("Access-Control-Allow-Credentials", "true") c.Writer.Header().Set("Access-Control-Allow-Headers",...

根据同学反馈,会存在 `Copy Project` 之后无法编译的情况。原因是 Overleaf 改动了 Main document,导致出错。 解决方案:点击左上角 `Menu` ,设置主编译器为 `XeLaTeX` ,主编译文件为 `demo_chs/bachelor.tex` 或 `demo_chs/master.tex` ,如下图: ![image](https://user-images.githubusercontent.com/16285716/58151185-8387c900-7c9b-11e9-81a7-f1665cf6d4c6.png) p.s. `logo` 文件夹需要放在当前的主编译文件的目录下,否则 `Overleaf` 找不到图片(`../logo` 这样的路径 Overleaf 就会报错找不到文件,不知道为啥……)。

@yzwduck 嗯是的。我已经改了 Overleaf 的模版了,即使用 `demo_chs` 文件夹作为根目录。