Maksym Ochenashko

Results 83 comments of Maksym Ochenashko

Hello. I ran into the same issue. For some reason, I wasn't able to reproduce error locally, while in the production setup it appears constantly. Perhaps networking or platform (Linux)...

The idea to use different configs sounds like a great option.

Custom SSL context works for me. Example: https://gist.github.com/iRevive/4a3c7cb96374da5da80d4538f3da17cb And 'on demand' trustful ssl context: https://gist.github.com/iRevive/7d17144284a7a2227487635ec815860d

If I get it right, would it be finally possible to use http4s without bringing slf4j/logback in the classpath? Blaze still depends on the [logabck](https://github.com/http4s/blaze/blob/main/build.sbt#L90), but ember does not.

I have an identical issue as https://github.com/nix-community/home-manager/issues/2562#issuecomment-1008655333 described. Adding user's profile (`maksim` in my case) to fpath made completions available: ``` initExtraBeforeCompInit = '' fpath+="/etc/profiles/per-user/maksim/share/zsh/site-functions" ''; ``` Nix info: ```...

What if we use `Resource` instead? From my point of view, it offers better flexibility and composability ```scala trait IOLocal[A] { def scope[A](value: A): Resource[IO, A] = Resource.make(local.getAndSet(value))(local.set) } ```...

My 2 cents. Even if my target effect is `IO` I use `F[_]` in the vast majority of my projects. The major benefit is that I can switch to a...

Hi @janstenpickle. I have a concern regarding your example. Root span is being created during the start of the application and then it passed to every request. As a result,...

@janstenpickle thanks! The obvious downside of the MTL approach that it requires an additional dependency. I figured out that `Trace` can be described without ApplicativeHandle. Trace as Kleisli ```scala object...