Spencer Russell
Spencer Russell
I'm seeing this on Appveyor right now, but with error code 2148270105: https://ci.appveyor.com/project/ssfrr/portaudio-jl/build/1.0.39/job/6j3wy392wh0qbyna It's been non-functional for the last 12 hours or so. Is there any workaround?
my issue seems to be resolved now on appveyor. I didn't get to a windows machine in time to check whether it was broken locally.
The way it works in some other test frameworks I've used (I think nose.py does this) is that for each test case any generated STDOUT is suppressed, but if a...
the `@test` macro just evaluates the given expression whole. The cool thing that FactCheck does with `=>` is that it splits the left and right sides so that after a...
just to add another use-case for this, I'm trying out using joblib to cache sets of compiled Theano functions so I don't have to be constantly re-building them when I'm...
whoops - correction: it seems that when I turn compression off the speeds are actually pretty comparable, but the size on disk seems about twice as big as when I...
For now I just defined ```julia struct RawStr x::String end Base.show(io::IO, m::MIME"text/plain", s::RawStr) = show(io, m, s.x) ``` and I can do `@info RawStr("writing to $path")`
FWIW a while ago I wrote a small package to easily work with hooks for this sort of thing: https://github.com/ssfrr/Hooks.jl I never ended up registering it but this is the...
Seems like an improvement. Is there a performance difference? It definitely needs to allocate more memory to keep the back-tracking info, but it's not clear whether there's a runtime impact...
I think this is a good idea (especially line-wise, I'm a little less convinced about limiting context within a single line). I'd even be a fan of defaulting the context...