Phus Lu

Results 12 issues of Phus Lu

Cisco ssl fingerprint is a more complete implementation https://resources.sei.cmu.edu/asset_files/Presentation/2019_017_001_539902.pdf

enhancement

1. uuid 似乎应该用 int 来存到表中,而且看起来应该使用 uuid 的变种,比如 COMB。优点可以看 http://www.famkruithof.net/guid-uuid-timebased.html 2. 标准库 json 的话,效率其实比较慢,可以考虑用 ujson, 其实放弃部分可读性的话,可以考虑用 ubjson http://ubjson.org/ 3. tornando 的 database 实用性不高,可以考虑用 DBUtils. 4. 索引这块不知道是否已经有思路? 5. 其实后期还可以考虑用 cython/cffi 加速 ps:...

As a quic-go caller, people(like me) would like to aware/identify the remote address which associated the happened errors. For example, we could do some stuff base on http://tip.golang.org/pkg/net/#OpError ```go _,...

enhancement

Creating a new standalone db is limited in our cases, also our table naming has a standard. E.g. "`__tab`" So allow user specified the table name instead default "kine" is...

### What is the problem you're trying to solve Memory footprint per container, e.g. https://github.com/containerd/nerdctl/issues/2441 https://github.com/containerd/nerdctl/issues/1419 ### Describe the solution you'd like Add an optional containerd-logging-plugin detection and loading, e.g....

kind/feature
area/logging

I use [example nginx.conf](https://github.com/marcopeocchi/yt-dlp-web-ui/blob/master/examples/nginx.conf#L22) but failed, I found the frontend need some fixes, a dirty/PoC fix is like ```js diff --git a/frontend/src/atoms/downloadTemplate.ts b/frontend/src/atoms/downloadTemplate.ts index 10c206c..7480b97 100644 --- a/frontend/src/atoms/downloadTemplate.ts +++ b/frontend/src/atoms/downloadTemplate.ts...

I want to compile codes which imports `github.com/valyala/tcplisten` on windows. The is the error output ``` C:\>go get -v github.com/valyala/tcplisten github.com/valyala/tcplisten (download) github.com/valyala/tcplisten # github.com/valyala/tcplisten C:\go\src\github.com\valyala\tcplisten\socket.go:22:2: cannot use fd (type...

Hi there, Currently I have a workaround/hacked nginx.conf could proxy spdf in subpath ``` location ~ /spdf/ { proxy_pass http://127.0.0.1:8080; proxy_http_version 1.1; rewrite /spdf/(.*) /$1 break; sub_filter 'href="/apple-touch-icon.png' 'href="/spdf/apple-touch-icon.png'; sub_filter...

After reading https://github.com/scalalang2/go-cache-benchmark/issues/4 , especially @maypok86’s comment. I think below points should be clarify for fairness 1. CPU cores choosing (8/16 cores or higher) 2. GitHub actions environment (busy github...

documentation
enhancement