From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Re: org-cook Date: Mon, 17 Mar 2014 10:34:55 -0400 Message-ID: References: <87mwgr4b2b.wl%egh@e6h.org> <87lhwb496i.wl%egh@e6h.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPYd8-0003xX-18 for emacs-orgmode@gnu.org; Mon, 17 Mar 2014 10:35:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WPYd3-00012t-Cc for emacs-orgmode@gnu.org; Mon, 17 Mar 2014 10:35:05 -0400 Received: from mail-qc0-x234.google.com ([2607:f8b0:400d:c01::234]:43093) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPYd3-00010z-7N for emacs-orgmode@gnu.org; Mon, 17 Mar 2014 10:35:01 -0400 Received: by mail-qc0-f180.google.com with SMTP id x3so5876220qcv.25 for ; Mon, 17 Mar 2014 07:35:00 -0700 (PDT) In-reply-to: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Xebar Saram Cc: Erik Hetzner , Fletcher Charest , org mode , Robert Horn Hi, This isn't directly related to Org, but I'll mention it anyway since people are discussing quantities and "scale" for their recipes. Various programming languages have "physical units" packages that can make working with units quite fun. I use the python "Quantities" package http://pythonhosted.org/quantities/user/tutorial.html . It lets you define custom quantities such as how many grams of butter are in a stick, etc. A wrapper to this would let you convert Org recipe shopping lists from units of "g" and "teaspoon" to units of "sticks" and "fluid oz". -k. On 2014-03-17 at 10:26, Xebar Saram wrote: > thank you all for the great answers > > Fletcher, your idea sounds great, but why not use org tables as people > suggested for ingredients. ive started using it yesterday and im very > pleased, in example: > > *** COOK Pancakes :American: > > > :PROPERTIES: > :Source: TV > :Serves: > :Time: > :Rating: > :Fav: > :END: > > | Quantity | scale | Ingredient | Instructions | > |----------+-------+---------------+--------------| > | 8 | | eggs | | > | 1 | liter | milk | | > | 350 | g | butter | melted | > | 730 | g | flour | | > | 90 | g | powderd sugar | | > | 60 | g | baking powder | | > | 10 | g | salt | | > > _*Directions*:_ > > > best > > Z > > > On Mon, Mar 17, 2014 at 4:22 PM, Fletcher Charest < > fletcher.charest@gmail.com> wrote: > >> Hello everyone, >> >> Since we are on this subject, are you aware of any package that would make >> an 'automatic' shopping list based on recipes? My idea was to record >> recipes in this format: >> >> * Name of the recipe :tag: >> >> 1) Step one. >> 2) Step two. >> 3) Step three. >> >> :PROPERTIES: >> :ingredient_1: quantity >> :ingredient_2: quantity >> :ingredient_3: quantity >> :END: >> >> Tags could be anything, be mainly things like 'breakfast', 'main course' >> or 'dessert'. Then, with the point on the headline, (in the file buffer or >> in the agenda buffer), you could call a function that would add the >> ingredient to a list, or increment its quantity if the ingredient is >> already there. Maybe a function to add a random number of recipes (through >> a filter or not) to the shopping list would be nice too, if you don't know >> what to cook in a particular week. >> >> I'm planning to do this but my Elisp-fu is not great... Any tips of how >> implementing this? Are lists a good data structure for stocking the >> shopping list, before dumping it in a buffer? >> >> FC >> >> >> On Sun, Mar 16, 2014 at 1:40 AM, Robert Horn wrote: >> >>> I also use tables, and have one big recipe.org file. I considered >>> ingredient properties, etc., but ended up just text and find recipes by >>> using simple searches. They look like this: >>> >>> * Texas Skillet Corn Bread >>> >>> | Ingredient | Quantity | Instructions | >>> |------------------------+----------+-----------------| >>> | Bacon drippings or oil | 1/4 cup | | >>> | Yellow CornMeal | 1 cup | | >>> | All Purpose Flour | 1 cup | | >>> | Salt | 1/2 tsp | | >>> | Baking Power | 1 tsp | | >>> | Baking Soda | 1 tsp | | >>> | Sugar | 1 tbs | optional | >>> | Buttermilk | 1 cup | | >>> | Eggs | 2 | slightly beaten | >>> |------------------------+----------+-----------------| >>> >>> 1. Heat drippings in iron skillet >>> >>> 2. In large mixing bowl, mix cornmeal, flour, salt, baking x, and sugar. >>> >>> 3. Add buttermilk and stir rapidly. >>> >>> 4. Add eggs and mix >>> >>> 5. Add drippings >>> >>> 6. Pour into skillet, cover, and cook on low heat until lightly >>> browned and almost cooked through. >>> >>> >>> >>