by hgarg on 1/8/24, 7:40 AM with 75 comments
by nomilk on 1/10/24, 4:09 AM
(the main three variables that dramatically alter boil time are soft vs hard boiled, starting temp [e.g. refrigerated vs room temp], and egg weight)
by saurabhchalke on 1/11/24, 5:07 PM
// script.js
// Yield factors for each cheese type
const baseYieldFactors = { "cheddar": 0.10, "mozzarella": 0.20, "parmesan": 0.09, "gouda": 0.12, "brie": 0.15, "camembert": 0.15, "blue cheese": 0.13, "feta": 0.17, "ricotta": 0.20, "monterey jack": 0.10, "swiss": 0.10, "colby": 0.10, "provolone": 0.10, "cottage cheese": 0.18, "cream cheese": 0.20 };
// Milk type factors
const milkTypeFactors = { "cow": 1.0, "goat": 0.9, "sheep": 1.1, "buffalo": 1.2, "camel": 0.8, "mare": 0.7, "reindeer": 1.15, "yak": 1.10, "donkey": 0.75 };
// Calculate milk volume based on cheese type, milk type, and desired weight
var baseYield = baseYieldFactors[cheeseType]; var milkAdjustment = milkTypeFactors[milkType]; var adjustedYield = baseYield * milkAdjustment;
// Calculate milk volume range
var minMilkVolume = weight / (adjustedYield * 1.1); var maxMilkVolume = weight / (adjustedYield * 0.9);
by DoreenMichele on 1/10/24, 7:25 AM
I have heard ricotta can be made by just adding lemon or vinegar to milk. It's basically curds.
Ricotta in Germany was completely different from what I have found in the US and I have long wondered if I could make ricotta I would actually eat.
by WiseWeasel on 1/10/24, 4:31 AM
An improvement might be to make milk type the first choice, and limit the cheese options based on milk type selection. Or maybe just combine both into a single selection with milk type option groups.
by azepoi on 1/10/24, 10:02 AM
Obviously dryer cheeses are more dense and require more milk per kg as they age
The cheese choice is severly lacking :) The milk type choice is nice, as Cow's milk contains more water compared to goat or sheep's
by underlines on 1/10/24, 10:55 AM
What does this calculator mean by the cheese type "Swiss"?
by mstngl on 1/10/24, 8:57 AM
by ggambetta on 1/10/24, 9:07 AM
But I take offense at "Swiss cheese"... are we talking Gruyere? Emmental? Appenzeller? Raclette? Tilsiter? Sbrinz? Or one of the many other delicious cheeses we have in Switzerland?
by eviks on 1/10/24, 5:02 AM
by stevage on 1/10/24, 10:24 AM
by coldtrait on 1/10/24, 5:20 AM
by huhtenberg on 1/10/24, 6:28 PM
by RonnieOwnsLexus on 1/10/24, 7:31 AM
by katzenversteher on 1/10/24, 7:31 AM
by qingcharles on 1/10/24, 6:35 AM
by hanniabu on 1/10/24, 5:32 PM
Now all it needs is some cheese recipes.
by 0xEF on 1/10/24, 10:47 AM
by moose44 on 1/10/24, 5:21 PM
by luxuryballs on 1/10/24, 3:08 PM
by LanzVonL on 1/10/24, 2:49 AM
by lloydatkinson on 1/10/24, 3:04 AM
by bruce511 on 1/10/24, 3:16 AM
Turns out making cheese is -really- easy. Milk, rennet, culture, time.
Making -specific kind of cheese- though is hard. Recipes are very precise (so you need things like good pH measurers).
The biggest problem for me was the waiting time. I'm into software - fix, recompile, run, repeat. Whereas 'leave for 3 months, 6 months, a year, and see if you got it right' was too slow of a feedback loop.
These days I only make soft-cheeses, take a week or less, and only in tiny batches (and irregularly).
Overall learning the process was fun, and a cool thing to do, but if you want good cheese, well, find a good cheese store :)
by ape4 on 1/10/24, 3:54 PM