Claire Foster

Results 128 issues of Claire Foster

Ideally we'd send logs and IO stream side effects over the RemoteREPL channel as they happen rather than buffering them in the server until the command is done executing. This...

It might be cool to have a RemoteREPL transport option to use TLS. Then * It would be possible to expose the RemoteREPL port directly over the internet * RemoteREPL...

It strikes me that the current design of `AbstractLogger` is very sink-centric; every logger is a sink, and one cannot pass around log filter pipelines as standalone objects. There seems...

Here's a todo list of design issues. ## Logging macros * [x] Lightweight `@show` like syntax (Added as `@info "msg" expr` for any `expr`, to give a keyword named `Symbol(expr)`)...

@tkf we discussed just a little about the differences between ResourceContexts vs ContextManagers in https://github.com/c42f/ResourceContexts.jl/pull/8 If you're interested I'd like to discuss the design pros and cons a bit and...

It seems that context passing and cleanup has a similar structure to reverse mode AD: we accumulate a bunch of actions wrapped inside closures which must be run at the...

The semantics of variable capture in `@closure` were originally intended to be the same as julia, but I got this wrong because at the time I didn't understand the intended...

As noticed by @andyferris, compilation of matrix multiply is pretty slow. Demo in julia-0.4: ``` julia> N=6; @time eye(Mat{N,N,Int}) * eye(Mat{N,N,Int}) 10.578540 seconds (819.75 k allocations: 35.073 MB, 0.05% gc...

@awbsmith needs something for constructing FSAs from parts of a larger AbstractArray, but without allocating a temporary. The main issue here is choosing the right name. `slice` and `sub` are...

Has anyone discussed the mathematical semantics of Point, and how it relates to Vec? This came up in #101, where the mathematical nature of `Point` might define how Point and...