latanius comments on Personal information management - Less Wrong

14 Post author: John_Maxwell_IV 11 September 2012 11:40AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (31)

You are viewing a single comment's thread. Show more comments above.

Comment author: latanius 23 September 2012 08:16:18PM 0 points [-]

Oh, yes. I do Dropbox syncing, too (this is the other good thing about org-mode: plain text files). And there might be some truth in the statement that while org-mode is excellent for a single file, things start to be less seamless when it comes to more of them... inter-file links don't seem to be that reliable, for example. Is this the reason for your One Big Org File?

For white on black, it's just (setq default-frame-alist '((background-color . "black") (foreground-color . "white"))) in your .emacs.

Actually, it's kind of typical lesswrong that I started off with a comment popularizing org-mode, but ended up changing my mind about it (well... kind of), the newest experiments include Notational Velocity (they seem to be good at the global search stuff org-mode is lacking, but not so nice indented lists locally), and also this system:

http://www.speakeasy.org/~lion/nb/book.pdf

which includes paper notebooks, maps of your thoughts and similar fancy stuff, but I haven't yet finished reading it (it's long and not exactly the most organized stuff I've ever read... but it has good ideas.)

Comment author: jwhendy 20 October 2014 11:20:58PM *  0 points [-]

For links, I switched to the org-id module and a unique ID for any new links. It works as long as the file containing the target headline is in the same directory as the file containing the link.

(require 'org-id)

(global-set-key "\C-cl" 'org-store-link)

(setq org-link-to-org-use-id 'create-if-interactive)