All-grain Homebrew Beer Recipes | Page 9982 | Browse 215,000+ at Brewer's Friend
Brew your best beer EVER. Start your Free Trial of Brewer's Friend today! Sign Up ×

All-grain Homebrew Beer Recipes

Page 9982 of our growing list of 215,000+ all-grain homebrew beer recipes. Sort by beer style, batch size, ABV and more.

Browse All Recipes or explore by brewing method: All-grain | Extract | BIAB | Partial Mash

Title Style Size OG FG ABV IBU Color Views Brewed Rating
Dark Banoffee Wit No Profile Selected 23 Litres 1.061 1.013 6.31 15.11 46.26 °L
173 0
Post Passion Cream Clarity No Profile Selected 5 Gallons 1.064 1.017 6.11 33.47 6.36 °L
173 0
Garage Project Dirty Boots No Profile Selected 60 Litres 1.061 1.011 6.56 22.64 9.92 °L
173 0
ねこシャン ロゼ No Profile Selected 1000 Litres 1.044 1 5.69 19.36 3.26 °L
173 0
Imperial Milk Stout No Profile Selected 5.5 Gallons 1.116 1.03 12.91 61.05 50 °L
173 0
Wedman's Wheat No Profile Selected 26 Gallons 11.958 3.08 4.74 20.6 17.68 °L
173 0
Awesome Recipe No Profile Selected 850 Litres 29.074 6.534 12.99 48.3 50 °L
173 0
Golden Hour NEIPA NEIPA 5 Gallons 1.07 1.019 6.73 28.54 5.68 °L
173 2
Low/no Alc PA No Profile Selected 5.5 Gallons 1.014 1.008 0.71 2.46 4 °L
173 0
Uncommon Common No Profile Selected 10 Gallons 1.062 1.015 6.17 0 11.5 °L
173 0
Biggins Kolsch No Profile Selected 80 Litres 1.056 1.014 5.62 23.36 4.48 °L
173 0
Honey Hef No Profile Selected 930 Gallons 12.555 3.239 4.99 0 4.4 °L
173 0
Hazy TIPA No Profile Selected 640 Litres 19.084 3.625 8.49 47.64 5.69 °L
173 0
Juice No Profile Selected 4542.5 Litres 1.007 1.002 0.67 0 1.04 °L
173 0
English IPA 4-2-2023 No Profile Selected 6.5 Gallons 1.067 1.015 6.83 48.34 7.06 °L
173 0
Triple IPA La ROma Brewing 3.5 Bbls No Profile Selected 410 Litres 1.136 1.026 14.51 75.75 7.02 °L
173 0
Sasquatch Mountain ESB No Profile Selected 5.5 Gallons 1.062 1.016 6.14 91.23 23.02 °L
173 0
Saison No Profile Selected 2.5 Gallons 1.066 1.012 7.09 30.13 6.95 °L
173 0
Awesome Recipe No Profile Selected 44 Gallons 1.054 1.013 5.28 0 4.49 °L
173 0
Awesome Recipe No Profile Selected 30 Litres 1.039 1.008 4.06 0 2.82 °L
173 0

Defer( function () { $(document).ready(function() { if ( ! document.cookie.match(/^(.*;)?\s*bf_adfpv_v1\s*=\s*[^;]+(.*)?$/) ) { var date = new Date(); var now = new Date(); date.setTime(date.getTime()+(10*365*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); document.cookie = "bf_adfpv_v1="+now.toGMTString()+expires+"; path=/"; } else { // Initialize AdSense (adsbygoogle = window.adsbygoogle || []); // Affiliate ad override configuration from PHP var affiliateOverrides = {"top-leaderboard-ad":{"total_percentage":25,"options":[{"name":"House Ad","weight":1,"href":"\/homebrew\/signup","img":"\/homebrew\/images\/houseads_20211207\/take10_signup\/webp\/810X100.webp","width":810,"height":100}]},"inline-unit-ad":{"total_percentage":25,"options":[{"name":"House Ad","weight":1,"href":"\/homebrew\/signup","img":"\/homebrew\/images\/houseads_20211207\/take10_signup\/webp\/810X100.webp","width":810,"height":100}]},"sidebar-block-1-ad":{"total_percentage":25,"options":[{"name":"House Ad","weight":1,"href":"\/homebrew\/signup","img":"\/homebrew\/images\/houseads_20211207\/take10_signup\/webp\/300x250.webp","width":300,"height":250}]}}; // Process each potential ad override if (affiliateOverrides && Object.keys(affiliateOverrides).length > 0) { Object.keys(affiliateOverrides).forEach(function(adSlotId) { var override = affiliateOverrides[adSlotId]; var adElement = document.getElementById(adSlotId); // Check if ad exists and should be replaced based on total percentage if (adElement && override.options && override.options.length > 0 && (Math.random() * 100 < override.total_percentage)) { // Choose an option based on weights var option = chooseWeightedOption(override.options); // Build affiliate ad HTML var style = option.style || ''; if (option.width && option.height) { style += (style ? '; ' : '') + 'max-width:100%;'; } var attributes = ''; if (option.target) attributes += ' target="' + option.target + '"'; if (option.rel) attributes += ' rel="' + option.rel + '"'; var affiliateAdHtml = '
' + '' + '' + '
'; // Replace the AdSense container with affiliate ad $(adElement).closest('ins.adsbygoogle').replaceWith(affiliateAdHtml); } }); } // Helper function to select a weighted random option function chooseWeightedOption(options) { if (!options || options.length === 0) { // This case implies an issue with how options are passed or an empty configuration. // Returning undefined is safer than the original's options[0] which would error. return undefined; } var eligibleOptions = []; var totalPositiveWeight = 0; // First pass: Collect options with strictly positive weights and sum these weights. for (var i = 0; i < options.length; i++) { var option = options[i]; // Ensure weight is treated as a number; default undefined/non-numeric to 0. var weight = (typeof option.weight === 'number') ? option.weight : 0; if (weight > 0) { eligibleOptions.push(option); totalPositiveWeight += weight; } } if (totalPositiveWeight > 0) { // If there are options with positive weights, choose from them. var randomValue = Math.random() * totalPositiveWeight; var cumulativeWeight = 0; for (var j = 0; j < eligibleOptions.length; j++) { // eligibleOptions[j].weight is guaranteed to be > 0 here. cumulativeWeight += eligibleOptions[j].weight; if (randomValue <= cumulativeWeight) { return eligibleOptions[j]; } } // Fallback for rare floating-point precision issues or if randomValue is exactly totalPositiveWeight. // Returning the last eligible option is a robust choice here. return eligibleOptions[eligibleOptions.length - 1]; } else { // No options with positive weight were found. // This means all original options had weights <= 0 (e.g., all zeros or empty list of positive weights). // In this scenario, pick one randomly from the original 'options' list, // giving all of them an equal chance. return options[Math.floor(Math.random() * options.length)]; } } // Initialize all remaining AdSense ads $("ins.adsbygoogle").each(function() { $("(adsbygoogle = window.adsbygoogle || []).push({})").insertAfter($(this)); }); var js = document.createElement("script"); js.type = "text/javascript"; js.async = true; js.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"; document.body.appendChild(js); } }); });