Mike J Innes

Results 334 comments of Mike J Innes

Yeah, I agree 100% with Kristoffer's analysis, but at the same time you have to compare to the right counterfactual -- the situation we have right now is not actually...

This might be best asked on Pkg.jl or similar. I'm not sure but you might be able to give `GlueModule` an arbitrary UUID and add it to the "extras" section...

Do we know how this will behave if, for example, someone does `using A, B` in a script and then immediately depends on interop between them? Can we guarantee that...

@jmert that's very odd; can you send a PR and @davidanthoff can you confirm if that patch fixes things for you? I unfortunately can't reproduce this (on 0.7-beta) – maybe...

The tricky part is making this consistent. If `Foo` requires `Bar`, which module throws an error depends on the order they are loaded, and to my mind it makes less...

In that case you should use `if isdefined(Main, :MatrixDepot) ...` or something similar – you want conditional evaluation, not delayed evaluation. What `@require` is doing here is setting up some...

Fair enough – in that case I think you probably want something bespoke ;) How about something like ``` julia if isdefined(Main, :MatrixDepot) eval(quote using MatrixDepot # .... end) end...

@pevnak I don't know if anyone is really maintaining this repo; if you want I can get you commit access so you can merge this at will?

Thanks for taking a look at that, that's a good list to have. What's quite nice is that (perhaps surprisingly) there are very few particularly major things missing. The main...

Yup, Markdown.jl is definitely overdue for an update. I have a backlog of PRs to go over (which is always nice) but once they're done I'll copy the code over....