I'm a huge fan of the fact this does weight conversions (cooking by weight is now my favourite, and I've been looking for a site that is just weights, so this looks like a win to me :-) ).
One note I'd make, though, is that US, UK and Australian cups are all different sizes. (and possibly others?)
And from the one recipe I saw it looks like you're using UK cups? But, possibly not as well... Either way, it might be worth calling that out, or allowing for cup-type specification similar to how you do for weights?
Somewhat related, some sites call out egg weights too, and that might be something to try and do here too? (Because, if nothing else, egg weights are often written on the carton which acts as a guide; even if people don't actually weigh them.)
Another thought, again... Some kind of showcasing? A la Github's explore, or even "awesome" pages? I might be off, but to me discovery is really important for recipes and I love browsing "cookies" or "desserts in a hurry" or similar; and pages akin to that with community curation could be nice?
Hmm, another random idea... Some kind of more granular forking to facilitate things like "do you have a stand mixer?" and that kind of distinction? (Coupled with "equipment switches" maybe?) In the past I've done recipes that required something I didn't have, and I've had to tweak fairly aggressively to make it work, but when/if it did work, maybe adding that feedback into the recipe would be valuable? e.g. user ticks "don't have a dehydrator", and recipe tweaks to "use your oven and set it low", etc.
Anyway... It looks awesome! Keep doing what you're doing, and I'll use it :-) Just some random thoughts that came to mind :-)
Love that you can convert the measurements to preferred units (such as metric).
I second Bruce's comment about cup sizes being regional. So are teaspoons and tablespoons for that matter. The wikipedia pages do reasonable coverage on this.
So good to clearly indicate which region's measurements are being used.
Always been a frustration of mine when reading recipes as having to figure out what country the recipe is published in to figure out what the measurements actually are. (Unless they are in metric, which is unambiguous.)
In fact a country selector would allow not just measures to be adapted but also the ingredients (eg. in some countries dry-yeast is a lot harder to find than the regular kind). Cuts of meat are different too and you often have to resort to Wikipedia's language options to see what a tenderloin cut (say) is in your own language. Finally you could have alternatives with which you could swap out any missing ingredients.
Not sure on that, but there are more regions than just the US and UK. For instance, here in Australia a teaspoon[1] is 15ml, not 14.92ml, and a tablespoon[2] equals four teaspoons, not three, so 20ml, not 14.8ml.
Recipes are an area that is quite hard to shift to metric because often recipes are handed down from previous generations. Simplistic conversions are easy, but will often create slight problems in the recipe - eggs, 'spoon based measures, etc., break the rounding that goes on in moving between measure systems.
Cookware passed down too could help to promulgate Imperial measures, we have a heap of tins that are inch-based measures. They're small effects but they add up.
> Somewhat related, some sites call out egg weights too, and that might be something to try and do here too?
Some technical recipe books I've used just specify the weight of total egg. Not that useful for a home cook though.
For that matter, I'm curious what egg size descriptions is like in other countries; in Australian shops they're like condom sizes - I haven't seen 'small' or 'medium' eggs for over a decade.
Well it depends on what you're cooking, if you make an omelette it's not a big deal if you have too much egg, but if you make say a chocolate fondant than the size of the egg is very important to get the correct texture.
Size S is usually sold to be processed and not to end-consumers. If you really want to buy them you probably have most luck in organic food supermarkets (unless you need a few europallets of them).
This looks promising and fairly well done, but it's lacking a few critical features IMO. The first obvious one is a way to Diff a recipe and it's Forks (unless I missed that).
The harder and maybe more important one, is an issue that GitHub itself still hasn't figured out how to solve either. There should be a process for a fork of a recipe being able to explain why it is better than the original, and have the fork be able to be voted on so that the 'best' fork as voted by the most users becomes the canonical 'Chicken Noodle Soup' recipe, or at least display the forks on main recipe ranked by popularity.
Yeah, it's on the list of things to do. Once there are enough recipes/users it will also be useful to see the history/ancestry of recipe. There are already a few that are forks of forks. All the recipe data is immutable and versioned, so that will happen at some point.
My first thought was to remove "Vegan Butter" from the chicken recipe (or move it into a "Dietary Substitutions"), but then I realized my forked recipe would probably just be lost in the void. Maybe the goal of forks should be more akin to pull requests?
Seems that "Dietary Substitutions" could be a first-class data type. It would be a named multi-map of one item to another one. So you could create you own "Dietary Substitution Map" named "Nut allergies" or "Halal" or "Vegan", with butter -> canola oil, milk -> soy milk, milk -> almond milk, etc.
Then you could pick the particular substitution map that you care about and avoid forking recipes unnecessarily and have most recipes support most diet types if the proper map exists.
On source repos, you're right. On forked repos, people often don't change the readme, and to see star repo counts of forks requires opening each repo individually.
> There should be a process for a fork of a recipe being able to explain why it is better than the original, and have the fork be able to be voted on so that the 'best' fork as voted by the most users becomes the canonical 'Chicken Noodle Soup' recipe, or at least display the forks on main recipe ranked by popularity.
A combination of popularity and the ability to choose to merge changes back into the original seems sufficient.
And its an interesting idea. Recipes can't be copyrighted and and recipes are generally derivative. The data is generally well structured, and fairly standardized (ingredients, equipment, instructions, photo, with optional fields for prep & cook time, servings, notes, difficulty, etc). But there are two primary issues:
1. Recipes don't really have a single inheritance. For example, I cook a lot & really enjoying cooking, but when I'm trying to make something new, I won't follow a recipe. I will read a bunch recipes, and try to understand the underlying ideas & steal the ones I think are interesting, then implement my own. So say I look up Tufo Matar find 3 recipes the make my own, if I want to contribute which recipe do I fork?
2. This may have been dealt with by the use of stars. when I was using forkthecookbook, there was no way of "bookmarking" recipes and the so users forked them, which lead to the results having huge number of identical forks. That being said it seems like the star system may resolve that. But currently it looks as though unmodified copies of the recipes still appear in the Forks list, which makes it harder to find benifical changes. Also it would be nice to have a history section with a message summarizing what changed.
All that said this does look nice.
Additionally, a nice feature to have would be to "import" a recipe, though since phrasing of a recipe is protected this gets a little bit legally complicated.
Yeah, the version history, etc will have a UI at some point. You're also right that needs to be some sort of indication for the diff between forks. We'll get there. People haven't been going crazy with forks yet (turns out if you post to hacker news, that changes :), so that will be worked on.
There is an importer already! It's not perfect, but it works with most recipe sites.
Thanks for pointing out forkthecookbook.com. I hadn't seen that, and it's definitely relevant.
Oh cool I missed that. It looks like a fun project. I will definitely join and try to contribute some. Is there a better means of reporting bugs than the the contact us email form?
Yeah, it's interesting how many people have had the same idea at some point or another. I was fiddling around with Rails and AWS for a bit around 4 years ago and used the same idea for a tiny project. It's a bit like deja vu.
https://github.com/ehotinger/OldCode/tree/master/VariantChef
It is clear you put a lot of care into this, and I am sure there is a bucket full of features you want to get to, but I have a big request.
What I really want is one step beyond a place to store recipes. I want a meal planning site! I want to create a pool of recipes that we like, and plug in how often this week we will eat at home. Then outcomes a grocery list and a plan for each day. Maybe it even sees what we have liked, and suggested new recipes to add to the pool.
I am this close to pulling the trigger on PlateJoy, but my biggest hurdle is I can't add recipes I _know_ we like to their list of experimental (to us) meals.
Really, I don't mind/enjoy cooking, but never seem to carve the time out to plan an entire family of four's meals a week in advance.
Thanks for the mention - I started ETM with a similar goal in mind. We have a "personalize this recipe" function that's functionally similar to forking, but we never expanded on it much. We're planning to improve the social and browsing features eventually, but have some other priorities to get to first.
I forgot about ETM! Thanks for creating it. Just logged back in and there was a friendly note about the new features (really good idea!). FYI there's one bug on the page:
Check out https://www.copymethat.com/ - has a great recipe import system, meal planning system complete with a shopping list generator, great view of the recipe while you're making it, it's been awesome for us.
Always happy to have feedback! The initial version will be rolled out in the coming weeks. Since it's a major product addition, there'll be some sort of announcement. So either sign up and you'll get a wonderful mass email notification soon. Or circle back in a few weeks.
I didn't expect this to get so many points. I'll add a bit more substance:
The ability to base your own work off of others' is one of the most important features of github. It is probably also a feature that probably wouldn't necessarily be understood by somebody not in technology or not familiar with how git works.
If this was my product, I would have named it it "Fork". Putting that feature front and center and making it really obvious that it is the stand out feature of the app, IMO, would help people to get right away why what you've built is so awesome. Even if they don't know what the heck github is.
Thanks, but we have our own importer. BTW, I'd suggest writing a metadata fallback in your library. You'd be surprised how many sites will work just on parsing json linked data or schema.org's Recipe format.
Nope. It's a pretty simple relation to express without external libraries, so I figured I'd keep the granular control and just do foreign keys. Easier to refactor schema or migrate data that way.
I know this may be too much to ask, but if you are taking requests, some basic nutritional info (ex: Protein content, avg. calories) might make it even more awesome for those of us tracking daily calories, protein (for atheletes etc). I understand things like sodium, fat might vary depending on how much salt or oil the person cooking the recipe uses, so maybe this might not be feasible to implement...
I love this, signed up straight away. I've also recently discovered cookingforengineers.com and I love their card recipe system. it would be so cool if you could add something similar - I hate the traditional model of recipes, I always have to read and re-read them several times.
I'm not sure how you would go about adding this though, its quite different from the structure you have already
Yeah, I've seen what they do. I like it in some ways. But with user-submitted input, their recipe card system at some point will be insanely wide/large/unwieldy.
It's not proper grammar :) Proper grammar would be "What does the name mean?"
It's written this way simply because it's a question I've heard a lot, and when people say it, they usually combine "what" and "does" and say "What's the name mean?"
I don't think it's loneliness -- I think it's a stark contrast to most of the other major recipe collection sites out there that are visually cluttered.
I think that's a refreshing change for this type of site; You may want to consider a means of allowing users to curate and discuss recipes on sub-domains, some kind of API or some other means of splitting it up? A kind of crisp, clean social platform for food prep ....
I don't seek more flashiness or colors. I actually appreciate the simplicity.
Thoughts on what the feeling could be rooted in:
I Think it would help with more than 3 recipes on the front page. That gives a feeling of emptiness that can be confused with loneliness.
I also think there could be a better choice of image cropping. One that does the trick of making them all one size, but that also lets me see the food and thus inspires me.
I went for a pretty ambitious test recipe (Heston Blumenthal's Egg in Verjus, Verjus in Egg), unfortunately I'm not able to save it - it's complaining that one of my ingredients is an invalid weight - 3.3 grams Gellan F. If I remove it then it complains about the ingredient before it, so I'm wondering if there's an ingredient limit? It's at about the 40th listed ingredient. It took me ages to input everything so I do hope I'm able to save it!
The recipe entry experience was great though, some small details that I think would improve things even further:
- Esc should clear the 'text entry' modal, I kept clicking this by accident when wanting to add a new section heading and it was a nuisance having to click the 'close' link
- '+ Ingredient section' should replace last ingredient row if blank
- Would be nice to have section headings (similar to 'ingredient sections' for recipe methods) to break up recipes with multiple discrete sections
- Hard to find errors in long recipe. Could be more prominant, or add a 'jump to next error' button?
Thanks for the detailed issue. Sorry for the trouble! Could you send me the recipe link? I'm unsure know why you'd be hitting the issues you mentioned.
I'll try to respond to the issues you raised one-at-a-time:
1. 3.3 grams should be valid. Unsure why that would be a problem unless some weird unicode stuff???
2. There's no ingredient limit.
3. Esc clearing: I agree :) Clicking on the black transparency layer should also clear it. I just need to build it in. Maybe tomorrow :)
4. Plus -- you're right. Hadn't thought of that
5. Headings: I've left that for users to choose to do on their own. Hard to get too strict about that stuff. (Same reason steps aren't numbered.) I'd suggest doing all caps and a line break at each section.
6. Errors: I agree. There are a number of things ahead of that on the list of priorities, but it's a good idea.
Thanks for the descriptive feedback! Heston Blumenthal's recipes are always welcome on the site! Let me know if you run into any other trouble.
this is a great idea. How many times have you looked at reviews on recipes.com or whatever and the first 10 include a half dozen substitutions, basically making a different end product entirely? each of those reviews could instead be a fork. awesome!
Nice site! I look forward to using it in the future. One thing - when using lastpass to generate a password, it fails to fill the first password and only fills the "repeat" portion. Likewise, it fails to fill the username field for login.
Yeah, I have this problem with Mac's keychain on Safari as well. I haven't had the time to fix yet, but it's helpful to hear the same from someone else. Thanks.
Is it open-source project? Are you looking for contributions? I am passionate cook - designer - frontenddev. I struggle with recipe sites and where to save mines. If this was somehow libre and had future i might want to contribute.
Looks like a more complex version of what I had created with imadefood over a year ago. Similar features, with the branching, etc. I've been working on an iteration into a slightly different direction. As it didn't pick up any steam. Good luck :)
As others have stated below, forkthecookbook, forkingrecipes, and also recipelabs. All do basically the same thing. I just don't think there is enough market for it. Certainly was a fun little project though!
Nice project, I like the format of entering new recipes. I think you will get good uptake even from users who don't know what GH is :)
Is this project open source or does it plan to be at some point? I've looked at some of the other projects out there that are similar, but many seem to die based on the founder running out of steam or getting busy with other stuff. I would really be interested in contributing to this or a a similar project if anyone has a suggestion for one that is open.
Please allow me to G+ connect or facebook connect, b/c I don't want to have yet another password to remember, and I'd like to (maybe?) share some activity on Cinc with my FB peeps.
I really like it. I often look for a receipe with many likes online and have to read dozens of comments to adjust it...
For example the receipe of some cake where nearly all commenters advise to put 1/4 of the sugar advised. If you don't read the comment, chances are that even with a recipe approved by many people it tastes like shit.
Wow! My friend and I had this idea years ago.. possibly pre-GitHub. I am glad someone finally made it! Well done. My particular interest was seeing how a recipe deviates from the original.. a recipe graph of sorts. That would a fun way to visually explore and find related recipes that are similar in ingredients.
Is there a way to compare how it actually tastes? , These days I am baking cakes by watching recipes on youtube, the texture always comes correct and I use exact weights as described but the taste is somewhat lacking.
It would be good if we can give reference to a local cakeshop for its similarity to the recipie
Do you mean can you do that in comments? Or are you asking if we can automate a sense of taste? The latter would be extremely difficult. Not sure I understand :)
No, but you can fork it for yourself if you want. I think most people that are writing fahrenheit want fahrenheit. However, at some point there will likely be a conversion ability for that.
Nice idea. Just that code is a universal language, english is not. Is there any way to handle multiple languages for a same recipe outside of forking? forking is one way to adresse this issue but there would not be any other value to the fork than translating a recipe.
I think this is a brilliant idea, but I wonder if the terminology should be changed? I think the concept of saving a copy of a recipe, then editing it would come much more naturally to the 99% of people who have never heard of github.
I've been wanting to try this for a while. This looks great! Nice to see some excellent suggestions in this thread as well, that I definitely never thought of. I hope this is successful, as I'm a huge fan of the idea.
But it's not really like github for recipes until you solve the url interface.
I should be able to go to a user and their recipes with the same ease as on github. Having unique IDs for recipes exposed in the URL isn't really necessary.
I built it primarily for myself. It's able to run on cheap hardware and is very lightweight, so I plan to keep it up indefinitely at minimal cost. I haven't begun looking into funding/monetization, but that may happen soon. All data is already available via the API, so at some point, there will be a "Download my data" feature.
It's meant to be a pun for "kitchen sink," and also to work with the notion of "sync"-ing. It's pronounced like "sink." Cinc is the number 5 in Catalan and refers to the amount of senses we use when cooking.
I retract my criticism then! Also, it seems I should have read the About page. Might I suggest adding it to the top navigation? I think some further explanation/self promotion (especially as you've written it) is warranted.
edit: Also should have known. "Cinq" is five in French as well.
It's undocumented, but feel free to check out the calls in your browser's debugger. There's no guarantee of API stability or token permanence at this point. So integrations are not advised yet.
Would be most useful to me with calorie support. I see some users are hacking it by adding it to the title or in the notes. That should be a strong hint.
It'd be good if you could customise what kinds of foods should be displayed in what measurements.
E.g. I'm seeing 1 cup of steamed rice - being British I have no idea what that means. I turn metric on and it tells me 237 milliliters of rice, whereas I would be expecting grams. I'm pretty sure measuring solids by volume is a US-only thing.
One note I'd make, though, is that US, UK and Australian cups are all different sizes. (and possibly others?)
And from the one recipe I saw it looks like you're using UK cups? But, possibly not as well... Either way, it might be worth calling that out, or allowing for cup-type specification similar to how you do for weights?
Somewhat related, some sites call out egg weights too, and that might be something to try and do here too? (Because, if nothing else, egg weights are often written on the carton which acts as a guide; even if people don't actually weigh them.)
Another thought, again... Some kind of showcasing? A la Github's explore, or even "awesome" pages? I might be off, but to me discovery is really important for recipes and I love browsing "cookies" or "desserts in a hurry" or similar; and pages akin to that with community curation could be nice?
Hmm, another random idea... Some kind of more granular forking to facilitate things like "do you have a stand mixer?" and that kind of distinction? (Coupled with "equipment switches" maybe?) In the past I've done recipes that required something I didn't have, and I've had to tweak fairly aggressively to make it work, but when/if it did work, maybe adding that feedback into the recipe would be valuable? e.g. user ticks "don't have a dehydrator", and recipe tweaks to "use your oven and set it low", etc.
Anyway... It looks awesome! Keep doing what you're doing, and I'll use it :-) Just some random thoughts that came to mind :-)