From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Moynihan Subject: Re: Best way to use org-mode as a work log Date: Sun, 20 Dec 2009 16:51:07 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NMP0J-0000Fk-34 for emacs-orgmode@gnu.org; Sun, 20 Dec 2009 11:51:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NMP0E-0000Ee-9Y for emacs-orgmode@gnu.org; Sun, 20 Dec 2009 11:51:34 -0500 Received: from [199.232.76.173] (port=52741 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NMP0E-0000EZ-6F for emacs-orgmode@gnu.org; Sun, 20 Dec 2009 11:51:30 -0500 Received: from mail-ew0-f209.google.com ([209.85.219.209]:35877) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NMP0D-0007VO-TM for emacs-orgmode@gnu.org; Sun, 20 Dec 2009 11:51:30 -0500 Received: by ewy1 with SMTP id 1so5497092ewy.8 for ; Sun, 20 Dec 2009 08:51:27 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Ethan Brown Cc: emacs-orgmode@gnu.org 2009/12/19 Ethan Brown : > I've been an emacs user since about 1990, but have just recently > discovered org-mode. =A0It seems as if it would be very well suited to > use as my work log--I currently just use a regular text file. > > Since a work log is based around daily entries, I'm wondering if > anyone can recommend the best way to use org-mode for such a purpose. > I perused the FAQs but didn't see anything. =A0Org-mode apparently > integrates with the emacs calendar/diary so there is probably a "right > way" to do this. =A0If there's a FM out there that deals with this I'm > happy to RTFM. I have a very simple method of using org-mode for this kind of thing. I have the following remember template: (setq org-remember-templates '(("Journal" ?j "* %^{Journal Entry} %^g\n %T\n %i\n %? %a %&" "~/org/journal.org" "Journal")) ;; ... ) Then doing C-c r [j]ournal inserts an entry into my journal.org file under the Journal Heading. This file is then just a big linear list of headlines with notes under them. e.g. * Journal ** ... ** Emailed org-mode list with my journal setup <2009-12-20 Sun 16:48> I sometimes tag these entries also.... but generally avoid using them with TODO/DONE states. Is this the kind of thing you're looking for? R.