All-grain Homebrew Beer Recipes | Page 9968 | 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 9968 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
APA Teracruz 1 American Pale Ale 100 Litres 1.052 1.009 5.73 32.58 4.13 °L
174 0
Bed Chamber Ale American Amber Ale 2.5 Gallons 1.048 1.009 5.12 34.33 13.16 °L
174 0
American Honey Pale Ale American Pale Ale 5 Gallons 1.064 1.015 6.41 40.7 5.69 °L
174 1
Cal Common California Common 23 Litres 1.048 1.011 4.9 33.01 7.36 °L
174 0
Sauvint Rye Lager American Pale Ale 5.5 Gallons 1.056 1.008 6.33 41.79 4.85 °L
174 0
Zombie American Pale Ale 5.5 Gallons 1.064 1.02 5.83 73.08 9.24 °L
174 0
Hazy Pale Ale American Pale Ale 55 Litres 14.5 3.6 5.91 34.04 5.46 °L
174 0
Nectaronaldo XPA American Pale Ale 20.8 Litres 1.062 1.016 6.11 68.66 6.93 °L
174 0
Golden Whistle Pale Ale American Pale Ale 10 Litres 1.046 1.01 4.8 45.46 3.87 °L
174 0
Pallet Jacke Redux American Pale Ale 465 Gallons 13.875 3.593 5.54 36.43 4.12 °L
174 0
For A Pintful Of Dollars Imperial Stout 7 Gallons 1.094 1.025 9 68.1 50 °L
174 0
STOUT Imperial Stout 310 Gallons 36.11 9.955 15.69 0 43.81 °L
174 0
Idaho Pale Ale American Pale Ale 6 Gallons 1.053 1.015 4.94 35.87 4.29 °L
174 1
Drage Krieger Viking APA American Pale Ale 21 Litres 1.048 1.011 4.85 31.69 6.21 °L
174 0
Vermont Strong 15 BBL American Pale Ale 525 Gallons 1.057 1.011 6.08 44.73 3.72 °L
174 0
Beginner's Porter American Porter 20.8 Litres 1.049 1.009 5.23 0 29.49 °L
174 0
West Coast IPA American IPA 5.5 Gallons 1.063 1.015 6.38 37.77 8.61 °L
174 0
Blue Skies Chocolate Stout American Stout 5.25 Gallons 1.051 1.01 5.38 39.05 35.45 °L
174 0
Awesome Recipe American IPA 40 Gallons 1.051 1.013 5.04 0 4.07 °L
174 0
Awesome Recipe American IPA 5.5 Gallons 1.076 1.017 7.74 116.03 9.52 °L
174 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); } }); });