I wanted a place where I could write down my thoughts without them being stored in the cloud or connected to an account (notes, onenote, evernote, docs, paper, gist, etc). I don't really like terminal text editors, notepad, or IDEs for writing, so I made this very simple notepad. It's a html tag with the contenteditable attribute making it editable, and some . To save a note just store it on disk (cmd/ctrl+s). To add…
I'd love this and use it regularly if it supported Chrome and markdown syntax. I know it wouldn't be 200 bytes, but this is a pretty great idea.
Show HN: ~200 byte in-browser, no JS, private notepad
21–30 of 75 posts
Re: Show HN: ~200 byte in-browser, no JS, private notepad
#22You can always type `data:text/html, ` on your browser :)
Wow, I did not know that we could create tiny "serverless" pages like that. I created this self referencing URL: `data:text/html, SO META This link's url is p = document.createElement("p");p.innerText = window.location.href;document.body.appendChild(p) ` The sad part is that 's are actually blocked from using data:text/html URLs. So we can still create tiny games and apps that can be copy/pasted in the address bar, b…
If we can put the data in an image file a user could drag a cart into their address bar to load up a game. So we can pass around carts like images.
Re: Show HN: ~200 byte in-browser, no JS, private notepad
#23It's a nice idea, but what is the advantage over windows notepad (or equivalent on other OSes)?
document.body.innerText += 'hello world/n';
Re: Show HN: ~200 byte in-browser, no JS, private notepad
#24Re: Show HN: ~200 byte in-browser, no JS, private notepad
#25You can always type `data:text/html, ` on your browser :)
Wow, I did not know that we could create tiny "serverless" pages like that. I created this self referencing URL: `data:text/html, SO META This link's url is p = document.createElement("p");p.innerText = window.location.href;document.body.appendChild(p) ` The sad part is that 's are actually blocked from using data:text/html URLs. So we can still create tiny games and apps that can be copy/pasted in the address bar, b…
You can also to a URL that issues a redirect to a location given by a GET parameter, eliminating the need to stand up a site for every different idea you come up with.
Re: Show HN: ~200 byte in-browser, no JS, private notepad
#26It's a nice idea, but what is the advantage over windows notepad (or equivalent on other OSes)?
While the page doesn't use js, it is there for you to use. document.body.innerText += 'hello world/n';
echo hello world >> file_in_notepad.txt
Although I'll admit that notepad's not as graceful about multiple programs editing files.Re: Show HN: ~200 byte in-browser, no JS, private notepad
#27You can always type `data:text/html, ` on your browser :)
Anyone know what I am talking about?
Re: Show HN: ~200 byte in-browser, no JS, private notepad
#28I wanted a place where I could write down my thoughts without them being stored in the cloud or connected to an account (notes, onenote, evernote, docs, paper, gist, etc). I don't really like terminal text editors, notepad, or IDEs for writing, so I made this very simple notepad. It's a html tag with the contenteditable attribute making it editable, and some . To save a note just store it on disk (cmd/ctrl+s). To add…
Anyway, I know you said you don't like lots of different things, but you might actually find that you like BoostNote. I'd say give it a try, I think it's great.
Re: Show HN: ~200 byte in-browser, no JS, private notepad
#29Re: Show HN: ~200 byte in-browser, no JS, private notepad
#30Earlier quoted context omitted.
Wow, I did not know that we could create tiny "serverless" pages like that. I created this self referencing URL: `data:text/html, SO META This link's url is p = document.createElement("p");p.innerText = window.location.href;document.body.appendChild(p) ` The sad part is that 's are actually blocked from using data:text/html URLs. So we can still create tiny games and apps that can be copy/pasted in the address bar, b…
You may not be able to to them, but you can certainly issue redirects to them, and to a URL that issues such a redirect. You can also to a URL that issues a redirect to a location given by a GET parameter, eliminating the need to stand up a site for every different idea you come up with.
[1] http://indirection.modusponens.org/data:text/html,Hello,%20w...!