Junxiao Shi
Junxiao Shi
Currently, this package only offers a WebTransport server implementation. It is desirable to have a WebTransport client implementation also in this package. The benefit is that, having a WebTransport client...
**main.go** ```go package main // Clone is copied from golang.org/x/exp/slices package. func Clone[S ~[]E, E any](s S) S { // Preserve nil in case it matters. if s == nil...
Call parameter type does not match function signature! when method input parameter is a generic type
**main.go** ```go package main type C[V any] struct{} func (c *C[V]) F(v N[V]) {} type N[V any] struct{} func main() { var c C[int] var n N[int] c.F(n) } ```...
Environment: Node 12.13.1, both Windows 10 and Ubuntu 16 Snippet to reproduce: **package.json** ```json { "dependencies": { "esm": "*" }, "private": true, "type": "module" } ``` **module.js** ```js export const...
Add support for CBS.com videos. Example: http://www.cbs.com/shows/survivor/video/OY3wxBVz8cpSMXJ6nX2h758qVYmJjoa9/survivor-philippines-dead-man-walking
I figured out how to run the software probe inside a Docker container. I'm posting the procedure here in case it's useful for others. 1. Build the container image with...
**I'm submitting a ...** question about the decisions made in the repository **Summary** The term *blacklist* is not inclusive. It should be changed to a more inclusive term *blocklist*. This...
The JSON-RPC 2.0 specification allows `params` to be either an Array or an Object. However, current `MoleClient` implementation can only accept array; it would reject objects unless it has an...
The code has a bug: if the server sends an error code other than `-32601` and `-32002`, the client shows an unfriendly error: **errorBuilder is not a function**. ```shell $...
The code has a bug: the program below does not terminate right away after all requests have been processed, but has to wait for the 300-second timeout. This patch fixes...