Homebrew Beer Recipes | Page 4541 | 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 4541 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
Dubbel Belgian Dubbel 25 Litres 1.059 1.01 6.51 22.12 9.07 °L
560 0
Fresh Mujoose #42 Specialty IPA: New England IPA 70 Litres 1.069 1.018 6.69 20.5 5.37 °L
560 1
Quench 7 Specialty IPA: New England IPA 26 Litres 1.058 1.018 5.25 67.3 3.87 °L
560 1
Grisette Triple Perle Brett Beer 21.25 Litres 1.035 1.002 4.33 40.4 4.5 °L
560 1
Millside Farmhouse Ale Alternative Grain Beer 23 Litres 1.054 1.012 5.51 38.37 6.09 °L
560 0
HOOD NEIPA Specialty IPA: New England IPA 22 Litres 1.073 1.015 7.61 55.43 6.83 °L
560 1
Marsha’s Here 2x V3 Specialty IPA: New England IPA 11.5 Gallons 1.078 1.016 8.16 74.53 7.17 °L
560 0
Lisbon Honey Ale 2 Experimental Beer 5 Litres 1.08 1.019 8.01 22.67 12.2 °L
560 0
BYO NEIPA Recipe (Gail) Specialty IPA: New England IPA 6.1 Gallons 1.066 1.012 7.05 60.96 4.9 °L
560 0
NEIPA Batch 10-the OG Specialty IPA: New England IPA 5.5 Gallons 1.059 1.016 5.62 96.09 4.41 °L
560 0
Pumpkin Ale Spice, Herb, or Vegetable Beer 11 Gallons 1.064 1.017 6.19 19.52 12.43 °L
560 1
Not All Secrets Are Worth Knowing Experimental Beer 20 Litres 1.008 1.006 0.29 130.04 10.57 °L
560 0
CITRICA NEIPA Specialty IPA: New England IPA 12.5 Litres 1.061 1.018 5.55 64.93 5.62 °L
560 0
Pranqsterish Belgian Golden Strong Ale 8 Gallons 1.073 1.012 8.09 24.16 4.57 °L
560 0
Catalyst NE IPA Specialty IPA: New England IPA 5 Gallons 16.929 4.537 6.78 31.27 6.35 °L
560 1
Triple Diplomat Belgian Tripel 5 Gallons 1.087 1.02 8.83 71.49 3.97 °L
560 0
Thanksgiving Ale Autumn Seasonal Beer 5.5 Gallons 1.052 1.01 5.5 38.04 10.91 °L
560 2
Santa's Hop For The Planet Spicy Xmas Beer Winter Seasonal Beer 25 Litres 1.081 1.023 7.69 56.99 24.61 °L
560 0
Lazy Haze Specialty IPA: New England IPA 5.5 Gallons 1.069 1.022 6.07 0 4.6 °L
560 0
Tall Pale Tales Specialty IPA: New England IPA 23 Litres 1.069 1.019 6.51 42.05 7.26 °L
560 5

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); } }); });