Myriad-Dreamin

Results 38 issues of Myriad-Dreamin

I'm uploading a file as request body with size of 4GB and found that resty [copies full file content into memory](https://github.com/go-resty/resty/blob/master/middleware.go#L521) (to handle `http.Request.GetBody` callback?). However, it is not necessary...

v3-consideration

The `Content-Type` header maybe a part of oauth signed request. https://github.com/go-resty/resty/blob/7dda6159eceee10c6cacc6f9d1637042f67423b0/middleware.go#L430-L436 One using resty might have to use `PreRequestHook` to make a request with empty content type. ```go resty.New().SetPreRequestHook(func(client *resty.Client,...

v3-selected

目前在某个项目里使用了BaiduPCS-Go,希望将BaiduPCS-Go嵌入到主程序里,这样避免有多个可执行文件。 经过研究,`main.go`里的`urfave.cli.App`是可以独立成一个新的包的。 现在处理方法是将`main.go`中的`App`构造拷贝到新的包里单独成为一个新的函数并且放在一个新的文件夹里当作库来使用。 ``` // go.mod replace github.com/qjfoidnh/BaiduPCS-Go latest => ./third_party/BaiduPCS-Go ``` 然后可以在项目中使用这个对象来进行开发: ```go var app = baidupcs_main.GetApp() ``` 我不知道您的编程习惯,所以没有提供pr,暂时提一个issue,希望能至少将`urfave.cli.App`暴露出来。

### Description The following text are rendered wrongly on most Windows. This is because typst usually makes font fallback to "LiSu", an ancient chinese font, or even fails to fallback...

bug

In this PR, we parses raw blocks into many smaller AST nodes. Each of them holds a span to allow better IDE support, e.g. jumping from preview frames to source...

### Description Some plugin needs initialization, otherwise they feel painful on becoming stateless: + `jogs` plugin has to retrieve a `bytecode` (some fixed js library) argument per call. + `mitex`...

feature request
scripting

When `self.cursor.saturating_sub(size)` is not a char boundary, it will panic. Fix it by rounding the range to the nearest char boundaries.

**Describe the bug** The entry isn't changed correctly after renaming the main file in the editor **Package/Software version:** VSCode version(Help -> About): ```plain Version: 1.89.1 (user setup) Commit: dc96b837cf6bb4af9cd736aa3af08cf8279f7685 Date:...

bug

- [x] fix symbol view. > the current implementation is bug prone, so I would like to reimplement one instead of fixing current one. I may start to reimplement it...