What are you drinking right now?

:)
309A9527-AE44-4BEB-9B3B-97D0C1B4733D.jpeg
My Belgian Pale Ale, ended up a touch darker than expected. Everything else ended up great, happy with this one.
 
Alcohol free day today.
Even though I went fishing. Proud of myself :p:p
Good for you!
Since having a pretty much dry January I have reduced my consumption. I now pretty much only go to the tap room on Wednesday's, Friday's, and Saturdays. I gotta tell you, I have been sleeping much better lately too.
 
Alcohol free day today.
Even though I went fishing. Proud of myself :p:p
I can't remember the last time I went fishing actually expecting to catch fish lol beer is always a necessity :)
I found another local dark lager, this one has some sweet can art (Cooperage Brewing Co). Lots of dark/roast flavor, not too much bitterness. Has too much very dark/bitter cocoa for me. It reminds me of the 95% dark cacao fancy chocolate bars. Ends smooth, 5% abv, good day drinking beer overall
20210308_122556.jpg
 
SNPA-alike. Tastes sweeter than I'd like, even though it finished at 1.008. Could that be because it was an extract batch (DME)? Other than that, no complaints. Glad I have 18 of these to drink...I mean share...drink/share :D
20210308_171138.jpg
 
When fishing, sometimes at least, it’s acceptable to just catch a buzz. That buzz can come from the place you are fishing, or from something else. To me, nothing better than walking and casting, getting exercise, observing, seeing the scenery. Trying to find fish that want to take what you are offering. Some days are a blank, others a bounty. That’s why it’s called fishing, not catching.
 
SNPA-alike. Tastes sweeter than I'd like, even though it finished at 1.008. Could that be because it was an extract batch (DME)? Other than that, no complaints. Glad I have 18 of these to drink...I mean share...drink/share :D
View attachment 14589
That looks really nice. I am a glass and screen guy, so I always appreciate your posing of beers before the screen - it somehow delineates things in a better perspective, at least to my eyes.
 
When fishing, sometimes at least, it’s acceptable to just catch a buzz. That buzz can come from the place you are fishing, or from something else. To me, nothing better than walking and casting, getting exercise, observing, seeing the scenery. Trying to find fish that want to take what you are offering. Some days are a blank, others a bounty. That’s why it’s called fishing, not catching.
That beautiful man...especially the buzz part :p
 
That looks really nice. I am a glass and screen guy, so I always appreciate your posing of beers before the screen - it somehow delineates things in a better perspective, at least to my eyes.
Thanks :) Something about natural light makes a beer's color pop, so I try to find sun where I can. I wish I would remember to use just the screen as background instead of my dirty back patio door... :D
 
Thanks :) Something about natural light makes a beer's color pop, so I try to find sun where I can. I wish I would remember to use just the screen as background instead of my dirty back patio door... :D
I’m usually dodging junk my 5 year old spreads around instead using her room. She does check temperatures for me on the fermenter so I’ll forgive her.
 

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