You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

robot-dreams comments on Lifehack Ideas January 2015 - Less Wrong Discussion

5 Post author: Gondolinian 01 January 2015 02:34AM

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

Comments (43)

You are viewing a single comment's thread.

Comment author: robot-dreams 10 January 2015 06:29:18PM *  0 points [-]

For Linux users (or Mac OS X users that use the Terminal) who want to pick up a journaling habit:

I set up the following aliases to DRAMATICALLY reduce the "activation energy" for writing a journal entry:

alias jcd='cd <journal directory>'
alias today='jcd; vi `date +%Y-%m-%d`; cd -'
alias yesterday='jcd; vi `date -r \`expr \\\`date +%s\\\` - 86400\` +%Y-%m-%d`; cd -'

So if I want to write a journal entry, I just type 'today' and get started. Note that this also has the secondary benefit of keeping journal entries nicely organized by date.

BTW, I am no writer, but this technique has gotten me to write a decent amount over the years:

$ jcd; cat * | wc -w
92804