Fredrik Wärnsberg
Fredrik Wärnsberg
..would be nice now that it has landed in FF and Chrome. https://developer.mozilla.org/en/DOM/window.mozRequestAnimationFrame http://paulirish.com/2011/requestanimationframe-for-smart-animating/ jQuery pull req: https://github.com/jquery/jquery/pull/298
Hey! These are some helpers that I often end up needing when working with Relay connections ```elixir defmodule GraphQL.Connection do import Absinthe.Resolution, only: [project: 1] def fields(info) do edge =...
Hi! Something I often struggle with is getting the log levels in production right. Either I get way too much noise, or run the risk of not having enough context...
Hi! I just wanted to raise the question, since `aetest` currently outputs the warning about the old emulator in `dev_appserver` being superseded by the Datastore emulator (which works excellent). What...
I suppose we could be even more correct at the cost of some performance, e.g split at `;` and only check the head, but I don't think it's worth it.
Similar to what `circe-literal` does. It can be very useful e.g when writing more complex ElasticSearch-queries ```scala val i = 1 val s = "foo" val jsonAst = json"""{"int": $i,...
Pretty self explanatory :)
Hi! This PR implements the possibility to override what `Task` module is used by Dataloader. This would allow users to provide a customized Task module that can e.g properly propagate...
Hi! I'm trying to write a (actually two) general `ZClientInterceptor` that adds metrics and tracing for any outgoing gRPC call for the zio-grpc client. However, `ZClientInterceptor` today only allows me...
Hi! Adding the issues [from gitter](https://gitter.im/ScalaPB/community?at=604094a4d2619a4f2e20422a) that I ran into. Basically, `ZTransform` fails to infer the types even for simple transformations. [This gist](https://gist.github.com/frekw/8d671592ca202256835db8a82692ee24), more or less extracted from the guides,...