Kevin Squire

Results 27 issues of Kevin Squire

* Previously, this was set to '1', which (presumably) tested the latest stable release. * We currently promise to support 1.6, so we should always test this, even if the...

The `Deque` documentation claims that this implementation is faster than `Vector` for `pushfirst!`, but this benchmark probably (?) hasn't been run since about Julia 0.3. We should rerun the benchmark...

Right now, the `@memoize` macro creates the cache dictionary using `eval`: https://github.com/JuliaCollections/Memoize.jl/blob/1709785afc1eed40d7d35e6c3ebe5ae7e076f57e/src/Memoize.jl#L49-L52 This is generally considered a bad idea in macros, and until recently, also caused an error here because...

help wanted

As discussed in https://github.com/ihnorton/libAV.jl/pull/2, it would be good to come up with (or copy) a nice front-end API. (Backend to be discussed elsewhere.) Since I want to use this immediately...

`AVOptions` is meant to be a version-independent method for getting and setting options in ffmpeg/libav structs. It works kind of like a dictionary. This would make solutions like #26 much...

ffmpeg/libav can either be installed with an LGPL license or a GPL license. IANAL, but my understanding is: - If it's installed as an LGPL library, then we're allowed to...

After opening the same video multiple times (without closing in between), and then attempting to exiting Julia, the process seems to hang. Pressing `^C` gives ``` julia ^Cerror in running...

See https://github.com/JuliaCollections/Memoize.jl/pull/52#issuecomment-589406279 I recently spent some time working on `Memoize.jl`--it was essentially unmaintained for 2-3 years, which is probably what prompted you to create this package. If I had known...

- [x] Fixes #4743 - [x] Tests added - [x] Passes `pre-commit run --all-files` - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` Related to...

contrib-help-wanted
needs review
topic-rolling

It's likely that `OrderedDict`s, as implemented here, are susceptible to JuliaLang/julia#15077. This needs to be tested and handled. Related: #221