Homebrew Beer Recipes | Page 1888 | 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 1888 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
Cavalier Idaho IPA American IPA 23 Litres 1.063 1.009 7.15 55.92 7.04 °L
951 0
Jet Black Heart (Brewdog Clone) Sweet Stout 20 Litres 1.053 1.018 4.6 28.26 38.44 °L
951 0
Postludium Blonde Ale Blonde Ale 24 Litres 1.033 0.998 4.56 25.16 5.06 °L
951 0
Texas Yeast Scream V2 (Bochet Braggot W/ Hornindal) Braggot 4.5 Gallons 1.1 1.021 10.4 28.84 22.63 °L
951 1
Ginger Beer Spice, Herb, or Vegetable Beer 8 Litres 1.058 1.013 5.89 0 2.14 °L
951 0
SchuBrew Pivo Pils Czech Pale Lager 5.5 Gallons 1.041 1.01 3.97 30.78 3.86 °L
951 1
Leif Inge Impstout Imperial Stout 20 Litres 1.079 1.014 8.45 57.02 34.76 °L
951 0
Mosaic SMaSH American IPA 5.5 Gallons 1.058 1.016 5.57 44.7 6.31 °L
951 3
Dry Irish Stout Irish Stout 3 Gallons 1.05 1.014 4.69 35.44 50 °L
951 1
Megaladon Imperial Red American Barleywine 5.5 Gallons 1.096 1.018 10.25 40.3 12.08 °L
951 1
Lindsay Lemon American Pale Ale 5 Gallons 1.06 1.017 5.71 43.41 6.08 °L
951 1
Mild Dark Mild 22 Litres 1.03 1.009 2.85 21.3 24.42 °L
951 0
Brother's Keeper Saison 8 Litres 1.055 1.01 5.88 31.75 4.27 °L
951 1
Scottish Rain Scottish Export 80/- 6 Gallons 1.052 1.014 4.9 19.89 10.77 °L
951 2
XX Hopped Strong Belgian IPA Mashup Belgian Blond Ale 6 Gallons 1.073 1.013 7.97 100.66 6.26 °L
951 0
Downhome Viking 2 Doppelbock Doppelbock 4.75 Gallons 1.11 1.039 9.27 43.23 20.02 °L
951 0
PiePA American Light Lager 20 Litres 1.052 1.01 5.48 80.18 8.18 °L
951 0
Bohemian Pisshead Pilsner Bohemian Pilsener 15 Litres 1.068 1.017 6.77 34.32 3.96 °L
951 1
Frokoststout American Stout 25 Litres 1.067 1.015 6.87 42.88 50 °L
951 0
One Hit Wonder Witbier 5 Gallons 1.045 1.012 4.35 23.98 3.84 °L
951 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); } }); });