Michael Goerz

Results 93 issues of Michael Goerz

`Documenter.HTMLWriter.get_url` and `Documenter.HTMLWriter.pretty_url` both return strings containing invalid backslashes on Windows. This is because they use `dirname` and `splitdir`, which return platform-specific paths. However, URLs should never use Windows path...

Maybe I'm just misreading the [documentation for `Documenter.mdparse`](https://documenter.juliadocs.org/stable/lib/internals/utilities/#Documenter.Utilities.mdparse-Tuple{AbstractString}) where it says that "`:single` (default) – returns a single block-level object", but I'm finding the function to return a single-element list:...

Type: Maintenance

It would be great to have, e.g., `juliaup shell rc` to *temporarily* (for the lifetime of the current shell) activate a particular version of Julia, as opposed to `juliaup default...

enhancement

This is what Github automatically recognizes as the MIT license. Closes #72

[As pointed out in a recent thread on Slack](https://julialang.slack.com/archives/CD3TZUV9T/p1668313937473389), the way the `LICENSE.md` file is written, quoting the actual license text, does not let Github recognize it as the "MIT...

``` julia> using Formatting julia> Formatting.fmt(".1e", 0.0003) "2.10e-04" ```

Implement `xnames(entry; names=:last)` to print first name initials (as stated in the documentation) and `xnames(entry; names=:lastonly)` to print last names only. Add an option `and` to use put " and...

bug
enhancement

The documentation for [`Bibliography.xnames`](https://humans-of-julia.github.io/Bibliography.jl/dev/#Bibliography.xnames) says that with `names=:last` it should return "last names + first name abbreviation". However, in reality, it only returns the last names without first name initials....

bug
enhancement

Once QuickCursor is set up with keyboard shortcuts, the status bar icon provides virtually no benefit. There should be an option to disable it, to unclutter the the status bar.

Would it be possible to add support for [LBFGSB.jl](https://github.com/Gnimuc/LBFGSB.jl)? It seems that currently, the only LBFGS implementation in Optimization.jl that supports box constraints is [`NLopt.LD_LBFGS()`](https://docs.sciml.ai/Optimization/stable/optimization_packages/nlopt/). There's also `Optim.LBFGS`, but that...