Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Thanks for your comment. Of course one can use a search engine for finding recipes. But using a recipe database one can perform ingredient searches and category searches more easily.


There's some interesting ideas in this space too

With supercook app you can go through your fridge and say the ingredients that you have and the app will tell you what recipes you can cook https://www.supercook.com/#/recipes

There's another app that works in reverse, you pick what recipes you want then it gives you a shopping list. I think the app was Mealime


Back then I tried to implement that, but if I tell it, that I have no water, it ruled out many recipes. If I told it, I had water, it suggested coffee or tea.


Structured data can be imported to graph databases like Apache Jena or RDFox, and then recursive queries can be done with alternatives.

Here is an example using RDFox: https://imgur.com/ziZdIzA

My fridge has "noodles, tomatos and butter", But I know only one recipe which calls for "noodles, sauce, oil, optionally cheese". However you put alternatives in the database, if you have tomatos, you can make sauce, if you have butter, you don't need oil.

RDFox correctly says I can still make :spaghetti.

Query:

select DISTINCT ?recipe where { :fridge :item ?x. ?recipe a :recipe. ?recipe :requires ?y. OPTIONAL { ?y :alternative ?z }. FILTER(?x IN (?y, ?z)) }




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: