Michael

Results 54 comments of Michael

Hey @fhunleth I've been playing around with picam recently and I'm interested in helping out with this effort. I've never worked with hardware encoding before, but I can learn new...

Maybe this is a good place to start? https://picamera.readthedocs.io/en/release-1.13/recipes2.html?highlight=vectors#recording-motion-vector-data

That's super helpful context @fhunleth. Maybe I'll take a look at `libcamera` to see if building a wrapper is something I can contribute to. I have a couple of Zero...

I merged #125 and released it as version 1.5.2 on hex.pm Based on our conversation in that PR, we may still want to have a way of returning the status...

@quixoten do you know if the username/password/tls etc settings are always required to be the same across a cluster? Seems like that's what most people will do, but just wondering...

Hmmmm, I wonder if we should make the client code handle this problem? Maybe we let the client pass in a function that is used to select a host each...

I tried to find some more details about this and from what I can see the `INFO` message for nodes joining the cluster only applies to the [server protocol](http://nats.io/documentation/internals/nats-server-protocol/) which...

@the-kenny I can see what you mean about the server. Because it acts as a shared connection to the database it interleaves all the calls from different clients as if...

❤️ 💛 💙 💚 💜 Thanks @michalmuskala I had not thought of checking the iodata size, but I'll give that a try. I'm not sure if ecto uses the iodata...

I'm using the following script to investigate this memory usage: ```elixir # set process memory limit max_heap_words = div(floor(2.0 * 1024 * 1024 * 1024), :erlang.system_info(:wordsize)) Process.flag(:max_heap_size, max_heap_words) # load...