Recipe management software?

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
Fangbeast
PureBasic Protozoa
PureBasic Protozoa
Posts: 4747
Joined: Fri Apr 25, 2003 3:08 pm
Location: Not Sydney!!! (Bad water, no goats)

Recipe management software?

Post 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
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4326
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
User avatar
Fangbeast
PureBasic Protozoa
PureBasic Protozoa
Posts: 4747
Joined: Fri Apr 25, 2003 3:08 pm
Location: Not Sydney!!! (Bad water, no goats)

Post by Fangbeast »

re-read my question
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4326
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post 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
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
User avatar
Fangbeast
PureBasic Protozoa
PureBasic Protozoa
Posts: 4747
Joined: Fri Apr 25, 2003 3:08 pm
Location: Not Sydney!!! (Bad water, no goats)

Post 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.
Foz
Addict
Addict
Posts: 1359
Joined: Tue Nov 13, 2007 12:42 pm
Location: Manchester, UK

Post by Foz »

Fangbeast wrote:I add more bugs than I fix these days.
It's not a bug... it's a feature! :wink:
Tipperton
Addict
Addict
Posts: 1286
Joined: Thu Jun 19, 2003 7:55 pm

Post by Tipperton »

Foz wrote:It's not a bug... it's a feature! :wink:
It's not a feature... it's a reason to buy updates and upgrades! :twisted:
User avatar
Fangbeast
PureBasic Protozoa
PureBasic Protozoa
Posts: 4747
Joined: Fri Apr 25, 2003 3:08 pm
Location: Not Sydney!!! (Bad water, no goats)

Post by Fangbeast »

Gee, I post in the circus and I get the local clowns. Go figure.

:evil: :evil: :evil: :evil: :evil: :evil: :evil:
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4326
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

HONK HONK

Image

:D

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! :wink:
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
User avatar
Fangbeast
PureBasic Protozoa
PureBasic Protozoa
Posts: 4747
Joined: Fri Apr 25, 2003 3:08 pm
Location: Not Sydney!!! (Bad water, no goats)

Post 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.
Amateur Radio, D-STAR/VK3HAF
User avatar
bembulak
Enthusiast
Enthusiast
Posts: 572
Joined: Mon Mar 06, 2006 3:53 pm
Location: Austria

Post by bembulak »

Looks like a piece of code from a "Perl Obfuscating Contest".
:twisted:


By the way:
http://grecipe-manager.sourceforge.net/
Works on Windows too!
cheers,

bembulak
User avatar
Fangbeast
PureBasic Protozoa
PureBasic Protozoa
Posts: 4747
Joined: Fri Apr 25, 2003 3:08 pm
Location: Not Sydney!!! (Bad water, no goats)

Post 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???
Amateur Radio, D-STAR/VK3HAF
ricsdix
New User
New User
Posts: 1
Joined: Fri Apr 03, 2009 12:30 pm
Location: Phil

Post by ricsdix »

bembulak wrote:Looks like a piece of code from a "Perl Obfuscating Contest".
:twisted:


By the way:
http://grecipe-manager.sourceforge.net/
Works on Windows too!

I think that recipe management software is really a good one guys...




_________________
Inventory Control
User avatar
GeoTrail
Addict
Addict
Posts: 2794
Joined: Fri Feb 13, 2004 12:45 am
Location: Bergen, Norway
Contact:

Re: Recipe management software?

Post by GeoTrail »

Fangbeast wrote:I have 250,000 recipes I want to import and manage
Are you a chef on your free time? ;)
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4326
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post 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...
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
Post Reply