Tim Holy

Results 243 issues of Tim Holy

This is a message that appears on Windows Travis tests (I haven't tested locally). While they don't seem to cause a problem, the sheer number of such warnings makes it...

There seems to be some problem new to the JLL-version that crops up only when running on Travis and only with Linux. I've documented this most clearly [here](https://github.com/JuliaGizmos/GtkReactive.jl/pull/91#issuecomment-561792655) (at the...

We just split SnoopCompile into three sub-packages, with `SnoopCompile` itself now a meta-package that loads all three. I tried registering everything and got an error: https://github.com/timholy/SnoopCompile.jl/commit/f9ea9ea947a17048a9ccc099bbec7573b080fda0#commitcomment-40035326

Suppose you want to release three new packages, A, B, and C, where B depends on A and C depends on B. Because of errors [like this one](https://github.com/timholy/ProfileSVG.jl/commit/fc2510adbff465d1c58f9c600068a6f5b2688a73#commitcomment-36829067) it takes...

Not sure where this should be filed, but let's start here. I understand the reasons for the drive to move towards greater use of upper bounds on package versions (perhaps...

```julia add2f(x) = f(x[1]) + f(x[2]) # `f` has multiple methods f(z::Integer) = 2*z f(z::AbstractFloat) = 111*z f(z::AbstractString) = 0 f(z::AbstractArray) = length(z) ``` Here's the strange part: ```julia julia>...

This PR is an alternative to #340, although it would be possible to add precompiles to this in a later PR. In general, I've found that the first and most...

JLD supports [`addrequire`](https://github.com/JuliaIO/JLD.jl#types-and-their-definitions) to allow folks to ensure that necessary packages are loaded before objects from a JLD file. If you'd support this, I will eventually get around to submitting...

enhancement
help wanted

Here's a fun one that's an issue both here and for JLD. Since this is under "deeper" development, I thought I'd report it here. The issue is that tuples can...

enhancement
performance

In https://github.com/JuliaArrays/GetindexArrays.jl/issues/3#issuecomment-932743535 I identified an issue in which SimpleTraits caused a nearly 5x performance hit. SimpleTraits was confirmed to be the source because changes like ```diff @@ -414,9 +416,9 @@...