Hacker News new | ask | show | jobs
by janneklouman 2969 days ago
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 <body> html tag with the contenteditable attribute making it editable, and some <style>.

To save a note just store it on disk (cmd/ctrl+s). To add images, drag and drop them onto the text area. Remove the contenteditable attribute from <body>, save, and voila, you now have a static lightweight blog post ready to be published! Formatting can be a bit wonky but should work in some browsers (cmd/ctrl+b/i/u). Copy+pasting formatted text can potentially break things a bit.

The two colors are from Solarized. Feel free to download the file and update style/markup to your preference.

Some ideas/variations:

Dark theme: https://jjjjjjjjjjjjjjjjjjjj.github.io/new-note/dark.html

Serif: https://jjjjjjjjjjjjjjjjjjjj.github.io/new-note/serif.html

HN theme: https://jjjjjjjjjjjjjjjjjjjj.github.io/new-note/hn.html

With heading: https://jjjjjjjjjjjjjjjjjjjj.github.io/new-note/with-heading...

7 comments

> To save a note just store it on disk (cmd/ctrl+s).

What's this supposed to do? On Firefox/Win it just saves the initial blank page as you'd expect, which is not very useful. Removing the `contenteditable` attribute before saving makes no difference.

I'm not aware that there is a simple portable way to save dynamically-modified webpages; projects like TiddlyWiki have been banging their collective heads against this problem since forever.

> I'm not aware that there is a simple portable way to save dynamically-modified webpages; projects like TiddlyWiki have been banging their collective heads against this problem since forever.

You might be interested in a new way to create websites I'm creating. Websites are stored as JSON, and a small Javascript engine file writes these directly to the DOM.

This makes the site very easy to dynamically modify and save, which is the basis for this as a hosting service - the site itself contains a site editor that outputs the site as JSON, and uploads itself to S3.

https://www.sparational.com

(It's in late alpha, and will hopefully move to beta before the end of the month.)

I'm not sure how that helps with the problem we're talking about. The value proposition of something like TiddlyWiki is that your site is just a file. For local use you don't even need a webserver.

Making Node or similar a prerequisite kills that value proposition stone dead, never mind piling on things like S3 as backends.

> your site is just a file. For local use you don't even need a webserver.

This is true for this new system as well. The browser engine is only needed to write JSON to the DOM, since browsers don't natively read JSON. You could host both on your SSD and point a webpage at them. (XHR caching is a to-do item.)

S3 is used because it's relatively common and trusted. Node (or any server) is just used to facilitate writing to S3. Node specifically is used because it's simpler to develop everything in one language, and that's the only language that runs in browsers.

When you save it as a webarchive in Safari it includes the user-generated content, including embedded images.
In FF, you have to tell it to save as 'Webpage - complete'. Other browsers have similar options.
On Linux Mint, with FF 59.0.2 (64-bit) there are no problems. Simply save the page with "Save page as..." into a folder. The idea is wonderfully simple.
I just saved as txt on Firefox 60 Windows
>I don't really like terminal text editors, notepad, or IDEs for writing

are you talking about the windows notepad? it's as simple as a plain text editor can get, how is the contenteditable notepad better?

I am convinced this is some sort of practical joke to see how stupid an idea you can submit to HN and still get upvotes.

Either that, or I'm in the Twilight Zone.

Yes, I was talking about the windows notepad. I'm not saying the contenteditable notepad is better, just that I don't like notepad for writing - purely an aesthetic preference. Now it's been a while since I usd notepad, but iirc you can't have an inner max-width, or theming that persists restart (?)
Tried it out now and while typography changes do persist, I can't figure out how to change line height or background color.
> it's as simple as a plain text editor can get

Just because it is simple does not mean OP has to like it.

I'm assuming he's going for the minimalist notepad because of how bare bones the contenteditable notepad is.
the content-editable version lacks the most basic of features, such as search and replace. I don't think you can compare them at all.
So... someone doesn't like Notepad because it has search-and-replace, and preferred something kind of like notepad but without all those pesky features?
Really cool idea! In what browsers is dragging images to contenteditable supposed to be supported? I'm on Chrome 66 and it just opens the image in the current tab.
fyi, did some quick testing (I was also curious about image dragging):

Pale Moon 27.9: Image conversion to base64 worked perfectly

Dooble 1.50: creates clickable link (file:///home/user/.../filename.jpg)

Midori 0.5.11: creates NON-clickable link

Otter 0.9.09 beta 9: creates clickable link

Chromium 65.0.3325.181: opens new tab

Opera 45.0: opens new tab

Works for me in Firefox (61.0b2).
In Safari, Drag & Drop of images doesn't work but Copy/Paste does
I just tested this on my iPad 4th-gen, which is stuck at iOS 10.3 these days.

Safari cut-and-paste works for images.

Of course, as the iPad runs out of memory as I use multiple apps, stops Safari then reloads it when I come back. Which loses any edits to the content.

Expected. The unexpected is that this simple thing is as functional as it is...

Try using something like split screen to guarantee that the app will stay in memory.
(Good suggestion, but the iPad4 iOS 10.3 does not support split-screen apps.)
I think this is great. I did something similar, with a very simple IdeaStore webapp, where I can just throw an idea into words, have it get added to my ideabank, and I can reference it later. But the whole point is to not break my workflow from other projects.

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.

Pretty cool.

It seems like it would be pretty easy to add a save/load feature with localStorage.

Looks like this mainly works best for FireFox
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.

tiddlywiki with a markdown plugin is something to look at if you like this idea