Hyeonsoo Lee

Results 9 comments of Hyeonsoo Lee

We're learning `fp-ts` for future use. - **Company Name**: `Musma` - **Homepage**: https://www.musma.net - **CI in svg**: [Download](https://musma.github.io/assets/musma-ci.svg) - **Repos**: (Unfortunately, there are currently no public repos.)

I faced the same problem. You need to make sure your call method path starts with '/' just like below. > `/./` Having only `` in the path might cause...

opcua-widgets 0.6 has been released, it does not work with opcua-modeler 0.5.10. A workaround to this is to downgrade `opcua-widgets` to `0.5.10` If you use the poetry as a package...

**pbjs** respects `required` directive in field declaration. ``` syntax = "proto3"; package test; message SomeMessage { string one = 1; required string two = 2; } ``` to be ```...

> @civilizeddev [`required` fields are not a thing anymore in Proto3](https://cloud.google.com/apis/design/proto3) > > > Required fields are no longer available. I see. This issue should be fixed properly then.

@KevinRoebert I understand what you want. In fact, by using the builtin net package in Go to directly bind a UDP socket, one can read messages that are being listened...

I also want there: ``` func Map[T, R any](a Functor[T], f func(value T) R) Functor[R] func Ap[T, R any](a Applicative[T], ff Applicative[func(value T) R]) Applicative[R] func FlatMap[T, R any](a Monad[T],...

``` allowed_headers: - * ``` would be great if allowed. I recently experienced an issue due to this. https://www.highlight.io/docs/sdk/client#tracingOrigins ``` Access-Control-Allow-Headers: x-highlight-request ```

I have experienced the same problem. > oathkeeper appends duplicate CORS headers to the response (in addition to CORS headers added by the underlying services).