Brandon Flores

Results 18 issues of Brandon Flores

I'd like an option to return to the default Linux console colors, maybe with an "off" option to complement the light/dark options.

It seems that there is no way to disable this portion of the automatically generated help from showing up. Here's an example from something I'm writing: ```julia @add_arg_table! argtable begin...

If I want to check if a key is defined in an `NcFile` I have to use `k in keys(nc)`, but I think a dedicated method should exist for this.

If you have an abstract type with a constrained type parameter, subtypes whose parameters inherit from the type's parameters do not inherit the constraints. ```julia abstract type AbstractFoo{T supertype(Foo{ Foo...

decision
types and dispatch
design
minor change
correctness bug ⚠

Although using this package is pretty straightforward, I can't help but notice the general lack of documentation in the package: aside from the lack of a Documenter.jl integration, there is...

The Bareiss algorithm is used by default for `BigInt` determinants, and gives exact determinants for integer matrices. It's pretty straightforward to overload `LinearAlgebra.det_bareiss(::SMatrix)` in other code, but I figured it...

## About the author I'm a chemistry grad student at UW-Madison and my research is on the structural chemistry of intermetallics. I'm primarily a computational chemist, but I have experience...

Looking For Group

I'm currently working on a package, [NormalForms.jl](https://github.com/brainandforce/NormalForms.jl), which intends to make calculations of the Hermite and Smith normal forms available to any Julia user. Honestly, I wish this functionality was...

Many data structures in this package contain a small matrix, often stored as an `SMatrix{D,D,T,L}`, but having to carry around the `L` type parameter is annoying/leaks implementation details. I've worked...

I didn't know about it when I started writing this package, but the [AtomsBase](https://github.com/JuliaMolSim/AtomsBase.jl) package is designed to facilitate interoperability between a variety of Julia packages that work with atom...