A next level up is to use Glitch, running something like PocketDB.
Simple Lasts Longer
11–20 of 35 posts
Re: Simple Lasts Longer
#12On the other hand, my most complicated project ran just fine for 3 years. I dreaded touching it because it was too hard to reason about, but it worked.
Re: Simple Lasts Longer
#13How come? Is WebStorage exempt from GDPR? (I searched a bit and found both yes and no answers.)
Re: Simple Lasts Longer
#14> This works by default, without any permission prompts. How come? Is WebStorage exempt from GDPR? (I searched a bit and found both yes and no answers.)
Re: Simple Lasts Longer
#15avoiding third-party services/APIs and fickle build tools will get you 99% there. not always possible.
i remember the days when APIs and aggregation was the trend. yahoo pipes was the peak.
Re: Simple Lasts Longer
#16Same thing with London and Banksy, btw. Of all the things you could see.
Re: Simple Lasts Longer
#17Sometime people really like to complicate instead of keeping things simple. Not just for show off but they genuinely believe something more complicated is better. Better such as it has better security, it has better extendability and is more generic. Even if those features were never in the actual business requirements.
I am amazed no one has written Hello World Microservice Edition. So you can have a fancy React UI, a Gateway, an User service, an Authorisation service, a Notification service, an Audit service, a Pricing service and a Printing service.
Re: Simple Lasts Longer
#18This reminds me of Hello World Enterprise Edition: https://gist.github.com/lolzballs/2152bc0f31ee0286b722 Sometime people really like to complicate instead of keeping things simple. Not just for show off but they genuinely believe something more complicated is better. Better such as it has better security, it has better extendability and is more generic. Even if those features were never in the actual business requir…
with versioning and diffs: https://ftp.gnu.org/gnu/hello/
I'm guessing the WebASM Privacy browser equiv must be: Hello Brave GNU World
Re: Simple Lasts Longer
#19In my kindle-clippings-manager (https://github.com/karlosos/kindle_clippings_webapp) I import highlights from Kindle and store them in localStorage. The major drawback is a size limitation (10MB). This should not be a problem in most cases but if you need to store more data then indexedDB (with bigger limits but more complexity) can solve the issue.
Linear (https://linear.app/) uses its sync engine to store the data in Web Storage. With optimistic updates, it feels like an offline app. You can read more about the sync engine here: https://news.ycombinator.com/item?id=36519448
Re: Simple Lasts Longer
#20> This works by default, without any permission prompts. How come? Is WebStorage exempt from GDPR? (I searched a bit and found both yes and no answers.)