James Kermode

Results 13 issues of James Kermode

Please could you do a new release of ASE.jl so that the slow loading due to `__precompile__(false)` goes away? I see this has already been fixed in `master`.

```julia import JuLIP.forces, JuLIP.gradient, JuLIP.energy gradient(calc::ASE.ASECalculator, at::Atoms) = gradient(calc, ASE.ASEAtoms(at)) forces(calc::ASE.ASECalculator, at::Atoms) = forces(calc, ASE.ASEAtoms(at)) energy(calc::ASE.ASECalculator, at::Atoms) = energy(calc, ASE.ASEAtoms(at)) ```

Hello! I'd like to contribute [extended XYZ](https://wiki.fysik.dtu.dk/ase/ase/io/formatoptions.html#extxyz) readers and writers to AtomsBase. I have an existing Julia package, [ExtXYZ.jl](https://github.com/libAtoms/ExtXYZ.jl), which calls a [C library](https://juliahub.com/ui/Packages/extxyz_jll/89uRR) containing parser that is auto-generated from...