Page 1 of 13
					
				Recipe management software?
				Posted: Fri Jul 11, 2008 2:24 pm
				by Fangbeast
				Has anyone done any recipe management software? Specifically dealing with the import of MealMaster recipes?
I don't want to re-invent the wheel and I have 250,000 recipes I want to import and manage
			 
			
					
				
				Posted: Fri Jul 11, 2008 2:43 pm
				by Rook Zimbabwe
				
			 
			
					
				
				Posted: Fri Jul 11, 2008 2:50 pm
				by Fangbeast
				re-read my question
			 
			
					
				
				Posted: Fri Jul 11, 2008 3:39 pm
				by Rook Zimbabwe
				Sorry:
The first list is a sourceforge project that claims that bility.
I thought you wanted to know about it... 
http://www.klevze.com/view/46317/Gourme ... 7_Released
http://www.snapfiles.com/reviews/dannon ... pebox.html 
			 
			
					
				
				Posted: Fri Jul 11, 2008 10:41 pm
				by Fangbeast
				I actually knew about those sites and format information when the author was still around developing mealmaster. At that time, I wasn't coding (large hiatus) and still had real, paid work.
Was hoping someone had done this already so I didn't have to. Got enough code lying around to break and bug infest as it is.
I add more bugs than I fix these days.
			 
			
					
				
				Posted: Fri Jul 11, 2008 10:48 pm
				by Foz
				Fangbeast wrote:I add more bugs than I fix these days.
It's not a bug... it's a 
feature!  
 
			 
			
					
				
				Posted: Fri Jul 11, 2008 11:05 pm
				by Tipperton
				Foz wrote:It's not a bug... it's a 
feature!  
 
It's not a 
feature... it's a reason to 
buy updates and upgrades! 

 
			 
			
					
				
				Posted: Fri Jul 11, 2008 11:25 pm
				by Fangbeast
				
			 
			
					
				
				Posted: Fri Jul 11, 2008 11:52 pm
				by Rook Zimbabwe
				HONK HONK
 
 
I might have some hour or so a day to assist you if you needed it.
You know... I really want this as my new avatar!
Gee, I post in the circus and I get the local clowns. Go figure. 
I didn't see Dare2's post yet!  

 
			 
			
					
				
				Posted: Thu Mar 19, 2009 1:41 pm
				by Fangbeast
				I might have some hour or so a day to assist you if you needed it.
I realise that this is an old topic but do you still have time to assist? I absolutely do not understand the code in that link and there are so many variations for Mealmaster.
Code: Select all
  my $mm = MealMaster->new();
  my @recipes = $mm->parse("t/31000.mmf");
  foreach my $r (@recipes) {
    print "Title: " . $r->title . "\n";
    print "Categories: " . join(", ", sort @{$r->categories}) . "\n";
    print "Yield: " . $r->yield . "\n";
    print "Directions: " . $r->directions . "\n";
    print "Ingredients:\n";
    foreach my $i (@{$r->ingredients}) {
      print "  " . $i->quantity .
             " " . $i->measure  .
             " " . $i->product . 
             "\n";
    }
This looks like Double-Dutch, Triple French and Quadruple German to me.
 
			 
			
					
				
				Posted: Fri Mar 20, 2009 9:39 pm
				by bembulak
				Looks like a piece of code from a "Perl Obfuscating Contest". 
 
By the way:
http://grecipe-manager.sourceforge.net/
Works on Windows too!
 
			 
			
					
				
				Posted: Sat Mar 21, 2009 12:20 am
				by Fangbeast
				Looks like a piece of code from a "Perl Obfuscating Contest". 
IT looks like a quote from the obfuscate anything contest!
Nice but how does that help me do it in pb???
 
			 
			
					
				
				Posted: Fri Apr 03, 2009 12:34 pm
				by ricsdix
				
I think that recipe management software is really a good one guys...
_________________
Inventory Control 
			 
			
					
				Re: Recipe management software?
				Posted: Tue Apr 07, 2009 10:00 pm
				by GeoTrail
				Fangbeast wrote:I have 250,000 recipes I want to import and manage
Are you a chef on your free time? 

 
			 
			
					
				
				Posted: Thu Apr 09, 2009 9:13 pm
				by Rook Zimbabwe
				Actually it looks like the code could parse XML to me... with a little MOD you could have a universal format!
It seems thatthe records are divided into some XML style obfuscations. Since I don't have any meal master files to look at I am just guessing here...