All-grain Homebrew Beer Recipes | Page 110 | 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 110 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
Oatmeal Stout - Cocoa Nibs Oatmeal Stout 11 Gallons 1.063 1.016 6.15 34.53 38.37 °L
4.2K 1
Allt Home Fire Best Bitter 20 Litres 1.043 1.009 4.47 36.77 13.62 °L
4.2K 0
Friar Tuck - Canadian Brown Ale American Brown Ale 5.5 Gallons 1.06 1.015 5.9 28.79 30.32 °L
4.2K 0
Aztec Stout American Stout 2 Gallons 1.072 1.017 7.21 75.77 43.02 °L
4.2K 0
Lemondrop Wheat American Wheat Beer 5.5 Gallons 1.053 1.013 5.17 38.78 4.24 °L
4.2K 1
Smoked Marzen Märzen 20 Litres 1.058 1.013 5.95 25.48 11.7 °L
4.2K 0
Brewzilla #1 Blonde Ale 5.5 Gallons 1.048 1.009 5.14 21.04 3.62 °L
4.2K 3
Oreo Stout Oatmeal Stout 37.9 Litres 1.059 1.015 5.76 32.7 36.77 °L
4.2K 0
Brew Club NEIPA American IPA 5.5 Gallons 1.07 1.018 6.83 100.37 7.01 °L
4.2K 1
Helles Bock Helles Bock 5.5 Gallons 1.069 1.018 6.78 33 7.93 °L
4.2K 1
ZOMBIE_ISH American IPA 3 Gallons 1.056 1.011 5.88 65.48 8.02 °L
4.2K 5
Bateman's XXXB Extra Special/Strong Bitter (ESB) 80 Litres 1.052 1.013 5.03 55.29 10.92 °L
4.2K 1
Peanut Butter Jelly Time Brown Porter 5.5 Gallons 1.052 1.013 5.14 29.66 26.7 °L
4.2K 0
Sour Stout Foreign Extra Stout 6 Gallons 1.07 1.017 7 15.58 50 °L
4.2K 0
David Heaths Mild Ale Dark Mild 13 Litres 1.035 1.011 3.13 25.1 21.34 °L
4.2K 0
B&W's Toasted Lager (Bluepoint) Vienna Lager 60 Litres 1.047 1.01 4.9 20.38 12.5 °L
4.2K 0
Anno 2017 Märzen Oktoberfest/Märzen 6 Gallons 1.054 1.015 5.14 24.01 10.97 °L
4.2K 0
Beavertown Gamma Ray Clone American Pale Ale 22 Litres 1.051 1.009 5.57 22.05 4.24 °L
4.2K 1
Smokin Scottish Ale Scottish Heavy 70/- 11.5 Gallons 1.051 1.015 4.75 24.53 15.62 °L
4.2K 0
Imperial Stout Grainfather Foreign Extra Stout 23 Litres 1.074 1.02 7.47 67.91 39.37 °L
4.2K 1

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\/brew20_upgrade\/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\/brew20_upgrade\/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\/brew20_upgrade\/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); } }); });