Homebrew Beer Recipes | Page 10136 | 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 10136 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
Juicy IPA Special/Best/Premium Bitter 10 Litres 1.058 1.018 5.35 28.45 4.33 °L
287 0
Jelly Bracelet W/ Mosaic & Citra Classic American Pilsner 6 Gallons 1.051 1.018 4.28 44.94 3.45 °L
287 0
Canada Day Celebration Ale American Pale Ale 5.5 Gallons 1.058 1.015 5.72 43.71 13.69 °L
287 1
The PerperTrator Doppelbock 3 Gallons 1.081 1.025 7.31 19.51 18.83 °L
287 1
Tougher Than The Sun Pale Lager No Profile Selected 7 Gallons 1.061 1.015 5.98 41.22 3.89 °L
287 0
Svagdricka No Profile Selected 10 Litres 1.023 1.004 2.52 13.98 24.05 °L
287 0
Golders-ALE No Profile Selected 3 Gallons 1.056 1.012 5.82 27.46 7.72 °L
287 0
Ale- Split- Golden No Profile Selected 5.5 Gallons 1.065 1.014 6.66 0 4.28 °L
287 0
Calibration Smash (First Gold) Special/Best/Premium Bitter 12 Litres 1.053 1.011 5.51 40.29 4.63 °L
287 1
ABS: Dunkel Weizen No Profile Selected 2.5 Gallons 1.056 1.014 5.53 29.84 25.68 °L
287 1
Kentucky Common Cream Ale Cream Ale 5.1 Gallons 1.052 1.01 5.49 27.06 11.43 °L
287 0
KGs Sweet Stout Sweet Stout 12 Litres 1.057 1.023 4.41 24.87 36.89 °L
287 0
Coronalager Vienna Lager 5.5 Gallons 1.047 1.008 5.13 28.52 5.33 °L
287 0
ESB Clone Extra Special/Strong Bitter (ESB) 23 Litres 1.053 1.01 5.67 34.45 7.19 °L
287 1
Pacific Ale American Pale Ale 23.5 Litres 1.023 1.004 2.48 22.91 3.61 °L
287 1
Kolscher Kölsch 23 Litres 1.052 1.01 5.55 15.99 3.9 °L
287 2
Vienna Lager Vienna Lager 5 Gallons 1.059 1.013 5.95 19.04 9 °L
287 0
Pale Tropical American Pale Ale 15 Litres 1.06 1.009 6.72 107.35 4.87 °L
287 0
AM:PM V2 American Pale Ale 10 Litres 1.059 1.01 6.39 67.31 6.07 °L
287 0
Fuchs Amber American Amber Ale 22 Litres 1.057 1.016 5.46 29.71 15.79 °L
287 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); } }); });