Alex Garcia

Results 158 issues of Alex Garcia

Currently for canned queries, you have to inline SQL in your `metadata.yaml` like so: ```yaml databases: fixtures: queries: neighborhood_search: sql: |- select neighborhood, facet_cities.name, state from facetable join facet_cities on...

These js/css deps are loaded on every pageload, from a CDN. Should be bundled in and version controlled someway. - [ ] index.html - [ ] inspector.css - [ ]...

```js #!/usr/bin/env -S dataflow run -p 3495 --allow-file-attachments a = 1 b = 2 c = a + b ``` similar to deno which is ```js #!/usr/bin/env -S deno run...

Only observablehq and local imports are supported now. Here are other places we should support importing from: - [ ] Any `.js` file on the internet that has a `export...

enhancement

A builtin cell named `dataflow` that have some Dataflow-specific utility functions and constants. ### `dataflow.theme` A string that updates whenever a user updates the "theme" of a notebook, ex dark...

enhancement

![image](https://user-images.githubusercontent.com/15178711/118341344-8953c600-b4d3-11eb-9fad-afc707cf6a18.png) Currently, Observable notebooks in Dataflow are rendered top->bottom. Any custom side-by-side cells have to be done in the same cell (kinda like the table-of-content sidebar [in the Dataflow docs](https://github.com/asg017/dataflow/blob/main/docs/site.ojs#L23-L26),...

enhancement

For every cell, include an dropdown option in the left margin of a cell that allows readers to download the values of a given cell. For example, if you have...

enhancement

Say you have `top.ojs`: ```javascript import {a} from "./a.ojs" import {b} from "./b.ojs" content = md`a=${a}, b=${b}` ``` `a.ojs`: ```javascript a = 100 ``` `b.ojs`: ```javascript b = 200 ```...

enhancement

Say you have: ```js element = html` ...` update = { element; } ``` When updating the `update` cell and accessing `element`, I want to be able to use autocompletion...

enhancement