Homebrew Beer Recipes | Page 11421 | Browse 310,000+ at Brewer's Friend
Brew your best beer EVER. Start your Free Trial of Brewer's Friend today! Sign Up ×

Homebrew Beer Recipes

Page 11421 of our growing list of 310,000+ homebrew beer recipes. Sort by beer style, batch size, ABV and more for all-grain, extract or partial mash brewing.

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
236 TWYLYT No Profile Selected 241 Gallons 12.115 3.122 4.81 0 3.55 °L
253 0
5 Gal Rum Recipe No Profile Selected 5 Gallons 1.081 1.002 10.48 0 32.43 °L
253 0
No2 No Profile Selected 19 Litres 1.046 1.011 4.51 0 1.62 °L
253 0
Caser's NZ Pils Classic American Pilsner 20.8 Litres 1.057 1.014 5.64 33.64 4.88 °L
253 0
Rauchbier Pils 10/6 German Pilsner (Pils) 4.1 Gallons 1.045 1.004 5.38 29.11 3.9 °L
253 0
#196 Taphouse Vinderøl No Profile Selected 2200 Litres 12.311 2.063 5.46 29.32 3.45 °L
253 0
Kolsch No Profile Selected 350 Litres 1.052 1.01 5.48 15.07 3.22 °L
253 0
杏仁HAZY No Profile Selected 520 Litres 1.074 1.026 6.21 73.78 5.17 °L
253 0
Big Gulps Light American Lager 496 Gallons 11.354 1.716 5.12 30.56 2.77 °L
253 0
Lawn Mower Beer And Weeds German Pilsner (Pils) 5.5 Gallons 1.045 1.011 4.47 40.55 3.54 °L
253 1
Nato Beer Pilsner German Pilsner (Pils) 20.8 Litres 1.045 1.01 4.68 0 2.82 °L
253 0
Sognapils Vienna Lager 550 Litres 1.043 1.007 4.63 8.96 15.15 °L
253 0
Awesome Recipe Classic American Pilsner 310 Gallons 1.05 1.013 4.93 18.41 3.7 °L
253 0
Pilsner #3 Bohemian Pilsener 23 Litres 1.043 1.011 4.22 24.24 2.85 °L
253 0
Awesome Recipe Munich Helles 12 Gallons 1.038 1.009 3.71 0 9.65 °L
253 0
Amazona Rossa 420L Classic American Pilsner 420 Litres 1.052 1.014 5.09 22.85 4.43 °L
253 0
Double Par Pilsner German Pilsner (Pils) 5 Gallons 1.049 1.014 4.55 20.29 3.12 °L
253 0
Bohemian Bohemian Pilsener 36 Litres 1.045 1.007 4.96 29.8 3.25 °L
253 0
Bhoemian Pilsner Bohemian Pilsener 23 Litres 1.056 1.011 5.87 31 8.01 °L
253 0
Alles Klar! Munich Helles 20 Litres 1.049 1.01 5.1 19.68 2.8 °L
253 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); } }); });