All-grain Homebrew Beer Recipes | Page 896 | 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 896 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
Tempe Closet Black IPA Specialty IPA: Black IPA 5.5 Gallons 18.052 4.43 7.48 100.17 37.83 °L
1.1K 0
Tom Yom Thai Mead Metheglin 5.5 Gallons 1.114 1.028 11.21 0 3.37 °L
1.1K 0
Reuben's Porter AG Robust Porter 5 Gallons 1.059 1.014 5.88 35.09 32.6 °L
1.1K 0
David's Mild Mild 40 Litres 1.049 1.013 4.64 24.51 16.99 °L
1.1K 1
Rotary Red Specialty IPA: Red IPA 5.5 Gallons 1.058 1.014 5.85 64.22 17.72 °L
1.1K 0
Wheeler/T T Landlord Best Bitter 29 Litres 1.007 1.002 0.7 6.08 1.4 °L
1.1K 0
Iron Pot Test American IPA 11 Gallons 1.056 1.008 6.24 92.07 6.96 °L
1.1K 0
Sweater Puppies Pale Ale American Pale Ale 5.5 Gallons 1.039 1.007 4.11 33.95 11.05 °L
1.1K 0
LMSS IPA (Citra+Summit) American IPA 5.8 Gallons 1.063 1.015 6.37 101.66 8.2 °L
1.1K 0
IPA Honey American IPA 30 Litres 1.068 1.013 7.26 50.02 17.47 °L
1.1K 0
Pumpkin Ale Holiday/Winter Special Spiced Beer 5.5 Gallons 1.06 1.009 6.73 21.94 17.26 °L
1.1K 0
105 Routier Saison Saison 11 Gallons 1.058 1.008 6.52 34.14 4.54 °L
1.1K 1
CENTENNIAL BLONDE 74L Blonde Ale 75 Litres 1.048 1.008 5.28 28.61 3.98 °L
1.1K 1
Sweet Amber American Amber Ale 25 Litres 1.043 1.009 4.54 30.02 10.32 °L
1.1K 0
Klaatu Berada Nicto American Pale Ale 3 Gallons 1.051 1.009 5.46 53.63 8.86 °L
1.1K 0
Episode 013 ~ Trois Gars Brassage De La Saison Saison 16 Gallons 1.064 1.015 6.77 35.8 5.24 °L
1.1K 1
West Coast Amber American Amber Ale 5.5 Gallons 1.074 1.021 6.96 78.11 20.32 °L
1.1K 2
German Barleywine Updated American Barleywine 5.5 Gallons 1.095 1.022 9.61 86.96 10.96 °L
1.1K 2
4Gs Belgian Session IPA Specialty IPA: Belgian IPA 5.5 Gallons 1.048 1.012 4.68 60.73 10.2 °L
1.1K 0
Fruity Pellets Hazy IPA Specialty IPA: New England IPA 5.5 Gallons 1.069 1.016 6.86 114.8 4.36 °L
1.1K 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); } }); });