Live data from Hacker News

Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

sheetninja.io

71–80 of 83 posts

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#71
post #62

You do not need to go through these guys Google provides access to the URL to use the sheet as a database and also allows you to deploy Javascript and even host the site with AppScript (example https://script.google.com/macros/s/AKfycbzYt_aXBdQlnMM7idlVD... )

The +1 button doesn’t work?

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#72

Earlier quoted context omitted.

Cloud SQL costs gazillions, sheet is free (other than selling your data)

> Cloud SQL costs gazillions, WTF is "Cloud SQL"? I have a postgresql server running on a $5/m VPS that I add DBs to as and when I explore some new idea.

Google have you covered: https://www.youtube.com/watch?v=Kl8ig2BtLAY

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#73

Don’t really get the purpose for this apart from throw away projects. For vibe coders is it really “hours” setting up a database these days? GCP cloud sql + drizzle ORM is minutes and actually scales unlike a spreadsheet, heck Claude can even write you a deployment script and run it over GCP CLI.

I think it can be useful if you want to use an existing Google Sheet, or if your users want to modify the database directly in Google Sheets, even though it seems pretty risky.

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#76
post #68

This is a great project, very cool, but it is actually insane to me that CRUD is so apparently hard that Google Sheets is the best solution

The attractiveness of a spreadsheet comes in the display and the charts, etc. For a serious database doing actual transactions, I'm not sure about the utility.

Yes, but these things like easy exposure of metrics, having a simple editable back end, these used to be table stakes for this sort of thing

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#77
You can do this with GQuery.

It's really good (no affiliation).

/* Uses: https://github.com/FCPS-TSSC/GQuery */

function exampleQuery1() { const gq = new GQuery(); const result = gq .from("Tags") .select(["ID","Name"]) .where((row) => row.ID == 12) // you can use > or < etc .get(); JSON.stringify(result, null, 2) }

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#78

Don’t really get the purpose for this apart from throw away projects. For vibe coders is it really “hours” setting up a database these days? GCP cloud sql + drizzle ORM is minutes and actually scales unlike a spreadsheet, heck Claude can even write you a deployment script and run it over GCP CLI.

Don't do this guy, cloudsql costs a lot.

Costs a lot? It’s a bargain for globally resilient infrastructure.

db-f1-micro is about $10pm inc storage for something that just works and can scale, be shifted on prem etc. you can run all your vibe coded slop on one instance.

Re: Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

#79

SQLite, SQLite + drizzle with WAL mode, push it to a VPS, do not waste your time on anything else :) Thank me when things become super easy! When things scale, SQLite will still be fine, will fit 99% of the vibe coders needs! When they don't then migrate to what ever!

sshhhhh, don't tell everyone they can actually run a website with few hundred K users on 40$ servers.
Post reply on HN