Ryan Williams
Ryan Williams
```python from md2py import md2py m = md2py('''# my h1 first paragraph ## first h2 yay ''') m.h1.descendants ``` ``` [first paragraph, first h2, yay] ``` Note that the first...
I don't see a mention of this in the documentation. [The `logger` methods don't take their `msg` param by-name](https://github.com/jokade/slogging/blob/v0.6.1/shared/src/main/scala/slogging/logger.scala#L48-L54), but I guess the macro implementations may be providing that "laziness"...
There isn't one, is there? I've started making one, will post updates here.
I have two files that each define a struct with the same "basename", e.g.: ```rust // a.rs #[derive(Tsify)] pub struct Foo { pub n: usize, } // b.rs #[derive(Tsify)] pub...
put a simple webapp on top of the `zarr` module that allows viewing (cloud-resident) Zarr (or HDF5) files in the browser something like [HDFView](https://www.hdfgroup.org/downloads/hdfview/), but web-based, targeting data in the...
All dependencies of [the `zarr` module](https://github.com/lasersonlab/ndarray.scala/tree/master/zarr) are cross-published for JVM and JS except [JBlosc](https://github.com/lasersonlab/jblosc/). Cross-publishing to JS would be "nice to have", either for use on the client in #11,...
@tomwhite's old prototype for traversing HDF5 files (via NetCDF) using Spark is still in [the `singlecell` module](https://github.com/lasersonlab/ndarray.scala/tree/master/singlecell) It would be good to add parallelization options to [the `convert` CLI](https://github.com/lasersonlab/ndarray.scala/tree/master/convert); most...
Currently Zarr arrays, and the `ndarray.Vector`s that typically back them, support `Traverse` operations as well as randomly-accessing individual elements. Slicing along arbitrary dimensions would be good to add.
Would be nice to allow e.g. ```scala Array((1000, 1000))(1 to 1000000) ``` in addition to the current ```scala Array(1000 :: 1000 :: ⊥)(1 to 1000000) ```