David Anthoff

Results 315 issues of David Anthoff

Should we? Not sure, because Windows Terminal for example has pretty nice new default fonts. But we should investigate. I think technically this might actually be fairly simple because MSIX...

enhancement

This suggestion comes from [here](https://discourse.julialang.org/t/ann-juliaup-preview-julia-version-manager-and-windows-store-installer/61920/2). I think one option would be that if `juliaup update` detects an update that increases the minor version of Julia, that it copies the older...

enhancement

I deleted all files in juliaup, then from the command prompt, then ran `julia`. ``` No Julia version for channel 1 is installed on this system. Run: juliaup update to...

enhancement

At the moment we can't configure the update behavior of individual channels. Instead, whenever a channel is outdated, it will show a reminder to update the channel. Instead, we might...

enhancement

The idea would be to follow https://docs.microsoft.com/en-us/windows/wsl/file-permissions#wsl-metadata-on-windows-files to store unix file permissions instead of changing ACLs of extracted files on Windows. The functions to interact with these extended attributes are...

windows

I'm starting to think about davidanthoff/IterableTables.jl#2, and the whole design would be a lot easier if packages could take a dependency on ``CategoricalValue`` without taking a dependency on the whole...

~I think we really need to get rid of things like the global ``store`` variable and ``_Module`` etc. Maybe the best solution would be to have a type called ``StaticLintSession``...

enhancement

Say we have ```julia foo(a::Int) = a * 2 bar(a::String) = a * "asdf" ``` And then we write a function: ```julia function test(x::String) y = bar(x) z = foo(y)...

enhancement

I just realized that on julia 1.0, both [DataValues.jl](https://github.com/queryverse/DataValues.jl) and [RCall.jl](https://github.com/JuliaInterop/RCall.jl) are exporting a ``isna`` function. That is not ideal, because I would think that both packages will end up...

I'm actually not sure this is a good idea, so more putting this up for discussion here. Could something like ``` julia R"$x=5" ``` assign the 5 to the julia...