Claire Foster

Results 128 issues of Claire Foster

Over at https://github.com/JuliaLang/julia/issues/46364 @eschnett observed > The array expression `[begin 1 end]` creates a 1-element array. The `begin`...`end` block is not really necessary here, but can be convenient if the...

enhancement
error messages

Currently, the HTTP API is directly tied to MbedTLS as the TLS implementation, because `sslconfig` must be of type `MbedTLS.SSLConfig`. Using the existing `MbedTLS.SSLConfig` is easy but it's not ideal...

Here's a rough list of items I'm considering on the path to a DataSets-1.0 release. Several of these can and should be done prior to version 1.0 in case the...

This is a big batch of changes, implementing * A big rewrite of the `BlobTree` API to make it more coherent and simpler * Allow a dataset to be opened...

`BlobTree` currently iterates values for much the same reasoning that Dictionaries.jl does (broadcast support, etc). For cases where the name is important this might seem inconvenient. But individual `Blob` or...

We need some programmatic way to create datasets, to update their metadata and to delete them. Currently people need to manage this manually by writing TOML but clearly this isn't...

At this point with a bit of experience with using this library, the docs should be modernized a bit, including some of the following: * Document the data REPL (and...

It'd be nice to have a practical list of examples of scientific data workflows as inspiration for DataSets.jl. Here's some examples I came across on discourse: * Reading and chunk-based...

Data layers allow data of different formats to be mapped into a program through a decoder and presented with a uniform API such that the main program logic can avoid...

Currently the storage backend API isn't very formalized and it has some problems which would be nice to fix. * [ ] Firstly, the backend entrypoint it doesn't support `ResourceContexts`...