Live data from Hacker News

Tiddlywiki – A non-linear personal web notebook

tiddlywiki.com

81–90 of 110 posts

Re: Tiddlywiki – A non-linear personal web notebook

#81
post #13

I look at TW every couple of years or so, and there has never been either: - a sane way to keep a wiki on something like Dropbox (at the time, the only way to have persistence was to disable browser security and allow JavaScript to write to disk directly) or - a service to sync a wiki between machines Has that changed nowadays?

I hooked up Dat multiwriter and the Automerge CRDT for my own personal use... I’ve been using it for several months and it works well. I haven’t tidied it up for a public release, but feel free to try it out: https://dat-tiddlywiki.glitch.me https://github.com/jimpick/dat-tiddlywiki

Wow this looks great. Can you tell me a bit more about how it works ? I've been looking for a way to do collaborative work with TiddlyWiki for ages ...

Re: Tiddlywiki – A non-linear personal web notebook

#82
post #77

I personally think Tiddlywiki is a fascinating project and I even used it professionally for a few years. But, these days, I think you likely do better with either a Dropbox directory full of Markdown files or installing the free tool Simplenote everywhere (mobile/desktop) and using its support for notes/Markdown. It's true that if you go with these simple schemes, you lose wiki-style linking. But, I've found that YA…

I personally use ZimWiki[1], with it's files synced across devices using SyncThing[2]. Setup to install both took barely half an hour and it doesn't really need any maintenance now. [1] http://zim-wiki.org/ [2] https://syncthing.net/

My fiancée has been using zimwiki over syncthing for years now, been really simple and stable.

(I use org-mode, but that requires some investment …)

Re: Tiddlywiki – A non-linear personal web notebook

#83
post #72
post #68

Earlier quoted context omitted.

There is also vimwiki for vim users.

vimwiki is great, but $DEITY forgive me I started using OneNote so I can paste in screenshots and now I can't give it up. Too bad it doesn't support vim keybinds. I tried spacemacs/org/gtd for a while but there was too much yakshaving, sync was hard and still no embedded images.

Markdown offers image markup, so orgmode and vimwiki offer you that.

Re: Tiddlywiki – A non-linear personal web notebook

#84
post #76
post #57

Earlier quoted context omitted.

It looks good but I saw they require Slack developer which is a no for me > Outline requires the following dependencies: > Postgres >=9.5 > Redis > Slack developer application

Either Google or Slack will work, I've updated the README to reflect that

That doesn’t really solve the problem.

The recent Facebook debacle should be example why.

Re: Tiddlywiki – A non-linear personal web notebook

#85

A hyperlinked knowledge-management system for personal use, on all my computers, is essential. To achieve it, I use Emacs and Org-Mode and Dropbox. An additional benefit of using Emacs: the personal wiki can be integrated with my task-management system, which Org-Mode handles as well. Plus I can draft and edit at warp speed, having customized the native Emacs keybindings to suit me better. Were I going to publish my…

How do you handle images/screenshots/handwritten notes? I am also using Org-Mode and Dropbox for the majority of my notes. I really like it. In particular, Orgzly for Android works great with this system, so check it out if you want mobile notes as well. The problem is that I also like to take paper notes, and take videos/pictures of stuff, and scan documents, and download webpages. Org-mode kinda stinks for embeddin…

For screenshots I use this little snippet:

  ;; Paste image to orgmode https://stackoverflow.com/questions/17435995/paste-an-image-on-clipboard-to-emacs-org-mode-file-without-saving-it
  (defun my-org-screenshot ()
    "Take a screenshot into a time stamped unique-named file in the
  same directory as the org-buffer and insert a link to this file."
    (interactive)
    (org-display-inline-images)
    (setq filename
          (concat
           (make-temp-name
            (concat (file-name-nondirectory (buffer-file-name))
                    "_imgs/"
                    (format-time-string "%Y%m%d_%H%M%S_")) ) ".png"))
    (unless (file-exists-p (file-name-directory filename))
      (make-directory (file-name-directory filename)))
    ; take screenshot
    (if (eq system-type 'darwin)
        (call-process "screencapture" nil nil nil "-i" filename))
    (if (eq system-type 'gnu/linux)
        (call-process "import" nil nil nil filename))
    ; insert into file if correctly taken
    (if (file-exists-p filename)
      (insert (concat "[[file:" filename "]]"))))

Re: Tiddlywiki – A non-linear personal web notebook

#87
Ever since the decline of Evernote, I've been looking for something as convenient, but been pretty much disappointed in the alternatives. For a while Qownnotes was my choice, but it's not without its drawbacks. Currenlty Joplin ( https://joplin.cozic.net/ ) is the one I'm taking for a test drive, and I'm pretty much pleased with what I've seen so far. Among the features that impressed me most in terms of personal priority are:

- Importing from Evernote (.enex files)

- Cross-platform support (Win/Lin/Mac) + Mobile apps (ios / Android)

- Synchronization (Dropbox, Onedrive, Nextcloud, WebDAV, Filesystem)

- Support for encryption

- Webclipper extension (for Firefox and Chrome)

- It's FOSS, with a number of active contributors on GitHub (https://github.com/laurent22/joplin). A good bus factor and no more dependence on the whims of private organizations.

- A command line interface

- Use of Markdown. Drag and drop support for files and media in the GUI.

There are still features of evernote I miss such as inline PDFs and audio recording

Re: Tiddlywiki – A non-linear personal web notebook

#88

I personally think Tiddlywiki is a fascinating project and I even used it professionally for a few years. But, these days, I think you likely do better with either a Dropbox directory full of Markdown files or installing the free tool Simplenote everywhere (mobile/desktop) and using its support for notes/Markdown. It's true that if you go with these simple schemes, you lose wiki-style linking. But, I've found that YA…

Anyone reading this thinking a "bunch of markdown files" sounds like a good idea should really look into org-mode. Trust me.

The bunch of markdown files sounds great, the emacs part puts me off. I don't want to learn emacs to store random thoughts.

Is that an accurate concern?

Re: Tiddlywiki – A non-linear personal web notebook

#89

I personally think Tiddlywiki is a fascinating project and I even used it professionally for a few years. But, these days, I think you likely do better with either a Dropbox directory full of Markdown files or installing the free tool Simplenote everywhere (mobile/desktop) and using its support for notes/Markdown. It's true that if you go with these simple schemes, you lose wiki-style linking. But, I've found that YA…

Anyone reading this thinking a "bunch of markdown files" sounds like a good idea should really look into org-mode. Trust me.

I used the great org-mode for many years, but the lack of a good option to view and edit my notes from mobile pushed me to Evernote, which I'm happily using since, even though I miss the simplicity of text files and the power of git.

Re: Tiddlywiki – A non-linear personal web notebook

#90

Earlier quoted context omitted.

I'm curious, are you (or anyone else using Org Mode) using a single org file for your entire personal wiki, or one file per major topic? In the past, I've used Markdown files with one file per language/topic for my personal developer wiki, but am looking at moving it to Org Mode now. One file for everything (developer knowledge + other subjects) seems nice, but it seems like trying to manage and navigate around a sin…

I use multiple files, one per topic all in one folder. There is a file called main.org that contains the following embedded code, which creates an index of all of my org files * Org-files #+BEGIN_SRC sh for file in $(ls *.org) do echo "[[~/org/$file][$file]]" done #+END_SRC

That's a clever use of org-babel!
Post reply on HN