Evan Fields

Results 12 issues of Evan Fields

`AbstractArray`s may have arbitrary indices; we should make sure we're not using `@inbounds` out of bounds and that we're not implicitly assuming user-provided arrays are all one-based indexing.

Seems like Travis often causes problems and the ecosystem has moved to GH actions. We should follow.

The docs need a once-over for recent Julia versions. * `]add` instead of `Pkg.add`, perhaps * Don't refer to `Nullable` in the simulated annealing example * Make sure the example...

Spoilers: I'm opening this issue even though I think it's partly a bug upstream in https://github.com/GiovineItalia/Hexagons.jl In fact, I'm hoping to open a PR there, though it may take me...

Calling `StatsModels.fit` with a not yet seen formula seems to trigger pretty slow compilation, even if a structurally equivalent formula with different names _has_ been seen before. Triggering `fit` with...

If one has a mutable array of immutable objects, is it possible to use Accessors.jl to update just one object in the array without copying the whole array? ``` julia>...

``` julia> g = SimpleWeightedGraph(2); add_edge!(g, 1, 2); collect(edges(g)) 1-element Array{SimpleWeightedEdge{Int64,Float64},1}: Edge 1 => 2 with weight 1.0 julia> rem_edge!(g, 1, 2); collect(edges(g)) 1-element Array{SimpleWeightedEdge{Int64,Float64},1}: Edge 1 => 2 with...

* Update the tests to ensure some basic behavior. The test coverage is still quite minimal, but nonetheless expanded relative to master. And I think all the behavior tested for...

Trying to follow along with the basic example in the readme/docs, an error is thrown. Here's a full terminal session: ``` (jotting) pkg> st Status `~/jotting/Project.toml` (empty project) julia> julia>...

Lambda functions in the AWS documentation and examples have a signature `(event, context) => result`. The content of the `event` argument seems to depend on how the function is invoked,...