All-grain Homebrew Beer Recipes | Page 103 | 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 103 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
Diabolic Wheat American Wheat Beer 20 Litres 1.047 1.009 5.04 53.03 3.26 °L
4.4K 1
Muriel, I Don't Drink, Pour Me Another One "Larger" Bohemian Pilsener 11.5 Gallons 1.057 1.016 5.41 23.97 3.54 °L
4.4K 0
Out Of This World IPA Imperial IPA 10 Gallons 1.082 1.019 8.33 290.49 7.72 °L
4.4K 2
Smoked Hefe (Hefeweizen) Weizen/Weissbier 5 Gallons 1.05 1.012 4.88 24.73 3.67 °L
4.4K 1
#0010 Black IPA Specialty IPA: Black IPA 20 Litres 15.302 3.403 6.44 92.38 34.29 °L
4.4K 1
Ubu Clone American Brown Ale 5.5 Gallons 1.067 1.017 6.58 54.05 50 °L
4.4K 0
Citra Honey IPA American IPA 18.9 Litres 1.049 1.008 5.34 28.42 4.94 °L
4.4K 3
Doom Bar Clone – English Ale Ordinary Bitter 21 Litres 1.042 1.01 4.3 49.39 9.49 °L
4.4K 2
Dry Porter American Porter 5.5 Gallons 1.066 1.011 7.2 19.61 35.27 °L
4.4K 0
Dark Chocolate Porter Brown Porter 5 Gallons 1.051 1.012 5.15 23.86 33.84 °L
4.3K 2
Bakke Brygg Munich Helles 25 L Munich Helles 25 Litres 1.047 1.01 4.78 21.08 3.99 °L
4.3K 1
Watermelon Kolsch Fruit Beer 5 Gallons 1.048 1.011 4.8 40.57 3.08 °L
4.3K 0
NEIPA Citra/Mosaic/Ekuanot American IPA 5.5 Gallons 1.062 1.012 6.6 61 5.48 °L
4.3K 0
Chimay Grande Reserve (Blue) Belgian Dark Strong Ale 6 Gallons 1.082 1.012 9.13 33.13 17.73 °L
4.3K 2
Black Kolsch Schwarzbier 5.25 Gallons 1.052 1.013 5.14 22.66 33.06 °L
4.3K 1
Lime Gose Gose 6 Gallons 1.041 1.007 4.39 9.06 3.23 °L
4.3K 1
BlackBerry Cream Ale Cream Ale 5 Gallons 1.058 1.014 5.8 100.16 11.8 °L
4.3K 1
KBS Clone Russian Imperial Stout 5 Gallons 1.092 1.023 9.02 61.6 53.1 °L
4.3K 2
Bakke Brygg Bock 20 L Dunkles Bock 20 Litres 1.068 1.017 6.72 23.86 18.52 °L
4.3K 1
Chocolate Coffee Vanilla Stout American Stout 6 Gallons 1.071 1.023 6.3 49.3 43.83 °L
4.3K 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\/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); } }); });