Andrew Keller

Results 25 issues of Andrew Keller

It'd be nice to enable encryption functionality for sockets so that I could use ZeroMQ over a public network. It seems like it would be a pretty straightforward PR to...

This PR proposes an implementation of broadcasting for AxisArrays that will be possible using Julia 0.7. I'm getting a bit ahead of myself because not all AxisArrays tests pass on...

Ref. #84, #117. I don't intend/expect to merge this, mainly I put it up here as food for thought. I support using value indexing by default, but whatever the implementation...

``` julia> using Unitful, AxisArrays julia> C = AxisArray(collect(reshape(1:15,3,5)), Axis{:y}([2.0,3.0,4.5]u"m"), Axis{:x}([2.0,2.1,2.3,2.5,2.6]u"cm")) 2-dimensional AxisArray{Int64,2,...} with axes: :y, Quantity{Float64, Dimensions:{𝐋}, Units:{m}}[2.0 m, 3.0 m, 4.5 m] :x, Quantity{Float64, Dimensions:{𝐋}, Units:{cm}}[2.0 cm, 2.1...

I hope this is an appropriate place to post this issue... Any suggestions for what to do about the following? Thanks! ``` ┌ Error: Error building `Cairo`: │ [ Info:...

After merging, will require triggering the JuliaRegistrator bot.

In `src/circuit_components.jl`, ports are assumed to be identified by `String`s, but this not enforced elsewhere in the package. Probably the circuit components should have a type parameter for the port...

In discussing #11, Michael wrote: > After some thought, I agree that Cascade is not really necessary and given that things are generally more readable without it I'm in favor...

enhancement

... using PkgBenchmark.jl.

enhancement

The arguments of `set_inductance!(c::Circuit, v0, v1, value)` and related methods have an unfortunate ordering. Consider that for arrays, the syntax `A[inds...] = X` is lowered to `setindex!(A, X, inds...)`, i.e....