Patrick O'Leary
Patrick O'Leary
Is there an 0.4 compatible version?
@IainNZ new script works! You might want to clarify that simply replying doesn't opt you out (if it does, it shouldn't) since that's implied by the final sentence in the...
That might be reasonable. I think the biggest win is the properly-defined domain; if the domain from here works, there's not really any reason to continue using the hacked-up one...
Julia itself is the main one. If you start a pull request (either by making this repo a dependency and changing requirements.txt or doing the replacement wholesale) I believe I...
I think it may just be that the `julia` lexer gets confused by the REPL prompt and printed output, since those are not syntactically correct Julia code. I think that...
I'm not sure what you mean; you can manipulate the return value of `default_sidebars()` (indeed, whatever you put in `html_sidebars`) all you want in `doc.conf.py`. We could certainly consider changing...
I'd rather swap the default and make Julia's docs be the special case rather than introduce a special-purpose configuration option if that makes the most sense, but I think I'd...
Not sure; would need to review the Sphinxification process. Good idea, though.
Unfortunately no on both counts. I really couldn't justify spending any more time on it, and there's some crazy stuff going on with object serialization. The data is all there,...
@timholy Would `eachindex` also be a reasonable alternative? @nilshg The `ind2sub` approach: ``` Julia @parallel for i in 1:length(A) indices = ind2sub(size(A), i) @show A[indices...] end ``` (Since I'm using...