Nathan Boyer
Nathan Boyer
Users have to create `CellRef` objects to pass an `anchor_cell`, but the convenient integer and macro constructors are fairly hidden. Most of the documentation was already there as a comment,...
`@nested_panel` works well with panels: ```julia julia> using Faker, Term julia> panel = @nested_panels Panel( Panel( @red(Faker.text()), style="red", ), Panel( @green(Faker.text()), style="green", ), style = "cyan", justify = :center )...
The nested panels get jumbled when `hstack` or `vstack` are used inside `@nested_panels`. ```julia using Faker, Term ``` ```julia julia> panel = @nested_panels Panel( Term.hstack( Panel( @red(Faker.text()), style="red", ), Panel(...
I thought that I could make a `Term.Table` out of a DataFrame directly since DataFrames conform to the Tables.jl interface. However, it did not work, and I have to manually...
Would it be possible to add a `pick_multi_folder` function? I would like to be able to Ctrl or Shift pick multiple folders into a vector.
There was some confusion in [this thread](https://discourse.julialang.org/t/why-no-canvas-popping-up-with-plots/99059?u=nathan_boyer) that the plot pane wasn't opening when the user ran their code file per these instructions. I reversed the order the running options...
I am really confused by the documentation on what I need to do to get `FieldVector` to work correctly regarding `similar` and `similar_type`. I have: ```julia struct CylindricalStress{T
Closes #31. I just deleted the now failing `HygieneModule` tests. Not sure if there is something different you would want to test there?
It would be convenient to only have to `using DataFrameMacros` instead of `using DataFrames, DataFrameMacros`. DataFramesMeta.jl uses Reexport.jl to achieve this.
I tried to add a link to this blog post ([Pkg.jl and Julia Environments for Beginners](https://jkrumbiegel.com/pages/2022-08-26-pkg-introduction/)) in the Writing section but was told non-official resources should be in Going Further...