Hacker News new | ask | show | jobs
by rhezab 2212 days ago
Interesting stuff!

I currently use Andy Matuschak's [1] system, using his note-link-janitor script [2] to generate backlinks and Typora to edit. The only thing Obsidian adds is the graph view for me, but it seems that Obsidian generates backlinks using file name, not title. I prefer linking by title. Perhaps this can be an option? The editor also seems to be lacking a little... for instance I can't seem to render math. Hopefully some of my feedback will be useful to you.

Overall really cool idea, but probably not going to use for now. Will keep tabs, and wish you the best of luck!

[1] https://notes.andymatuschak.org/About_these_notes [2] https://github.com/andymatuschak/note-link-janitor

3 comments

I discovered andy's notes in the past and has been trying to determined what he uses to publish those clean yet powerfull notes. The janitor is only one part. do you also publish your notes as HTML? How to you make use of the backlinks generated by janitor?
It's possible to get a similar system with TiddlyWiki and the Krystal theme plus a few plugins:

https://twitter.com/Learn_Awesome/status/1265574525342793730...

Intriguing... thanks for sharing!
I don't. I share my notes with some friends as a private GitHub repo. The backlinks I just use as click-throughs to help me navigate my own notes. I too admire his notes site. Making my own is too much effort for me right now, but it is something I really want...
I believe you can use this Gatsby theme to get the behavior you're looking for https://github.com/aravindballa/gatsby-theme-andy
Woah, looks neat! Thank you!
Linking by title is an anti-pattern. Titles change and titles are not unique. Link-rot should always be prevented. Best solution is to use a uuid and hide it from the user.
This is what Quiver does underneath the covers. Every note has an unique id, same as attachments (photos, files, pdfs, etc).

My only problem with Quiver is that it seems that development has stopped, so the chances of adding new bits (like link autocomplete, for example), are thin. Other than that it's a pretty useful tool.

In Zettlr, new files are created based on a timestamp by default, e.g. 20200528171636.md. You can add YAML frontmatter like this:

---

title: Something

---

and the title will be reflected in the file navigator, instead of 20200528171636.md.

That's interesting.

I'm imagining a version that runs as a daemon, watching the folder containing all the notes. It then looks for files that have been modified, and are not currently edited (.swp files for vim, for example), and runs an update.

I think I'd prefer something running in the browser, though that is of course not ideal for several reasons...