ederag

Results 24 issues of ederag

Thanks for bumpversion, usually works great. Trying to create a beta version for [hamster](https://github.com/projecthamster/hamster). ```bash $ bump2version --new-version 3.0-beta bumpversion: error: the following arguments are required: part ``` Cryptic error...

feature-request
gauging-interest

A `StackOverflowError` occurs when the output of [`indexin`](https://docs.julialang.org/en/v1/base/collections/#Base.indexin) is used to index the solution. Contrived minimal example, starting from the [first tutorial](https://diffeq.sciml.ai/latest/tutorials/ode_example/#Example-1-:-Solving-Scalar-Equations). ```julia using DifferentialEquations f(u,p,t) = 1.01*u u0 =...

Reposted from [discourse](https://discourse.julialang.org/t/heatmap-with-log-scale-colorbar-cscale/63018), with updated CairoMakie, figures and link to documentation. Makie is awesome, looks like everything is doable :slightly_smiling_face:, for instance, this heatmap with log scale color axis (exactly...

``` # create a virtual environment venvwrapper -c bad_pomodoro (bad_pomodoro) >pip install -r requirements.txt (bad_pomodoro) >python setup.py install ... ModuleNotFoundError: No module named 'appdirs' ``` `appdirs`, `packaging` and `ordered_set` are...

This should fix #29.

https://github.com/JuliaArrays/ArrayInterface.jl/pull/144 did fix #142 here as well, but did not help with https://github.com/SciML/DifferentialEquations.jl/issues/740. Is this relevant to this package ? ```julia (try_array_interface) pkg> status ArrayInterface Status `~/share/prog/julia/dev/try_array_interface/Project.toml` [4fba245c] ArrayInterface v3.1.8...

As [suggested](https://github.com/JunoLab/Traceur.jl/issues/47#issuecomment-810772809) by @c42f, wrap the trace call in `with_logger()`. While we are at it, instead of the global logger, would [current_logger()](https://docs.julialang.org/en/v1/stdlib/Logging/#Logging.current_logger) be worth considering ?

Reposted from [discourse](https://discourse.julialang.org/t/tight-layout-in-makie-for-plots-with-multiple-subplots/86718) The `protrusions` space is allocated even when decorations are hidden. ![image](https://user-images.githubusercontent.com/10962809/188590063-de1d9975-972c-4b6e-af66-b74bb7fce50a.png) with `CairoMakie v0.8.13` ```julia let fig = Figure(resolution=(700, 300)) for i in 1:4 ax1 = Axis3(fig[1,...

First part of #570, new option ``` --no-dbus (experimental) Direct access to the database. Another process trying to write at the same time is untested yet. ``` The main interest...

With the merged PR #674, it is possible to end up with a mismatch between the datetime and the default day (hamster day start is 4:30): ![image](https://user-images.githubusercontent.com/10962809/111874810-1b899300-8997-11eb-99ff-4de1adb40eeb.png) So #590 has...