Homebrew Beer Recipes | Page 13934 | 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 13934 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
Humo Blanco - Saison Saison 20 Litres 1.065 1.012 6.84 21.08 4.48 °L
196 1
Quid Pro Ho Saison 6 Gallons 1.065 1.013 6.87 16.96 6.85 °L
196 1
Lonesome Crow - Black Saison Saison 4 Gallons 1.06 1.011 6.48 27.24 26.34 °L
196 1
Double Trouble Double IPA 1750 Litres 17.69 4.727 7.11 6.79 4.07 °L
196 0
Kentucky Common Kentucky Common 7 Gallons 1.046 1.013 4.37 23.81 14.73 °L
196 1
Belgian Strong Dark Ale Belgian Dark Strong Ale 5.5 Gallons 1.082 1.016 8.7 23 40.45 °L
196 0
NEIPineApple Specialty IPA: New England IPA 5.5 Gallons 1.079 1.015 8.28 56.4 6.48 °L
196 1
Hazy 24-1 Specialty IPA: New England IPA 5.5 Gallons 1.072 1.017 7.16 117.21 3.93 °L
196 0
SSB - Wit - WIP Witbier 150 Litres 1.052 1.014 4.99 22.8 4.18 °L
196 0
Juicy IPA Specialty IPA: New England IPA 4.5 Litres 1.07 1.013 7.42 57.89 5.49 °L
196 0
Double Jack Double IPA 12 Gallons 1.106 1.034 9.42 121.72 8 °L
196 0
Tripeltje Belgian Tripel 550 Litres 1.085 1.018 8.71 40.04 5.12 °L
196 0
Light Wheat Ale Experimental Beer 5.5 Gallons 1.043 1.011 4.19 14.06 3.5 °L
196 0
NEIPA Specialty IPA: New England IPA 21 Litres 1.075 1.016 7.69 39.15 4.46 °L
196 0
Hazy IPA Specialty IPA: New England IPA 15 Litres 1.064 1.014 6.56 18.75 4.01 °L
196 0
Hazy 8º Aniversario Specialty IPA: New England IPA 1070 Litres 1.063 1.009 7.11 63.91 4.8 °L
196 0
Dank Vegas B123 Specialty IPA: New England IPA 75 Gallons 1.07 1.014 7.33 35.65 5.67 °L
196 0
Awesome Recipe Specialty IPA: New England IPA 20.8 Litres 1.074 1.018 7.42 42.57 5.49 °L
196 0
(2023-08-30) Clodhopper Barleywine American Barleywine 5.75 Gallons 25.9 5 11.88 130.21 14.73 °L
196 0
Jo Inges 50års-NEIPA Specialty IPA: New England IPA 20.8 Litres 1.071 1.018 6.96 37.81 6.51 °L
196 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); } }); });