Chad Scherrer

Results 365 comments of Chad Scherrer

Oh this is tricky - I think it really depends on what use case you're targeting. If you're considering particles as proxies for random variables, I'd think the ordering matters...

Thanks @cpfiffer . Of course I like TupleVectors too, but the whole SampleChains thing hasn't worked out as easily as I had hoped. I think it's yet another case where...

This looks great, and I see you already have this connected to Hugo and Hakyll. Could be a really nice addition to [Franklin.jl](https://github.com/tlienart/Franklin.jl) as well! cc: @tlienart

I think the opportunity is for anything not supported by KaTeX, for example TikZ. But then I haven't had the chance to do much with Franklin yet, so I don't...

I'm not sure what the formal difference is, but you can do the same with `+`. It parses like ```julia julia> :(import Base.:+) :(import Base.+) julia> :(import Base: +) :(import...

Great! Thank you for getting to this so quickly

No worries, I know how open source is and just appreciate any help you have time for

Thanks for the quick response on this! I expect to spend some more time working with it this weekend

`MLStyle` thinks this pattern is non-exhaustive: ```julia julia> using MLStyle julia> function canonicalize(expr :: Expr) @match expr begin :($x |> $f) => :($f($x)) Expr(:do, $g($x), $f) => :($g($f, $x)) x...

Oops I got it, should have been ```julia function canonicalize(expr :: Expr) @match expr begin :($x |> $f) => :($f($x)) Expr(:do, :($g($x)), :($f)) => :($g($f, $x)) x => x end...