From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pete Phillips Subject: Re: Feedback on Scheduling? Date: Tue, 16 May 2006 20:49:58 +0100 Message-ID: <5763.1147808998@lap1.smtl.co.uk> References: <7383.1147799952@lap1.smtl.co.uk> <20060516184343.GA440@Zangband> Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fg5YZ-0001eb-2m for emacs-orgmode@gnu.org; Tue, 16 May 2006 15:50:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fg5YX-0001eD-9y for emacs-orgmode@gnu.org; Tue, 16 May 2006 15:50:10 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fg5YX-0001e9-2J for emacs-orgmode@gnu.org; Tue, 16 May 2006 15:50:09 -0400 Received: from [193.131.77.174] (helo=mailhost.smtl.co.uk) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Fg5bE-0005Yv-Il for emacs-orgmode@gnu.org; Tue, 16 May 2006 15:52:56 -0400 In-Reply-To: Message from Tim O'Callaghan of "Tue, 16 May 2006 20:43:43 +0200." <20060516184343.GA440@Zangband> 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: Tim O'Callaghan , emacs-orgmode@gnu.org Tim O'Callaghan wrote: Tim> I'm curious, if you don't mind me asking, how do you produce Tim> your hipster cards from org mode? Hi Tim I have a simple perl script which I run from a Makefile. The perl script is at: http://www.philfam.co.uk/pete/GTD/org-na/org-na.pl The Makefile I use is attached at the end. Basically I have a list of all my 'contexts' (GTD-speak) which I use as tags in org-mode. Running : make home will make the postscript files and print them. This will therefore take: ** Get wood preservative for Shed :Shopping: ** Paint shed with preservative :DIY: and add the first line to the 'Shopping' card and the second to my 'DIY' card. I keep meaning to add some options to allow printing on A4 etc, but am pushed for time at the moment. :-( Don't forget - you will need to adjust the location of your org-mode file in the perl source, and the makefile needs to point to your printer which will print the index cards. Enjoy. Pete -----Makefile------------------- # Print out NA lists from ~/TODO/TODO.org home: LaptopH.ps PhoneH.ps Home.ps Sofa.ps ComputerH.ps WaitingH.ps Shopping.ps work: LaptopS.ps PhoneS.ps Office.ps TG.ps WaitingS.ps CAG.ps %.ps: %.dvi dvips $< %.dvi: %.tex latex $< %.tex: TODO.org /home/pete/src/org-na/org-na.pl -t $* > $@