Michael
Michael
I want to be able to compose drawings out of multiple SVG definitions to create things like http://devblog.riesd.com/excellent_example.html Right now the way I do that is by using ChunkySVG +...
A cloud macro is pretty generalizable. Should accept `cx, cy, r` attributes like hexagons and circles do. It can be randomly generated so that each cloud looks a little different.
I've been playing with CSS animations in SVG, they are really cool, but very cumbersome to get the basic stuff working. If I just want to make something blink on...
We definitely need a cowsay macro
I just listed to Episode 138 and wanted to share one use case where I **really love** to keep state in a genserver. I wrote and maintain the [gnat library](https://hex.pm/packages/gnat)...
The current implementation is essentially "single-threaded" since it requests a single message and then wait for it to arrive, then we handle that message before sending back the `ACK` or...
I'm working on #36 and thinking about #41 and one thing that feels a bit awkward to me is the fact that our `init/1` callback returns a `state` term which...
Similar to #39 I think we want to help user code deal with unexpected errors being raised or process exits. This can often come from things like a statement timeout...
I noticed that we are using a very simple `case` statement to enforce the behaviour of the `PullConsumer` which means that if a user ever implements a function that has...
According to the [NATS Consumer Docs](https://docs.nats.io/nats-concepts/jetstream/consumers) there have been some new attributes added to consumers in nats-server 2.8.3 and 2.10.0. We should support setting or checking these attributes, but we...