My brain juices are flowing... all over the place right now. I want to start planning the garden, but I don't know where to start. I want to create new garden beds, but I don't know where I want them to be. I have to put them somewhere they won't get mowed over...
Just so you know, you don't have to come on this journey with me. This is my set of ramblings, and I don't insist you come along for the ride... Just in case you do, this is a blog, and is for all intents and purposes and public forum. If you're coming along, chime in!
The veggie garden currently has 5 raised beds 4'x8' dimensions with drip irrigation installed. In those beds, we plant tomatoes, cucumbers, beets, peppers, onions, peas, beans, carrots and some lettuce. There are two 4'x4' beds outside the west side of the garden which grew potatoes last year, and this year will house the garlic, albeit poorly I predict. To the east of the garden, we have installed 15 thornless raspberry plants which will hopefully produce a nice crop of berries this year.
There are other things I'd like to plant, but feel there may not be room for in the current garden layout. I'd like a proper herb garden, I'd like asparagus (definitely not room in the garden...), strawberries, okra.
Showing posts with label General. Show all posts
Showing posts with label General. Show all posts
Wednesday, January 18, 2012
Saturday, January 14, 2012
I found an incredibly helpful page today:
http://www.rogerbolger.com/Seed_Calendar.pdf
Looks like I'm starting my seeds indoors on February 25... I've put all the dates into Google Calendar and maybe I'll be more organized about it all this year. I'm getting excited already.
http://www.rogerbolger.com/Seed_Calendar.pdf
Looks like I'm starting my seeds indoors on February 25... I've put all the dates into Google Calendar and maybe I'll be more organized about it all this year. I'm getting excited already.
Thursday, December 29, 2011
The garden porn has started appearing in the mailbox. Yesterday I received the Burpee catalog, Jung seeds catalog and Nourse Berry Farm catalog. Spring can't be long now...
Wednesday, December 14, 2011
Geek alert: If you're not interested in the minutia of XML markup, CSS modification and the back end of a digital cookbook, you're excused. Otherwise...
I took a hard look at the RecipeBook XML DTD and stylesheet that is on the happy-monkey.net website. Also looked at the RecipeML DTD... Interesting stuff, though the RecipeML site content hasn't been updated since 2002. I can't tell if anyone's even looking at it besides me...
RecipeBook XML is definitely more concise than RecipeML. It looks more like there may still be someone at home, even though the copyright information hasn't been updated since 2005. Still, there's no (lack-of-industry) standard. Truthfully, I doubt if anyone is clamoring for one. Still, I'd like a way to store my own recipes, print out new copies of soiled pages, share recipes and ideas with friends and have fast, easy access to recipes on the computer by clicking on a category (metadata). The kind of access I want requires some level of database behind it.
Otherwise, I suspect I could create a template and application (Wordpress?) for entering and importing recipes to your cookbook...
The RecipeBook XML DTD is as follows:
<!--
RecipeXML - An XML recipe markup language.
Copyright (C) 2005 David Horton
This work is licensed under the Creative Commons Attribution Share-Alike
license. See http://creativecommons.org/licenses/by/2.0/ for details.
-->
<!-- === Hyperlinks for URL references === -->
<!ELEMENT hyperlink (#PCDATA)>
<!ATTLIST hyperlink url CDATA #REQUIRED>
<!-- === Information about a recipe === -->
<!ELEMENT author (#PCDATA)>
<!ELEMENT blurb (#PCDATA)>
<!ELEMENT effort (#PCDATA)>
<!ELEMENT genre (#PCDATA)>
<!ELEMENT preptime (#PCDATA)>
<!ELEMENT source (#PCDATA|hyperlink)*>
<!ELEMENT yield (#PCDATA)>
<!-- === Lists of ingredients === -->
<!ELEMENT fooditem (#PCDATA)>
<!ELEMENT quantity (#PCDATA)>
<!ELEMENT unit (#PCDATA)>
<!-- FIXME? The mixed-content definition below does not enforce one and
only one instance of the tags quantity, unit and fooditem. -->
<!ELEMENT ingredient (#PCDATA | quantity | unit | fooditem)*>
<!-- === Elements of preparation === -->
<!ELEMENT equipment (#PCDATA | hyperlink)*>
<!ELEMENT step (#PCDATA | equipment | hyperlink)*>
<!-- === The main elements of a recipe === -->
<!ELEMENT title (#PCDATA)>
<!ELEMENT recipeinfo (author | blurb | effort | genre | preptime | source | yield)*>
<!ELEMENT ingredientlist (ingredient)*>
<!ELEMENT preparation (#PCDATA | equipment | step | hyperlink)*>
<!ELEMENT serving (#PCDATA | hyperlink)*>
<!ELEMENT notes (#PCDATA | hyperlink)*>
<!-- === And finally, the recipe itself === -->
<!ELEMENT recipe (title, recipeinfo?, ingredientlist, preparation, serving?, notes?)>
<!-- === The following elements provide logical groupings of recipes === -->
<!-- === A section provides logical divisions of a cookbook === -->
<!ELEMENT section (title, recipe+)>
<!-- === A cookbook consists of one or more recipes or sections === -->
<!ELEMENT cookbook (title, (section | recipe)+)>
I took a hard look at the RecipeBook XML DTD and stylesheet that is on the happy-monkey.net website. Also looked at the RecipeML DTD... Interesting stuff, though the RecipeML site content hasn't been updated since 2002. I can't tell if anyone's even looking at it besides me...
RecipeBook XML is definitely more concise than RecipeML. It looks more like there may still be someone at home, even though the copyright information hasn't been updated since 2005. Still, there's no (lack-of-industry) standard. Truthfully, I doubt if anyone is clamoring for one. Still, I'd like a way to store my own recipes, print out new copies of soiled pages, share recipes and ideas with friends and have fast, easy access to recipes on the computer by clicking on a category (metadata). The kind of access I want requires some level of database behind it.
Otherwise, I suspect I could create a template and application (Wordpress?) for entering and importing recipes to your cookbook...
The RecipeBook XML DTD is as follows:
<!--
RecipeXML - An XML recipe markup language.
Copyright (C) 2005 David Horton
This work is licensed under the Creative Commons Attribution Share-Alike
license. See http://creativecommons.org/licenses/by/2.0/ for details.
-->
<!-- === Hyperlinks for URL references === -->
<!ELEMENT hyperlink (#PCDATA)>
<!ATTLIST hyperlink url CDATA #REQUIRED>
<!-- === Information about a recipe === -->
<!ELEMENT author (#PCDATA)>
<!ELEMENT blurb (#PCDATA)>
<!ELEMENT effort (#PCDATA)>
<!ELEMENT genre (#PCDATA)>
<!ELEMENT preptime (#PCDATA)>
<!ELEMENT source (#PCDATA|hyperlink)*>
<!ELEMENT yield (#PCDATA)>
<!-- === Lists of ingredients === -->
<!ELEMENT fooditem (#PCDATA)>
<!ELEMENT quantity (#PCDATA)>
<!ELEMENT unit (#PCDATA)>
<!-- FIXME? The mixed-content definition below does not enforce one and
only one instance of the tags quantity, unit and fooditem. -->
<!ELEMENT ingredient (#PCDATA | quantity | unit | fooditem)*>
<!-- === Elements of preparation === -->
<!ELEMENT equipment (#PCDATA | hyperlink)*>
<!ELEMENT step (#PCDATA | equipment | hyperlink)*>
<!-- === The main elements of a recipe === -->
<!ELEMENT title (#PCDATA)>
<!ELEMENT recipeinfo (author | blurb | effort | genre | preptime | source | yield)*>
<!ELEMENT ingredientlist (ingredient)*>
<!ELEMENT preparation (#PCDATA | equipment | step | hyperlink)*>
<!ELEMENT serving (#PCDATA | hyperlink)*>
<!ELEMENT notes (#PCDATA | hyperlink)*>
<!-- === And finally, the recipe itself === -->
<!ELEMENT recipe (title, recipeinfo?, ingredientlist, preparation, serving?, notes?)>
<!-- === The following elements provide logical groupings of recipes === -->
<!-- === A section provides logical divisions of a cookbook === -->
<!ELEMENT section (title, recipe+)>
<!-- === A cookbook consists of one or more recipes or sections === -->
<!ELEMENT cookbook (title, (section | recipe)+)>
And the CSS file is:
/*
This cascading style sheet can be used to style raw RecipeBook XML
[http://www.happy-monkey.net/recipebook/] in a XML/CSS capable browser
like Mozilla Firefox. [http://www.mozilla.org/products/firefox/]
It is also handy to use with XML editors like XMLMind's XXE
[http://www.xmlmind.com/xmleditor] that use CSS for presenting the
document while editing.
recipebook-xml.css was written by David Horton
*/
hyperlink {
display: inline;
color: #0000FF;
text-decoration: underline;
}
cookbook {
display: block;
background-color: #FFFFFF;
font-family: sans-serif;
font-size: 12pt;
margin: 12pt;
padding: 12pt;
}
cookbook>title {
display: block;
font-size: 24pt;
}
cookbook>subtitle {
display: block;
font-size: 16pt;
font-style: italic;
}
cookbook>cookbookinfo>author {
display: block;
font-size: 16pt;
}
cookbook>cookbookinfo>copyright {
display: block;
}
cookbookinfo>license {
display:block;
}
section {
display: block;
background-color: #FFFFFF;
font-family: sans-serif;
font-size: 12pt;
margin: 12pt;
padding: 12pt;
}
section>title {
font-size: 16pt;
font-weight: bold;
}
recipe {
display: block;
background-color: #FFFFFF;
font-family: sans-serif;
font-size: 12pt;
margin: 12pt;
padding: 12pt;
}
recipe>title {
display: block;
font-weight: bold;
}
recipe>subtitle {
display: block;
font-style: italic;
}
recipeinfo {
display: block;
margin-top: 12pt;
margin-bottom: 12pt;
}
recipe>author {
display: block;
}
recipe>author:before {
display: inline;
content: "Recipe by: ";
}
blurb {
display: block;
}
genre {
display: block;
}
genre:before {
display: inline;
content: "File under: ";
}
preptime {
display: block;
}
preptime:before {
display: inline;
content: "Preparation Time: ";
}
source {
display: block;
}
source:before {
display: inline;
content: "Source: ";
}
yield {
display: block;
}
yield:before {
display: inline;
content: "Yield: ";
}
ingredientlist {
display: block;
margin-top: 12pt;
margin-bottom: 12pt;
}
ingredientlist:before {
display: block;
content: "Ingredients";
font-weight: bold;
margin-bottom: 12pt;
}
ingredient {
display: block;
}
preparation {
display: block;
margin-top: 12pt;
margin-bottom: 12pt;
}
preparation:before {
display: block;
content: "Preparation Instructions";
font-weight: bold;
margin-bottom: 12pt;
}
serving {
display: block;
margin-top: 12pt;
margin-bottom: 12pt;
}
serving:before {
display: block;
content: "Serving Suggestion";
font-weight: bold;
margin-bottom: 12pt;
}
notes {
display: block;
margin-top: 12pt;
margin-bottom: 12pt;
}
notes:before {
display: block;
content: "Notes";
font-weight: bold;
margin-bottom: 12pt;
}
There is one ELEMENT missing which would make this useful for a custom cookbook as opposed to a printed and bound device: the Category metatag. Different people categorize their recipes based on their needs. I would categorize based on the holiday menu that a recipe is most useful for (Pesach, Rosh HaShanah, etc.); whether the recipe goes with a meat meal, a dairy meal or is parve; even the occasions for which I made the dish. Some would lump this data in the notes ELEMENT. I am torn as to whether <category> is a child of notes or its own ELEMENT...
Saturday, December 10, 2011
I've been thinking about how to collect recipes, how to store them and how to share them. On my Mac, I've been using software called "Yum!" which is now discontinued by the company that took it over. It's a good piece of software, or at least the version I've been using, but I suspect it to use a proprietary database format. I've thought about hacking into the data files at times, but haven't done anything about it... Tonight I went looking for recipe storage formats, and I found RecipeBook XML Format. Hooray!
http://www.happy-monkey.net/recipebook/
I'm so happy that someone has thought of this! I'll keep looking to see if anyone else has put an XML recipe markup standard together, but it seems like someone should make this or something like it into an industry standard...
http://www.happy-monkey.net/recipebook/
I'm so happy that someone has thought of this! I'll keep looking to see if anyone else has put an XML recipe markup standard together, but it seems like someone should make this or something like it into an industry standard...
Subscribe to:
Posts (Atom)