Show HN: Minimalist editor that lives in browser, stores everything in the URL
71–80 of 172 posts
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#72I really like this from a privacy point of view. So much so that I'm thinking about adding a purely URL-storage solution as an option in my https://kraa.io editor.
From a privacy point of view how is it any better than just using a local, native text editor?
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#73Earlier quoted context omitted.
Typos and URL mangles are common though, and I'd still have no way to confirm if it got logged in that case. It's out of scope for anything in the github source, and instead depends on the server hosting the page. I know this isn't meant to be super secure, but it's still worth a mention.
Typos aren't making the hash part turn into something else. Like your parent comment explained to you, the hash part is not sent to the server. If you go out of your way to mangle the URL then of course a mangled URL without hash will likely get logged to the server. But I'm not sure how one would manage to go so much out of the way that they mangle the URL in a way that removes the hash.
Percent encoding is particularly bad since it may also bloat the length causing truncation and the decompress to fail. There's endless footguns with URLs.
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#74If you click save you get the option to use a URL.
The problem with a URL every edit is a new URL. So you send the URL to a friend, then fix a typo, they need a new URL.
The other problem is of course the space limit.
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#75Earlier quoted context omitted.
https://textarea.my/#Cy4tsOfi8ssvUcgtTc7QU_DIz0stLsmpVPBUSK0...
https://textarea.my/#ZY_NTgMhFIVd9ylYNZpMuQwDmZ9m4qM0SG9ncCg...
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#76Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#77Earlier quoted context omitted.
https://textarea.my/#i0wtBgA=
No that should be: https://textarea.my/#c8yrLMnIzEsHAA==
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#78Funny how I made almost exactly the same but for maps. I needed a way to share a link to a map, with drawings and the ability for the receiver to see their own location on the map. Annotated screenshots solves the first but not the second. Vibe engineered this, with many of the same ideas as OP. Took an evening. Just in time apps for one specific use case is a thing. And because it's so cheap to make and can be hoste…