All-grain Homebrew Beer Recipes | Page 395 | 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 395 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
Big Brew Blonde Belgian Specialty Ale 90 Gallons 1.056 1.014 5.55 16.12 3.78 °L
1.8K 0
Snickerdoodle Cream Ale Cream Ale 5.5 Gallons 1.073 1.024 6.47 19.86 4.12 °L
1.8K 1
Coopers Dark Belgian Dark Strong Ale 10.5 Gallons 1.078 1.011 8.7 31.45 16.59 °L
1.8K 1
Kjeller 5 Tsjekkisk Pilsner 25 L Bohemian Pilsener 25 Litres 1.051 1.01 5.38 31.6 3.37 °L
1.8K 0
Caramel Amber Ale (with Munich) American Amber Ale 5.5 Gallons 1.06 1.009 6.66 45.81 11.37 °L
1.8K 0
Pig & Goose Brown Ale American Brown Ale 22 Litres 1.06 1.017 5.69 29.76 24.81 °L
1.8K 1
Molly "Redbone" Mallone Dry Stout 5.5 Gallons 1.05 1.013 4.97 40.29 40 °L
1.8K 1
Galaxy Pale Ale American Pale Ale 2 Gallons 1.059 1.015 5.84 78.03 6.37 °L
1.8K 0
Westmalle Tripel Clone 50liter Belgian Tripel 50 Litres 1.081 1.008 9.55 38.27 3.78 °L
1.8K 0
TirsDAG Sitrus Pale Ale American Pale Ale 45 Litres 1.051 1.014 4.92 23.74 9.5 °L
1.8K 3
ELTE-IK NEIPA American IPA 25 Litres 1.049 1.011 5.01 68.49 3.96 °L
1.8K 2
Sip Of Sunshine Clone - Aug 6th 2017 Double IPA 5.5 Gallons 1.098 1.018 10.52 61.41 12.72 °L
1.8K 1
Session Braggot Braggot 4 Gallons 1.054 1.006 6.34 14.49 21.23 °L
1.8K 0
Kick'n It In A Tutu Cream Cream Ale 5.5 Gallons 1.045 1.01 4.56 18 4.37 °L
1.8K 0
Let Red Go American IPA 40 Litres 1.056 1.013 5.63 161.84 9.52 °L
1.8K 0
Pumpkin IPA American IPA 5.5 Gallons 1.06 1.016 5.85 70.22 14.41 °L
1.8K 1
BBD Ginger Ale Experimental Beer 5 Gallons 1.036 1.007 3.74 10.45 6.92 °L
1.8K 2
CLASSIC SAISON 94 L Saison 94 Litres 1.048 1.009 5.14 27.55 4.74 °L
1.8K 1
Lust For Hops... American IPA 15 Litres 1.062 1.011 6.69 40.31 4.88 °L
1.8K 0
Damnation Clone Belgian Golden Strong Ale 5.5 Gallons 1.07 1.01 7.79 26.55 7.45 °L
1.8K 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\/brew20_upgrade\/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\/brew20_upgrade\/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\/brew20_upgrade\/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); } }); });