Simon Willison
Simon Willison
Dashboard configurations that live in the database could get out of sync with the database design - especially if it is being actively iterated on. An option where you can...
Since a cell has a SQL query, and is tied to a server-side template, it wouldn't be too hard to provide a mechanism whereby the cell periodically polls the server...
- MySQL - SQLite Not sure when I'll get to this!
At some point it might be good to add an optional audit log, recording exactly which SQL queries were executed and by whom. More of a far-future idea.
Since this is a tool for building dashboards, having inline user documentation would be good. It could even include useful copy-and-paste SQL snippets.
Efficient pagination based on sorting by a unique key (and potentially using multiple columns with a tie-breaker for other sort orders) is a really neat trick in Datasette that could...
Like this: $ db-to-sqlite mysql://localhost/blah blah.db \ --sql "select id, name from categories" --output="cats" \ --sql "select id, name from authors" --output="authors"
From #50 - right now it will crash with an error of it hits the rate limit. Since the rate limit information (including reset time) is available in the headers...
I want to see a reverse chronologically ordered interface onto both issues and comments - essentially a unified log of comments and issues opened across one or multiple projects.
This tool is currently almost entirely ignorant of the concept of branches. One example: you can't retrieve commits from any branch other than the default (usually main).