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
Tiddlywiki – A non-linear personal web notebook
81–90 of 110 posts
Re: Tiddlywiki – A non-linear personal web notebook
#82I 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/
(I use org-mode, but that requires some investment …)
Re: Tiddlywiki – A non-linear personal web notebook
#83Earlier 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.
Re: Tiddlywiki – A non-linear personal web notebook
#84Earlier 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
The recent Facebook debacle should be example why.
Re: Tiddlywiki – A non-linear personal web notebook
#85A 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…
;; 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
#86Besides Tiddlywiki, does anyone have recommendations for personal wiki software?
I'm exploring vimwiki myself.
Re: Tiddlywiki – A non-linear personal web notebook
#87- 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
#88I 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.
Is that an accurate concern?
Re: Tiddlywiki – A non-linear personal web notebook
#89I 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.
Re: Tiddlywiki – A non-linear personal web notebook
#90Earlier 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