Eric Hanson

Results 156 issues of Eric Hanson

to match Julia base on 1.3+. This would be something like adding `atexit(() -> rm(dir; recursive=true))` inside `mktempdir()`.

enhancement

Maybe ```julia Serialization.deserialize(path::AbstractPath) = deserialize(IOBuffer(read(path))) ``` which would work for S3Paths. Similarly, `serialize` could be defined.

enhancement

This comes up when users try things like `cp("~/my_file", S3Path("..."))`. Since often users first encouter the filepaths system via special paths like `S3Path`s, they don't realize they need to fully...

enhancement

I think this is a known problem but I can't find an issue for it so I figured I'd make one. If the user passes a keyword argument that doesn't...

This makes it hard to load a backend "in the background" in a way that doesn't effect the end-user. I'm not really sure how to do this and preserve the...

The backend is pulled from a global at `show` time: ```julia function Base.show(io::IO, m::MIME, scene::Scene) ioc = IOContext(io, :full_fidelity => true ) screen = backend_show(current_backend[], ioc, m, scene) push_screen!(scene, screen)...

```julia julia> df = DataFrame() 0×0 DataFrame julia> push!(df, NamedTuple(); cols=:union) # does not add a row 0×0 DataFrame julia> df = DataFrame(:a => [1]) # try again with non-empty...

decision

It would be nice to have support for automatically picking up `precompile_execution_file`'s. There are two sides to this as I see it. * Package dependencies: It would be nice if...

I think it would be convienent to be able to index into a Spectrogram with times or frequencies, and obtain the power in the corresponding bin. `Spectrogram` already has all...

enhancement

The new "Windows subsystem for linux 2" (WSL2, which has some docs here: https://docs.microsoft.com/en-us/windows/wsl/wsl2-index) is nice in that it lets you use the same filesystem for your windows install and...

juliabug