Cornelius-G

Results 5 issues of Cornelius-G

### Bug description Coming from this [discussion](https://discourse.jupyter.org/t/project-toml-in-binder-subdirectory-not-installing-packages/6265/2) When trying to set up a binder for a Github repo that contains a (unregistered) Julia package, I want to have binder use...

WIP * need to add a bit more support for `NamedTuples` * need to do some minor adaptions & clean-up * @oschulz: I did not (yet) add a `FixedBinning` type...

Hi, should it be possible to save tuple-like types of unknown size? Currently, this is not working: ``` using JLD2 T = NTuple{N, Int} where N jldsave("test.jld2", myT = T)...

bug

Allows to pass all the [Optim.Options](http://julianlsolvers.github.io/Optim.jl/v0.9.3/user/config/#general-options) to `bat_findmode`. Example: ``` using BAT using Optim posterior = BAT.example_posterior() optalg = OptimAlg(;optalg = Optim.NelderMead(), options=Optim.Options(iterations=200)) bat_findmode(posterior, optalg) ```