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

Biab Homebrew Beer Recipes

Page 1652 of our growing list of 50,000+ biab homebrew beer recipes. Sort by beer style, batch size, ABV and more.

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
Lord Vader Imperial Stout No Profile Selected 5.5 Gallons 1.095 1.02 9.82 55.93 50 °L
311 0
Small Batch Good Beer No Profile Selected 10 Litres 1.121 1.026 12.43 43.78 50 °L
311 0
Amber Ale Specialty IPA: Red IPA 21 Litres 1.058 1.01 6.26 58.07 14.76 °L
310 0
YD American IPA 5.5 Gallons 1.063 1.017 6.05 79.28 7.31 °L
310 1
Raspberry Sour Feb 19 2023 Specialty Fruit Beer 5.5 Gallons 1.058 1.009 6.54 15.97 4.19 °L
310 0
Cupboard Clean Out 2022 - Cold Honey IPA American IPA 5.5 Gallons 1.057 1.01 6.17 50.45 7.04 °L
310 0
DIPA #1 (Dry-Hopped W/ Pineapple Puree) Specialty IPA: New England IPA 3 Gallons 1.071 1.014 7.47 32.53 4.84 °L
310 0
Brett Saison Saison 12 Gallons 1.055 1.013 5.61 9.99 4.08 °L
310 1
The Swanson American IPA 1 Gallons 1.065 1.02 6 96.52 4.26 °L
310 0
Plum Dubbel Belgian Dubbel 1 Gallons 1.026 1.006 2.54 0 2.43 °L
310 0
Strong Tripel Belgian Tripel 16 Litres 1.107 1.022 11.19 36.03 9.62 °L
310 1
Quarantine Belgian Pale Belgian Pale Ale 2.5 Gallons 12.552 3.394 4.91 31.62 8.57 °L
310 1
Rye Saison Saison 5 Gallons 1.056 1.011 5.86 23.56 3.82 °L
310 0
Back-Back-B Specialty IPA: New England IPA 5.5 Gallons 1.061 1.017 5.77 34.65 4.82 °L
310 0
Storm Specialty Smoked Beer 20 Litres 1.065 1.016 6.43 102.92 6.77 °L
310 0
Milky Milkshake IPA Specialty IPA: New England IPA 5 Gallons 1.08 1.031 6.53 45.87 7.72 °L
310 0
Belgian SMASH Belgian Pale Ale 1100 Litres 1.052 1.009 5.59 33.53 3.62 °L
310 0
Belgian Pale Ale Belgian Pale Ale 23 Litres 1.052 1.011 5.34 26.09 10.76 °L
310 0
Mosaic Trill Specialty IPA: New England IPA 1.3 Gallons 1.066 1.016 6.55 110.74 4.87 °L
310 0
Goblin Slayer Quad Belgian Dark Strong Ale 5.5 Gallons 1.096 1.022 9.75 27.01 26.7 °L
310 1

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