Sebastian Kosch
Sebastian Kosch
For anyone looking for this, `M-x elixir-format` does the job just fine, using the new formatter built into Elixir 1.6. I think this issue can be closed.
Thank you. How did I miss that!? Weirdly enough it only works in Firefox, not in Chrome. Must be a thing with the scroll event; probably easily fixable. I will...
The best approach might be [this one](https://stackoverflow.com/questions/16265123/resize-svg-when-window-is-resized-in-d3-js). I currently accomplish this in React with this horrible, horrible hack: ```javascript const width = 230; const height = 250; d3selection.select(this.refs.venn) .datum(sets) .call(VennDiagram().height(height).width(width));...
@kamilc I've made some changes to the readme file as I'm sure you've seen, but there's probably things missing still. Could you list what needs to be done still? Eventually...
In fact, I think it would be nice if we offered more flexibility, similar to what thoughbot's bamboo library is doing (blocking, non-blocking, optional delays, etc. are all useful to...
Are you suggesting 8-bit encoding? If so, can you provide a use case? Frankly, this hasn't come up as a priority, so I don't foresee this being added in the...
Hey, thanks for the bug report. You're not doing anything wrong; I suppose this has simply never been tried by anyone before. Sorry! My guess (I haven't checked this though)...
Thank you, looking forward to it!
Hi @madshargreave, is this still an issue for you? If yes, can you provide some more detail? Quoted-printable is just one (the most common!) way of escaping non-ASCII characters and...
Hey, thanks for reporting this. Looks like you're running into [this issue](https://github.com/gen-smtp/gen_smtp/issues/250), which in turn is due to a breaking change in OTP that's being discussed [here](https://github.com/erlang/otp/issues/4585). I've subscribed to...