Zijing Zhang

Results 35 issues of Zijing Zhang

``` >>> import pangu >>> >>> pangu.spacing("卧槽,怎么可以 **这样**") '卧槽,怎么可以 ** 这样 **' ``` 加粗消失

SyntaxError: Unexpected end of JSON input at JSON.parse () at getDailyReportFormData (file:///home/runner/work/bupt-nconv/bupt-nconv/src/index.ts:69:43) at processTicksAndRejections (node:internal/process/task_queues:96:5) at async file:///home/runner/work/bupt-nconv/bupt-nconv/src/index.ts:143:[22](https://github.com/pluveto/bupt-nconv/runs/5828020665?check_suite_focus=true#step:6:22) Error: Unexpected end of JSON input  ELIFECYCLE  Command failed with exit code...

![image](https://user-images.githubusercontent.com/50045289/175765498-50ec5e21-e03f-43a8-8097-2d3566b3ce6f.png) ![image](https://user-images.githubusercontent.com/50045289/175765519-3d47af64-1442-48aa-9417-295a6754a8b7.png) I deleted all notes. And then I add notes via anki-connect. but response "cannot create note because it is a duplicate" Can you help me?

When I was using this: ``` RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php [QSA,L] ``` I got 500 error. `error_log` shows: ``` [core:error] [pid 39496:tid 2116]...

(In admin mode, powershell) 1. Install `choco`, a package manager. 2. Install make `choco install make --source=cygwin` 3. Add `C:\tools\cygwin\bin` to PATH environment variable. 4. Run `make update`

documentation

首先第一步, 注释规范化. . 建议使用[apidocjs](http://apidocjs.com/)的方案. 比如下面是我的代码: ```php /** * @api {post} /auth/register/email 邮箱注册 * @apiDescription 注册时, 请求体将不可避免地用明文传参.所以建议开启SSL. * @apiVersion 2.0.0 * @apiPermission none * @apiName registerByEmail * @apiGroup Auth * *...

+ GET 用于获取信息,是无副作用的,是幂等的,且可缓存 + POST 用于修改服务器上的数据,有副作用,非幂等,不可缓存 是否考虑将两种类型接口分开?否则缓存就是一个大问题