Dreamacro

Results 11 issues of Dreamacro

It's helpful in reducing unnecessary code, and it does not cause break change. before ```go c := color.New(color.FgCyan) c.EnableColor() colorStr := c.Sprintf("foo") ``` after ```go colorStr := color.New(color.FgCyan).EnableColor().Sprintf("foo") ```

I've searched from https://hub.docker.com/search?q=websocat, but can't find an official docker image. It would be helpful to have a github packages or dockerhub image to use this tool.

现在的弹幕屏蔽好像只支持关键字匹配,希望支持正则表达式

**Describe the bug** When glob matching with the root directory, `go generate ./...` fails output ``` $ go generate ./... no queries found, looked in: **/*.graphql (configure this in genqlient.yaml)...

enhancement

~~Upstream fix a memory leak problem on [Fix PacketBuffer memory leak.](https://github.com/google/gvisor/commit/5117717034dae2cbaed9497e0369f8772fd6a542#diff-e0ce1a7f3f76d7bfda0ffdae6e0226aa63b3009c4c4a770c321876aecad0a6c1)~~ gVisor not fully resolved this memory leak, waiting for them to make a full fix Maybe this repository should...

When I use `std.get`, LSP get two warning from lint ```jsonnet local getValue(obj, key) = std.get(obj, key, null); ``` it always reports `Indexed object has no field "get"` and `Called...

Hi, I recently used quinn-proto to replace rustls with noise protocol and successfully implemented PoC with `Noise_IKpsk2_25519_ChaChaPoly_BLAKE2b`. But when I set up a custom version, I meet a problem. Before...

if kubo startup with `ipfs bootstrap rm all`, the bootstrap list is empty. current output ``` applying 14-to-15 repo migration > Upgrading config to new format error: invalid type for...

Recently, I observed that when using bitswap for fetching data, there is a large amount of memory consumption and no release after downloading. I use pprof and find most heap...

P1
kind/bug
need/analysis

## Motivation I have a custom IPFS implementation based on boxo, which uses `FileManager` on Windows because I need to store files directly rather than file blocks. The pull logic...