Live data from Hacker News

Show HN: Minimalist editor that lives in browser, stores everything in the URL

github.com

111–120 of 172 posts

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#112
post #54

Funny 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…

> Vibe engineered While I'm all for vibe coding as appropriate, there's a lot of humor to be found it calling it engineering. :D

I just hope actual engineers don't start vibe engineering bridges and buildings.

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#113

I 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, you might not want to use textarea.my since it includes some tracking bits at the end:

The tracking isn’t in the html, and as it’s static, you can host it any other way you like

https://htmlpreview.github.io/?https://raw.githubusercontent...

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#115
I love this. Great little html page to refresh on Javascript.

For fun I put it in chatgpt and asked if there are bugs.

It warned about fromBase64() and toBase64() not existing in main browsers. It is supported but is indeed a new "baseline 2025"feature. It suggested more compatible code using two small functions to convert characters manually.

"deflate-raw is not consistently supported." It suggested using 'deflate' instead.

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#116
post #54

Funny 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…

> Vibe engineered While I'm all for vibe coding as appropriate, there's a lot of humor to be found it calling it engineering. :D

this is not something I came up with, Simon wrote it and I liked the differentiation between "vibe coding" where there is less effort

for this case project I think I would actually go back and say it's vibe coded, but I didn't want to just call it vibe coding because I did spend time going back and forth and directing the agent

https://simonwillison.net/2025/Oct/7/vibe-engineering/

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#117
post #109
post #54

Funny 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…

Great tool! There is a little issue with the +/- zoom buttons not working something cause it is over layed by other div blocks. On mac firefox. Is the code open source online somewhere?

thanks for the info, I'll see if I can get a agent to fix it

it's a static webpage, the source is available with right-click view source, I added a BSD2 licence header to it to make clear it's fine to take and do mostly whatever with

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#118
post #54

Funny 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 this open source?

it's a static webpage, the source is available with right-click view source, I added a BSD2 licence header to it to make clear it's fine to take and do mostly whatever with

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#119
post #54

Funny 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…

This is so cool!! The responsiveness of the page is so much better than any maps app I have used.

yeah, isn't it impressive how fast modern computers can be if you make a bit of effort, in this case I think I told it to just use plain javascript and make sure it's fast :-)

Re: Show HN: Minimalist editor that lives in browser, stores everything in the URL

#120
post #54

Funny 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…

I put a copy of the source on GH in case in case someone wants to improve things https://github.com/gnyman/mapdraw
Post reply on HN