wanglong001

Results 18 issues of wanglong001

**Are you requesting support for a new curl flag? If so, what is the flag and the equivalent Go code?** ```bash curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" --digest \ --header "Accept: application/json" \...

Hi, for issue #45 I passed the local test

# 调用了rds这个接口 ```go // DescribeAvailableZones invokes the rds.DescribeAvailableZones API synchronously func (client *Client) DescribeAvailableZones(request *DescribeAvailableZonesRequest) (response *DescribeAvailableZonesResponse, err error) { response = CreateDescribeAvailableZonesResponse() err = client.DoAction(request, response) return } ```...

incompatibility

# background: We encountered the "no space left on device" error. After cleaning up the disk space, it still keeps reporting this error. I hope this error does not need...

bugfix: Unable to record from MIB https://github.com/etingof/snmpsim/issues/163 My point of view, this is a judgment written in reverse.

hi, 我找到一个bug, SequenceNumber 是uint16,不断增加的, 最大值是 65535, 到65535后会溢出, 又从0开始. ``` func (r *RtpStream) AddPacket(rtp *RtpPacket) { if r.CurSeq == 65535 { r.CurSeq = 0 } if rtp.SequenceNumber

First of all, thank you for open-sourcing such a useful tool: **d2** I also hope to have the function of drawing pie charts, I hope you can adopt it as...

Very practical tool, yet how to jump forward and backward in history? Expect them to be added to shortcut keys.

enhancement

**Describe the bug** onnx model of yolov5 to burn error: ``` ERROR burn_import::logger: PANIC => panicked at /home/wzl/.cargo/git/checkouts/burn-178c6829f420dae1/f43b686/burn-import/src/onnx/op_configuration.rs:229:9: Flatten: input tensor must have at least 2 dimensions (got 0) thread...

bug
onnx

Example ``` $ cat t.txt column1 ./go.sum column2 ./go.mod ``` ```bash cat t.txt | awk '{print($2" "$1)}' # Swap 1, 2 columns # ./go.sum column1 # ./go.mod column2 cat t.txt...