wirekang

Results 41 comments of wirekang

`Safe` is very good function. But can we implement real optional chaining without modifing Go Compiler? I mean, if `a.b.c` panics because `a.b` is nil, the 'Optional Chaining Function' should...

Why do `MinBy` and `MaxBy` are exists? Both are exactly same without name, and there is no logic for decide which one is `Max` or `Min`.

you should be ashamed of yourself

Sorry for late response. I'm learning kotlin with spring in spare time. To solve this issue, I have to learn how spring-security works. I'll post complete working example when I...

I found a solution. Just add a simple `package.json` and specify dependencies. ```ts .addExtraLib(,"file:///node_modules/foo/index.d.ts") .addExtraLib(,"file:///node_modules/foo/bar/index.d.ts") const packageJson = {dependencies:{ "foo": "*", "foo/bar": "*", }} .addExtraLib(JSON.stringify(packageJson), "package.json") ``` No need to...

Hi. I want to implement in-process proxy for grpc-web, but I can't figure out how to. Can you provide more information?