Josh Bowden

Results 10 comments of Josh Bowden

Not sure if this has been resolved, but figured better not to lead to the ["Wisdom of the Ancients" scenario](https://xkcd.com/979/)... To work around not being able to deserialize into `&'a...

This seems to be fixed using the latest commit: a1d2b29d0f01de2b3d9183ae95a61c6c72ffb8c4 Might want to push a new release to cargo 😄. Thanks for your work on this library! ``` [dependencies] clickhouse-rs...

Another alternative is using the pipeline operator found in F# that being `|>` for pipes. I think the just adding the `>` sign in itself would make it much clearer...

See [#18 comment](https://github.com/matz/streem/issues/18#issuecomment-68008284) for FizzBuzz in F# too for example.

FizzBuzz would look about the same in F# too (the F# syntax itself is further explained in http://stackoverflow.com/a/2422713/809572) ``` fsharp [1..100] |> Seq.map (function | x when x % 15...

I guess the only other thing you need to think about is if you do some sort of hot fix on one of the files. How would you carry the...

Then again isn't that what `git merge` is for? lol

Updated the travis.yml to use - node.js versions -> { 6, 8, 10, `lts/*` (12), `node` (latest = 14) } (see also this [download graph](https://nodesource.com/node-by-numbers)) - os -> { Linux,...

Just ran into this issue a minute ago. You need to add an extra deref to get the "concrete" `PgConnection` type that has Executor implemented. From the change notes: >...

As an aside, since this might be helpful, I also had a lot of functions that had a `tx` argument: ```rust async fn foo(tx: &mut Transaction