I like the idea! The different scratch pads are cool. But I'm always a bit worried with localStorage of losing my work, is that a fair concern?If you're looking for feedback, you could consider:
- Host the javascript and fonts yourself, only downsides (privacy, slower) in using a CDN. Ko-fi, Google fonts, Google analytics, Cloudflare, Bootstrapcdn, Numoh -- are all these entities required for note taking?
- Excessive user analytics: Google Analytics is not configured for privacy. Also another Numoh Analytics, but that seems disabled at the moment?
- A pretty writing experience helps me stay in a flow. Nothing wrong with Arial 16px #000, but not inviting either. There is still a lot to win from a typography perspective.
- The saving to .txt is nice, but I'd want a plain text (or markdown) version, no html. Also would be nice if the filename was optimized (scratchpad + timestamp).
- Instead of all CSS inline, it might prevent the flash of a white-screen if the styling was saved/cached in css file, or the prefers-color-scheme tag.
- You've added an <h1> tag but styled it with a font-size smaller than your body text, this makes it lose it semantics (i.e. also no SEO/UX value).
3/31/2025
at
12:35:00 PM
> worried with localStorage of losing my workUnfortunately localStorage is not guaranteed to be persistent, especially on Safari/Webkit.
> Starting in iOS 13.4 and Safari 13.1, LocalStorage will be cleared after 7 days of no user interaction on a site.
7-Day Cap on All Script-Writeable Storage - https://webkit.org/blog/10218/full-third-party-cookie-blocki...
This also affects sessionStorage and Indexed DB, which is commonly used by local-first software that runs in the browser.
by lioeters
3/31/2025
at
2:45:33 PM
> A Note On Web Applications Added to the Home Screen> As mentioned, the seven-day cap on script-writable storage is gated on “after seven days of Safari use without user interaction on the site.” That is the case in Safari. Web applications added to the home screen are not part of Safari and thus have their own counter of days of use. Their days of use will match actual use of the web application which resets the timer. We do not expect the first-party in such a web application to have its website data deleted.
I'm glad to know that this isn't [entirely] destroying the concept of webpages acting in an app-like manner. At least this gives the developer and user some ability to give permission for actually persistent storage.
by ravenstine