Tim DuBois
Tim DuBois
The tool looks great, and for users who don't use a history replacement tool already it looks like a no-brainer. For those of us who already use one— how does...
I'm taking a look at parcel & attempting to move an elm project which has a native module that requires node packages inside it. My `package.json` has the following section:...
[Here's an interesting discussion](https://youtu.be/6U3YCfPDylk). The researchers manually generate a PDE system from their ABM. The system is large, so they get a massive speed up for a decent approximation of...
Docs are not building currently because something in the mulit-objective optimisation section of `examples/optim.jl` is failing. The run starts the optimisation but never gets to the point of outputting the...
```julia model = ABM(Agent3, GridSpace((100, 100))) for _ in 1:500 add_agent!(model, rand()) end aos = collect(values(model.agents)) # 1.770 μs (1 allocation: 4.06 KiB) soa = StructArray(values(model.agents)) # 3.966 μs (12...
Following on from discussions in #408 and #417, an example demonstrating the new iterators and maps would be beneficial. @flipgthb has a plan for this.
I'm hitting up against [this assertion error](https://github.com/SciML/DataDrivenDiffEq.jl/blob/753479e37ff0948f7b1da50e9c72543814f0de6d/src/basis.jl#L358) quite a lot. Perhaps it's my miss-understanding of how to use SINDy correctly; but it's happened in more than one way now. Current...
Closes #102 It's geared directly at github, but I think it's general enough at this point (the known hosts step can be extended to gitlab or whatever if users request...
I'd like to be able to add a private registry into the pipeline with something like ```julia Pkg.Registry.add(Pkg.RegistrySpec(url = "[email protected]:MyCompany/JuliaRegistry.git")) ``` and an appropriate way to use my ssh key...
So I thought I've been hitting the issue in #78 for a while, but the solutions there weren't really working for me. I clamped all of my outputs and fitness...