I've implemented the same idea a few years ago: https://pastila.nl/
Show HN: Minimalist editor that lives in browser, stores everything in the URL
101–110 of 172 posts
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#102Neat. But why would you auto-set the title from markdown heading syntax when it doesn’t support markdown? (Or any rich text in fact)
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#103I think a couple of days ago I stumbled upon your editor in corp Google intranets when I was looking for internal tool to pretty print some json, small world :)
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#104shameless plug: i built something very similar but nobody cared: https://github.com/AlexW00/Buffertab
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#105Earlier quoted context omitted.
Sure! textarea.my support custom style attr: https://textarea.my/#Ky4tSlVUyCotLlEoLUhJLElVKC6pzElVSCwpKWJ...
How do you share after that? I can open devtools and change the attribute but the URL doesn't update after that.
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#106Per the spec [0], a URL can hold at least 8,000 characters. > It is RECOMMENDED that all senders and recipients support, at a minimum, URIs with lengths of 8000 octets in protocol elements. Note that this implies some structures and on-wire representations (for example, the request line in HTTP/1.1) will necessarily be larger in some cases. Mainstream browsers support at least 64,000 characters [1], and Chrome suppor…
Chrome limit is 2MB, Firefox is 1MB, WebKit is no limit. Here is the Crime and Punishment by Fyodor Dostoevsky: - https://medv.io/goto/crime-and-punishment-by-fyodor-dostoevs...
Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#107I keep this in the bookmark bar for the times I need a place to paste a quick bit of text (but it doesn't persist): data:text/html,
[1] https://xem.github.io/postit/Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#108Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL
#109Funny 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…
Is the code open source online somewhere?