Dustin Long

Results 68 issues of Dustin Long

The getting started steps lead to an error instead of a working example app. **To Reproduce** Steps to reproduce the behavior: 1. Ran `npm init builder.io` to create a new...

``` df = dataframe.DataFrame([["cat", datetime.datetime(year=2021, month=1, day=23)], ["cat", datetime.datetime(year=2021, month=5, day=19)] ["dog", datetime.datetime(year=2021, month=7, day=4)]], columns=["animal","when"]) ``` This code is missing a comma at the end of the second line....

* time.Time first class value * timedelta[*] dtype * Series can add & subtract * `assign` method * `groupby..apply` callback can return Series * `drop_duplicates` preserves dtype * `cmp` can...

The starlark static analysis has a number of missing pieces that need implementation before being useful. - [ ] loop handling: iterate analysis until a fixed-point is found - [...

If a transform run returns an error about an undefined name, and that name matches one of the known packages in starlib, suggest adding the `load` directive for that package....

enhancement

When we run a starlark transform script, it's possible that bugs in the libraries may cause segfaults. We should recover from these and return a 500, instead of bringing down...

bug

In https://github.com/qri-io/qri/pull/1942, in function `assignStructureFromDataframeColumns` in transform/startf/ds/dataset.go, I added a bit of code to clone the schema by serializing and unserializing it. This is required to get the unit tests...

bug

Dataframe column names used to be dropped, as described by https://github.com/qri-io/starlib/issues/111. That was fixed by https://github.com/qri-io/qri/pull/1923, but now descriptions are not preserved when a transform runs. They should continue to...

bug

Now that scope exists, and is created by dispatch, let's allow list to operate on behalf of the user requesting the datasets, so that they only get back their own...

feat

``` TODO from dispatch PR: https://github.com/qri-io/qri/pull/1653/files // TODO(dustmop): Filter only events for this scope. ``` Let's say two methods are running at once, one is pulling a dataset and the...

event bus