What are you drinking right now?

Aldi Cider
20210310_171451.jpg

This is about as clear as this will get.
You k ow what I can't get past is how clean this fermented with Framgarden @31c I'm pleased with this kviek yeast normally I throw alot of hops at it so havnt had a clean representation of it.
It's cider I know but gives me a good idea on the yeast.

Helles
20210310_175343.jpg
 
Last edited:
Aldi Cider View attachment 14614
This is about as clear as this will get.
You k ow what I can't get past is how clean this fermented with Framgarden @31c I'm pleased with this kviek yeast normally I throw alot of hops at it so havnt had a clean representation of it.
It's cider I know but gives me a good idea on the yeast.

Helles View attachment 14616
Beauties, both of them.
 
Aldi Cider View attachment 14614
This is about as clear as this will get.
You k ow what I can't get past is how clean this fermented with Framgarden @31c I'm pleased with this kviek yeast normally I throw alot of hops at it so havnt had a clean representation of it.
It's cider I know but gives me a good idea on the yeast.

Helles View attachment 14616

@Trialben, what's the ABV on that cider? I ask because the Cider picture is nice and clear but the Helles picture is a little blurry. I think I can guess in what order you consumed them! :p
 
@Trialben, what's the ABV on that cider? I ask because the Cider picture is nice and clear but the Helles picture is a little blurry. I think I can guess in what order you consumed them! :p

Yeah my phone camera is stuffed so I took them in selfie mode out the front.
I'm a serial phone smasher:oops:
It's around 5% I'm sure :)
 
My beautiful Irish Red has oxidized and is undercarbed :oops: still drinkable if I do it quick lol Lesson learned, I will definitely try this recipe again. First pic is from bottling and then 2nd pic is from today
View attachment 14628
View attachment 14629
If it tastes like cardboard it is oxidized. Don't presume my dear, give it a taste and let us know.
 
20210312_173318.jpg

Brew mates beer.
Nice head.
Love the malty sweetness and head retention.
Just a bit of hop astringency on the finish but not a bad beer.

Oh it ain't a coopers don't get led astray.

And Aldi Cider you know this ain't too bad boys and girls so simple and a rewarding drink at the end
20210312_180251.jpg
clearing good now.
Tried the misses on it again she said she'd drink it over some of the ciders she's had at the bar.
It's got a slight sharpness on the Finnish maybe I should leave the gypsum out next crack and maybe add a little calcium by way of chloride hmmm.

Last one on the go tonight hic!
Wayner-s Pale near kicked.
20210312_195405.jpg

Man this has held on sooo well!
The hop aroma is still fresh and shining!
This brew has made me reconsider the importance of the Whirlpool wow.
I like this verdant yeast the malt is comming through so creamy I understand why some get vanilla off this yeast.

What a great beer!
 
Last edited:
I should have mentioned the pub name. Nice bright brews at Good Life!

And some damn good craft gin too !

Are they doing bourbon yet? Last time we were up our waiter said they were planning to.
 

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