Live data from Hacker News

Show HN: Cinc – GitHub for recipes

cinc.kitchen

51–60 of 159 posts

Re: Show HN: Cinc – GitHub for recipes

#51
post #44

If anyone wants to know the stack it's Django/Postgres on the backend, and an Elm SPA frontend. All data goes through an undocumented REST API.

Nice work! Are you using mptt or treebeard under the hood to manage the forking?

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.

Re: Show HN: Cinc – GitHub for recipes

#54

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 wo…

> 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.

Re: Show HN: Cinc – GitHub for recipes

#55

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 wo…

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.)

Re: Show HN: Cinc – GitHub for recipes

#57

This is a great idea! My one criticism right off the bat is the name -- the pronunciation isn't immediately obvious. ("Sink?", "Kink?", "Kins?", "Since?") Then again, I don't know if that's just me...

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.

Re: Show HN: Cinc – GitHub for recipes

#58
post #25

this is a crazy fast site! can you share what you are using to host and serve it?

AWS/nginx on a fairly minimal instance. speed probably comes from:

- it's an SPA, so it's mostly just doing API calls.

- the database is designed to be fast at a few orders of magnitude of size beyond its current state

- everything is gzipped

Re: Show HN: Cinc – GitHub for recipes

#59

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 wo…

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 pub…

I was under the impression that the Imperial (UK) measures were mostly no longer used. Is that wrong?
Post reply on HN