Datasette is my data hammer
jeremiak.com
Datasette is my data hammer
1–10 of 71 posts
Re: Datasette is my data hammer
#2Re: Datasette is my data hammer
#3"When all you have is a knife, a lot of stuff looks passably doable"
Re: Datasette is my data hammer
#4Interesting project. I would've liked to have heard a brief comparison with Excel - what makes Datasette something that one should reach for over that? Is it just the ability to use SQL in-place?
- it’s open source
- it allows publishing to the web
- it provides handy web-based tooling, like turning your data into a JSON api
- it provides a user-friendly UI but also lets you dig deeper with plain old SQL (pro to some, con to others)
- apparently has an extensible core with a rich plugin ecosystem which allows it to meet a wide range of needs
I’m sure there’s more, but these are all really interesting to me.Re: Datasette is my data hammer
#5Re: Datasette is my data hammer
#6Only tangentially related: what is the best general-use single hand tool? My feeling is that it would be some kind of small sturdy knife. "When all you have is a knife, a lot of stuff looks passably doable"
Re: Datasette is my data hammer
#7Only tangentially related: what is the best general-use single hand tool? My feeling is that it would be some kind of small sturdy knife. "When all you have is a knife, a lot of stuff looks passably doable"
I knew an outdoor person that did almost everything with an Opinel knife when being on tour.
Opinel knives in particular are quite handy, thanks to the good quality of the blade. They can take a beating and keep their edge, plus they fold and fit in the pocket (up to No. 9 with ease), so they can fulfill the functions of fancier “survival knives”.
Add a ferrocerium rod for easy fire starting, and a good book for downtime by the fire, and you’re golden.
Re: Datasette is my data hammer
#8I have a single docker-compose file with Postgres + pgAdmin and a host mount which I use for data exploration and ad-hoc analysis. I get a nice Web UI and can ingest quickly using the awesome Postgres FDWs.
Compared to datasette, it allows me to also transform the data by creating derived views and tables. The UI of pgAdmin also is much more fully-featured, but depending on the user that could well be a disadvantage. I guess the other thing datasette might be better at is the sharing use case by somehow exposing your instance and sharing links, I can do that with pgAdmin as well though.
Overall I'd probably need to try it out some more but currently lack the motivation because I can't think of any big advantage over my old setup.
Re: Datasette is my data hammer
#9Re: Datasette is my data hammer
#10I tried datasette for the first time not long ago. To me it wasn't obvious what it gave me compared to my local Postgres setup. I have a single docker-compose file with Postgres + pgAdmin and a host mount which I use for data exploration and ad-hoc analysis. I get a nice Web UI and can ingest quickly using the awesome Postgres FDWs. Compared to datasette, it allows me to also transform the data by creating derived vi…
Datasette is basically entirely plugins, such that you can create radically different "sites" and tools out of different combinations of plugins. Datasette without any plugins is useful, but where it's functionality shines is entirely in plugins.