All-grain Homebrew Beer Recipes | Page 10144 | 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 10144 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
First Beer Wheat Lager International Pale Lager 10 Gallons 1.056 1.014 5.56 29.28 3.97 °L
154 0
Jaipur English IPA 23 Litres 1.051 1.009 5.59 139.28 5.62 °L
154 0
Per Mare Per Terram International Pale Lager 20 Litres 1.05 1.008 5.56 22.73 3.77 °L
154 0
Scott's -Dougweiser American Lager 6 Gallons 1.044 1.012 4.17 12.85 2.68 °L
154 1
Swanny D (double) International Pale Lager 44 Litres 1.043 1.009 4.53 23.9 3.05 °L
154 0
Awesome Recipe Belgian Blond Ale 400 Litres 1.08 1.023 7.47 35.07 9.84 °L
154 0
Red Honey Larger International Amber Lager 23 Litres 1.044 1.005 5.04 21.05 4.73 °L
154 0
Dagoronus IPA American IPA 20 Litres 1.06 1.01 6.62 67.05 7.14 °L
154 0
Mango Fandango N.E.I.P.A. American IPA 25 Litres 1.065 1.008 7.52 0.01 3.52 °L
154 0
Dank Ipa Maibock Fest American IPA 5.5 Gallons 1.063 1.011 6.76 62.18 6.92 °L
154 0
Wheat Bomber Witbier 5.5 Gallons 1.052 1.014 5.1 15.71 4.26 °L
154 0
Guinness Type Dry Stout 2023 Dry Stout 11 Gallons 1.041 1.009 4.15 47.7 36.89 °L
154 1
Milk Stout Sweet Stout 217 Gallons 1.065 1.022 5.69 31.77 33.99 °L
154 0
Tripel K #3 Belgian Tripel 6 Gallons 1.078 1.016 8.23 15.62 6.89 °L
154 0
The Hefeweizen American Wheat Beer 31 Gallons 1.047 1.009 4.95 26.96 3.67 °L
154 0
Немецкий пилз International Pale Lager 20.8 Litres 1.042 1.01 4.14 0 3.09 °L
154 0
Awesome Recipe American Wheat Beer 31 Litres 1.045 1.011 4.46 0 3.59 °L
154 0
STOUT Sweet Stout 30 Litres 1.062 1.022 5.29 27.19 43.08 °L
154 0
Abes Munchie Helles International Pale Lager 11 Gallons 1.041 1.01 4.11 0 3.85 °L
154 0
Tortilla Chip Spice, Herb, or Vegetable Beer 11 Gallons 1.058 1.013 5.86 25.8 3.65 °L
154 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); } }); });