ExpandingMan
ExpandingMan
I started #159 a while ago and since could mostly not decide what it should look like. I've recently had some much better thoughts about all this stuff, and here's...
Current this just calls `last(parents(p))` and is very inefficient due to excessive allocations. Should be easy to fix, but I didn't do it because I'm having big problems with this...
This is a (very small) first step of an experimental implementation of traits to attempt to address some of the problems with [this issue](https://github.com/JuliaCloud/AWSS3.jl/issues/226). Currently, FilePathsBase makes quite a lot...
**Is your feature request related to a problem? Please describe.** With the current interface it can be extremely awkward to combine features which do not naturally fit together in a...
So apparently `@load` (thanks to @ablaom for fixing!) wasn't the only macro with dubious and scary behavior. `@from_network` also evals stuff directly into the module. Again, this is extremely unexpected...
Hi, I'm trying to setup my installer which installs my entire neovim setup on completely bare systems. With vimplug, I had installed all my packages from this state with ```...
Usually, if I have a note in latex, I want to view it as a compiled PDF in [zathura](https://pwmt.org/projects/zathura/). It would be nice to have an option to automatically compile...
I am sometimes getting Julia crash with the following error when calling `LibPQ.Connection(::String)` ``` /opt/julia/bin/julia: relocation error: /home/expandingman/.julia/artifacts/e6e5f41352118bbeb4467776 5ebccab8c151c72a/lib/libssl.so: symbol EVP_idea_cbc version OPENSSL_1_1_0 not defined in file libcry pto.so.1.1 with...
Currently if you upload an entire table with `Data.stream!` it spits out a number of "info" statements equal to the number of rows. It would be nice if this could...
```julia function mwe() v = ([1.0, 2.0], [3, 4]) 1:2 |> Map(i -> v[i]) |> collect end ``` gives ``` 2-element Vector{Vector{Float64}}: [1.0, 2.0] [3.0, 4.0] ``` For whatever reason...