Michael Oliver
Michael Oliver
I also included various style changes to reflect some Elixir standards. Newlines added to a few files. Lastly, I changed the Travis script to simplify it slightly. Feel free to...
## Description When passing arguments in a query string, there is no type conversion step. So strings don't get converted into integers, etc. For example, an HTTP request like this...
When a GraphQL resolver that is hooked up to a REST endpoint returns `null`, `graphql2rest` returns a response with no body, and no `Content-Type` header. The expected behavior in my...
I occasionally get the following error locally: ```elixir 1) test clients exit if they try to use a closed client (Thrift.Generator.ServiceTest) test/thrift/generator/service_test.exs:387 ** (exit) exited in: :gen_server.call(#PID, {:call, "friend_ids_of", [...
There are a few thrift protocols like `TTwitter` from `finagle`, or `THeader` from `fbthrift` that allow for things like tracing. We should consider adding support for one or all of...
After sending a thrift exception, instead of simply exiting, we should close the socket. This will ensure the SSL transport properly handshakes during the exit.
Same idea as https://github.com/Feuerlabs/exometer_core/commit/1d07e40595878fe3a500b02fabd20130ab6738f9 There's a crash that happens when trying to report openTSDB metrics if the metric name is a binary.
We use mcrouter for our memcache setup, but unfortunately it [only supports ascii protocol](https://github.com/facebook/mcrouter/issues/6). I'm thinking of writing an ascii protocol implementation for Memcachex; is something that y'all would be...
This will be tough, and probably split into smaller tasks later. We need to build an engine that can import our simulation files, and then given an audio source and...
After running the simulation, we need to determine what sort of output file we will have. Notes: - 7D function needs to be saved. There is a 3D function of...