Alex Garcia

Results 46 comments of Alex Garcia

Oh, another thing to consider: I believe this would be the first `"_file"` key in datasette's metadata, compared to other `"_url"` keys like `"license_url"` or `"about_url"`. Not too sure what...

Thanks for the detailed report! I'll look into this. At worst, I'll add a new option like `--update-delay 100` or something if there isn't a straightforward fix, but Dataflow uses...

ya I agree, `.ojs` right now isn't that great, mostly because it's brand new. There are small things you can do to make it a better experience while developing, like,...

Yeah, I have a few reasons why I want FileAttachments to "refresh" when changes are made: 1. To ensure that what you see when running `dataflow run notebook.ojs` will be...

@wizzard0 that sounds right! I haven't played much with vscode language servers, but from what I've used before it sounds do-able. There would need to be some sort of "connection"...

Implementation notes: On every new `top.ojs` change, the dataflow dev server will have to parse the code and find every `import` for local files, then watch those files with chokidar....

> it would be awesome to only update the cells where the text content was actually changed (one of the features Observable does not provide and I immediately started to...

Hey @gzuidhof , this is a pretty cool idea, starboard seems awesome! This should definitely be possible. Dataflow is just an opinionated wrapper + dev experience around the [unofficial-observablehq-compiler](https://github.com/asg017/unofficial-observablehq-compiler). With...

@Jiahao01121 yup, Dataflow uses the same [`require`](https://github.com/observablehq/stdlib#require) functions as the notebooks on Observable, which uses [d3-require](https://github.com/d3/d3-require) under the hood. So ```javascript // notebook.ojs moment = require("moment") moment(new Date) ``` imports...

Hey, thanks for the issue! I agree, a Python package would be great! (NPM would be slick too) Tho my experience dealing with Python packages have been nightmarish, especially when...