I tried going all on on Google Sheets earlier this year. I used the Python API and like almost nothing worked consistently. I got 1 sheet to work well with like 1k rows and thought woohoo this is great! So I went all-in, put 25k rows in and Google pooped the bed. It gave errors all the time, rows and columns were funky. API issues galore. SQLite however handled 25k rows without any errors, always rock solid. I gave u…
I keep turning my Google Sheets into phone-friendly webapps
71–80 of 238 posts
Re: I keep turning my Google Sheets into phone-friendly webapps
#72Earlier quoted context omitted.
Thank you for discussing this openly, it can be a real bummer to write something, test it, have something work up to a point then fail due to situations outside your control. You probably just saved me about 20 hours of coding.
to be fair, 25k rows seems like a few more rows than I'd use a spreadsheet for
Re: I keep turning my Google Sheets into phone-friendly webapps
#73I use Notion databases for this. They're essentially spreadsheets with customizable table, list, kanban views, and each row gets its own wiki-style page in addition to the structured data. So it's nice for lists of books or movies or games, where you have some metadata but you also might want to take notes on it when you read/watch/play. It works pretty well for this purpose, but I also could probably make Obsidian o…
You should check out Fibery. It’s ultimately like Notion but a lot more performant and less “finicky” due to being too clever about UX, in my opinion.
I think Fibery is a very interesting product and an incredibly powerful platform. Developed by a small team.
Re: I keep turning my Google Sheets into phone-friendly webapps
#74Let go of your complex solutions. Spreadsheets were the right answer all along.
I whipped up a spreadsheet in google sheets and added a google form that allowed me to quickly pick a medication that was just taken - it'd enter it into the sheet and an "overview" page would show me what was pending, with color coding if something was "overdue".
I felt like I was abusing what a spreadsheet was meant for but it worked quite well.
If I knew about Glide I probably could have made it look even nicer.
Re: I keep turning my Google Sheets into phone-friendly webapps
#75Earlier quoted context omitted.
Did you skip web design 101? If it’s simple enough, you can absolutely slap it together with jQuery and html.
Time is a valuable resource. This doesn’t simply boil down to one’s abilities—for most of us, opportunity cost is an important factor. If I’m just trying to get some value out of some data, why waste time playing web developer, fighting CSS, dealing with CORS issues, etc., when I could simply use an existing tool that already has my use case covered?
Re: I keep turning my Google Sheets into phone-friendly webapps
#76I'm looking for a no code platform that I can use for my customers and charge a subscription for access. Most of these no-code solutions target internal company Intranets. But, I want to use them for apps I can sell to customers. Does anyone have recommendations?
Re: I keep turning my Google Sheets into phone-friendly webapps
#77Seriously how does anyone make money with a website where the actual content is so obscured by ads that users don’t bother coming back?
Re: I keep turning my Google Sheets into phone-friendly webapps
#78Re: I keep turning my Google Sheets into phone-friendly webapps
#79Earlier quoted context omitted.
to be fair, 25k rows seems like a few more rows than I'd use a spreadsheet for
Wait till you hear about the spreadsheets researchers use... My chemist friend uses Excel files that regularly exceed 2GB of just text...
Re: I keep turning my Google Sheets into phone-friendly webapps
#80I've built quite a few dashboards while working on proof-of-concept feature/product engineering. Even though people often think I'm joking, almost always the backend database was a Google Sheet. Google Sheets has great API support, easy to write functionality, convenient read and file dumps, works well with Pandas/SQL, and has a universally appreciated UX. Data validation can be annoying if the "admin" directly enter…