Steven G. Johnson

Results 172 issues of Steven G. Johnson

Currently, this extension is disabled if the workspace is in ["restricted mode"](https://code.visualstudio.com/docs/editor/workspace-trust): ![image](https://github.com/ojsheikh/unicode-latex/assets/2913679/beabf2a8-3266-4a6e-b809-7436969a592d) As mentioned [on stackoverflow](https://stackoverflow.com/questions/67915078/why-are-some-of-my-extensions-not-working-in-vs-code-1-57), ideally the extension can indicate whether it is safe to run in restricted...

Would it be conceivable to transfer this repo to an organization like https://github.com/JuliaEditorSupport so that more maintainers can help update it?

Could we transfer this repo to the JuliaMath organization (similar to [Interpolations.jl](https://www.ecma-international.org/wp-content/uploads/ECMA-48_5th_edition_june_1991.pdf)) so that it could benefit from more potential maintainers?

It seems like this should be supported: ``` julia> using SparseArrays, LinearAlgebra julia> A = sprand(10,10,0.1); A = A'A + I; julia> F = cholesky(A) SuiteSparse.CHOLMOD.Factor{Float64} type: LLt method: simplicial...

Following https://discourse.julialang.org/t/warning-against-unicode-confusables/108734, something to consider would be an automatic warning if two symbols in the same scope are easily confusable (using standard Unicode-confusable tables developed for computer security).

new test

The Makefile recommends the following pthread flags ``` # PTHREAD_INC = -DHAVE_UNISTD_H -lpthread # PTHREAD_LIB = -lpthread ``` Some problems with this: - `-lpthread` is a linker flag, not a...

Even if `FFTW3_LIB` is specified in the `Makefile`, it is not used. [This line](https://github.com/victorliu/S4/blob/bb6038db8cb7bb84a945ced539a09bb7c30a1047/Makefile#L73) in the `Makefile` defines `HAVE_FFTW3`, but the [source code checks](https://github.com/victorliu/S4/blob/bb6038db8cb7bb84a945ced539a09bb7c30a1047/S4/fmm/fft_iface.cpp#L23) for `HAVE_LIBFFTW3`.

The [manual](http://www.stanford.edu/group/fan/S4/units.html) says: - When the lattice vectors are set, this determines a length scale. Suppose we have a square lattice with a periodicity of 680nm. It might be logical...

Since `$` isn't used for glob patterns, it might be nice to implement Julia interpolation when a non-backslashed `$` is encountered in `glob"..."` rather than treating it as a literal...

As noted [on discourse](https://discourse.julialang.org/t/try-catch-online-help/113532), the `try` docstring should at least briefly mention `finally`.

doc
error handling