All-grain Homebrew Beer Recipes | Page 672 | 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 672 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
Hop Candy IPA American IPA 5 Gallons 1.065 1.019 6.04 65.42 5.91 °L
1.3K 1
Sam Adams Boston Lager Clone Dark American Lager 6.5 Gallons 1.046 1.01 4.7 15.21 18.04 °L
1.3K 1
Pumpkin Pie Ale British Brown Ale 372 Gallons 16.856 5.619 6.17 23.55 12.01 °L
1.3K 1
Mexican Hot Chocolate Stout Foreign Extra Stout 1 Gallons 1.056 1.014 5.5 39.42 50 °L
1.3K 1
BBQ APA American Pale Ale 20 Litres 1.05 1.011 5.17 47.81 8.85 °L
1.3K 0
Cigarettes And Chocolate Milk Sweet Stout 5.5 Gallons 1.055 1.016 5.17 25.24 50 °L
1.3K 0
Blonde Citra Blonde Ale 18.9 Litres 1.042 1.012 4.03 18.5 5.62 °L
1.3K 1
Morebeer Scottish 60 Ale Scottish Light 60/- 5 Gallons 1.042 1.015 3.52 22.34 14.55 °L
1.3K 1
Golden Boy Belgian Golden Strong Ale 10 Gallons 1.112 1.026 11.36 23.59 6.94 °L
1.3K 0
Oatmeal Stout V Oatmeal Stout 3 Gallons 1.054 1.015 5.12 34.41 39.24 °L
1.3K 7
Warrior Falcon American IPA 5.5 Gallons 1.061 1.008 6.94 65.63 15.25 °L
1.3K 0
Citra Amarillo Wit Witbier 5 Gallons 1.045 1.011 4.54 31.24 3.8 °L
1.3K 0
Nøgne #500 Imperial IPA 24 Litres 1.106 1.026 10.4 126.76 13.44 °L
1.3K 0
Aaaaaaaa California Common Beer 6.5 Gallons 1.051 1.013 5.03 0 25.75 °L
1.3K 0
Bent Hop Clone - Maybe? American IPA 4 Gallons 1.065 1.015 6.55 58.49 6.72 °L
1.3K 0
SjimpHansens Wit 2.0 Witbier 25 Litres 1.051 1.012 5.06 11.12 3.42 °L
1.3K 0
Sierra Nevada Southern Hemisphere American IPA 5.5 Gallons 16.529 4.311 6.67 67.1 11.16 °L
1.3K 0
The Bald Badgers Brown Ale American Brown Ale 23 Litres 1.056 1.016 5.26 36.4 20.77 °L
1.3K 1
Brown American IPA American IPA 10 Litres 1.065 1.018 6.18 42.32 36.81 °L
1.3K 0
Quadrilogy APA American Pale Ale 10 Gallons 1.066 1.017 6.52 35.13 4.76 °L
1.3K 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); } }); });