From d837b6012b23ba021eb4f45a5f04d05ed76c6944 Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Thu, 2 Jun 2022 15:52:48 -0700 Subject: [PATCH 1/8] Copy `simple_query_string` implementation from `dev-simple_query_string-#192-impl2`, since that branch was corrupted by incorrect merge. Signed-off-by: Yury Fridlyand --- .../sql/analysis/ExpressionAnalyzer.java | 17 + .../sql/ast/AbstractNodeVisitor.java | 5 + .../ast/expression/RelevanceFieldList.java | 43 + .../sql/data/model/ExprCollectionValue.java | 2 +- .../org/opensearch/sql/expression/DSL.java | 5 + .../sql/expression/ExpressionNodeVisitor.java | 2 - .../function/BuiltinFunctionName.java | 1 + .../function/OpenSearchFunctions.java | 78 +- .../sql/analysis/ExpressionAnalyzerTest.java | 52 + .../function/OpenSearchFunctionsTest.java | 28 +- docs/user/dql/functions.rst | 52 + docs/user/ppl/functions/relevance.rst | 54 + .../sql/legacy/SQLIntegTestCase.java | 6 +- .../opensearch/sql/legacy/TestsConstants.java | 1 + .../sql/sql/SimpleQueryStringIT.java | 45 + .../test/resources/beer.stackexchange.json | 7568 +++++++++++++++++ .../script/filter/FilterQueryBuilder.java | 2 + .../relevance/SimpleQueryStringQuery.java | 100 + .../script/filter/FilterQueryBuilderTest.java | 141 +- .../filter/lucene/SimpleQueryStringTest.java | 173 + ppl/src/main/antlr/OpenSearchPPLLexer.g4 | 37 +- ppl/src/main/antlr/OpenSearchPPLParser.g4 | 52 +- .../sql/ppl/parser/AstExpressionBuilder.java | 40 +- .../sql/ppl/antlr/PPLSyntaxParserTest.java | 33 + .../ppl/parser/AstExpressionBuilderTest.java | 26 +- sql/src/main/antlr/OpenSearchSQLLexer.g4 | 32 +- sql/src/main/antlr/OpenSearchSQLParser.g4 | 52 +- .../sql/sql/parser/AstExpressionBuilder.java | 39 +- .../sql/sql/antlr/SQLSyntaxParserTest.java | 35 + .../sql/parser/AstExpressionBuilderTest.java | 29 +- 30 files changed, 8660 insertions(+), 90 deletions(-) create mode 100644 core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java create mode 100644 integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java create mode 100644 integ-test/src/test/resources/beer.stackexchange.json create mode 100644 opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java create mode 100644 opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/SimpleQueryStringTest.java diff --git a/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java b/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java index bb419ec516..edb95c1c77 100644 --- a/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java +++ b/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java @@ -6,10 +6,12 @@ package org.opensearch.sql.analysis; +import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; +import java.util.LinkedHashMap; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; @@ -32,6 +34,7 @@ import org.opensearch.sql.ast.expression.Not; import org.opensearch.sql.ast.expression.Or; import org.opensearch.sql.ast.expression.QualifiedName; +import org.opensearch.sql.ast.expression.RelevanceFieldList; import org.opensearch.sql.ast.expression.Span; import org.opensearch.sql.ast.expression.UnresolvedArgument; import org.opensearch.sql.ast.expression.UnresolvedAttribute; @@ -40,11 +43,13 @@ import org.opensearch.sql.ast.expression.WindowFunction; import org.opensearch.sql.ast.expression.Xor; import org.opensearch.sql.common.antlr.SyntaxCheckException; +import org.opensearch.sql.data.model.ExprTupleValue; import org.opensearch.sql.data.model.ExprValueUtils; import org.opensearch.sql.data.type.ExprType; import org.opensearch.sql.exception.SemanticCheckException; import org.opensearch.sql.expression.DSL; import org.opensearch.sql.expression.Expression; +import org.opensearch.sql.expression.LiteralExpression; import org.opensearch.sql.expression.NamedArgumentExpression; import org.opensearch.sql.expression.NamedExpression; import org.opensearch.sql.expression.ParseExpression; @@ -158,6 +163,18 @@ public Expression visitAggregateFunction(AggregateFunction node, AnalysisContext } } + @Override + public Expression visitRelevanceFieldList(RelevanceFieldList node, AnalysisContext context) { + return new LiteralExpression(new ExprTupleValue(new LinkedHashMap<>(node + .getFieldList() + .entrySet() + .stream() + .collect(ImmutableMap.toImmutableMap( + n -> n.getKey().toString(), + n -> ExprValueUtils.floatValue((Float) ((Literal) n.getValue()).getValue()) + ))))); + } + @Override public Expression visitFunction(Function node, AnalysisContext context) { FunctionName functionName = FunctionName.of(node.getFuncName()); diff --git a/core/src/main/java/org/opensearch/sql/ast/AbstractNodeVisitor.java b/core/src/main/java/org/opensearch/sql/ast/AbstractNodeVisitor.java index 5708bb3b99..37163821e3 100644 --- a/core/src/main/java/org/opensearch/sql/ast/AbstractNodeVisitor.java +++ b/core/src/main/java/org/opensearch/sql/ast/AbstractNodeVisitor.java @@ -26,6 +26,7 @@ import org.opensearch.sql.ast.expression.Not; import org.opensearch.sql.ast.expression.Or; import org.opensearch.sql.ast.expression.QualifiedName; +import org.opensearch.sql.ast.expression.RelevanceFieldList; import org.opensearch.sql.ast.expression.Span; import org.opensearch.sql.ast.expression.UnresolvedArgument; import org.opensearch.sql.ast.expression.UnresolvedAttribute; @@ -110,6 +111,10 @@ public T visitLiteral(Literal node, C context) { return visitChildren(node, context); } + public T visitRelevanceFieldList(RelevanceFieldList node, C context) { + return visitChildren(node, context); + } + public T visitUnresolvedAttribute(UnresolvedAttribute node, C context) { return visitChildren(node, context); } diff --git a/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java b/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java new file mode 100644 index 0000000000..0a789fea26 --- /dev/null +++ b/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java @@ -0,0 +1,43 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + + +package org.opensearch.sql.ast.expression; + +import java.util.List; +import java.util.stream.Collectors; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.Getter; +import org.opensearch.sql.ast.AbstractNodeVisitor; + +/** + * Expression node that includes a list of RelevanceField nodes. + */ +@EqualsAndHashCode(callSuper = false) +@AllArgsConstructor +public class RelevanceFieldList extends UnresolvedExpression { + @Getter + private java.util.Map fieldList; + + @Override + public List getChild() { + return List.of(); + } + + @Override + public R accept(AbstractNodeVisitor nodeVisitor, C context) { + return nodeVisitor.visitRelevanceFieldList(this, context); + } + + @Override + public String toString() { + return fieldList + .entrySet() + .stream() + .map(e -> String.format("\"%s\" ^ %s", e.getKey(), e.getValue())) + .collect(Collectors.joining(", ")); + } +} diff --git a/core/src/main/java/org/opensearch/sql/data/model/ExprCollectionValue.java b/core/src/main/java/org/opensearch/sql/data/model/ExprCollectionValue.java index fe5198288f..1326733263 100644 --- a/core/src/main/java/org/opensearch/sql/data/model/ExprCollectionValue.java +++ b/core/src/main/java/org/opensearch/sql/data/model/ExprCollectionValue.java @@ -45,7 +45,7 @@ public List collectionValue() { public String toString() { return valueList.stream() .map(Object::toString) - .collect(Collectors.joining(",", "[", "]")); + .collect(Collectors.joining(", ", "[", "]")); } @Override diff --git a/core/src/main/java/org/opensearch/sql/expression/DSL.java b/core/src/main/java/org/opensearch/sql/expression/DSL.java index 39aa1b8553..6525b62d6c 100644 --- a/core/src/main/java/org/opensearch/sql/expression/DSL.java +++ b/core/src/main/java/org/opensearch/sql/expression/DSL.java @@ -654,4 +654,9 @@ public FunctionExpression match(Expression... args) { return (FunctionExpression) repository .compile(BuiltinFunctionName.MATCH.getName(), Arrays.asList(args.clone())); } + + public FunctionExpression simple_query_string(Expression... args) { + return (FunctionExpression) repository + .compile(BuiltinFunctionName.SIMPLE_QUERY_STRING.getName(), Arrays.asList(args.clone())); + } } diff --git a/core/src/main/java/org/opensearch/sql/expression/ExpressionNodeVisitor.java b/core/src/main/java/org/opensearch/sql/expression/ExpressionNodeVisitor.java index fbee830547..b05b0924a8 100644 --- a/core/src/main/java/org/opensearch/sql/expression/ExpressionNodeVisitor.java +++ b/core/src/main/java/org/opensearch/sql/expression/ExpressionNodeVisitor.java @@ -6,7 +6,6 @@ package org.opensearch.sql.expression; -import org.opensearch.sql.ast.expression.Span; import org.opensearch.sql.expression.aggregation.Aggregator; import org.opensearch.sql.expression.aggregation.NamedAggregator; import org.opensearch.sql.expression.conditional.cases.CaseClause; @@ -93,5 +92,4 @@ public T visitWhen(WhenClause node, C context) { public T visitNamedArgument(NamedArgumentExpression node, C context) { return visitNode(node, context); } - } diff --git a/core/src/main/java/org/opensearch/sql/expression/function/BuiltinFunctionName.java b/core/src/main/java/org/opensearch/sql/expression/function/BuiltinFunctionName.java index c52ff150cd..47252c0977 100644 --- a/core/src/main/java/org/opensearch/sql/expression/function/BuiltinFunctionName.java +++ b/core/src/main/java/org/opensearch/sql/expression/function/BuiltinFunctionName.java @@ -187,6 +187,7 @@ public enum BuiltinFunctionName { * Relevance Function. */ MATCH(FunctionName.of("match")), + SIMPLE_QUERY_STRING(FunctionName.of("simple_query_string")), /** * Legacy Relevance Function. diff --git a/core/src/main/java/org/opensearch/sql/expression/function/OpenSearchFunctions.java b/core/src/main/java/org/opensearch/sql/expression/function/OpenSearchFunctions.java index 9b7325bb59..a712447a5f 100644 --- a/core/src/main/java/org/opensearch/sql/expression/function/OpenSearchFunctions.java +++ b/core/src/main/java/org/opensearch/sql/expression/function/OpenSearchFunctions.java @@ -6,12 +6,14 @@ package org.opensearch.sql.expression.function; import static org.opensearch.sql.data.type.ExprCoreType.STRING; +import static org.opensearch.sql.data.type.ExprCoreType.STRUCT; -import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; +import java.util.ArrayList; +import java.util.Collections; import java.util.List; +import java.util.Map; import java.util.stream.Collectors; -import lombok.ToString; import lombok.experimental.UtilityClass; import org.opensearch.sql.data.model.ExprValue; import org.opensearch.sql.data.type.ExprCoreType; @@ -25,54 +27,40 @@ public class OpenSearchFunctions { public void register(BuiltinFunctionRepository repository) { repository.register(match()); + repository.register(simple_query_string()); } private static FunctionResolver match() { FunctionName funcName = BuiltinFunctionName.MATCH.getName(); + // At most field, query, and all optional parameters + final int matchMaxNumParameters = 14; + return getRelevanceFunctionResolver(funcName, matchMaxNumParameters, STRING); + } + + private static FunctionResolver simple_query_string() { + FunctionName funcName = BuiltinFunctionName.SIMPLE_QUERY_STRING.getName(); + // At most field, query, and all optional parameters + final int simpleQueryStringMaxNumParameters = 12; + return getRelevanceFunctionResolver(funcName, simpleQueryStringMaxNumParameters, STRUCT); + } + + private static FunctionResolver getRelevanceFunctionResolver( + FunctionName funcName, int maxNumParameters, ExprCoreType firstArgType) { return new FunctionResolver(funcName, - ImmutableMap.builder() - .put(new FunctionSignature(funcName, ImmutableList.of(STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList.of(STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList.of(STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, - STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, - STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, - STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, - STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .put(new FunctionSignature(funcName, ImmutableList - .of(STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, STRING, - STRING, STRING, STRING, STRING, STRING)), - args -> new OpenSearchFunction(funcName, args)) - .build()); + getRelevanceFunctionSignatureMap(funcName, maxNumParameters, firstArgType)); + } + + private static Map getRelevanceFunctionSignatureMap( + FunctionName funcName, int maxNumParameters, ExprCoreType firstArgType) { + final int minNumParameters = 2; + FunctionBuilder buildFunction = args -> new OpenSearchFunction(funcName, args); + var signatureMapBuilder = ImmutableMap.builder(); + for (int numParameters = minNumParameters; numParameters <= maxNumParameters; numParameters++) { + List args = new ArrayList<>(Collections.nCopies(numParameters - 1, STRING)); + args.add(0, firstArgType); + signatureMapBuilder.put(new FunctionSignature(funcName, args), buildFunction); + } + return signatureMapBuilder.build(); } private static class OpenSearchFunction extends FunctionExpression { diff --git a/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java b/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java index 6cb59f918c..a42a916bd7 100644 --- a/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java +++ b/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java @@ -10,6 +10,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.opensearch.sql.ast.dsl.AstDSL.field; +import static org.opensearch.sql.ast.dsl.AstDSL.floatLiteral; import static org.opensearch.sql.ast.dsl.AstDSL.function; import static org.opensearch.sql.ast.dsl.AstDSL.intLiteral; import static org.opensearch.sql.ast.dsl.AstDSL.qualifiedName; @@ -22,7 +23,10 @@ import static org.opensearch.sql.data.type.ExprCoreType.STRUCT; import static org.opensearch.sql.expression.DSL.ref; +import com.google.common.collect.ImmutableMap; import java.util.Collections; +import java.util.LinkedHashMap; +import java.util.Map; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.opensearch.sql.analysis.symbol.Namespace; @@ -30,10 +34,12 @@ import org.opensearch.sql.ast.dsl.AstDSL; import org.opensearch.sql.ast.expression.AllFields; import org.opensearch.sql.ast.expression.DataType; +import org.opensearch.sql.ast.expression.RelevanceFieldList; import org.opensearch.sql.ast.expression.SpanUnit; import org.opensearch.sql.ast.expression.UnresolvedExpression; import org.opensearch.sql.ast.tree.UnresolvedPlan; import org.opensearch.sql.common.antlr.SyntaxCheckException; +import org.opensearch.sql.data.model.ExprTupleValue; import org.opensearch.sql.data.model.ExprValueUtils; import org.opensearch.sql.exception.SemanticCheckException; import org.opensearch.sql.expression.DSL; @@ -359,6 +365,52 @@ void visit_in() { () -> analyze(AstDSL.in(field("integer_value"), Collections.emptyList()))); } + @Test + void simple_query_string_expression() { + assertAnalyzeEqual( + dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal( + new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "field", ExprValueUtils.floatValue(1.F)))))), + dsl.namedArgument("query", DSL.literal("sample query"))), + AstDSL.function("simple_query_string", + AstDSL.unresolvedArg("fields", new RelevanceFieldList(Map.of( + stringLiteral("field"), floatLiteral(1.F)))), + AstDSL.unresolvedArg("query", stringLiteral("sample query")))); + } + + @Test + void simple_query_string_expression_with_params() { + assertAnalyzeEqual( + dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal( + new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "field", ExprValueUtils.floatValue(1.F)))))), + dsl.namedArgument("query", DSL.literal("sample query")), + dsl.namedArgument("analyzer", DSL.literal("keyword"))), + AstDSL.function("simple_query_string", + AstDSL.unresolvedArg("fields", new RelevanceFieldList(Map.of( + stringLiteral("field"), floatLiteral(1.F)))), + AstDSL.unresolvedArg("query", stringLiteral("sample query")), + AstDSL.unresolvedArg("analyzer", stringLiteral("keyword")))); + } + + @Test + void simple_query_string_expression_two_fields() { + assertAnalyzeEqual( + dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal( + new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "field1", ExprValueUtils.floatValue(1.F), + "field2", ExprValueUtils.floatValue(.3F)))))), + dsl.namedArgument("query", DSL.literal("sample query"))), + AstDSL.function("simple_query_string", + AstDSL.unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( + stringLiteral("field1"), floatLiteral(1.F), + stringLiteral("field2"), floatLiteral(.3F)))), + AstDSL.unresolvedArg("query", stringLiteral("sample query")))); + } + protected Expression analyze(UnresolvedExpression unresolvedExpression) { return expressionAnalyzer.analyze(unresolvedExpression, analysisContext); } diff --git a/core/src/test/java/org/opensearch/sql/expression/function/OpenSearchFunctionsTest.java b/core/src/test/java/org/opensearch/sql/expression/function/OpenSearchFunctionsTest.java index c425be704b..526e16477a 100644 --- a/core/src/test/java/org/opensearch/sql/expression/function/OpenSearchFunctionsTest.java +++ b/core/src/test/java/org/opensearch/sql/expression/function/OpenSearchFunctionsTest.java @@ -9,15 +9,24 @@ import static org.junit.jupiter.api.Assertions.assertThrows; import static org.opensearch.sql.data.type.ExprCoreType.BOOLEAN; +import com.google.common.collect.ImmutableMap; +import java.util.LinkedHashMap; import org.junit.jupiter.api.Test; +import org.opensearch.sql.data.model.ExprTupleValue; +import org.opensearch.sql.data.model.ExprValueUtils; import org.opensearch.sql.expression.DSL; import org.opensearch.sql.expression.ExpressionTestBase; import org.opensearch.sql.expression.FunctionExpression; import org.opensearch.sql.expression.NamedArgumentExpression; + public class OpenSearchFunctionsTest extends ExpressionTestBase { private final NamedArgumentExpression field = new NamedArgumentExpression( "field", DSL.literal("message")); + private final NamedArgumentExpression fields = new NamedArgumentExpression( + "fields", DSL.literal(new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "title", ExprValueUtils.floatValue(1.F), + "body", ExprValueUtils.floatValue(.3F)))))); private final NamedArgumentExpression query = new NamedArgumentExpression( "query", DSL.literal("search query")); private final NamedArgumentExpression analyzer = new NamedArgumentExpression( @@ -40,8 +49,10 @@ public class OpenSearchFunctionsTest extends ExpressionTestBase { "operator", DSL.literal("OR")); private final NamedArgumentExpression minimumShouldMatch = new NamedArgumentExpression( "minimum_should_match", DSL.literal("1")); - private final NamedArgumentExpression zeroTermsQuery = new NamedArgumentExpression( + private final NamedArgumentExpression zeroTermsQueryAll = new NamedArgumentExpression( "zero_terms_query", DSL.literal("ALL")); + private final NamedArgumentExpression zeroTermsQueryNone = new NamedArgumentExpression( + "zero_terms_query", DSL.literal("None")); private final NamedArgumentExpression boost = new NamedArgumentExpression( "boost", DSL.literal("2.0")); @@ -98,13 +109,14 @@ void match() { expr = dsl.match( field, query, analyzer, autoGenerateSynonymsPhrase, fuzziness, maxExpansions, prefixLength, - fuzzyTranspositions, fuzzyRewrite, lenient, operator, minimumShouldMatch, zeroTermsQuery); + fuzzyTranspositions, fuzzyRewrite, lenient, operator, minimumShouldMatch, + zeroTermsQueryAll); assertEquals(BOOLEAN, expr.type()); expr = dsl.match( field, query, analyzer, autoGenerateSynonymsPhrase, fuzziness, maxExpansions, prefixLength, - fuzzyTranspositions, fuzzyRewrite, lenient, operator, minimumShouldMatch, zeroTermsQuery, - boost); + fuzzyTranspositions, fuzzyRewrite, lenient, operator, minimumShouldMatch, + zeroTermsQueryNone, boost); assertEquals(BOOLEAN, expr.type()); } @@ -121,4 +133,12 @@ void match_to_string() { FunctionExpression expr = dsl.match(field, query); assertEquals("match(field=\"message\", query=\"search query\")", expr.toString()); } + + @Test + void simple_query_string() { + FunctionExpression expr = dsl.simple_query_string(fields, query); + assertEquals(String.format("simple_query_string(fields=%s, query=%s)", + fields.getValue().toString(), query.getValue().toString()), + expr.toString()); + } } diff --git a/docs/user/dql/functions.rst b/docs/user/dql/functions.rst index 188c326f6d..3903490a4f 100644 --- a/docs/user/dql/functions.rst +++ b/docs/user/dql/functions.rst @@ -2195,3 +2195,55 @@ Another example to show how to set custom values for the optional parameters:: | Bond | +------------+ + +SIMPLE_QUERY_STRING +------------------- + +Description +>>>>>>>>>>> + +``simple_query_string([field_expression+], query_expression[, option=]*)`` + +The simple_query_string function maps to the simple_query_string query used in search engine, to return the documents that match a provided text, number, date or boolean value with a given field or fields. +The **^** lets you *boost* certain fields. Boosts are multipliers that weigh matches in one field more heavily than matches in other fields. The syntax allows to specify the fields in double quotes, single quotes, in backtick or even without any wrap. All fields search using star ``"*"`` is also available (star symbol should be wrapped). The weight is optional and should be specified using after the field name, it could be delimeted by the `caret` character or by whitespace. Please, refer to examples below: + +| ``simple_query_string(["Tags" ^ 2, 'Title' 3.4, `Body`, Comments ^ 0.3], ...)`` +| ``simple_query_string(["*"], ...)`` + +Available parameters include: + +- analyze_wildcard +- analyzer +- auto_generate_synonyms_phrase +- flags +- fuzziness +- fuzzy_max_expansions +- fuzzy_prefix_length +- fuzzy_transpositions +- lenient +- default_operator +- minimum_should_match +- quote_field_suffix +- boost + +Example with only ``fields`` and ``query`` expressions, and all other parameters are set default values:: + + os> select firstname, lastname, city, address from accounts where simple_query_string(['firstname', city ^ 2], 'Amber | Nogal'); + fetched rows / total rows = 2/2 + +-------------+------------+--------+--------------------+ + | firstname | lastname | city | address | + |-------------+------------+--------+--------------------| + | Amber | Duke | Brogan | 880 Holmes Lane | + | Nanette | Bates | Nogal | 789 Madison Street | + +-------------+------------+--------+--------------------+ + + + +Another example to show how to set custom values for the optional parameters:: + + os> select firstname, lastname, city, address from accounts where simple_query_string(['firstname', city ^ 2], 'Amber Nogal', analyzer=keyword, default_operator='AND'); + fetched rows / total rows = 0/0 + +-------------+------------+--------+-----------+ + | firstname | lastname | city | address | + |-------------+------------+--------+-----------| + +-------------+------------+--------+-----------+ diff --git a/docs/user/ppl/functions/relevance.rst b/docs/user/ppl/functions/relevance.rst index 0b00f382ec..13677dc497 100644 --- a/docs/user/ppl/functions/relevance.rst +++ b/docs/user/ppl/functions/relevance.rst @@ -56,6 +56,60 @@ Another example to show how to set custom values for the optional parameters:: | Bond | +------------+ + +SIMPLE_QUERY_STRING +------------------- + +Description +>>>>>>>>>>> + +``simple_query_string([field_expression+], query_expression[, option=]*)`` + +The simple_query_string function maps to the simple_query_string query used in search engine, to return the documents that match a provided text, number, date or boolean value with a given field or fields. +The **^** lets you *boost* certain fields. Boosts are multipliers that weigh matches in one field more heavily than matches in other fields. The syntax allows to specify the fields in double quotes, single quotes, in backtick or even without any wrap. All fields search using star ``"*"`` is also available (star symbol should be wrapped). The weight is optional and should be specified using after the field name, it could be delimeted by the `caret` character or by whitespace. Please, refer to examples below: + +| ``simple_query_string(["Tags" ^ 2, 'Title' 3.4, `Body`, Comments ^ 0.3], ...)`` +| ``simple_query_string(["*"], ...)`` + + +Available parameters include: + +- analyze_wildcard +- analyzer +- auto_generate_synonyms_phrase +- flags +- fuzziness +- fuzzy_max_expansions +- fuzzy_prefix_length +- fuzzy_transpositions +- lenient +- default_operator +- minimum_should_match +- quote_field_suffix +- boost + +Example with only ``fields`` and ``query`` expressions, and all other parameters are set default values:: + + os> source=accounts | where simple_query_string(['firstname', city ^ 2], 'Amber | Nogal') | fields firstname, lastname, city, address; + fetched rows / total rows = 2/2 + +-------------+------------+--------+--------------------+ + | firstname | lastname | city | address | + |-------------+------------+--------+--------------------| + | Amber | Duke | Brogan | 880 Holmes Lane | + | Nanette | Bates | Nogal | 789 Madison Street | + +-------------+------------+--------+--------------------+ + + + +Another example to show how to set custom values for the optional parameters:: + + os> source=accounts | where simple_query_string(['firstname', city ^ 2], 'Amber Nogal', analyzer=keyword, default_operator='AND') | fields firstname, lastname, city, address; + fetched rows / total rows = 0/0 + +-------------+------------+--------+-----------+ + | firstname | lastname | city | address | + |-------------+------------+--------+-----------| + +-------------+------------+--------+-----------+ + Limitations >>>>>>>>>>> diff --git a/integ-test/src/test/java/org/opensearch/sql/legacy/SQLIntegTestCase.java b/integ-test/src/test/java/org/opensearch/sql/legacy/SQLIntegTestCase.java index 0c479cbd6e..cd6f2d7191 100644 --- a/integ-test/src/test/java/org/opensearch/sql/legacy/SQLIntegTestCase.java +++ b/integ-test/src/test/java/org/opensearch/sql/legacy/SQLIntegTestCase.java @@ -543,7 +543,11 @@ public enum Index { DATA_TYPE_NONNUMERIC(TestsConstants.TEST_INDEX_DATATYPE_NONNUMERIC, "_doc", getDataTypeNonnumericIndexMapping(), - "src/test/resources/datatypes.json"); + "src/test/resources/datatypes.json"), + BEER(TestsConstants.TEST_INDEX_BEER, + "beer", + null, + "src/test/resources/beer.stackexchange.json"),; private final String name; private final String type; diff --git a/integ-test/src/test/java/org/opensearch/sql/legacy/TestsConstants.java b/integ-test/src/test/java/org/opensearch/sql/legacy/TestsConstants.java index b604d2e7f3..f54f079bb6 100644 --- a/integ-test/src/test/java/org/opensearch/sql/legacy/TestsConstants.java +++ b/integ-test/src/test/java/org/opensearch/sql/legacy/TestsConstants.java @@ -50,6 +50,7 @@ public class TestsConstants { public final static String TEST_INDEX_STRINGS = TEST_INDEX + "_strings"; public final static String TEST_INDEX_DATATYPE_NUMERIC = TEST_INDEX + "_datatypes_numeric"; public final static String TEST_INDEX_DATATYPE_NONNUMERIC = TEST_INDEX + "_datatypes_nonnumeric"; + public final static String TEST_INDEX_BEER = TEST_INDEX + "_beer"; public final static String DATE_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"; public final static String TS_DATE_FORMAT = "yyyy-MM-dd HH:mm:ss.SSS"; diff --git a/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java b/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java new file mode 100644 index 0000000000..9f2ed6ac33 --- /dev/null +++ b/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java @@ -0,0 +1,45 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +package org.opensearch.sql.sql; + +import java.io.IOException; +import org.json.JSONObject; +import org.junit.jupiter.api.Test; +import org.opensearch.sql.legacy.SQLIntegTestCase; + +public class SimpleQueryStringIT extends SQLIntegTestCase { + @Override + public void init() throws IOException { + loadIndex(Index.BEER); + } + + /* + The 'beer.stackexchange' index is a dump of beer.stackexchange.com converted to the format which might be ingested by OpenSearch. + This is a forum like StackOverflow with questions about beer brewing. The dump contains both questions, answers and comments. + The reference query is: + select count(Id) from beer.stackexchange where simple_query_string(["Tags" ^ 1.5, Title, `Body` 4.2], 'taste') and Tags like '% % %' and Title like '%'; + It filters out empty `Tags` and `Title`. + */ + + @Test + public void test1() throws IOException { + String query = "SELECT count(*) FROM " + + Index.BEER.getName() + " WHERE simple_query_string([\\\"Tags\\\" ^ 1.5, Title, `Body` 4.2], 'taste')"; + var result = new JSONObject(executeQuery(query, "jdbc")); + assertNotEquals(0, result.getInt("total")); + } + + @Test + public void verify_wildcard_test() throws IOException { + String query1 = "SELECT count(*) FROM " + + Index.BEER.getName() + " WHERE simple_query_string(['Tags'], 'taste')"; + var result1 = new JSONObject(executeQuery(query1, "jdbc")); + String query2 = "SELECT count(*) FROM " + + Index.BEER.getName() + " WHERE simple_query_string(['T*'], 'taste')"; + var result2 = new JSONObject(executeQuery(query2, "jdbc")); + assertNotEquals(result2.getInt("total"), result1.getInt("total")); + } +} diff --git a/integ-test/src/test/resources/beer.stackexchange.json b/integ-test/src/test/resources/beer.stackexchange.json new file mode 100644 index 0000000000..6a6ffb7074 --- /dev/null +++ b/integ-test/src/test/resources/beer.stackexchange.json @@ -0,0 +1,7568 @@ +{"index":{"_id":"1"}} +{ "Id": "1", "PostTypeId": "1", "AcceptedAnswerId": "4", "CreationDate": "2014-01-21T20:26:05.383", "Score": "21", "ViewCount": "2428", "Body": "

I was offered a beer the other day that was reportedly made with citra hops. What are citra hops? Why should I care that my beer is made with them?

\n", "OwnerUserId": "7", "LastEditorUserId": "8", "LastEditDate": "2014-01-21T22:04:34.977", "LastActivityDate": "2014-01-21T22:04:34.977", "Title": "What is a citra hop, and how does it differ from other hops?", "Tags": "hops", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2"}} +{ "Id": "2", "PostTypeId": "1", "AcceptedAnswerId": "175", "CreationDate": "2014-01-21T20:27:29.797", "Score": "25", "ViewCount": "3132", "Body": "

As far as we know, when did humans first brew beer, and where? Around when would you have been able to get your hands on something resembling a modern lager?

\n", "OwnerUserId": "7", "LastActivityDate": "2014-01-23T01:55:21.853", "Title": "When was the first beer ever brewed?", "Tags": "history", "AnswerCount": "4", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3"}} +{ "Id": "3", "PostTypeId": "1", "AcceptedAnswerId": "13", "CreationDate": "2014-01-21T20:30:17.437", "Score": "22", "ViewCount": "528", "Body": "

How is low/no alcohol beer made? I'm assuming that the beer is made normally and the alcohol is then removed, is it any more than just boiling it off? I've noticed that no/low alcohol beers' taste improved hugely a few years ago, is this due to a new technique?

\n", "OwnerUserId": "7", "LastActivityDate": "2015-01-29T14:50:56.627", "Title": "How is reduced alcoholic beer made?", "Tags": "brewing", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4"}} +{ "Id": "4", "PostTypeId": "2", "ParentId": "1", "CreationDate": "2014-01-21T20:31:18.540", "Score": "15", "Body": "

Citra is a registered trademark since 2007. Citra Brand hops have fairly high alpha acids and total oil contents with a low percentage of cohumulone content and imparts interesting citrus and tropical fruit characters to beer.

\n\n

For more information, you can read the Wikipedia article on the Citra brand.

\n", "OwnerUserId": "12", "LastEditorUserId": "25", "LastEditDate": "2014-01-21T21:36:38.133", "LastActivityDate": "2014-01-21T21:36:38.133", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5"}} +{ "Id": "5", "PostTypeId": "1", "AcceptedAnswerId": "19", "CreationDate": "2014-01-21T20:31:44.693", "Score": "22", "ViewCount": "3994", "Body": "

In general, what's the best way to work out the temperature at which to serve a particular beer? Room temperature? Cold? Supercold? Warm?

\n", "OwnerUserId": "7", "LastEditorUserId": "43", "LastEditDate": "2014-01-21T21:21:29.497", "LastActivityDate": "2017-06-07T11:10:28.887", "Title": "What temperature should I serve my beer?", "Tags": "serving temperature", "AnswerCount": "4", "CommentCount": "9", "FavoriteCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6"}} +{ "Id": "6", "PostTypeId": "1", "AcceptedAnswerId": "100", "CreationDate": "2014-01-21T20:33:12.797", "Score": "20", "ViewCount": "645", "Body": "

Currently I am storing my bottles in the crates at a (about) 20 degree angle (bottles are upwards!).

\n\n

Does the way of storing the bottles affect something (and how)?

\n", "OwnerUserId": "10", "LastEditorUserId": "138", "LastEditDate": "2014-01-22T14:32:47.030", "LastActivityDate": "2014-01-22T14:32:47.030", "Title": "What is the best angle to store beer bottles?", "Tags": "pilsener storage", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7"}} +{ "Id": "7", "PostTypeId": "1", "AcceptedAnswerId": "52", "CreationDate": "2014-01-21T20:34:59.053", "Score": "7", "ViewCount": "4191", "Body": "

Assuming we're comparing equivalent amounts of alcohol, do certain beers get you inebriated more quickly or slowly? Does the amount of fizz make a difference?

\n", "OwnerUserId": "7", "LastEditorUserId": "34", "LastEditDate": "2014-01-21T21:00:05.583", "LastActivityDate": "2021-01-15T06:17:09.530", "Title": "Will certain types of beer get me more drunk more quickly?", "Tags": "inebriation", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"8"}} +{ "Id": "8", "PostTypeId": "1", "AcceptedAnswerId": "18", "CreationDate": "2014-01-21T20:37:12.143", "Score": "41", "ViewCount": "40787", "Body": "

Apart from coming out of different taps, some ales seem very similar to lagers (although there are clearly a much greater variety of ales). Is there a difference in the way they are made?

\n", "OwnerUserId": "7", "LastActivityDate": "2017-08-24T06:53:25.040", "Title": "What is the difference between an ale and a lager?", "Tags": "brewing ale lager", "AnswerCount": "6", "CommentCount": "1", "FavoriteCount": "12", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"10"}} +{ "Id": "10", "PostTypeId": "1", "AcceptedAnswerId": "209", "CreationDate": "2014-01-21T20:39:03.323", "Score": "6", "ViewCount": "467", "Body": "

It's pretty cold at the moment. Mulled wine being more of a Christmas drink, mulled beer is getting popular. What beers, and what spices should I use to make it?

\n", "OwnerUserId": "7", "LastActivityDate": "2014-01-22T17:04:49.340", "Title": "How do you mull beer?", "Tags": "mulling", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"11"}} +{ "Id": "11", "PostTypeId": "1", "CreationDate": "2014-01-21T20:41:10.950", "Score": "8", "ViewCount": "40833", "Body": "

I usually drink strong Belgian Ales, particularly Triples, Quads and Trappists, so I'm no stranger to strong beer. But I've noticed that I get far, far worse hangovers when drinking IPAs.

\n\n

Is there anything about IPAs that would make this possible? The lower quality places like ask.com or Yahoo answers usually say no, that only ABV produces hangovers, though one source did seem to imply that IPAs have special ingredients that make this a possibility.

\n\n

So I want to ask the experts here: do IPAs have ingredients that other strong beers lack, that could exacerbate hangovers?

\n", "OwnerUserId": "20", "LastActivityDate": "2015-04-16T22:42:06.990", "Title": "Do IPAs cause worse hangovers?", "Tags": "ipa hangover", "AnswerCount": "5", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"12"}} +{ "Id": "12", "PostTypeId": "1", "CreationDate": "2014-01-21T20:41:41.857", "Score": "7", "ViewCount": "240", "Body": "

Given craft beers, which are typically brewed without many preservatives, what is the average duration a beer must sit inside a barrel before it is ready for serving?

\n\n

If different types of beer require different brewing times, can you provide a list?

\n", "OwnerUserId": "25", "LastEditorUserId": "25", "LastEditDate": "2014-01-21T20:57:03.347", "LastActivityDate": "2014-01-21T20:57:03.347", "Title": "What is the average brewing time for craft beer?", "Tags": "brewing", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"13"}} +{ "Id": "13", "PostTypeId": "2", "ParentId": "3", "CreationDate": "2014-01-21T20:44:28.383", "Score": "13", "Body": "

There are a couple of ways to do that.

\n\n

The two main \"approaches\" are to extract the alcohol afterwards or just don't allow the generation of it.

\n\n

The extracting part can be achieved by filtering and reverse osmosis. Alcohol and water are getting sucked out and the \"beer mass\" gets re-watered. These steps may affect the taste quit a bit. A few brewers (especially in Germany) have developed a \"top secret\" technique to brew a alcohol free beer which tastes the same as \"normal\" beer - but most of these are \"top secret\".

\n\n

Latest science experiements revealed a new way of brewing alcohol free beer, by just stopping the fermentation process. This can be done by lowering the temperature of the liquid containers.

\n\n

Beers brewed with this technique tend to taste more sweet.

\n\n

Both method have their up and downs so a couple brewers combined both: Less fermentation than usual and extracting the extra bits of alcohol.

\n", "OwnerUserId": "10", "LastEditorUserId": "12", "LastEditDate": "2014-01-21T20:52:45.583", "LastActivityDate": "2014-01-21T20:52:45.583", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"14"}} +{ "Id": "14", "PostTypeId": "1", "AcceptedAnswerId": "27", "CreationDate": "2014-01-21T20:44:37.830", "Score": "8", "ViewCount": "1057", "Body": "

Beer varies widely, and one of the most noticeable differences when drinking is the carbonation level. What factors in the composition, brewing process, storage, etc affect the final level of carbonation?

\n", "OwnerUserId": "26", "LastActivityDate": "2017-03-19T14:24:13.047", "Title": "What factors affect the carbonation level of beer?", "Tags": "brewing carbonation", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"15"}} +{ "Id": "15", "PostTypeId": "1", "AcceptedAnswerId": "197", "CreationDate": "2014-01-21T20:45:28.747", "Score": "17", "ViewCount": "3867", "Body": "

Bottled beer is significantly different than the same label beer available on tap.

\n\n

How does bottled beer differ from draught beer? What is done to the bottled beer in order to prolong its shelf life in the bottle?

\n\n

And finally, why does draught beer taste so much better than bottled beer?

\n", "OwnerUserId": "25", "LastActivityDate": "2017-01-11T00:52:20.037", "Title": "Why doesn't bottled beer taste as good as draught beer?", "Tags": "brewing draught bottling", "AnswerCount": "3", "CommentCount": "3", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"16"}} +{ "Id": "16", "PostTypeId": "1", "AcceptedAnswerId": "32", "CreationDate": "2014-01-21T20:45:55.743", "Score": "21", "ViewCount": "3447", "Body": "

When going out for some beers, after a while, I seem to pee more than the amount of beer I drink. Is that true, and why is that?

\n\n

\"enter

\n", "OwnerUserId": "12", "LastActivityDate": "2017-10-01T23:19:54.877", "Title": "Why do I seem to pee out more beer than I drink?", "Tags": "drinking", "AnswerCount": "2", "CommentCount": "8", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"17"}} +{ "Id": "17", "PostTypeId": "2", "ParentId": "8", "CreationDate": "2014-01-21T20:45:57.743", "Score": "6", "Body": "

Ales and lagers are brewed with different types of yeast. Ale yeast ferments at the top of the brewing vat at a comfortable room temperature while lager yeast ferments at the bottom of the vat at a lower temperature. The \"low and slow\" lager fermentation brings out more complex flavors.

\n", "OwnerUserId": "5", "LastActivityDate": "2014-01-21T20:45:57.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"18"}} +{ "Id": "18", "PostTypeId": "2", "ParentId": "8", "CreationDate": "2014-01-21T20:47:17.840", "Score": "40", "Body": "

Ale yeast strains are best used at temperatures ranging from 10 to 25°C, though some strains will not actively ferment below 12°C (33). Ale yeasts are generally regarded as top-fermenting yeasts since they rise to the surface during fermentation, creating a very thick, rich yeast head. That is why the term \"top-fermenting\" is associated with ale yeasts. Fermentation by ale yeasts at these relatively warmer temperatures produces a beer high in esters, which many regard as a distinctive character of ale beers.

\n\n

Top-fermenting yeasts are used for brewing ales, porters, stouts, Altbier, Kölsch, and wheat beers. *

\n\n

Lager yeast strains are best used at temperatures ranging from 7 to 15°C. At these temperatures, lager yeasts grow less rapidly than ale yeasts, and with less surface foam they tend to settle out to the bottom of the fermenter as fermentation nears completion. This is why they are often referred to as \"bottom\" yeasts. The final flavour of the beer will depend a great deal on the strain of lager yeast and the temperatures at which it was fermented.

\n\n

Some of the lager styles made from bottom-fermenting yeasts are Pilsners, Dortmunders, Märzen, Bocks, and American malt liquors.*

\n\n

(All information from BeerAdvocate.)

\n", "OwnerUserId": "22", "LastEditorUserId": "5064", "LastEditDate": "2016-07-17T02:37:56.550", "LastActivityDate": "2016-07-17T02:37:56.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"19"}} +{ "Id": "19", "PostTypeId": "2", "ParentId": "5", "CreationDate": "2014-01-21T20:48:20.130", "Score": "26", "Body": "

It depends on the beer really. A good rule of thumb is darker beer should be served at a warmer temperature than lighter beer.

\n\n

For instance if you refrigerate all of your beers and then pull them out of the fridge and drink them instantly you will miss A LOT of the flavor complexity of pretty much every stout and porter you put to your lips.

\n\n

But, if you let the dark stuff warm up for just 15 minutes before you drink it (let it sit at room temp) a bunch of new flavors will appear that you never would have noticed otherwise.

\n\n

This doesn't work so well, in my experience, for lighter beers like pilsner, lager, or hefe-weisen. They really are meant to be drank cold and letting them get warm changes their flavor profile for the worse.

\n\n

Obviously there will always be personal preferences but, at a minimum I encourage you to try letting your darker beers warm up just a bit and see what a positive difference it makes.

\n\n

Here is a temperature guide from this article: Serving Temperature Guide. It categorizes different beers based on temps to serve at. These are basic rules of thumb and again you'll want to experiment and discover what temps you like your beers at the best.

\n", "OwnerUserId": "28", "LastEditorUserId": "5064", "LastEditDate": "2017-01-27T14:07:30.567", "LastActivityDate": "2017-01-27T14:07:30.567", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"20"}} +{ "Id": "20", "PostTypeId": "2", "ParentId": "12", "CreationDate": "2014-01-21T20:48:22.463", "Score": "3", "Body": "

It all depends on the beer really. Lagers are typically brewed longer than ales. Of the few brews I've made so far, I usually let them ferment for 2 weeks in the fermenter, then I bottle them and wait another 2 weeks.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T20:48:22.463", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"21"}} +{ "Id": "21", "PostTypeId": "1", "AcceptedAnswerId": "292", "CreationDate": "2014-01-21T20:48:46.880", "Score": "7", "ViewCount": "875", "Body": "

I frequently hear stories about people drinking their favorite pilsener, and not liking the other brand because \"they'll get a hangover when drinking that brand\".

\n\n

Is there a truth in this?

\n", "OwnerUserId": "12", "LastActivityDate": "2014-01-24T06:29:38.687", "Title": "Can one pilsener cause a hangover when another doesn't?", "Tags": "hangover drinking pilsener", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"22"}} +{ "Id": "22", "PostTypeId": "1", "AcceptedAnswerId": "26", "CreationDate": "2014-01-21T20:50:01.620", "Score": "68", "ViewCount": "5270", "Body": "

I understand the basic distinction for wine glasses: red wine glasses are shaped to help keep some of the aroma inside the glass, whereas whites don't. But shapes for beer glasses, such as pilsner vs a standard pint glass, just seem to be an aesthetic difference. Yet I've had people insist that glasses make a big difference for things like Belgian beer.

\n\n

Is there a sound reason to use the \"right\" glass for each kind of beer?

\n", "OwnerUserId": "29", "LastActivityDate": "2018-06-06T08:48:59.710", "Title": "Do different beer glass shapes really make a difference in taste?", "Tags": "glassware taste aroma", "AnswerCount": "5", "CommentCount": "3", "FavoriteCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"23"}} +{ "Id": "23", "PostTypeId": "2", "ParentId": "11", "CreationDate": "2014-01-21T20:50:43.560", "Score": "2", "Body": "

I suspect this really boils down to each persons' chemistry. IPA's don't have any real negative impact on me in terms of hangovers but Budweiser (as a prime example) has a much faster onset of hangover for me and I suffer far worse from it.

\n\n

The \"Ice Beers\" that became popular in the early 90's really caused me to have a lot of problems but, again, IPA's of all stripes typically don't bother me at all.

\n", "OwnerUserId": "28", "LastActivityDate": "2014-01-21T20:50:43.560", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"24"}} +{ "Id": "24", "PostTypeId": "2", "ParentId": "8", "CreationDate": "2014-01-21T20:52:07.243", "Score": "4", "Body": "

The primary difference is the yeast used to ferment the beer -- ales use yeasts strains which work at a warmer temperature (10-25 deg C) than lager yeasts strains (7-15 deg C). You may hear the terms \"top-fermenting\" for ale yeasts and \"bottom-fermenting\" for lagers, but I think that's more-or-less happen-stance -- the yeasts themselves are not inclined toward a particular altitude.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T20:52:07.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"25"}} +{ "Id": "25", "PostTypeId": "1", "AcceptedAnswerId": "39", "CreationDate": "2014-01-21T20:54:05.140", "Score": "10", "ViewCount": "321", "Body": "

My local growler shop regularly has a variety of stouts on tap, of which I usually pick Imperial.

\n\n

What, specifically, distinguishes an Imperial stout from other kinds of stouts (say a regular stout, an oatmeal stout etc)?

\n", "OwnerUserId": "39", "LastEditorUserId": "20", "LastEditDate": "2014-01-21T20:55:34.443", "LastActivityDate": "2014-01-22T00:26:46.840", "Title": "What specific characteristics distinguish an imperial stout from other kinds of stouts?", "Tags": "imperal-stout", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"26"}} +{ "Id": "26", "PostTypeId": "2", "ParentId": "22", "CreationDate": "2014-01-21T20:57:09.503", "Score": "46", "Body": "

Yes. Taste is really smell, and different glasses can capture aromas differently. Furthermore, different aromas may be more or less present dependent upon temperature, and a glass may be crafted to be held a particular way (gathering more or less heat from your hand). The same is true for wine glasses.

\n\n

That said, how much of a difference it makes to you is what's important. Going back to the wine comparison, I can sometimes tell the difference between different glasses, but not consistently. So it's not the most important thing.

\n\n

Now that that's said, there has been some informal, perhaps less than perfectly scientific studies, including a blind test. Beer advocate provides some more detailed information. Some of my local bars carry stemware for specific European beers, and I know of one stateside brewery, Black Shirt Brewing in Denver, which really wants you to stick your nose up in it (to good effect, in my experience).

\n", "OwnerUserId": "27", "LastEditorUserId": "27", "LastEditDate": "2014-01-22T00:27:02.690", "LastActivityDate": "2014-01-22T00:27:02.690", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"27"}} +{ "Id": "27", "PostTypeId": "2", "ParentId": "14", "CreationDate": "2014-01-21T20:57:40.213", "Score": "6", "Body": "

There are two main ways to carbonate beer.

\n\n

Force carbonation - This is where CO2 is forced into the fermented beer. Because of the pressure (and the temperature at which it is done) the CO2 will dissolve into the beer solution. The fizz that happens when you open a beer is the CO2 coming out of solution. (Technically you can re-carbonate flat beer!)

\n\n

Natural carbonation - All beer has SOME yeast present. Home-brewers that bottle will actually pour a little bit of sugar into the racked beer before bottling. The yeast that is present will re-activate and eat the sugar. One of the bi-products is CO2. Because the beer is bottled and the CO2 has nowhere to go, it will dissolve into solution. This is why you will often see little yeast cakes in the bottom of home-brewer's bottles.

\n\n

There are some beers that used forced-nitrogen to nitrogenate (if that is the appropriate word) their beers.

\n\n

TL;DR - Temperature, methods of carbonating, storing beer can all affect carbonation.

\n", "OwnerUserId": "22", "LastActivityDate": "2014-01-21T20:57:40.213", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"28"}} +{ "Id": "28", "PostTypeId": "1", "AcceptedAnswerId": "136", "CreationDate": "2014-01-21T20:58:13.430", "Score": "20", "ViewCount": "49916", "Body": "

I know what makes an IPA an IPA, but what are the unique characteristics of it's common variants? To be specific, the ones I'm interested in are Double IPA and Black IPA, but general differences between any other styles would be welcome too.

\n", "OwnerUserId": "2", "LastEditorUserId": "2", "LastEditDate": "2014-01-22T05:50:20.457", "LastActivityDate": "2014-01-22T05:50:20.457", "Title": "What are the differences between an IPA and its variants?", "Tags": "style ipa", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"29"}} +{ "Id": "29", "PostTypeId": "1", "CreationDate": "2014-01-21T20:58:46.433", "Score": "3", "ViewCount": "37", "Body": "

I'm trying to understand what I can assume about an \"Imperial Stout\" relative to a \"Stout,\" etc.

\n\n

I know anecdotally that they are \"heavier,\" but online sources seem to lack agreement on a specific meaning, with some suggesting that they're hoppier, others saying they're higher alcohol content, and some using vague terms like \"full-bodied\".

\n\n

Does \"imperial\" have a real, agreed-upon meaning, or is it just a marketing/description modifier that everyone uses differently?

\n", "OwnerUserId": "38", "LastActivityDate": "2014-01-21T20:58:46.433", "Title": "What does the term \"imperial\" represent in beer styles or names?", "Tags": "terminology", "AnswerCount": "0", "CommentCount": "1", "ClosedDate": "2014-01-21T21:04:25.230", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"31"}} +{ "Id": "31", "PostTypeId": "1", "AcceptedAnswerId": "241", "CreationDate": "2014-01-21T20:59:16.810", "Score": "9", "ViewCount": "996", "Body": "

Beer in a growler typically lasts for 24 hours or less, depending on how full the growler is, how many times it's opened over that period of time, and how efficient the seal is on the lid. Are there ways of prolonging the life in a growler or at least seal it properly?

\n", "OwnerUserId": "25", "LastEditorUserId": "73", "LastEditDate": "2014-01-22T23:43:26.450", "LastActivityDate": "2014-01-22T23:43:26.450", "Title": "How can I prolong the life of beer in a growler?", "Tags": "preservation growlers freshness", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"32"}} +{ "Id": "32", "PostTypeId": "2", "ParentId": "16", "CreationDate": "2014-01-21T20:59:40.990", "Score": "27", "Body": "

Alcohol is a diuretic. According to this article, 1 gram of alcohol will increase urine excretion by 10ml. Combine that with this CDC article stating that a standard 12 ounce (354ml) beer has 14 grams of alcohol, your can expect to pee 494ml, or 16.75 ounces per 12 ounce bottle.

\n\n

The graphic would be more accurate with you drinking three beers but peeing four.

\n", "OwnerUserId": "5", "LastActivityDate": "2014-01-21T20:59:40.990", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"33"}} +{ "Id": "33", "PostTypeId": "1", "AcceptedAnswerId": "42", "CreationDate": "2014-01-21T21:00:23.103", "Score": "37", "ViewCount": "2887", "Body": "

Porters and stouts seem very similar and sometimes stores and restaurants group them together as if they're two different names for the same thing.

\n\n

Is there a difference and what is it?

\n", "OwnerUserId": "36", "LastEditorUserId": "73", "LastEditDate": "2015-11-12T09:56:01.547", "LastActivityDate": "2016-02-15T14:01:01.503", "Title": "What's the difference between a porter and a stout?", "Tags": "stout classification porter", "AnswerCount": "4", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"34"}} +{ "Id": "34", "PostTypeId": "2", "ParentId": "25", "CreationDate": "2014-01-21T21:02:16.327", "Score": "5", "Body": "

The term \"imperial\" generally means \"strong\", as in having a higher ABV. You may also find \"Imperial IPAs\" (aka IIPAs, or sometimes Double or Triple IPAs), and again, they are boosting the alcohol content. The actual ingredients (hops, or oatmeal, as per your example) do not come into play, except to balance the flavors against the malt.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T21:02:16.327", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"35"}} +{ "Id": "35", "PostTypeId": "1", "AcceptedAnswerId": "44", "CreationDate": "2014-01-21T21:02:59.240", "Score": "17", "ViewCount": "532", "Body": "

Some beers (for example, Guinness) are marked as 'not suitable for vegans'. What is in the beer such that this is the case?

\n", "OwnerUserId": "7", "LastEditorUserId": "43", "LastEditDate": "2014-01-21T21:22:24.807", "LastActivityDate": "2014-01-22T06:24:58.930", "Title": "Why are some beers non-vegan?", "Tags": "brewing ingredients", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"36"}} +{ "Id": "36", "PostTypeId": "1", "AcceptedAnswerId": "218", "CreationDate": "2014-01-21T21:03:10.783", "Score": "5", "ViewCount": "1320", "Body": "

Is there a widely accepted glass shape/type for Saison's (and if so, what is it)? Is a different glass used for French Saison's vs. Belgian Saison's vs. other common Saison styles?

\n", "OwnerUserId": "42", "LastActivityDate": "2014-01-22T18:55:41.557", "Title": "What glass shape is most commonly used for Saison's?", "Tags": "glassware saison", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"37"}} +{ "Id": "37", "PostTypeId": "1", "AcceptedAnswerId": "48", "CreationDate": "2014-01-21T21:03:35.850", "Score": "11", "ViewCount": "431", "Body": "

Sometimes I buy beer more quickly than I can drink it -- a sad state of affairs, I know, but it happens. I know that some beers are best drunk within a few weeks and others can be fine for months, but I don't know which are which. What are the rules of thumb for this? How can I determine how long a bottle of beer will keep before starting to lose its taste? (Assume appropriate storage.)

\n", "OwnerUserId": "43", "LastActivityDate": "2014-01-22T15:24:45.767", "Title": "How do I determine the shelf life of beer?", "Tags": "storage age", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"38"}} +{ "Id": "38", "PostTypeId": "1", "AcceptedAnswerId": "71", "CreationDate": "2014-01-21T21:04:44.983", "Score": "20", "ViewCount": "98656", "Body": "

As the well known rhyme reminds us, drinking beer after wine is a bad idea. Having made the mistake during my student years more than once and regretting it, why is it that consuming these two beverages in the wrong order causes such effects?

\n", "OwnerUserId": "7", "LastActivityDate": "2022-01-14T10:04:04.907", "Title": "Why is drinking beer after wine a bad idea?", "Tags": "inebriation", "AnswerCount": "6", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"39"}} +{ "Id": "39", "PostTypeId": "2", "ParentId": "25", "CreationDate": "2014-01-21T21:04:54.250", "Score": "9", "Body": "

The first Imperial Stout was made by Thrale's Brewery to export to the Russian royalty, it had high alcoholic content so that it could survive the trip gracefully [1]. Since then Imperial has been used as a prefix to signify beers which are of higher alcohol volume than their normal variants, and luckily they're no longer just for Russian royalty.

\n", "OwnerUserId": "2", "LastEditorUserId": "2", "LastEditDate": "2014-01-22T00:26:46.840", "LastActivityDate": "2014-01-22T00:26:46.840", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"40"}} +{ "Id": "40", "PostTypeId": "1", "AcceptedAnswerId": "41", "CreationDate": "2014-01-21T21:05:17.293", "Score": "9", "ViewCount": "764", "Body": "

Stouts are stout, Pale Ales use pale malt, but where did the name porter come from?

\n", "OwnerUserId": "26", "LastEditorUserId": "407", "LastEditDate": "2014-02-05T15:34:48.397", "LastActivityDate": "2014-02-05T15:34:48.397", "Title": "Why is it called \"porter\"?", "Tags": "history terminology porter varieties", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"41"}} +{ "Id": "41", "PostTypeId": "2", "ParentId": "40", "CreationDate": "2014-01-21T21:05:17.293", "Score": "11", "Body": "

There are a few theories out there, and their veracity, like that of most historical \"facts\", is hotly debated.

\n\n

One theory begins in 1722 when Ralph Harwood, a London brewer, created a beer called Entire. For some time, working folk had been drinking a blend of beer, ale, and strong beer, which pubs would mix to balance out their stocks and maintain acceptable flavor.

\n\n

Entire was a pre-mixed version, brewed by Hardwood then sold and delivered to pubs. Prior to this point, each pub had mixed their own. In addition to economies of scale, Harwood's method allowed for aging of the finished product. Historians theorize that the name porter came about because of the porters who worked at the markets and delivered the final product to the pubs. A variation of this theory suggests that porter simply refers to the working class occupations of those who drank the concoction.

\n\n

Another theory suggests that porter comes from the Netherlands, where a beer called poorter was being made as early as the 1300s. The Dutch were prolific traders, and cultural transfer could easily have occurred. The term poorter originally concerned inhabitants of walled cities and may also have been related to social station.

\n", "OwnerUserId": "26", "LastEditorUserId": "26", "LastEditDate": "2014-01-21T21:10:21.553", "LastActivityDate": "2014-01-21T21:10:21.553", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"42"}} +{ "Id": "42", "PostTypeId": "2", "ParentId": "33", "CreationDate": "2014-01-21T21:06:34.833", "Score": "25", "Body": "

Beer Connoisseur Online answers this pretty thoroughly in an article.

\n\n

The TLDR: is that \"...originally a stout was a strong version of a porter. Today, the difference is whatever you want it to be.\"

\n\n

For an interesting history on the term Stout and the style of beer, you can check out this history of stout article provided by Eric Deloak. Similarly you can read a history of porter article written by the same author: Gregg Smith

\n", "OwnerUserId": "28", "LastEditorUserId": "4880", "LastEditDate": "2015-12-26T18:57:02.757", "LastActivityDate": "2015-12-26T18:57:02.757", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"43"}} +{ "Id": "43", "PostTypeId": "2", "ParentId": "35", "CreationDate": "2014-01-21T21:07:40.557", "Score": "5", "Body": "

Some beer use animal by-products in their production. Guinness is popular example: isinglass, a swim bladder, is as a filter or fining agent.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T21:07:40.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"44"}} +{ "Id": "44", "PostTypeId": "2", "ParentId": "35", "CreationDate": "2014-01-21T21:08:12.427", "Score": "16", "Body": "

There are two main ingredients in beer that might cause them to be unsuitable for vegans. The first one might be fairly obvious. Honey is sometimes used as a sweetener, especially in meade, but certainly in other beers.

\n\n

However, the main cause is a fining agent called Isinglass that is made from ground swim bladders of fish.

\n", "OwnerUserId": "39", "LastActivityDate": "2014-01-21T21:08:12.427", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"45"}} +{ "Id": "45", "PostTypeId": "2", "ParentId": "7", "CreationDate": "2014-01-21T21:08:21.813", "Score": "2", "Body": "

Absolutely, it depends on the ABV like any other alcoholic beverage. You can drink Natty-lights all night like college kids or you can get your hands on one of these bad boys, at 67.5% abv. I highly doubt carbonation has anything to do with it.

\n\n

Personally, I prefer to drink beer for the taste, not to get drunk. So I'll experiment among many different craft brews.

\n\n

---- edit ----

\n\n

Started answering before I saw your edit. I'll keep this up for education's sake.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T21:08:21.813", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"46"}} +{ "Id": "46", "PostTypeId": "2", "ParentId": "2", "CreationDate": "2014-01-21T21:11:41.443", "Score": "8", "Body": "

I'm not sure about when the first beer was made, but the oldest existing brewery is Weihenstephan, which dates back to 1040 AD, a good 26 years before the battle of Hastings.

\n\n

They have not only lager, but a Hefeweizen, Dunkel, and a few other brews.

\n", "OwnerUserId": "20", "LastActivityDate": "2014-01-21T21:11:41.443", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"47"}} +{ "Id": "47", "PostTypeId": "1", "CreationDate": "2014-01-21T21:12:49.763", "Score": "4", "ViewCount": "302", "Body": "

I recently encountered a beer that was utterly rank and had an awful aroma. I tasted a small sip, but had to toss the rest. Investigating the label on this beer, I discovered it had an expiry date of Dec. 2012, making it just over one year old.

\n\n

This beer's alcohol content was 5.6% ABV, and it clearly did not have a lengthy self life.

\n\n

Contrastingly, a local brewer annually brews an ice bock with an alcohol content of 9.5% ABV, and they state that because of this high alcohol content, it's suitable for aging (and it ages well, to boot).

\n\n

What is the minimum alcohol content/ABV percentage required in order to consider a beer safe/suitable for aging? If pasteurization plays a role, please advise.

\n", "OwnerUserId": "25", "LastEditorUserId": "25", "LastEditDate": "2014-01-21T21:18:34.267", "LastActivityDate": "2014-01-21T21:22:15.623", "Title": "At what point/percentage can beer properly \"age\"?", "Tags": "aging abv", "AnswerCount": "1", "CommentCount": "1", "ClosedDate": "2014-01-21T22:07:35.783", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"48"}} +{ "Id": "48", "PostTypeId": "2", "ParentId": "37", "CreationDate": "2014-01-21T21:13:43.460", "Score": "8", "Body": "

There are some rules of thumb. First, if it's a hop-oriented beer (pales, IPAs), drink sooner than later, as the hop aromas and flavor will fade over time. Second, the higher the alcohol by volume (ABV, think imperial stouts), the better chance it has of lasting longer.

\n\n

That said, it may be best to ask the brewer what the recommended shelf life is for any specific beer.

\n", "OwnerUserId": "27", "LastEditorUserId": "116", "LastEditDate": "2014-01-22T15:24:45.767", "LastActivityDate": "2014-01-22T15:24:45.767", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"49"}} +{ "Id": "49", "PostTypeId": "2", "ParentId": "38", "CreationDate": "2014-01-21T21:13:50.797", "Score": "6", "Body": "

EDIT to add sources (original answer below)

\n

Mythbusters address this in episode 127 - http://mythresults.com/dirty-vs-clean-car - the rate of consumption is what matters, not the order

\n
\n

A hangover caused by beer is less severe than one caused by a mixture of beer and liquor.

\n

BUSTED

\n

To perform this test, Tory and Grant would have to eat the same food, drink their alcohol at the same time, and sleep for the same length of time in the warehouse for consistent results. Kari (who could not take part because of her pregnancy) then devised a battery of tests to measure dehydration, memory, light/sound/motion sensitivity, and coordination. Without having drunk alcohol, Tory and Grant performed well on their control test. They then performed the beer test, with Tory drinking 14 cans of beer and Grant drinking six. They both performed significantly worse than the control tests, signifying they were badly hung over. They then repeated the test with a mixture of beer and liquor, making sure to drink an equivalent amount of alcohol as in the first test. The next morning, Tory and Grant improved significantly and felt much better than in the previous test. Thus, the Build Team declared the myth busted.

\n
\n

NYTimes also addressed this back in 2006 - http://www.nytimes.com/2006/02/07/health/the-claim-mixing-types-of-alcohol-makes-you-sick.html

\n
\n

"The pattern, more often, is that people will have beer and then move on to liquor at the end of the night, and so they think it's the liquor that made them sick," he continued. "But simply mixing the two really has nothing to do with it."

\n
\n
\n

In general, the ABV of wine is higher than that of beer, so if you consume a higher ABV after a lower ABV, you will feel its effects faster, but if you're still drinking at the same rate, you won't notice you've had any effect as readily as if you drank at the slower rate more generally associated with the higher ABV beverage.

\n", "OwnerUserId": "49", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-02-03T17:28:59.623", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"50"}} +{ "Id": "50", "PostTypeId": "1", "AcceptedAnswerId": "140", "CreationDate": "2014-01-21T21:13:53.097", "Score": "26", "ViewCount": "106794", "Body": "

In my fraternity days, there was a constant fear of beer (typically kegged but also bottled) getting \"skunked\" as a result of warming up and cooling down too many times, possibly even once.

\n\n

Do non-extreme temperature changes such as moving a beer back and forth from a counter to a refrigerator cause perceptible changes to beer? If not, what about more extreme changes, such as sitting in the bed of a truck or a trunk? I'm aware that light has a degrading affect on it's own, so let's assume this beer is in a keg or a light-proof box.

\n", "OwnerUserId": "5", "LastEditorUserId": "5", "LastEditDate": "2014-01-21T23:22:21.557", "LastActivityDate": "2018-08-09T15:38:38.173", "Title": "Will temperature changes cause a beer to \"skunk\" or otherwise spoil?", "Tags": "storage", "AnswerCount": "6", "CommentCount": "1", "FavoriteCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"51"}} +{ "Id": "51", "PostTypeId": "2", "ParentId": "35", "CreationDate": "2014-01-21T21:14:00.467", "Score": "3", "Body": "

As you might expect, it's all got to do with the ingredients. I'm a vegetarian myself, but not a vegan. So I do eat honey and dairy. With that said, some beers would not be considered vegan if they use those ingredients (milk stouts for instance use lactose).

\n\n

However, an example of a non-vegetarian beer would be the oyster stout, which uses oysters in the brewing process.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T21:14:00.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"52"}} +{ "Id": "52", "PostTypeId": "2", "ParentId": "7", "CreationDate": "2014-01-21T21:14:14.543", "Score": "5", "Body": "

The process of becoming drunk involves becoming dehydrated. So the higher the ABV, and less water you're taking on, the faster you'll feel the effects.

\n\n

This is why shots get you drunk very quickly: there is little to no extra water in the mix. Other ingredients can add to this affect, and as I've personally noticed, some beers can produce very different \"drunk experiences\" than others - just like being drunk off wine, beer, shots, or mixed drinks can produce different results.

\n\n

So, absolutely if you drank half a beer with twice the ABV while your friend drank 1 beer with half the ABV, you'd probably feel drunk faster than him. Assuming you're drinking at the same pace. Less water.

\n", "OwnerUserId": "50", "LastActivityDate": "2014-01-21T21:14:14.543", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"53"}} +{ "Id": "53", "PostTypeId": "1", "AcceptedAnswerId": "65", "CreationDate": "2014-01-21T21:14:30.290", "Score": "22", "ViewCount": "3276", "Body": "

Various microbreweries make chocolate stout that does indeed, to varying degrees, taste of chocolate. Does it really contain chocolate, and how is chocolate used in the brewing process?

\n", "OwnerUserId": "53", "LastActivityDate": "2014-12-09T13:43:48.883", "Title": "Does chocolate stout contain real chocolate?", "Tags": "stout ingredients", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"54"}} +{ "Id": "54", "PostTypeId": "1", "CreationDate": "2014-01-21T21:16:21.083", "Score": "9", "ViewCount": "1063", "Body": "

Are there any potential health risk connected with drinking beer from plastic PET bottles?

\n\n

The beer in many countries, including Germany, is widely available in plastic recyclable bottles. Does it have any negative impact on health?

\n", "OwnerUserId": "21", "LastActivityDate": "2014-01-21T21:35:15.343", "Title": "Beer in plastic bottles and health aspects", "Tags": "bottling health", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"55"}} +{ "Id": "55", "PostTypeId": "1", "CreationDate": "2014-01-21T21:16:34.620", "Score": "14", "ViewCount": "12084", "Body": "

Pork Slap beer indicates that it's \"all malt\" in the way that implies an official distinction. What does \"all malt\" indicate, assuming there's a standard requirement to use the term accurately.

\n\n

\"enter

\n", "OwnerUserId": "38", "LastActivityDate": "2018-04-20T15:06:40.633", "Title": "What does \"all malt\" mean?", "Tags": "terminology", "AnswerCount": "3", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"56"}} +{ "Id": "56", "PostTypeId": "2", "ParentId": "53", "CreationDate": "2014-01-21T21:17:20.120", "Score": "7", "Body": "

Yes. Typically chocolate stout does contain chocolate. I've typically added chocolate to my home-brew during the boil phase (since it adds more sugars and I want the chocolate to melt).

\n", "OwnerUserId": "28", "LastActivityDate": "2014-01-21T21:17:20.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"57"}} +{ "Id": "57", "PostTypeId": "1", "AcceptedAnswerId": "72", "CreationDate": "2014-01-21T21:17:49.747", "Score": "17", "ViewCount": "1870", "Body": "

How much of an impact does the water (minerals/quality/distilled) have on a beer?

\n", "OwnerUserId": "52", "LastEditorUserId": "52", "LastEditDate": "2014-02-22T10:01:19.697", "LastActivityDate": "2014-03-14T01:20:09.540", "Title": "How much of an impact does the water have on a beer?", "Tags": "brewing taste water", "AnswerCount": "5", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"58"}} +{ "Id": "58", "PostTypeId": "1", "CreationDate": "2014-01-21T21:17:52.263", "Score": "5", "ViewCount": "215", "Body": "

Beer is commonly bottled in plastic bottles in Germany. Does drinking beer from plastic have some negative impact on beer taste?

\n\n

Or are the materials from which the bottles are made chosen so that they don't interact chemically with beer, or in any way change the taste?

\n", "OwnerUserId": "21", "LastEditorUserId": "187", "LastEditDate": "2018-04-20T15:03:58.590", "LastActivityDate": "2018-04-20T15:03:58.590", "Title": "Impact of bottling in plastic on beer taste", "Tags": "bottling taste", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"59"}} +{ "Id": "59", "PostTypeId": "1", "AcceptedAnswerId": "97", "CreationDate": "2014-01-21T21:20:42.220", "Score": "10", "ViewCount": "19644", "Body": "

In the UK at least, a great many beers are marketed with a regular version and a fancier (more expensive) 'export' version. For example: Carlsberg and Carlsberg 'Export'. Is there any reason why the imported beer might be reasonably different (such as the legality of certain brewing methods outside of the UK) or is this just marketing fluff?

\n", "OwnerUserId": "7", "LastEditorUserId": "407", "LastEditDate": "2014-02-05T15:34:44.883", "LastActivityDate": "2020-08-28T07:35:54.813", "Title": "What's the difference between an \"export\" beer and a regular beer from the same brewer?", "Tags": "terminology lager", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"60"}} +{ "Id": "60", "PostTypeId": "1", "CreationDate": "2014-01-21T21:21:39.010", "Score": "4", "ViewCount": "584", "Body": "

Does drinking yeast beer (known in Germany als Hefe-Weissbier) have any potential influence on gastric problems?

\n\n

Yeast can become active in intestines, starting there fermentation processes and causing bloating. When such symptoms occur, is that the effect of yeast activity, or it's rather some kind of food intolerance?

\n", "OwnerUserId": "21", "LastActivityDate": "2016-04-08T13:32:13.527", "Title": "Yeast beer and the gastric problems", "Tags": "health yeast", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"61"}} +{ "Id": "61", "PostTypeId": "1", "AcceptedAnswerId": "89", "CreationDate": "2014-01-21T21:22:12.657", "Score": "8", "ViewCount": "9060", "Body": "

Whats the difference between a bitter and an Ale? Is it the manufacturing process or the ingredients that make these different drinks?

\n", "OwnerUserId": "57", "LastActivityDate": "2014-01-21T21:52:29.373", "Title": "Difference between Ale and Bitter", "Tags": "ale", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"62"}} +{ "Id": "62", "PostTypeId": "2", "ParentId": "47", "CreationDate": "2014-01-21T21:22:15.623", "Score": "2", "Body": "

Aging, from my experience, involves the heavy proteins settling to the bottom of the bottle. Filtered beer typically doesn't need to be aged because all of that is already removed. You can consider this \"pre aged\" like a shirt may be \"pre shrunk\". Best not to buy with the assumption that it will get any smaller (or improve with time).

\n\n

Much of the time, aging allows the beer to mellow out a bit. I find darker beers benefit from this the most, but it really depends on the type of beer. Lagers, stouts, porters, have to age longer than pilsners and ales, as a general rule. But whether the brewer has begun or simulated this process is unknown. I guess it's best to follow the instructions on the bottle, or look up the bottler and see if they have recommendations.

\n", "OwnerUserId": "50", "LastActivityDate": "2014-01-21T21:22:15.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"63"}} +{ "Id": "63", "PostTypeId": "1", "AcceptedAnswerId": "75", "CreationDate": "2014-01-21T21:22:24.927", "Score": "18", "ViewCount": "1804", "Body": "

Guinness is sold in bottles and cans with special nitrogen widgets; the taps are specially rigged to have a two-step pouring process; heck, there's even a certificate given to people who learn how to \"pour the perfect pint\" at the Guinness factory in Dublin. My question is: what makes Guinness so special? Why aren't these tactics used by other stout (or similar variants) producers?

\n", "OwnerUserId": "56", "LastActivityDate": "2015-01-20T15:34:34.440", "Title": "Why does Guinness have a special pouring process / bottle, while other stouts do not?", "Tags": "bottling stout draught pouring", "AnswerCount": "3", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"64"}} +{ "Id": "64", "PostTypeId": "1", "AcceptedAnswerId": "104", "CreationDate": "2014-01-21T21:22:35.577", "Score": "22", "ViewCount": "892", "Body": "

Sometimes, companies offer the same beer in bottles and in cans. Everything else being equal, should I go for the bottle or the can? I know that e.g. Guinness have their \"floating widget\" in their cans that releases nitrogen when you open it, but assume that this isn't the case.

\n\n

In particular, I'm looking for the effects the inner coating/material of cans has on beer.

\n", "OwnerUserId": "53", "LastEditorUserId": "53", "LastEditDate": "2014-01-21T21:28:56.820", "LastActivityDate": "2019-05-23T16:58:42.523", "Title": "Should I get beer in bottles or in cans?", "Tags": "bottling storage", "AnswerCount": "3", "CommentCount": "5", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"65"}} +{ "Id": "65", "PostTypeId": "2", "ParentId": "53", "CreationDate": "2014-01-21T21:23:03.670", "Score": "19", "Body": "

It depends on the brew really; some do and others do not. More often than not, the chocolate flavor comes from the techniques used to roast the malts rather than chocolate itself. Some brewers will add additional chocolate to enhance the chocolate flavor a bit, but it generally doesn't get its flavor primarily from the chocolate. The same is true for coffee stouts.

\n\n

As a side note, I've recently tried a smoked imperial IPA (Runaway Smoked Ferry Imperial IPA) from the Port Jeff Brewing Company, a local microbrewery. I swear to God, it tasted like bacon! But there was not an ounce of bacon in it as confirmed by the brewmaster.

\n", "OwnerUserId": "31", "LastEditorUserId": "31", "LastEditDate": "2014-01-21T22:14:11.983", "LastActivityDate": "2014-01-21T22:14:11.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"67"}} +{ "Id": "67", "PostTypeId": "2", "ParentId": "57", "CreationDate": "2014-01-21T21:24:56.133", "Score": "1", "Body": "

Beer might be completely undrinkable if the water is poor quality. Usually it is ok to use your own tap water, but if it is softened, you'll want to buy bottled water, as the added sodium from the softener will ruin your beer.

\n\n

I personally use purchased water from the grocery store. Usually 50% distilled, 50% \"spring\". Though honestly it's probably all tap water from somewhere else.

\n", "OwnerUserId": "50", "LastActivityDate": "2014-01-21T21:24:56.133", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"68"}} +{ "Id": "68", "PostTypeId": "2", "ParentId": "64", "CreationDate": "2014-01-21T21:25:53.040", "Score": "6", "Body": "

As you might expect, cans can impart a metallic flavor on some beer, but on the flip-side, they are much less prone to skunking. So if you're looking to store the beer for a while in a cool, dark place, I'd say bottle. However, if you plan on keeping it in a light place or outdoors, a can is probably your best bet.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T21:25:53.040", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"69"}} +{ "Id": "69", "PostTypeId": "1", "AcceptedAnswerId": "134", "CreationDate": "2014-01-21T21:28:53.190", "Score": "21", "ViewCount": "20350", "Body": "

I know that lactose is used in the brewing process for milk stout, but I don't know if it remains there by the end of the brewing process. I'm very lactose intolerant, and want to know if I need to take a lactase pill if I drink a milk stout.

\n", "OwnerUserId": "63", "LastActivityDate": "2020-02-22T22:10:26.313", "Title": "Does milk stout actually contain lactose?", "Tags": "stout", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"70"}} +{ "Id": "70", "PostTypeId": "1", "AcceptedAnswerId": "88", "CreationDate": "2014-01-21T21:29:01.690", "Score": "21", "ViewCount": "1588", "Body": "

In some of the questions on this site, I've seen the word 'skunking' thrown around. What does it mean? I'm assuming it's a process that causes beer to go bad, and if so, what causes this process?

\n", "OwnerUserId": "7", "LastActivityDate": "2014-01-21T21:47:11.200", "Title": "What is 'skunking'?", "Tags": "terminology skunking", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"71"}} +{ "Id": "71", "PostTypeId": "2", "ParentId": "38", "CreationDate": "2014-01-21T21:29:39.637", "Score": "10", "Body": "

Beer contains a lot of CO2, and CO2 causes the alcohol to 'hit to the head' much faster. This is why champagne has such exhilaration (Rausch) effect.

\n\n

It's not a good idea to drink any high-CO2 drink after drinking wine or stronger alcohols, and even more discouraged is mixing carbonated water with vodka, for example. Many people have heavily regret such mixing.

\n\n

As well, it is said you should never drink lighter alcohols after stronger. You can start with beer, than after an hour/2 drink some wine, rest and drink vodka. Never opposite. But the best is to keep one genre of alcohol on one evening. At least so are saying people in Poland.

\n", "OwnerUserId": "21", "LastEditorUserId": "21", "LastEditDate": "2014-01-21T21:41:05.290", "LastActivityDate": "2014-01-21T21:41:05.290", "CommentCount": "10", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"72"}} +{ "Id": "72", "PostTypeId": "2", "ParentId": "57", "CreationDate": "2014-01-21T21:30:35.077", "Score": "13", "Body": "

Most of beer is water, so it is vitally important.

\n\n

Here in Atlanta, we have some of the better tap water compared to many cities, but Monday Night Brewing in particular takes all minerals and chemicals out of the water and adds back in the appropriate properties to match the style of beer that they are trying to brew.

\n\n

They emulate the water from the origin of the beer style. Just consider that anything but the most pure form of water will impart some taste in your beer good or bad and is worth being aware of.

\n", "OwnerUserId": "55", "LastActivityDate": "2014-01-21T21:30:35.077", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"73"}} +{ "Id": "73", "PostTypeId": "1", "CreationDate": "2014-01-21T21:32:12.413", "Score": "5", "ViewCount": "107", "Body": "

It is said that the taste 'flies away' from an opened beer, and if the bottle is left open too long, it doesn't taste good next day.

\n\n

Has it actually been measured how long it takes before the taste 'flies away'?

\n", "OwnerUserId": "21", "LastEditorUserId": "7", "LastEditDate": "2014-01-21T21:34:15.437", "LastActivityDate": "2014-01-21T22:37:55.943", "Title": "How long does it take before the taste 'flies away'", "Tags": "taste", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"74"}} +{ "Id": "74", "PostTypeId": "1", "CreationDate": "2014-01-21T21:32:39.867", "Score": "7", "ViewCount": "1380", "Body": "

Some states (in America) have ridiculous laws about what types of beer can be sold in various places. Often times certain types of stores can only sell \"3 2 beer,\" or beer with no more than 3.2% ABV.

\n\n

So various brewers make special, reduced-alcohol batches meeting this requirement.

\n\n

How do brewers achieve this reduction in alcohol, and does it affect the taste of the resulting beer?

\n", "OwnerUserId": "20", "LastActivityDate": "2014-05-29T09:44:03.633", "Title": "Does reduced-alcohol beer taste differently?", "Tags": "abv 3.2-beer", "AnswerCount": "2", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"75"}} +{ "Id": "75", "PostTypeId": "2", "ParentId": "63", "CreationDate": "2014-01-21T21:33:04.113", "Score": "11", "Body": "

Guinness is \"carbonated\" with nitrogen, where most beers use carbon dioxide. This requires different hardware, bottling equipment, etc.

\n\n

If you've ever witnessed the appearance of a perfectly poured Guinness, and paid more than $5 USD for it, you'll understand why. It's partly about presentation. As one of the oldest beers on the market, it requires us to jump through some hoops to ensure we are enjoying it correctly. In short: I think it's mostly marketing!

\n", "OwnerUserId": "50", "LastActivityDate": "2014-01-21T21:33:04.113", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"76"}} +{ "Id": "76", "PostTypeId": "1", "AcceptedAnswerId": "117", "CreationDate": "2014-01-21T21:33:38.903", "Score": "10", "ViewCount": "684", "Body": "

What do I need to be paying attention to when I pour a stout and how do I tell if I got it right? Usually this applies to either \"regular\" stouts or chocolate stouts.

\n", "OwnerUserId": "36", "LastEditorUserId": "36", "LastEditDate": "2014-01-21T22:02:12.187", "LastActivityDate": "2014-01-24T06:13:50.857", "Title": "How do I tell if I poured a stout correctly?", "Tags": "stout serving", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"77"}} +{ "Id": "77", "PostTypeId": "2", "ParentId": "54", "CreationDate": "2014-01-21T21:35:15.343", "Score": "4", "Body": "

Plastic food packaging in general is usually lined with Bisphenol A (aka. BPA), as are some canned goods, which is a rather controversial chemical. It's been linked to cancer, sexual dysfunction, and other ailments. So I try to avoid it whenever possible and buy my food in glass jars. I can only imagine how much BPA is dissolved into alcoholic beverages which are bottled in plastic or cans, being that alcohol is corrosive. I learned that lesson when I tried cleaning my GameBoy with rubbing alcohol as a kid. So I try to avoid alcohol bottled in plastic and canned alcohol as well.

\n\n

The thing you have to realize is that plastic isn't really a solid, but a very viscous liquid. Glass is also a liquid, but it's much more viscous than plastic. That's why if you've ever been in a building that's a couple hundred years old, the glass on the windows is thicker at the bottom of the glass panes. Since both are liquids, they're obviously going to get into your drink. However, glass is a natural substance while plastic is not, so I trust it more.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T21:35:15.343", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"78"}} +{ "Id": "78", "PostTypeId": "2", "ParentId": "57", "CreationDate": "2014-01-21T21:35:38.017", "Score": "8", "Body": "

Water is extremely important. When touring Brooklyn Brewery, the brewers went on and on about how great it is for them to have access to the NYC water supply.

\n\n

During brewing, the quality of the water is important because the minerals can affect a beer recipe greatly.

\n", "OwnerUserId": "54", "LastActivityDate": "2014-01-21T21:35:38.017", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"80"}} +{ "Id": "80", "PostTypeId": "2", "ParentId": "70", "CreationDate": "2014-01-21T21:38:00.027", "Score": "4", "Body": "

Some of the mocelues in the beer are broken down by ultraviolet light and bind to sulfur atoms. This causes Skunking. This is why some bottle six packs have a tall sleeve and beer keeps longer in a darker colored bottle. A common misperception is warming and cooling over and over again causes Skunking.

\n", "OwnerUserId": "65", "LastEditorUserId": "65", "LastEditDate": "2014-01-21T21:43:56.647", "LastActivityDate": "2014-01-21T21:43:56.647", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"81"}} +{ "Id": "81", "PostTypeId": "1", "AcceptedAnswerId": "167", "CreationDate": "2014-01-21T21:40:26.380", "Score": "8", "ViewCount": "7481", "Body": "

I've heard that drinking beer lowers sexual desire and potency, and that's the physiological effect of hops.

\n\n

Is it true? Does drinking a lot of beer have negative long-term effects on sexual desire or potency? Or is it just an urban myth, based on negative impacts of drinking too much?

\n", "OwnerUserId": "21", "LastEditorUserId": "73", "LastEditDate": "2014-01-25T18:38:55.963", "LastActivityDate": "2016-04-08T21:09:59.197", "Title": "Beer, sexual desire and potency", "Tags": "health", "AnswerCount": "3", "CommentCount": "4", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"82"}} +{ "Id": "82", "PostTypeId": "1", "AcceptedAnswerId": "91", "CreationDate": "2014-01-21T21:41:30.360", "Score": "17", "ViewCount": "515", "Body": "

I have a friend who is Celiac and can only drink gluten-free beer. How on earth is it made?

\n", "OwnerUserId": "7", "LastActivityDate": "2014-11-19T15:11:32.090", "Title": "How is gluten-free beer made?", "Tags": "brewing", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"83"}} +{ "Id": "83", "PostTypeId": "1", "CreationDate": "2014-01-21T21:42:09.103", "Score": "9", "ViewCount": "671", "Body": "

Every August I go camping1 for a week or two in western PA, and I like to take along some beer to drink in the evenings. What I've been doing, to save cooler space (and reduce the amount of ice I have to replace each day), is to keep most of it out and just keep a buffer of a couple bottles in the cooler. But this question makes me wonder whether that harms the taste, because while I can control for light I can't do much about storage temperature. Should I just suck it up and put everything on ice when I get there? I haven't noticed a problem so far, but I tend to take a variety of beers (I don't drink the same thing every day) so I might never notice on my own.

\n\n

1 This is not primitive camping with tiny, heat-absorbing nylon tents. Most of our tents/pavillions are canvas, and we have a small cabin available. No electricity is available, however.

\n", "OwnerUserId": "43", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2017-12-18T16:08:46.547", "Title": "What's the best way to store beer while camping in hot climates?", "Tags": "storage", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"85"}} +{ "Id": "85", "PostTypeId": "1", "AcceptedAnswerId": "93", "CreationDate": "2014-01-21T21:42:51.163", "Score": "18", "ViewCount": "9539", "Body": "

I eat fish often, and as a beer lover, would like to know how I can drink a beer that would best complement a fish such as tilapia or hake.

\n\n

When it comes to wine, it's said that white pairs well with fish, and red with meat. Is there any similar rule with beer?

\n", "OwnerUserId": "4", "LastEditorUserId": "66", "LastEditDate": "2014-01-21T22:07:30.603", "LastActivityDate": "2016-03-06T04:31:53.773", "Title": "What styles of beer pair well with white fish?", "Tags": "pairing", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"86"}} +{ "Id": "86", "PostTypeId": "1", "AcceptedAnswerId": "108", "CreationDate": "2014-01-21T21:44:22.070", "Score": "8", "ViewCount": "275", "Body": "

What's the name of the first known/recognized brewery that produced beer (that would be recognized as beer also today)?

\n", "OwnerUserId": "52", "LastEditorUserId": "52", "LastEditDate": "2014-03-12T21:07:47.607", "LastActivityDate": "2020-06-13T18:24:50.393", "Title": "First known/recognized brewery?", "Tags": "history breweries", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"87"}} +{ "Id": "87", "PostTypeId": "2", "ParentId": "3", "CreationDate": "2014-01-21T21:44:24.910", "Score": "4", "Body": "

I recently went on a tour of a microbrewery and had a conversation with a brewer afterwards. He said that their approach for reducing the alcohol content to legal \"non-alcoholic\" levels was to simply dilute regular beer with purified water.

\n\n

It may be worth noting that the beer he was talking about was not designated for drinking, but for use in food production (beer-battered fish sticks, anyone?).

\n", "OwnerUserId": "66", "LastActivityDate": "2014-01-21T21:44:24.910", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"88"}} +{ "Id": "88", "PostTypeId": "2", "ParentId": "70", "CreationDate": "2014-01-21T21:47:11.200", "Score": "11", "Body": "

Skunking is a stage in a beer's life in which it goes rancid. It may smell funny, almost like a skunk, and taste bad. As John pointed out, it is generally caused by excess exposure to light. Beers packaged in clear (Corona and Land Shark for instance) or green bottles are particularly susceptible to this. It is best to avoid these kinds of beers to avoid the risk of skunked beer; choose beer bottled in brown bottles or cans, which are less susceptible to light exposure.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T21:47:11.200", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"89"}} +{ "Id": "89", "PostTypeId": "2", "ParentId": "61", "CreationDate": "2014-01-21T21:52:29.373", "Score": "7", "Body": "

Bitters are ales; the English term bitter is generally equivalent to pale ale. Pale ales are made from pale malt and many types are heavily hopped. The term bitter refers to the bitterness inherent in their hoppy character when compared to other beers like stouts and porters.

\n\n

Note that like many beer terms, taxonomy is not hard and fast, e.g. a blonde could be considered a pale ale but few would refer to it as a bitter!

\n", "OwnerUserId": "26", "LastActivityDate": "2014-01-21T21:52:29.373", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"90"}} +{ "Id": "90", "PostTypeId": "2", "ParentId": "82", "CreationDate": "2014-01-21T21:54:06.163", "Score": "8", "Body": "

In general, such beers are made with grains that contain little or no gluten, such as buckwheat, sorghum, rice, or corn.

\n\n

Incidentally, this also means that cheap macrobrews such as Coors and Budweiser, which are often brewed with the cheapest of cheap adjuncts in their grain bills (such as corn and rice) end up being gluten-free (or very low gluten, legal definitions of the term vary) as well. Because the legal definition of 'gluten free' in many jurisdictions allows for very low quantities of gluten (generally less than 20 ppm), many gluten free beers include small quantities of rye malt for flavoring purposes. While some individual with celiac are able to tolerate these low levels of gluten (as are non-celiacs pursuing a gluten free diet for other reasons), tolerance can vary, so be careful when selecting a gluten free beer, and be aware that they can vary wildly, both in quality, and in gluten content.

\n", "OwnerUserId": "8", "LastEditorUserId": "8", "LastEditDate": "2014-01-23T21:01:12.113", "LastActivityDate": "2014-01-23T21:01:12.113", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"91"}} +{ "Id": "91", "PostTypeId": "2", "ParentId": "82", "CreationDate": "2014-01-21T21:54:33.677", "Score": "16", "Body": "

These beers are made with non-gluten containing grains such as millet, rice, corn, or buckwheat as opposed to glutenous grains like rye, barley, or wheat.

\n\n

As a side note, I recommend your friend give Omission Beer a try. I had it once on accident at a social event. I couldn't tell the difference between it and the real thing until I got home and looked it up online.

\n", "OwnerUserId": "31", "LastEditorUserId": "31", "LastEditDate": "2014-01-23T16:10:23.303", "LastActivityDate": "2014-01-23T16:10:23.303", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"92"}} +{ "Id": "92", "PostTypeId": "1", "CreationDate": "2014-01-21T21:55:27.830", "Score": "2", "ViewCount": "86", "Body": "

Are the Czech beers like Velkopopovický Kozel possible to buy somewhere in Bavaria?

\n\n

Probably specialized beer shops can import it per demand, but is it possible to buy somewhere on regular basis?

\n\n

Czech beers are of very good quality, and Bavaria neighbours with Czech, so they shouldn't be hard to find.

\n", "OwnerUserId": "21", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:58:42.297", "LastActivityDate": "2016-06-16T02:58:42.297", "Title": "Where can I buy Czech beers in Bavaria?", "Tags": "distribution buying retail-availiability germany", "AnswerCount": "0", "CommentCount": "2", "ClosedDate": "2014-01-25T11:05:40.270", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"93"}} +{ "Id": "93", "PostTypeId": "2", "ParentId": "85", "CreationDate": "2014-01-21T21:55:47.053", "Score": "13", "Body": "

Take your cue from recipes for fish cooked in beer/ale. \"Ale\" (not usually specified further) and \"amber beer\" (example) seem to be the most common, and I can say from personal experience that these work well both for poaching fish and drinking alongside baked, broiled, or grilled whitefish.1 Of course, how your fish is flavored may affect your beer choice, but that might be a question for Seasoned Advice. If the dominant flavor isn't the fish but, say, curry or habenero, that's a different matter.

\n\n

Anecdote: In the context of a renaissance-themed event I once cooked from a 15th-century recipe for whitefish poached in ale. I consulted my local brewing experts and together we made the ale (recipe and documentation). They told me that the key difference in that time period was that ale didn't use hops. There were no leftovers. Based on that experience, I usually reach for a low-hops medium-strength beer to go with whitefish.

\n\n

1 I don't eat a lot of deep-fried fish so can't advise there, sorry. @Hunse suggests in another answer a sturdier beer for deep-fried fish.

\n", "OwnerUserId": "43", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:33:38.297", "LastActivityDate": "2014-01-22T18:39:07.863", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"94"}} +{ "Id": "94", "PostTypeId": "5", "CreationDate": "2014-01-21T21:56:10.053", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-01-21T21:56:10.053", "LastActivityDate": "2014-01-21T21:56:10.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"95"}} +{ "Id": "95", "PostTypeId": "4", "CreationDate": "2014-01-21T21:56:10.053", "Score": "0", "Body": "Questions about the availability of beer brewed in other countries than where purchased.", "OwnerUserId": "21", "LastEditorUserId": "60", "LastEditDate": "2014-01-22T01:22:04.837", "LastActivityDate": "2014-01-22T01:22:04.837", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"96"}} +{ "Id": "96", "PostTypeId": "2", "ParentId": "74", "CreationDate": "2014-01-21T22:00:17.953", "Score": "3", "Body": "

You're speaking of Utah, I assume, the only state I've been to that has laws like that. I know you can achieve lower alcohol content by using less yeast, or sugar, or both, since alcohol in beer is produced by the fermentation process of yeast turning sugar into alcohol. I would guess this is primarily how it's done, but there could be other (post-fermentation) processes of removing alcohol. (EDIT: according to Wikipedia, I'm totally wrong. Most low- or non-alcoholic beer is made by boiling off the alcohol.)

\n\n

In terms of taste, lighter beers (in terms of alcohol content), generally taste, well, lighter. I like many higher-alcohol beers because the alcohol seems to bring out many of the more complex flavours in the beer, making it (in my opinion) more interesting. That's not to say that all strong beers are good or all light beers are bad, as there are many other things to consider. But I don't think it's possible to get the same complexity and flavour into a light 3.2% beer as it is in a stronger beer, in my experience anyway.

\n", "OwnerUserId": "68", "LastActivityDate": "2014-01-21T22:00:17.953", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"97"}} +{ "Id": "97", "PostTypeId": "2", "ParentId": "59", "CreationDate": "2014-01-21T22:00:30.617", "Score": "7", "Body": "

It doesn't actually mean anything; or at least, it almost never means the same thing twice, and doesn't refer to any specific common style or process. It's about as meaningful as the fact that several dozen breweries have a beer they label as \"Select\".

\n\n

For example, in the case of Molson Export, the story goes that it was deemed so high quality that it was \"good enough to send overseas\" - and, implicitly, better than competing imported brands.

\n\n

One common usage is for a line with slightly higher ABV (it keeps better in shipment!) or tailored to suit the ABC laws of other jurisdictions to which it might be shipped. But there isn't any single meaning that's widely understood.

\n", "OwnerUserId": "8", "LastActivityDate": "2014-01-21T22:00:30.617", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"98"}} +{ "Id": "98", "PostTypeId": "2", "ParentId": "83", "CreationDate": "2014-01-21T22:02:33.277", "Score": "2", "Body": "

Temperature does not skunk beer, contrary to popular belief. It is much more important to keep it out of the light.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T22:02:33.277", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"99"}} +{ "Id": "99", "PostTypeId": "1", "CreationDate": "2014-01-21T22:05:29.813", "Score": "43", "ViewCount": "10177", "Body": "

Most mass-market beers come with expiration dates, and cease to be good for drinking if too much time has passed since they were brewed, even if they've been stored in unopened containers and good conditions. Some major breweries even have long-running advertising campaigns about the freshness of their products.

\n\n

Other beers improve with age. What qualities make a beer suitable for cellaring or bottle-conditioning? How can I know whether a given bottle of beer can be aged, short of looking it up online?

\n", "OwnerUserId": "66", "LastActivityDate": "2016-06-27T01:35:57.440", "Title": "How can I tell whether a beer will improve with age?", "Tags": "aging bottle-conditioning cellaring freshness", "AnswerCount": "8", "CommentCount": "0", "FavoriteCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"100"}} +{ "Id": "100", "PostTypeId": "2", "ParentId": "6", "CreationDate": "2014-01-21T22:09:57.727", "Score": "14", "Body": "

In general, you just want to store your beer bottles standing upright. For tons of detail on bottle storage, BeerAdvocate has a great guide, but in short: storing a standard shaped beer bottle upright minimizes the surface area exposed to air in the bottle, slowing oxidation, and preventing spoilage. Additionally, in the case of unfiltered or bottle conditioned beers, it's highly desirable that any yeast settle at the bottom of the bottle - and not anywhere else.

\n", "OwnerUserId": "8", "LastActivityDate": "2014-01-21T22:09:57.727", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"101"}} +{ "Id": "101", "PostTypeId": "2", "ParentId": "6", "CreationDate": "2014-01-21T22:10:35.720", "Score": "9", "Body": "

I've looked into this quite a bit; I was thinking of building a beer rack as a winter project. However, All my research tells me that beer should always be stored upright, no matter what variety, unlike wine which is best stored on its side. Beer advocate has an interesting article on the subject. For corked bottles, one does not want to impart any off-flavors from the waxes and other chemicals on the cork. For proper aging, it is also best that the yeast be allowed to settle on the bottom of the bottle.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T22:10:35.720", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"102"}} +{ "Id": "102", "PostTypeId": "2", "ParentId": "2", "CreationDate": "2014-01-21T22:12:57.180", "Score": "8", "Body": "

According to LiveScience,

\n\n
\n

beer dates back to the dawn of cereal agriculture, loosely pinpointed\n at 10,000 B.C.E. in ancient Mesopotamia, the region of southwest Asia\n currently occupied by Iraq.

\n
\n\n

I also recall watching a documentary a few years back (unfortunately can't remember the name to properly cite it) which claimed that humans started settling and agriculture because they accidentally consumed some sort of primitive beer.

\n", "OwnerUserId": "69", "LastActivityDate": "2014-01-21T22:12:57.180", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"103"}} +{ "Id": "103", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2014-01-21T22:16:57.733", "Score": "1", "Body": "

Good question! I know that most (almost all) beers will not improve with age, and as you say will simply spoil. I don't know of any beers that you really want to age in the same way that you would age wine. In general, I would not age any beer unless it has specifically been presented to you by the brewer as something that should be aged.

\n\n

Bottle fermentation or bottle-conditioning is adding yeast to the bottle at bottling time, so that the beer continues to ferment in the bottle. The main purpose of this is to carbonate the beer in the bottle, without injecting CO2 under pressure. I think most brewers do any conditioning before they sell their product, so you don't have to do this yourself unless you're homebrewing.

\n\n

It's not clear to me why wine ages in the bottle, while whisky and beer don't. Any good answer would probably just confuse me anyway, with lots of mumbo-jumbo about tannins and stuff.

\n", "OwnerUserId": "68", "LastEditorUserId": "68", "LastEditDate": "2014-01-21T23:01:58.577", "LastActivityDate": "2014-01-21T23:01:58.577", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"104"}} +{ "Id": "104", "PostTypeId": "2", "ParentId": "64", "CreationDate": "2014-01-21T22:21:03.577", "Score": "23", "Body": "

A modern canned beer should never taste like metal. If it does, you're probably drinking straight from the can, and while the folks at The Alchemist might recommend that, I can't say I share their view.

\n\n

Modern beer cans are lined with a water-based chemical that essentially ensures that your beer never touches metal. This in turn means that strictly speaking, canned beers will keep longer without being skunked, and pressurized packing means there's less air in a can then a bottle, which adds further preservative benefits.

\n\n

That said, very few beers that are good enough for this decision to matter are offered in a choice of containers - most small breweries just don't have the capacity to both can and bottle - especially of the sort of small-batch stuff that you'd actually be interested in trying to cellar and age. Furthermore, there are significant environmental and economic arguments in favor of both bottles and cans.

\n\n

At the end of the day, choose the packaging that's more convenient for you to store, consume from, and recycle when you're done. The quality difference is essentially insignificant.

\n", "OwnerUserId": "8", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-21T22:21:03.577", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"105"}} +{ "Id": "105", "PostTypeId": "1", "AcceptedAnswerId": "128", "CreationDate": "2014-01-21T22:26:32.303", "Score": "15", "ViewCount": "1460", "Body": "

For example, from the label of Uinta's Crooked Line Labyrinth Black Ale:

\n\n
\n

Flavors are enhanced when served cool, not frigid.

\n
\n\n

How does serving temperature affect the taste of beers? By \"How?\" I'm asking more about its effects on flavor, e.g. hoppiness, crispness, the aftertaste, etc. more so than the chemical process.* That is, what flavors become pronounced or dulled with the changing of temperature?

\n\n

There's a question, What temperature should I serve my beer?, where an answerer states, for example, that letting darker beers warm up brings out new flavors—but what flavors? It doesn't seem to be the case that cooling kills all desirable flavors in general—for example for pilsners, lagers, and hefeweizens, \"letting them get warm changes their flavor profile for the worse\" (from the same answer).

\n\n

* Knowing the chemical process, e.g. how certain elements or ingredients react or suspend differently according to temperature, would be very interesting indeed, but it seems difficult to find solid literature / knowledge on the subject.

\n", "OwnerUserId": "73", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2020-01-05T01:11:23.677", "Title": "How does serving temperature affect the taste of beers?", "Tags": "taste temperature", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"106"}} +{ "Id": "106", "PostTypeId": "2", "ParentId": "83", "CreationDate": "2014-01-21T22:28:03.473", "Score": "6", "Body": "

I use 3 methods to store the beer, and others, while camping:

\n\n
    \n
  1. Cooler: The way you mentioned in your question.
  2. \n
  3. Sunk in water: If possible, put the beer either in a plastic bag or in a hole in a nearby water body, creek or river.
  4. \n
  5. In the ground: Dig a hole in the ground in a shady area and store it in there.
  6. \n
\n\n

Second and third possibilities will keep it cool, but not really cold, depending on the area. The you can cool it even more by placing it in ice shortly before consuming it.

\n", "OwnerUserId": "69", "LastActivityDate": "2014-01-21T22:28:03.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"107"}} +{ "Id": "107", "PostTypeId": "2", "ParentId": "11", "CreationDate": "2014-01-21T22:29:29.233", "Score": "11", "Body": "

Although as Bill said it can be down to a persons chemistry. One reason for you finding that IPAs affect you more could be the higher hop content in a Pale Ale (IPAs in particular). Hops (the oils) can have an effect on brain chemistry, that affect can be positive or it can be negative!

\n\n

Some people can actually have alergic reactions to hops, or even beer in general (poor them, see this). Where as I suffer from some nasty migraine problems and actually find that well hopped ales alleviate some of the symptoms (not that I use it as a reason to drink!!).

\n\n

So to sum up is it possible that you find that IPAs cause you to suffer more in the morning because you have a slight intolerance to higher hopped beers. Where as your fellow drinkers do not.

\n", "OwnerUserId": "76", "LastActivityDate": "2014-01-21T22:29:29.233", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"108"}} +{ "Id": "108", "PostTypeId": "2", "ParentId": "86", "CreationDate": "2014-01-21T22:29:52.140", "Score": "5", "Body": "

I don't think there's really a good answer to this question. Beer is an ancient beverage, whose formulations and methods of manufacture have changed over the centuries. The oldest continually operating brewery is claimed to be the Weihenstephan Abbey.

\n", "OwnerUserId": "31", "LastEditorUserId": "793", "LastEditDate": "2016-09-20T15:24:11.540", "LastActivityDate": "2016-09-20T15:24:11.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"109"}} +{ "Id": "109", "PostTypeId": "1", "CreationDate": "2014-01-21T22:30:47.123", "Score": "7", "ViewCount": "1110", "Body": "

Beer (with the exception of mulled beer) tastes best when cooled. But sometimes there can be too much cooling, for example when you take beer with you on hiking to enjoy the taste at the camping. The beer can freeze (the glass bottle would explode, but the plastic ones are more resistant).

\n\n

How such freezing and melting impact the beer taste?

\n", "OwnerUserId": "21", "LastActivityDate": "2020-01-30T15:59:05.243", "Title": "The effect of freezing on beer taste", "Tags": "taste", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"110"}} +{ "Id": "110", "PostTypeId": "1", "CreationDate": "2014-01-21T22:35:06.623", "Score": "18", "ViewCount": "90170", "Body": "

What is the highest level of alcohol you can achieve when brewing beer naturally, without adding alcohol?

\n\n

I know that many strong, popular beers (~10% alcohol) are simply mixed with alcohol, but what level of alcohol can be achieved in natural brewing process?

\n", "OwnerUserId": "21", "LastEditorUserId": "60", "LastEditDate": "2014-01-22T01:25:50.963", "LastActivityDate": "2018-11-23T18:40:11.947", "Title": "What is the highest alcohol content achievable through brewing?", "Tags": "brewing", "AnswerCount": "7", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"111"}} +{ "Id": "111", "PostTypeId": "2", "ParentId": "73", "CreationDate": "2014-01-21T22:37:55.943", "Score": "2", "Body": "

I would say that it has to do more with carbonation than anything else. Like soda, beer goes flat after a while and tastes bad (or not as good) when the carbonation is gone. Some beers have more carbonation than others, so I don't think you can accurately measure this, it really depends on the brew.

\n\n

Oxidation (exposure to air) also may negatively impact the flavor. Of course, I wouldn't recommend exposing a beer to air for weeks and then drinking it due to various health concerns and I can't say I've ever tried it, nor do I want to.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-21T22:37:55.943", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"112"}} +{ "Id": "112", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2014-01-21T22:43:07.797", "Score": "30", "Body": "

There are a couple of considerations, although this is far from a complete answer.

\n\n

First, a stronger (higher ABV) beer will tend to cellar better, as the alcohol can act to help prevent oxidization.

\n\n

Second, a beer with less emphasis on hops, and more on malt, yeast, or other characteristics, will be a better candidate, because the qualities that hops impart will fade in a fairly short time. This is why your IPAs and such should be consumed sooner than later -- the character is primarily in the hops.

\n\n

The purpose of cellaring a beer is to see its improvement over time. Some may stay exactly the same, which others will change. I think the answer there lies in whether there is still active yeast or bacteria in the bottle, and whether there is anything for them to chew on. Some styles (lambics, for example) are far more prone to this, but I don't think there's a hard and fast rule that one couple follow.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T22:43:07.797", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"113"}} +{ "Id": "113", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2014-01-21T22:43:14.047", "Score": "10", "Body": "

The reason there's a limit is once the alcohol content is too high, it kills the yeast, so fermentation stops and no more alcohol is produced. I think it's generally around 15% alcohol by volume, but the exact amount will depend on the type of yeast.

\n\n

EDIT: The Wikipedia page on yeast in winemaking has some details on when different types of yeasts die out.

\n", "OwnerUserId": "68", "LastActivityDate": "2014-01-21T22:43:14.047", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"114"}} +{ "Id": "114", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2014-01-21T22:44:36.553", "Score": "3", "Body": "

Typically it depends on the style. High ABV beers, such as imperial stouts and barley wines will typically age well while others lower in ABV will go rancid after 3-6 months. Obviously you're not going to want to cellar a Bud Light (it tastes rancid anyway before storing it). But even when speaking of higher quality beers, you're not going to want to cellar witbeers, pale ales, and things of that nature which are rather light beers. It is usually best to ask the brewer if the beer is recommended for storing.

\n", "OwnerUserId": "31", "LastEditorUserId": "31", "LastEditDate": "2014-02-01T20:10:48.037", "LastActivityDate": "2014-02-01T20:10:48.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"115"}} +{ "Id": "115", "PostTypeId": "1", "CreationDate": "2014-01-21T22:44:47.400", "Score": "3", "ViewCount": "29", "Body": "

I know friends who have \"aged\" beers to around the 1 year mark. Typically I've heard of stouts and porters aging well. Is the aging style related? If so, what styles can you age and for how long?

\n", "OwnerUserId": "83", "LastActivityDate": "2014-01-21T22:44:47.400", "Title": "What styles of beer can you age?", "Tags": "storage age style", "AnswerCount": "0", "CommentCount": "0", "ClosedDate": "2014-01-22T14:08:19.980", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"116"}} +{ "Id": "116", "PostTypeId": "2", "ParentId": "105", "CreationDate": "2014-01-21T22:45:45.487", "Score": "4", "Body": "

There are a few components to the interaction between flavor and temperature, but one key one is simply that cold numbs your tongue. At least, extreme cold (e.g. \"cold as the rockies\").

\n\n

As such, overly cold beer will dull any strong flavor (hoppiness, bitterness, etc) and hide weaker ones.

\n", "OwnerUserId": "80", "LastEditorUserId": "73", "LastEditDate": "2014-01-22T01:23:17.063", "LastActivityDate": "2014-01-22T01:23:17.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"117"}} +{ "Id": "117", "PostTypeId": "2", "ParentId": "76", "CreationDate": "2014-01-21T22:50:26.943", "Score": "10", "Body": "

Like most beers, the main thing is the height of the foam on top of the beer. It's largely a matter of personal preference; the only considerations I'm aware of are:

\n\n
    \n
  • Bottle-fermented beers should be poured slowly and all in one go to prevent yeast from going into the glass (and, to that end, leave half a finger of beer in the bottle).
  • \n
  • Unless it's an unfiltered wheat beer, in which case the yeast is meant to go in the glass. Also, hefeweizens like this should go for a little larger head than normal (2-2.5 fingers).
  • \n
  • Or if it's a nitrogenated beer (Eg, Guinness with a widget), you should simply upend the can or bottle into the glass
  • \n
  • Otherwise, most people aim for about 1 finger-width of foam. As long as you have at least some head and it doesn't overflow the glass, you're pouring fine.
  • \n
\n", "OwnerUserId": "80", "LastEditorUserId": "80", "LastEditDate": "2014-01-24T06:13:50.857", "LastActivityDate": "2014-01-24T06:13:50.857", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"118"}} +{ "Id": "118", "PostTypeId": "1", "CreationDate": "2014-01-21T22:51:05.710", "Score": "1", "ViewCount": "42", "Body": "

Why does a draught beer with a nitrogen taste different from a draught beer with a primarily carbon dioxide carbonation?

\n", "OwnerUserId": "86", "LastEditorUserId": "86", "LastEditDate": "2014-01-21T23:02:41.190", "LastActivityDate": "2014-01-21T23:20:07.593", "Title": "Why does a nitro beer taste different?", "Tags": "draught", "AnswerCount": "0", "CommentCount": "0", "FavoriteCount": "0", "ClosedDate": "2014-01-22T01:29:15.817", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"119"}} +{ "Id": "119", "PostTypeId": "1", "CreationDate": "2014-01-21T22:53:29.410", "Score": "2", "ViewCount": "4168", "Body": "

Pasteurizing is a common task at industrial brewers. But in a home brewing context following questions arises:

\n\n
    \n
  • Is it feasible to pasteurize in the kitchen?
  • \n
  • Which equipment is necessary to do it?
  • \n
  • What are the best-practices of such process?
  • \n
  • Is there a risk of degrading the overall taste of the beer?
  • \n
\n", "OwnerUserId": "77", "LastEditorUserId": "122", "LastEditDate": "2016-05-24T22:56:53.717", "LastActivityDate": "2016-05-24T22:56:53.717", "Title": "How can one pasteurize beer at home?", "Tags": "brewing", "AnswerCount": "1", "CommentCount": "5", "ClosedDate": "2014-01-22T00:32:16.963", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"120"}} +{ "Id": "120", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2014-01-21T22:54:42.153", "Score": "16", "Body": "

That depends on what you mean by \"naturally\". There are some strains, such as the \"Super High Gravity Ale Yeast\" by WyLabs, which can handle up to 25%. But there are techniques, such as freezing the beer to create a more concentrated product, which have been used to get up to 60+%. In this case, alcohol is not added, but rather, water is removed, altering your ABV.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T22:54:42.153", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"121"}} +{ "Id": "121", "PostTypeId": "1", "CreationDate": "2014-01-21T22:55:10.623", "Score": "9", "ViewCount": "5930", "Body": "

There are many styles of beer. It's straightforward to discuss the differences between two types of beer, but what are the characteristics used to distinguish between styles of beer?

\n\n

For each general characteristic, what kinds of beer have each specific quality? For example, if color is a general characteristic what styles of beer are light, medium, and dark?

\n", "OwnerUserId": "86", "LastEditorUserId": "86", "LastEditDate": "2014-01-21T23:08:25.953", "LastActivityDate": "2014-01-22T18:56:52.483", "Title": "What characteristics are used to distinguish styles of beer from each other?", "Tags": "style", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ClosedDate": "2014-01-22T14:55:20.197", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"122"}} +{ "Id": "122", "PostTypeId": "1", "CreationDate": "2014-01-21T22:57:01.900", "Score": "2", "ViewCount": "151", "Body": "

I cannot drink beer fast. So when I opened a bottle or can or poured my beer into a glass, it starts to became warm and untasty with time. When I am out, or in a bar, I cannot really keep it cold.

\n\n

At room temperature, how long can I drink my beer before it starts to get warmer and the taste begins to change when it comes directly from fridge or a cooler?

\n", "OwnerUserId": "81", "LastEditorDisplayName": "user90", "LastEditDate": "2014-01-21T23:09:52.150", "LastActivityDate": "2014-01-21T23:09:52.150", "Title": "How long does it take for beer to become untasty?", "Tags": "taste drinking", "AnswerCount": "0", "CommentCount": "4", "ClosedDate": "2014-01-21T23:21:42.593", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"123"}} +{ "Id": "123", "PostTypeId": "1", "CreationDate": "2014-01-21T22:57:28.603", "Score": "18", "ViewCount": "20318", "Body": "

Some beers have taste different on Nitro vs CO2. I'm sure there is science behind this. Why choose one over the other?

\n", "OwnerUserId": "84", "LastEditorUserId": "268", "LastEditDate": "2015-06-11T13:19:47.000", "LastActivityDate": "2016-04-20T11:52:21.797", "Title": "Why would one choose to use Nitro vs CO2 as a beer gas?", "Tags": "taste serving keg", "AnswerCount": "4", "CommentCount": "4", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"124"}} +{ "Id": "124", "PostTypeId": "2", "ParentId": "121", "CreationDate": "2014-01-21T23:03:26.413", "Score": "1", "Body": "

There are many points of comparison, as the beer judging style guidelines will point out. Among those characteristics are ABV, IBU (International Bitterness Units), color, aroma, mouthfeel, and of course, flavor.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T23:03:26.413", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"125"}} +{ "Id": "125", "PostTypeId": "2", "ParentId": "121", "CreationDate": "2014-01-21T23:05:02.767", "Score": "7", "Body": "

The BJCP Style Guidelines specify a wide variety of variables. These include:

\n\n
    \n
  • Aroma (malt, hops, yeast, diacetyl, etc)
  • \n
  • Appearance (color, clarity, head, etc)
  • \n
  • Flavor (sweetness, bitterness, dryness, alcohol, carbonation acidity, diacetyl, fruitiness, etc)
  • \n
  • Mouthfeel (body, carbonation, smoothness, astringency, etc.)
  • \n
  • Ingredients (yeast, mash bill, hops, added ingredients, etc.)
  • \n
\n\n

These guidelines are from the Beer Judge Certification Program, so they are by necessity based on idealized judging, rather than the intent to taxonomize all of known beer.

\n\n

The first four are subjective, coming from the standpoint of categorizing based on the drinking experience. The last, Ingredients, is objective and is used for quite a bit of general categorization (ale vs lager yeasts, for example).

\n\n

You could also argue that the source of many of the subjective factors is variation in the brewing process, such as fermentation temperature, addition or subtraction of various steps, etc. However if you come at it from the angle of \"how do I categorize an unknown beer?\", then the first four subjective items are key. Some of the question is whether you focus on what it is or on how it got that way.

\n", "OwnerUserId": "26", "LastEditorUserId": "26", "LastEditDate": "2014-01-22T18:56:52.483", "LastActivityDate": "2014-01-22T18:56:52.483", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"126"}} +{ "Id": "126", "PostTypeId": "2", "ParentId": "123", "CreationDate": "2014-01-21T23:06:41.837", "Score": "21", "Body": "

In general, nitrogenation imparts a creamier, smoother texture to a beer. The bubbles are smaller in size than CO2 bubbles, and the reduced solubility results in a thicker beverage, which is both delicious, and results in that visually appealing 'cascade' effect.

\n\n

Also, you can do this with a Nitro beer. And that's awesome.

\n", "OwnerUserId": "8", "LastEditorUserId": "8", "LastEditDate": "2014-01-21T23:20:07.593", "LastActivityDate": "2014-01-21T23:20:07.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"127"}} +{ "Id": "127", "PostTypeId": "1", "AcceptedAnswerId": "130", "CreationDate": "2014-01-21T23:08:01.373", "Score": "11", "ViewCount": "301", "Body": "

What's the difference between dry hopping and regular hopping, and both in terms of production process and taste? I think I'm starting to get an idea of what a dry-hopped beer tastes like, but I'm not always sure if it's actually dry hopping or just a hoppier beer, especially if I'm at a bar. What's the difference?

\n", "OwnerUserId": "68", "LastActivityDate": "2014-01-21T23:17:41.690", "Title": "Dry hopping versus regular hopping", "Tags": "hops", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"128"}} +{ "Id": "128", "PostTypeId": "2", "ParentId": "105", "CreationDate": "2014-01-21T23:14:47.987", "Score": "5", "Body": "

There is a blog post which also cites this article discussing the chemical effects of cooling and dilution on whiskey.

\n\n

The post concluded that the mix of dilution and cooling causes the alcohol to become soluble, which releases the flavour.

\n\n
\n

Ethanol becomes more soluble when whiskey is diluted and cooled, this promotes release of flavour molecules

\n
\n\n

I think this theory is applicable to beer, but with a few caveats; firstly, beer is already diluted and doesn't need any more water added; secondly, the alcohol content of beer is much lower than that of whiskey, so not as much cooling would be required.

\n", "OwnerUserId": "85", "LastActivityDate": "2014-01-21T23:14:47.987", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"129"}} +{ "Id": "129", "PostTypeId": "1", "CreationDate": "2014-01-21T23:16:30.853", "Score": "8", "ViewCount": "169", "Body": "

Why don't any Arizona craft breweries export beers out of state? Is it a legal restriction, a private agreement, or just a market force?

\n", "OwnerUserId": "86", "LastActivityDate": "2014-01-22T08:06:49.093", "Title": "Why don't any Arizona craft breweries export their beer?", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"130"}} +{ "Id": "130", "PostTypeId": "2", "ParentId": "127", "CreationDate": "2014-01-21T23:17:41.690", "Score": "9", "Body": "

Dry hopping is a brewing technique which specifies when hops are added to a beer.

\n\n

In particular, \"normal\" hopping is when you add hops while boiling the wort. Depending on how much time you are into the boil, this may add more bitterness or more aroma.

\n\n

Dry hopping, on the other hand, is when you add hops after the boil is done, usually in a fermentation chamber. The purpose is only to add more aroma to a beer. You aren't getting the oils from the hops, so the beer shouldn't be any more bitter than before. Because no bitterness is added, you won't find a beer that is strictly dry-hopped -- the bitterness of the hops is what cuts the sweetness of the wort. Dry hopping is an extra twist that some brewers use.

\n\n

All that said, is there a way to tell whether a beer is dry-hopped or just extra hoppy? That's hard to say, since you certainly can add more hops late in the boil to get more aroma qualities from them. Probably your best bet is to ask the brewer, and if you really like the beer, get a second pint!

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-21T23:17:41.690", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"131"}} +{ "Id": "131", "PostTypeId": "2", "ParentId": "123", "CreationDate": "2014-01-21T23:20:00.413", "Score": "9", "Body": "

CO2 is the traditional way of serving beer. The keg is filled with CO2 in order to push the beer into the tap. Since all beer contains CO2, pressurizing the keg will maintain the natural carbonization of the beer as it is being served. The amount of CO2 that the beer already has needs to be taken into account because nobody likes their beer too foamy or too flat.

\n\n

Nitro dispensing is a newer method. In this case, N2 is used under high pressure either instead of or with the CO2. It replaces some of the natural CO2 in the beer, which results in a creamy flavor as well as a thick, tight foam on the top. Some beer \"purists\" regard the process as being unnatural because it really messes with the flavor of the beer. An example of a beer that uses Nitro is Guinness. When you open a can of Guinness, a nitrogen \"ball\" activates to carbonate the beer.

\n", "OwnerDisplayName": "user90", "LastActivityDate": "2014-01-21T23:20:00.413", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"132"}} +{ "Id": "132", "PostTypeId": "2", "ParentId": "121", "CreationDate": "2014-01-21T23:29:49.170", "Score": "-1", "Body": "

One very important criterion that @phoebus briefly mentioned is brewing process. The first big distinction is ales versus lagers. Lagers are stored in cold rooms during the production process, and I find they're lighter on average than ales, certainly in terms of flavour, and often in terms of colour as well.

\n\n

After that, there are lots of less-black-and-white brewing differences between styles of beer. For example, IPAs generally have a considerable amount of hops added, but that's not always true. Hefeweizen has considerable amounts of yeast left after brewing, giving it its cloudy appearance. The list goes on and on.

\n\n

Personally, I think that the traditional names for beer styles (stout, lager, IPA, wheat beer, etc.) are based a lot on brewing process, and in the case of something like lager or wheat beer, the name clearly shows the brewing origin. However, more and more brewers are pushing the boundaries of these styles, so when it comes to things like appearance and flavour, which are ultimately the things that matter, two beers from different brewing styles can be quite similar, or two beers from the same brewing style can be quite different.

\n", "OwnerUserId": "68", "LastActivityDate": "2014-01-21T23:29:49.170", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"133"}} +{ "Id": "133", "PostTypeId": "2", "ParentId": "119", "CreationDate": "2014-01-21T23:36:34.650", "Score": "2", "Body": "

To do this, you should have a thermometer that you can throw into the water to measure the temperature, a pot for boiling water, and some bottles of beer.

\n\n
    \n
  1. Boil the water.
  2. \n
  3. When the water reaches 190 degrees Fahrenheit, turn off the water.
  4. \n
  5. Carefully put the bottles into the pit.
  6. \n
  7. Put the lid on the pot and wait about ten minutes.
  8. \n
  9. Carefully remove the bottles with a kitchen tong (or a mitten).
  10. \n
  11. Put them on the counter to cool until they reach room temperature.
  12. \n
  13. Refrigerate them.
  14. \n
\n\n

Remember that the bottles are pressurized, so don't bang them while putting them in the pot, don't apply heat to the pot while the bottles are in there, etc.

\n", "OwnerDisplayName": "user90", "LastActivityDate": "2014-01-21T23:36:34.650", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"134"}} +{ "Id": "134", "PostTypeId": "2", "ParentId": "69", "CreationDate": "2014-01-21T23:46:49.000", "Score": "18", "Body": "

Yes, the lactose remains in the beer at the end of brewing.

\n\n

In normal beer, the only sugar which enters the brewing process is from the malted barley: maltose and glucose released by the breakdown of starch, and a little sucrose and fructose. This 1953 analysis by a chemist in the Carlsberg research laboratory has all the gory details.

\n\n

Normal brewing yeast has enzymes that break down glucose and fructose, but not lactose. This kind of yeast evolved on rotting fruit, where there is plenty of sucrose, glucose, and fructose, but no lactose, so they never needed the enzymes. There are other yeasts which can ferment lactose, but they aren't used in brewing, except by zany vodka makers and Mongols.

\n\n

So, in a normal beer, potentially all of the sugar can be broken down during brewing. Whether it is or not is up to the brewer, who can stop the process while sugar remains, or let it run to completion. However, in a milk stout, there is no way for the lactose to be broken down, so it all remains at the end.

\n\n

The amount of lactose in a milk stout varies, but it seems that it is likely to be in the range of 5 to 13%; that is, in a (568 millilitre) pint, there may be anywhere from 28 to 74 grams of lactose. The lactose concentration in milk is about 4%, so this is the equivalent of 700 - 1850 millilitres of milk. Rather a lot!

\n\n

Perhaps you might like a honey porter instead?

\n", "OwnerUserId": "92", "LastActivityDate": "2014-01-21T23:46:49.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"135"}} +{ "Id": "135", "PostTypeId": "2", "ParentId": "55", "CreationDate": "2014-01-21T23:50:03.383", "Score": "12", "Body": "

All malt beer is made entirely from mashed barley malt and without the addition of adjuncts, sugars or additional fermentables.

\n\n

From an expert of a widely known brand beer producer in my country (Turkey), beers here must be at least 60% malt (This may be different in other countries). The rest are adjuncts, like sugar or corn or rice etc. Using adjuncts is also for decreasing the cost or to lighten the color of beer.

\n", "OwnerUserId": "81", "LastEditorUserId": "187", "LastEditDate": "2018-04-20T15:06:40.633", "LastActivityDate": "2018-04-20T15:06:40.633", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"136"}} +{ "Id": "136", "PostTypeId": "2", "ParentId": "28", "CreationDate": "2014-01-21T23:50:37.953", "Score": "15", "Body": "

This is a broad question, notably regarding the differences between IPAs and Double IPAs, but here's an overview focusing on the naming (and misconceptions thereof) and brewing of variants.

\n\n

Double IPA vs. Imperial IPA (IIPA)

\n\n

First, the Double IPA is also known as an Imperial IPA (IIPA). You can think of the \"double\" as referring to the two letter I's :-) but the name actually owes itself to the beer having \"double\" the strength / hops.

\n\n

IPA vs. Double IPA

\n\n

The Double IPA generally uses more hops (though not literally \"double\"), lengthier brewing processes (e.g. Dogfish Head's 90 Minute IPA, which is boiled for longer than its 60 Minute variant), sometimes secondary fermentation, etc. It has higher alcohol content, IPAs stopping around 7.5% ABV, while Double IPAs can soar to above 10%.

\n\n

Double IPAs are claimed to have been started by the owner of the Russian River Brewing Company, famed for its flagship brew, Pliny the Elder, a Double IPA itself.

\n\n

American Pale Ale (APA) vs. American IPA

\n\n

The APA and American IPA are not synonymous. American Pale Ales are a derivative of (regular) British Pale Ales, deriving their own flavor from American hops, e.g. Sierra Nevada's Pale Ale. American IPAs, meanwhile, are, of course, derived from actual (British) IPAs, and possess greater bitterness and higher alcohol content—examples include Sierra Nevada's Celebration Ale and Dogfish Head's 60 Minute IPA. The line between APAs and IPAs blur (as do between many variants of ales), but categorically speaking, APAs are not IPAs.

\n\n

IPA vs. Black IPA

\n\n

The black IPA (also known by American Black Ale—and yes, a subset of the American IPA) uses dark roasted malts (used in porters and stouts) to achieve the color, while preserving hops characteristics. Some consider the black IPA more of a hoppy porter instead—and don't believe the style will be formally recognized (e.g. by the Brewers Association).

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2014-01-21T23:55:58.037", "LastActivityDate": "2014-01-21T23:55:58.037", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"137"}} +{ "Id": "137", "PostTypeId": "2", "ParentId": "85", "CreationDate": "2014-01-21T23:59:51.320", "Score": "4", "Body": "

My simple rule would be to pair lighter beers with foods with lighter, more delicate flavours, and heavier beers with foods with heavier flavours. You don't want to pick a beer that will overpower your meal, or vice versa.

\n\n

As @ThomasOwens pointed out, preparation does make a difference. I would drink a heavy beer (like a stout) with deep-fried fish and chips, but a lighter beer (light or amber ale, or a lager) with pan-fried tilapia.

\n", "OwnerUserId": "68", "LastActivityDate": "2014-01-21T23:59:51.320", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"138"}} +{ "Id": "138", "PostTypeId": "1", "CreationDate": "2014-01-22T00:27:29.303", "Score": "7", "ViewCount": "544", "Body": "

You will often hear wine discussed in terms of the climate, soil, etc of the vineyard. The terms 'new world' and 'old world' wines are common.

\n\n

Is there a similar concept for the hops used in beer? A quick web search seems to indicate that hops don't thrive in as many different climates as grapes do, so there might be less variation. Similarly, there are a few websites that seem to refer to new vs. old world hops, but it doesn't seem to be as popular a talking point. Is there more to it than a 2 minute google search can reveal?

\n", "OwnerUserId": "101", "LastActivityDate": "2014-01-22T04:23:10.133", "Title": "Does the climate and growing conditions of hops effect the taste of a beer, like with wine?", "Tags": "breweries style hops", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"139"}} +{ "Id": "139", "PostTypeId": "2", "ParentId": "50", "CreationDate": "2014-01-22T00:38:48.330", "Score": "5", "Body": "

Slight temperature changes will not spoil your beer. Large temperature changes will.

\n\n

The \"skunky\" beer is actually lightstruck. This is exactly what it says: the beer has been damaged by light, such as sunlight or florescent light. When UV lights penetrate the glass of a beer bottle, they mess with the chemical makeup of some acids produced by the hops. The result is a new compound called methyl mercaptan, which is one of the components of the defense mechanisms found in the skunk.

\n\n

This is prevented by packaging beer in brown bottles, which is better protected from UV rays. Unfortunately, this lets those green rays get in, which makes sense as to why some beers are served with lime: it keeps away the \"skunky\" smell for a while.

\n\n

In reality, it doesn't take much to spoil your beer. If your beer in a green or clear bottle has not already been spoiled before it got to the store, about a minute's worth of exposure to the sun would do it.

\n", "OwnerDisplayName": "user90", "LastActivityDate": "2014-01-22T00:38:48.330", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"140"}} +{ "Id": "140", "PostTypeId": "2", "ParentId": "50", "CreationDate": "2014-01-22T00:44:18.383", "Score": "23", "Body": "

In short, no.

\n\n

As explained by George de Piro, a biochemist and Brewmaster of C. H. Evans Brewing Company—

\n\n
\n

When light hits beer, it provides the energy necessary to drive a reaction that transforms the iso-alpha-acids into 3-methyl-2-butene-1-thiol. The “thiol” part of that somewhat cumbersome name indicates that there is sulfur present. Sulfur compounds often have strong, offensive aromas. Some musteline animals, like skunks, have evolved the ability to produce this chemical, and use it for self-defense. [...] This photochemical reaction is the only cause of skunked beer. Warm storage, while damaging to the flavor of beer, does not skunk it. Cycling the temperature of beer from warm to cold and back again is also not implicated. Storing beer in the dark is the simple way to prevent skunking.

\n
\n\n

It's actually pretty amazing how quickly this reaction can happen! From the same article,

\n\n
\n

The photochemical reaction that skunks beer occurs very quickly; a well-hopped beer in clear glass can become noticeably offensive with just 30 seconds of exposure to sunshine.

\n
\n\n

To wrap it up,

\n\n
\n

Since light is an essential ingredient in the skunking process, beers packaged in kegs, cans, and opaque bottles cannot be skunked.

\n
\n\n

Here's the most detailed experiment I could find—The Impact of Lightstruck and Stale Character in Beers on their Perceived Quality: A Consumer Study.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-22T00:44:18.383", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"141"}} +{ "Id": "141", "PostTypeId": "1", "CreationDate": "2014-01-22T02:29:44.433", "Score": "5", "ViewCount": "982", "Body": "

Corona, and some other beers, tend to go well with a slice of lemon inside. Is there something particular about the style of beer, or is this a marketing thing?

\n", "OwnerUserId": "87", "LastEditorUserId": "60", "LastEditDate": "2014-01-22T02:52:57.593", "LastActivityDate": "2018-05-15T12:29:19.973", "Title": "Is there something special about Corona that makes it suitable for adding a slice of lime?", "Tags": "garnish", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"143"}} +{ "Id": "143", "PostTypeId": "2", "ParentId": "141", "CreationDate": "2014-01-22T04:00:55.570", "Score": "6", "Body": "

I would say it's the light body, low maltiness and low bitterness that make it amenable to citrus additions (and perhaps other additions.)

\n\n

The low flavor and bitterness means:

\n\n
    \n
  • if you choose to add something, you need only a little of it before you can taste/smell the addition
  • \n
  • there's less \"interference\" from the flavors of the beer so the addition tastes cleaner
  • \n
\n\n

Contrast with adding citrus to a Czech Pils for example. You'd have to add much more juice - the bitterness and malt backbone of the beer would compete with the citrus additions.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-22T04:00:55.570", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"144"}} +{ "Id": "144", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2014-01-22T04:13:55.660", "Score": "6", "Body": "

I am taking this from a website cited at the bottom. Popsci has a LOT of cool beer articles. Fractional freezing is the best way to increase the alcohol content of beer.

\n\n

Fractional freezing -- \"jacking\" in old parlance -- has a long history in the United States. The beverage applejack was produced using this method by first fermenting apple juice into hard apple cider. Then barrels of this cider were left outside during the winter and the connoisseur would occasionally fish out the frozen chunks of water, leaving an ever-concentrated batch of hard alcohol behind. At some point in the 20-25 percent ABV range, the liquor would stop freezing at ambient temperatures and the booze was ready to consume as \"Jersey Lightning.\" It was also used as currency.

\n\n

Moving into the malt-beverage world, brewers in Germany use fractional freezing to make eisbock. These brews are usually just regular bock beers, which clock in at 6 percent ABV, freeze-concentrated to something in the 13 percent ABV range. Frankly, there are probably easier ways to get high-proof beers (make a barleywine, for example) than by starting with a mid-strength one and concentrating it, but there's a market for eisbocks and it's possible to find them in the US as well. A more infamous set of freeze-concentrated beers was made by the Scottish brewery BrewDog in their quest to make \"the strongest beer in the world.\" The first was Tactical Nuclear Penguin, a beer that started with an ABV in the teens and ended at 32 percent ABV. Then a little brewing war started up between BrewDog and German brewery Schorschbräu to make ever-stronger beers. Schorschbräu made a Schorschbock at 40 percent ABV, BrewDog countered with Sink the Bismarck at 41 percent ABV. Then came another beer at 55 percent ABV (that's 110 proof, my friends). Schorschbräu is current record-holder with Schorschbock 57, at 57 percent ABV.

\n\n

Article

\n", "OwnerUserId": "22", "LastActivityDate": "2014-01-22T04:13:55.660", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"145"}} +{ "Id": "145", "PostTypeId": "2", "ParentId": "138", "CreationDate": "2014-01-22T04:23:10.133", "Score": "3", "Body": "

Sort of.

\n\n

There are literally dozens of different varieties of hops, in much the same way there are dozens of different breeds of dogs. Just as a Chihuaua and a Great Dane are both Canis Lupus, a Galena Hop and a Goldings Hop are bot Humulus Lupulus, separated by vastly different lineages and genetics. New hop varieties are often developed by selective crossbreeding of existing variants, to generate different flavor profiles by adjusting the acidity and oil content of the hop.

\n\n

Like different breeds of dogs, different hop varieties are often the products of hundreds of years of genetic development in a particular climate - the Pacific Northwest, especially the Yakima Valley and Cascade Mountains in Washington, Oregon and Idaho, is known for it's production of very strong, highly acidic hops that impart a very strong bitter flavor - take a sip of a Sierra Nevada IPA and you'll instantly recognize that classic blend of the 'three C's'.

\n\n

By contrast, traditional hops grown in England and on the European continent tend to be more mellow and aromatic - especially the so called 'noble hops' popular in many less bitter tasting German and Czech beers. Still others, like Japans Sorachi Ace, offer a more citrus bite to the beer they're added to. While these differences are not directly a product of climate, it's doubtless true that climate has had an impact on the development of variation amongst the various hop lines that have been bred through the centuries - and especially over the past 50 years or so.

\n\n

Put another way: New World vs. Old World Hops is a meaningful distinction, but it has less to do with climate and more to do with the difference in cultivation practices and the specific varietals popular with farmers in various regions. Growing conditions may have some impact, but the specific lineage matters much, much more. The fact that those lineages tend to have significant geographic commonalities is as much an accident of history as it is of varying conditions, but it's nonetheless sufficiently meaningful that, in particular referring to hops from the Pacific Northwest evokes a very specific and comprehensible flavor profile in most educated beer drinkers.

\n", "OwnerUserId": "8", "LastActivityDate": "2014-01-22T04:23:10.133", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"147"}} +{ "Id": "147", "PostTypeId": "1", "CreationDate": "2014-01-22T04:33:24.757", "Score": "4", "ViewCount": "989", "Body": "

What type of beer goes well with hearty, 'British' style dinners? What characteristics should I look for?

\n", "OwnerUserId": "87", "LastEditorUserId": "27", "LastEditDate": "2014-01-22T19:08:54.920", "LastActivityDate": "2014-01-29T00:10:16.883", "Title": "Whats a good beer to have with steak and mashed potatoes?", "Tags": "pairing", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"149"}} +{ "Id": "149", "PostTypeId": "1", "CreationDate": "2014-01-22T04:39:25.410", "Score": "8", "ViewCount": "38634", "Body": "

In my experience, some beers smell like cannabis. Stella Artios is a distinctive example.

\n\n

What causes this? - Is it due to a type of hop, or a style?

\n", "OwnerUserId": "87", "LastActivityDate": "2019-05-27T20:49:24.857", "Title": "Why do some beers smell like cannabis?", "Tags": "aroma", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"150"}} +{ "Id": "150", "PostTypeId": "2", "ParentId": "149", "CreationDate": "2014-01-22T04:44:07.797", "Score": "11", "Body": "

The fact that both Humulus lupulus (hops) and Cannabis sativa (marijuana) have similar organoleptic properties (taste and smell) could indicate a common ancestry--but it isn't proof. Lots of plants make similar aroma molecules, known as terpenes and terpenoid compounds, including lemons (which make limonene), lavender (linalool) and conifers (pinene) -- but none of them are closely related to cannabis or hops.

\n\n

Full article here

\n", "OwnerUserId": "22", "LastActivityDate": "2014-01-22T04:44:07.797", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"151"}} +{ "Id": "151", "PostTypeId": "1", "CreationDate": "2014-01-22T04:46:09.197", "Score": "2", "ViewCount": "427", "Body": "

This question might still be too broad, as there are different styles of curry. But let's say a lamb korma.

\n\n

Would it the spicyness change the selection? - Ie a tasty, but not spicy curry, vs a burn your mouth curry.

\n", "OwnerUserId": "87", "LastActivityDate": "2018-04-01T07:45:39.077", "Title": "What's a good beer to have with curry?", "Tags": "pairing", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"152"}} +{ "Id": "152", "PostTypeId": "1", "CreationDate": "2014-01-22T04:48:35.410", "Score": "6", "ViewCount": "8953", "Body": "

What beer sort would pair good with lasagna, and other sorts of food with high tomato content?

\n\n

What makes the taste of that beer compose good with the taste of lasagna/tomatoes?

\n", "OwnerUserId": "87", "LastEditorUserId": "5064", "LastEditDate": "2020-10-13T03:31:10.460", "LastActivityDate": "2020-10-13T03:31:10.460", "Title": "What's a good beer to go with lasagna?", "Tags": "recommendations pairing", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"153"}} +{ "Id": "153", "PostTypeId": "1", "AcceptedAnswerId": "166", "CreationDate": "2014-01-22T04:52:15.650", "Score": "15", "ViewCount": "2200", "Body": "

When you are having a wine tasting event, it's customary to clear the palate with water and possibly plain crackers or baguettes.

\n\n

Is it the same concept for a beer tasting where you are serving several types of brews, or is there a different preferred method for ensuring that the last taste doesn't influence the current one?

\n", "OwnerUserId": "116", "LastActivityDate": "2014-01-22T07:03:32.067", "Title": "If you are having a beer tasting, what is a good way to clear the palate?", "Tags": "aroma taste", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"154"}} +{ "Id": "154", "PostTypeId": "1", "CreationDate": "2014-01-22T04:53:23.933", "Score": "0", "ViewCount": "141", "Body": "

I imagine the might would look something like:

\n\n
Pale Lager    \nGeneric lager.\nPilsner    \nPale Ale (Which style?)    \nImperial Pale Ale    \nStout\n
\n\n

Of course, I'm not a full on beer aficionado, I don't know all the styles.

\n", "OwnerUserId": "87", "LastEditorUserId": "80", "LastEditDate": "2014-04-13T23:27:33.607", "LastActivityDate": "2014-04-13T23:27:33.607", "Title": "Can you order beers by strength of flavour?", "Tags": "flavor", "AnswerCount": "1", "CommentCount": "0", "ClosedDate": "2014-01-22T14:35:22.650", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"155"}} +{ "Id": "155", "PostTypeId": "1", "CreationDate": "2014-01-22T04:56:25.183", "Score": "4", "ViewCount": "718", "Body": "

Often with spirits people say that different spirits have different effects, eg bourbon makes people angry or trouble making, gin makes people emotional, tequilla makes people crazy, etc.

\n\n

Though this might be just psychological.

\n\n

Is there anything similar with beer?

\n\n

Do some beers suit socialising more while others suit a quiet drink?

\n", "OwnerUserId": "87", "LastActivityDate": "2018-07-24T11:52:01.267", "Title": "Do different beers have a different 'buzz'?", "Tags": "inebriation", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"156"}} +{ "Id": "156", "PostTypeId": "2", "ParentId": "149", "CreationDate": "2014-01-22T04:57:58.997", "Score": "7", "Body": "

The 'dank' scent you're experiencing is the smell of Hops - among the closest botanical neighbors to the Marijuana plant and a key ingredient of beer. The two plants both look and smell nearly identical. Specifically, the dank, resiny scent you pick up from a very hoppy brew is the smell of so-called \"Alpha Acids\" - which are chemically a part of the same family as THC, the active ingredient in Marijuana.

\n\n

As to why some beers are, well, dank, and others aren't? It's a factor of the highly variable alpha acid content in different hop varietals, as well as a question of process. Most of the aromatic alpha acids in hops boil off or dissolve as part of the normal fermentation process, however, some brewers 'dry hop' their beer - adding additional hops at the end of the process, with the explicit purpose of enhancing the aromatic qualities of the beer.

\n", "OwnerUserId": "8", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-22T04:57:58.997", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"157"}} +{ "Id": "157", "PostTypeId": "2", "ParentId": "151", "CreationDate": "2014-01-22T05:00:40.133", "Score": "7", "Body": "

In general, the rule of thumb for spicy or intensely flavorful foods is that you want hop-forward beers. The high bitterness of something like an IPA will have a slight numbing effect on your palate, cutting the intensity of spicy foods and allowing you to appreciate the complexity of a dish more than you could if you were simply overwhelmed by capsaicin.

\n", "OwnerUserId": "8", "LastActivityDate": "2014-01-22T05:00:40.133", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"158"}} +{ "Id": "158", "PostTypeId": "1", "CreationDate": "2014-01-22T05:01:57.667", "Score": "7", "ViewCount": "621", "Body": "

What beer would pair good with the food like caviar?\nI'm thinking about food which is salty, has a very strong flavor, but not spicy.

\n", "OwnerUserId": "87", "LastEditorUserId": "21", "LastEditDate": "2014-01-24T17:51:51.593", "LastActivityDate": "2016-01-09T12:05:48.727", "Title": "What would a good beer to have with very salty food like caviar be?", "Tags": "pairing", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"159"}} +{ "Id": "159", "PostTypeId": "2", "ParentId": "153", "CreationDate": "2014-01-22T05:27:50.293", "Score": "7", "Body": "

I would avoid bread, since that contains quite a bit of salt and yeast - so if you taste yeast in the next beer you don't know if it's from the beer or from bread still stuck in your teeth.

\n\n

The food should be neutral, preferably unsalted and consumed with water. Unsalted crackers are probably as close to ideal here. While cheese can work, I wouldn't say it neutralizes the palate, but softens it.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-22T05:27:50.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"160"}} +{ "Id": "160", "PostTypeId": "2", "ParentId": "158", "CreationDate": "2014-01-22T05:37:24.863", "Score": "5", "Body": "

While pairing is generally a matter of taste and therefore no definite answers can be given, for salty food, strong food there are a couple of things to keep in mind.

\n\n
    \n
  1. Rich beers are likely to overpower whatever else you are eating. I would usually pair rich beers with moderate portions of rich foods. This doesn't mean that all salty foods would be out with something like this, but it is something to think about.

  2. \n
  3. Bitterness is likely to help contrast a bit with the saltiness you are describing.

  4. \n
\n\n

Obvious pairings to me would seem to include light, relatively bitter, hoppy beers. Something like an IPA, an extra special bitter, or the like. A lot of folks tend to find that bitterness in beer works, pairing-wise, like acidity in wine, so if you'd pair with a more acidic wine you may consider pairing with a more bitter beer.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T05:37:24.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"161"}} +{ "Id": "161", "PostTypeId": "2", "ParentId": "155", "CreationDate": "2014-01-22T05:43:27.393", "Score": "7", "Body": "

The answer is \"probably\" although it is hard to know with liquors how much of the difference is social or psychological. There are some important things to keep in mind with alcohol effects and beer though:

\n\n
    \n
  1. Hops are mildly sedative. It isn't unreasonable to think that very hoppy beers may have a different effect than less hoppy beers.

  2. \n
  3. Gruit beers (unusual but there are some on the market!) often have other psychoactive ingredients in them too. With historical brewing becoming a bit of an industry, it may only be a matter of time before we see commercially available henbane beer too....

  4. \n
  5. Alcohol absorption will be retarded by carbohydrate content in the beer. You will absorb alcohol more slowly from a heavy beer than a light beer.

  6. \n
  7. Carbonation works the other way. Lightly (or rarely available uncarbonated) beers will affect one more slowly than highly carbonated beers. For most commercial beers this is not a significant factor but for home-brewed beers or specialty beers it may be.

  8. \n
\n\n

With this being said, it isn't clear that there is a single objective answer as to what beers will effect who in what way. The purpose of this answer is to go over some factors which may impact how a given individual is affected.

\n\n

This being said, I don't condone a general pursuit of drunkenness....

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T05:43:27.393", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"163"}} +{ "Id": "163", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2014-01-22T06:05:41.460", "Score": "6", "Body": "

In terms of commercial beers, it is hard to say. In general I find that aging tends to allow flavors to meld. If I brew beer and do a brief aging in oak (or add oak chips), the beer usually requires aging to achieve balance. This is most typical with something I sometimes make called ebulon (non-carbonated, fermented malt and elderberries, secondary fermentation in oak for a month, then bottled and aged for several more months).

\n\n

Extrapolating from my experience here, I would expect a few general rules to apply:

\n\n
    \n
  1. Beers with disparate sharp contrasts (particularly where fruit are involved) may benefit from aging. I could imagine things like full-bodied apricot ales aging well.

  2. \n
  3. Higher ABV and richer beers are likely to age better than lower ABV and lighter beers.

  4. \n
\n\n

This is assuming you hope to see a general \"smoothing over\" of contrasts in an aged beer. Some things will usually fade and some others may increase (for non-pasteurized or unfiltered beers, yeast flavors will usually increase).

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T06:05:41.460", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"164"}} +{ "Id": "164", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2014-01-22T06:13:59.110", "Score": "3", "Body": "

Note that Ann Hagen (\"Anglo-Saxon Food and Drink\") argued that the strongest naturally brewed drinks available in Anglo-Saxon times were probably strongly brewed meads at least 20% abv. Her basis is in discussions of specific gravity of the resulting beverages in historical records. I think it is likely close to that and no more because I see other reasons to wonder if specific gravity could have been reduced by other additives (in particular henbane).

\n\n

I love studying history. It is useful in so many fields!

\n\n

In general getting much above 10-15%abv requires specialty yeasts or concentration techniques, and getting much above 20% is going to require some sort of concentration. I have however seen cases where these rules go out the window in wine making experiments (a friend of mine accidently brewed a mango wine with 22% abv using standard wine yeasts, which surprised us both).

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T06:13:59.110", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"165"}} +{ "Id": "165", "PostTypeId": "2", "ParentId": "35", "CreationDate": "2014-01-22T06:24:58.930", "Score": "4", "Body": "

In addition to the answers given above, some specialty beers include animal products as well. I have had beer made with oyster broth for example. That one is definitely not vegan.

\n\n

Interestingly in the Middle Ages, they used to brew with chicken broth sometimes, and some other times with dairy products (including either milk or whey). That is worth remembering in terms of why some specialty beers include meat products as well.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T06:24:58.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"166"}} +{ "Id": "166", "PostTypeId": "2", "ParentId": "153", "CreationDate": "2014-01-22T07:03:32.067", "Score": "11", "Body": "

Not have any experiense on Beer testing but here are few tips from beer.about.com

\n\n
    \n
  • Do not taste new beers with food or soon after eating. The lingering flavors from food can greatly affect your impression of the brew.
  • \n
  • Cleanse your palate with water. Crackers or cheese are fine but you should remember that even these foods can affect the apparent flavors of the beer.
  • \n
  • If you're tasting a number of different beers, let the color be your guide. It is best to taste from light to dark.
  • \n
\n", "OwnerUserId": "122", "LastActivityDate": "2014-01-22T07:03:32.067", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"167"}} +{ "Id": "167", "PostTypeId": "2", "ParentId": "81", "CreationDate": "2014-01-22T07:54:55.250", "Score": "13", "Body": "

tl;dr—We don't know (via science, at least).

\n\n

Letting alone ethanol, which triggers innumerable biochemical pathways in our bodies, hops itself may affect potency and sexual desire, in males at least, but there appears to be few clinical studies supporting this claim directly. Many articles online appear to have chained together several studies (or played news-telephone) to publish indirect conclusions, many of which oversimplify the effects of estrogen. For example, contrary to popular belief, it isn't testosterone (alone) which masculinizes the male brain and behavior, but rather its interaction with estrogen, produced from testosterone through a process known as aromatization.1 So it's not as simple as more-estrogen-less-sex-drive.

\n\n

I'm certainly not qualified to deliver conclusions myself, but I can at least point to some of the important studies from which current (mis)conceptions have derived.

\n\n

1: Wu, M. V. et al. Estrogen Masculinizes Neural Pathways and Sex-Specific Behaviors. 2009. [PDF]

\n\n

Why some claim that hops decreases sex drive...

\n\n

Hops contains phytoestrogens,

\n\n
\n

substances that promote estrogenic actions in mammals and structurally are similar to mammalian estrogen 17β-estradiol (E2) [...]

\n
\n\n

Ososki, A. L. and Kennelly, E. J. Phytoestrogens: a Review of the Present State of Research. 2003. [PDF]

\n\n

Specifically,

\n\n
\n

a recurring suggestion has been that hops have a powerful estrogenic activity and that beer may also be estrogenic. [...] We have identified a potent phytoestrogen in hops, 8-prenylnaringenin, which has an activity greater than other established plant estrogens.

\n
\n\n

Milligan, S. R. et al. Identification of a potent phytoestrogen in hops (Humulus lupulus L.) and beer. 1999. [PDF]

\n\n

However, it's worth noting that the same paper concludes,

\n\n
\n

[...] despite the high estrogenic activity of 8-prenylnarigenin, the total estrogenic activity of beer made using whole hops is still low [...] and no detrimental health effects due to \"estrogens in beer\" are to be expected.

\n
\n\n

Anyway, another study led by the same researcher delved into the mechanism of action:

\n\n
\n

8-Prenylnaringenin alone competed strongly with 17β-estradiol for binding to both the α- and β-estrogen receptors.

\n
\n\n

Milligan, S. R. et al. The endocrine activities of 8-prenylnargingenin and related hop (Humulus lupulus L.) flavonoids. 2000. [PDF]

\n\n

(In case one is unfamiliar with how receptors work, receptors \"catch\" freestanding compounds in a medium such as the bloodstream, thereby reducing their effects. The phytoestrogen in hops appears to get itself \"caught\" by estrogen receptors, thereby blocking those receptors from catching estrogen it'd normally catch, thereby leaving higher levels of estrogen in the bloodstream.)

\n\n

...but it's not that simple!

\n\n

Again, from these findings alone, conclusions about male potency and sex drive can't be so easily drawn. Hormone interactions are sufficiently complex that researchers are still trying to untangle, isolate, and explain ever-more-specific biochemical pathways. Certainly the average Joe (or journalist) wouldn't be capable of appreciating the magnitude (or triviality) of the effects of biochemical pathways described in researchers' findings, much less draw definitive conclusions about physiological effects like \"potency,\" \"sex drive,\" and how it all affects, say, muscle-building. Not to mention all the other chemicals in play!

\n\n

As a very example of the latter, one site [link] (which, unfortunately, ranks high among Google search results) is clearly biased, grasping for evidence to \"prove\" that beer has detrimental effects on testosterone activity. I'm not saying beer doesn't, but their article states that Xanthohumol, another compound found in hops, \"blocks testosterone,\" when in fact the very paper it cites says (in its abstract nonetheless),

\n\n
\n

Although hops is commonly linked with phytoestrogenic effects, we identified XN [Xanthohumol] as a pure estrogen antogonist. Interestingly, XN may also reduce the generation of estrogens by inhibition of the enzymatic activity of aromatase, which converts testosterone to estrogen. Anti-estrogenic effects of XN [...] were confirmed in vivo in an uterotrophy assay with prepubertal rats.

\n
\n\n

Strathmann, J. et al. Xanthohumol from Hops Prevents Hormone-Dependent Tumourigenesis In Vitro and In Vivo. 2008. [PDF]

\n\n

On top of all this, ethanol affects so many parts of the brain via so many chemical pathways—what's even the significance of 8-prenylnarigenin or Xanthohumol when stacked against ethanol? Do you know?—I sure don't—and probably no one does—else it'd have been stated by researchers themselves, without the \"help\" of attention-seeking bloggers and headline-hunting journalists.

\n\n

In conclusion,

\n\n

I'm not saying these blogs, articles, and threads are necessarily wrong—they might be right, whether right-by-chance, or right-by-empiricism (observation). What I am saying is that they can't be right-by-science, as currently available research seems extremely domain-specific, incomplete in larger perspectives, and therefore not generalizable.

\n\n
\n\n

Addendum

\n\n

The study by Ososki and Kennelly also states

\n\n
\n

As potential endocrine disrupters, phytoestrogens may act as antiestrogens and harm the reproductive health of males (Sharpe and Skakkebaek, 1993; Santti et al., 1998). Reduced sperm quality, undescended testes and urogenital tract abnormalities were increased in the sons of mothers taking DES compared with those who did not take the miscarriage preventative drug [...]

\n
\n\n

This statement is initially misleading as it says \"males\" instead of \"developing males\"—a fact not made clear until the following sentence. From the studies it cites (emphasis mine),

\n\n
\n

We argue that the increasing incidence of reproductive abnormalities in the human male may be related to increased oestrogen exposure in utero, and identify mechanisms by which this exposure could occur.

\n
\n\n

Sharpe, R. M. and Skakkebaek, N. E. Are oestrogens involved in falling sperm counts and disorders of the male reproductive tract? 1993. [URL]

\n\n
\n

Exposure to diethylstilbestrol (DES) induces persistent structural and functional alterations in the developing reproductive tract of males.

\n
\n\n

Santti R. et al. Phytoestrogens: Potential Endocrine Disruptors in Males. [URL]

\n\n

So, more potential sources of misunderstanding and misreporting.

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2014-01-28T15:25:09.403", "LastActivityDate": "2014-01-28T15:25:09.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"168"}} +{ "Id": "168", "PostTypeId": "2", "ParentId": "129", "CreationDate": "2014-01-22T08:06:49.093", "Score": "3", "Body": "

In the United States, interstate beer export is an extraordinarily complicated matter. Unlike other areas of commerce, states are allowed to directly regulate import of alcoholic beverages to their state because of the 21st Amendment specifically reserved that right in the repealing of prohibition. States, through the licensing process, can also control export, but this is rare since usually states like to export stuff to other states (and thus bring money into their state).

\n\n

This means that beer, wine, and spirits are extraordinarily complex to sell in the interstate market. Small craft breweries are going to have a huge amount of legal compliance in every case and so you have an issue that it is essentially impossible to be both small and interstate in this market.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T08:06:49.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"169"}} +{ "Id": "169", "PostTypeId": "1", "AcceptedAnswerId": "170", "CreationDate": "2014-01-22T08:35:32.137", "Score": "16", "ViewCount": "16170", "Body": "

What constitutes a draft beer, and how different is it? I see this term plastered on beer cans, but I have no idea what it means, or how it affects the beer's taste.

\n", "OwnerUserId": "127", "LastEditorUserId": "7", "LastEditDate": "2014-01-22T14:30:13.090", "LastActivityDate": "2014-01-23T02:28:03.023", "Title": "What is a draft beer?", "Tags": "terminology", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"170"}} +{ "Id": "170", "PostTypeId": "2", "ParentId": "169", "CreationDate": "2014-01-22T09:03:52.203", "Score": "21", "Body": "

Draft beer is another name for Draught beer, it means that the beer is served from a cask or a keg.

\n\n

When you see this term plastered on beer cans, then it means that it's a Canned Draught. The can contains a widget. This widget was invented by Guinness in order to let consumers drink a Draught beer at home. This differs from a typical can in that the beer is usually carbonated by forcing CO2 directly into the bottle/can or intermediary vessel, or by \"bottle conditioning\" (leaving live yeast in the beer and adding something for it to eat, creating CO2 and more alcohol).

\n\n

Everyone on this site should be thankful for Guinness for having invented the widget!

\n", "OwnerUserId": "129", "LastEditorUserId": "76", "LastEditDate": "2014-01-23T00:19:15.623", "LastActivityDate": "2014-01-23T00:19:15.623", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"171"}} +{ "Id": "171", "PostTypeId": "1", "CreationDate": "2014-01-22T09:05:49.673", "Score": "6", "ViewCount": "84", "Body": "

Taste-wise, at least in my opinion, the hotter the mulled beer the better. Except past certain point the alcohol starts evaporating so quickly you end up losing most of it before you start drinking.

\n\n

How should I heat the beer - what temperature, what heating method - to get it as hot as possible without losing alcohol content?

\n", "OwnerUserId": "130", "LastEditorUserId": "73", "LastEditDate": "2014-01-22T16:09:14.117", "LastActivityDate": "2014-01-24T06:19:47.043", "Title": "Optimal mulling temperature?", "Tags": "temperature mulling preparation-for-drinking", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"172"}} +{ "Id": "172", "PostTypeId": "1", "AcceptedAnswerId": "228", "CreationDate": "2014-01-22T09:17:57.770", "Score": "7", "ViewCount": "196", "Body": "

In Poland, outside of imports, microbreweries, and various less popular varieties, about all mainstream brands come in two classes:

\n\n
    \n
  • Piwo Jasne ('light beer')
  • \n
  • Piwo Mocne ('strong beer')
  • \n
\n\n

The two comprise the massive bulk of the market and are about never labeled differently, save for brand-specific marketing variations.

\n\n

I'd like to learn how they fit into the wider image. Are they lagers, stouts, ales, or maybe something yet different? A class of their own?

\n", "OwnerUserId": "130", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T19:49:15.790", "LastActivityDate": "2016-10-08T19:49:15.790", "Title": "How do popular Polish beers fit into the \"periodic table of beers\"?", "Tags": "classification poland", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"173"}} +{ "Id": "173", "PostTypeId": "1", "AcceptedAnswerId": "174", "CreationDate": "2014-01-22T09:30:18.010", "Score": "9", "ViewCount": "262", "Body": "

I have heard of something called 'gruit' which seems to sometimes be used in brewing beer. What is it?

\n\n

Why are there very few beers on the market containing gruit? What are some of the more popular ones currently?

\n", "OwnerUserId": "117", "LastEditorUserId": "117", "LastEditDate": "2014-01-22T09:37:02.717", "LastActivityDate": "2014-01-22T11:08:26.657", "Title": "What is \"gruit?\" Why aren't there many beers on the market containing it?", "Tags": "taste history specialty-beers", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"174"}} +{ "Id": "174", "PostTypeId": "2", "ParentId": "173", "CreationDate": "2014-01-22T09:36:46.120", "Score": "8", "Body": "

More than a millenia ago, there were few standardized recipies for herbs to add during the beer brewing process. \"Gruit\" referred to the herbal mixtures used to flavor and preserve beer. Gruit was usually sold under papal license exclusive to certain areas at various monasteries and therefore represented a monopoly in Christian areas of the Catholic Church. Traditionally it included plants such as yarrow, mugwort, henbane, sweet gale, bog rosemary, juniper, and more. Some of these survive in gin recipes.

\n\n

Why gruit has largely been replaced by hops is a fascinating and divisive historical question. There may however have been a number of factors including the possibility (largely untested) that hops beers kept longer and the rising concern by Protestant (and even Catholic) nobles of the power of the economic power that this gave Catholic institutions. What is known is that a campaign was waged against gruit and the purported (and likely actual) mind altering properties of it. The use of gruit was more or less entirely supplanted by hops.

\n\n

More recently some breweries have been experimenting with gruit beers for national pride and/or historical reasons. These include Fraoch and Alba from the Williams Brothers in Scotland, and a few other examples. They are not common however and are certainly specialty beers today. Additionally the gruits used in commercial beers are pretty tame by historical standards. I haven't found any including herbs like henbane (which was one of the historical staples of brewing, used even more prevalently than hops is today).

\n", "OwnerUserId": "117", "LastEditorUserId": "117", "LastEditDate": "2014-01-22T11:08:26.657", "LastActivityDate": "2014-01-22T11:08:26.657", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"175"}} +{ "Id": "175", "PostTypeId": "2", "ParentId": "2", "CreationDate": "2014-01-22T09:41:33.743", "Score": "15", "Body": "

As Slyboty notes correctly, beer is a very ancient drink predating the oldest written records (and likely any archeological discoveries.) For millennia though beer was made only from fermented malt with various add-ons.

\n\n

The major change that gave origin to modern beers though is the addition of hops, for the first time creating a beer closely resembling modern lagers. The first documented use of hops in beer is dated 822 A.D. [source] although records of hops cultivation dates back to 736 [source] which suggests use of hops in brewing predates written records by a considerable margin.

\n", "OwnerUserId": "130", "LastActivityDate": "2014-01-22T09:41:33.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"176"}} +{ "Id": "176", "PostTypeId": "2", "ParentId": "154", "CreationDate": "2014-01-22T09:52:25.107", "Score": "3", "Body": "

I think you'd have trouble with this because of different dimensions of flavor. Beer has a very complex flavor and different recipes are different. One can order beers (if specific enough to include a brand) along any dimension of flavor, but I am not sure that you can order them consistently along all dimensions.

\n\n

Here are dimensions I would think of:

\n\n
    \n
  1. Malty/caramel
  2. \n
  3. Hop-forward
  4. \n
  5. Bitter (Hops)
  6. \n
  7. Yeasty
  8. \n
\n\n

It isn't clear to me how one rates strength of flavor between an IPA and a porter for example. So I think the answer here is a simple \"no, you can't.\"

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T09:52:25.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"177"}} +{ "Id": "177", "PostTypeId": "2", "ParentId": "2", "CreationDate": "2014-01-22T10:03:33.943", "Score": "14", "Body": "

The simple answer is \"nobody knows.\" I must apologize for being a bit of a history nut here and this may tell you far more than you ever wanted to know...

\n\n

Fermentation of grain is universal, as is fermentation of fruit and honey. You find it in the new world with drinks like chicha (an Andean drink where saliva provides the amylase to break down corn starch into sugars for fermentation), among Native Americans in North America as well, in early Europe, in early China, and early Japan as well.

\n\n

Grain fermenting is a remarkably complex process because yeast can't digest starch so you have to have some way of turning starches into sugars. These break down into more or less three strategies:

\n\n
    \n
  1. malting (roasting sprouted grains). Interestingly doesn't work for rice.
  2. \n
  3. helper cultures, like they use to make sake. Add a fungus that breaks down starch and then a yeast to eat the sugar. Indonesian \"Tape\" (rice or cassava \"beer\" or paste) is done this way as is Chinese rice beer and wine. As a bonus this also works on other starches, like yams (used in Malaysia).
  4. \n
  5. Chewing the grains to mix with saliva and then spitting in a bowl as with the Andean Chicha drink.
  6. \n
\n\n

South America has all three methods represented, as does early Asia.

\n\n

The fact that different strategies are employed around the world suggests to my mind that brewing did not start somewhere and spread but was independently reinvented in different places. It is probably for this reason extremely old, far older than we have direct evidence for.

\n\n

As for beer, the question becomes what you mean. If you mean fermented grains, we have no idea. It's very very old and might go back to neolithic times if not even earlier (though I suspect that the organized grain agriculture of neolithic times was an absolute prerequisite to grain fermentation).

\n\n

If you mean malt, yeast, and hops, we still don't know. We have evidence that hops was cultivated for beer in Augustine's time, and Old Norse distinguishes between beer and ale by the use of hops but Old English \"beor\" means something different (probably very strong mead with herbs?), suggesting perhaps that the hops distinction post-dated the split of Old Norse (and thus 8th century), but that doesn't get you very far. What is pretty clear is that it certainly predates our earliest records of the practice. By how much and when did it become a separate drink? I don't think we will ever know. At any rate the early prevalence of hops as one herb used in brewing among many in early England and Scandinavia suggests (though does not prove) that hops were adopted (again as one herb among any) for beer brewing by the Germanic tribes, some time before we have written records.

\n\n

Now as for lager, these are far more recent.

\n\n

Finally as a note, until maybe a hundred years ago, before modern capping and beer cans, most beer would have been sold uncarbonated, but speciality beers were carbonated much like champagne is today. My own home brewing experiments (I even brew as a history nut) with non-carbonated beers suggest that they are of an altogether different character than carbonated ones (owing to the carbonic acid in carbonated drinks). The flavors are lighter, sweeter, brighter, and more distinct, and entirely different than \"flat\" beer. This is because dissolved carbon dioxide imparts extra acidity to beer.

\n\n

EDIT: It also occurs to me that controlled fermentation is one of the most common ways of preserving foods in the pre-industrial ages. This includes lactic fermentation (that gives us shelf-stable cheese, salami, sauerkraut, etc), but also alcoholic fermentation must be included there too. There's no reason to think that the first fermented grains were fermented by accident.

\n", "OwnerUserId": "117", "LastEditorUserId": "117", "LastEditDate": "2014-01-23T01:55:21.853", "LastActivityDate": "2014-01-23T01:55:21.853", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"178"}} +{ "Id": "178", "PostTypeId": "1", "AcceptedAnswerId": "179", "CreationDate": "2014-01-22T10:23:09.180", "Score": "5", "ViewCount": "260", "Body": "

I know that it's typically what? yeast, hops, malted barley and water, but sometimes beer is made with other things, (eg wheat).

\n\n

What are some of the more typical alternative ingredients, and style beer does that make?

\n", "OwnerUserId": "87", "LastActivityDate": "2014-01-22T11:24:02.713", "Title": "What ingredients are used to make beer?", "Tags": "ingredients", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"179"}} +{ "Id": "179", "PostTypeId": "2", "ParentId": "178", "CreationDate": "2014-01-22T11:17:33.030", "Score": "9", "Body": "

At the most basic you need:

\n\n
    \n
  1. A grain, somehow modified to ferment with yeast (see below)
  2. \n
  3. Water
  4. \n
  5. Yeast
  6. \n
  7. Other additives to impart flavor and help preserve the brew (hops or gruit usually).
  8. \n
\n\n

The grains are usually malted but note that rice doesn't malt using the normal process, so typically with rice beers you have some other process for extracting starches (most typically you have another culture which breaks down starches into sugars). Grains historically used in brewing include:

\n\n
    \n
  • barley (the standard today)
  • \n
  • rye
  • \n
  • wheat
  • \n
  • rice (most common in Asia).
  • \n
  • corn
  • \n
  • millet (common in Africa and probably early Asia before being supplanted by rice)
  • \n
  • oats
  • \n
  • buckwheat
  • \n
\n\n

For the other additives, the most common is hops, but other ones in commercial brewing include:

\n\n
    \n
  • heather flowers
  • \n
  • alecost
  • \n
  • pine needles
  • \n
  • spruce needles
  • \n
  • sweet gale
  • \n
  • juniper berries
  • \n
  • Grains of paradise
  • \n
\n\n

Historically the following were also added, but not so much anymore. Experienced, adventuresome, and/or foolish home-brewers may use these (foolish, if they do this without some understanding or experience of the potential ramifications):

\n\n
    \n
  • mugwort
  • \n
  • henbane (this was historically a really, really big one but has signficant toxicity and contraindications medically)
  • \n
  • bog rosemary
  • \n
\n\n

I have experimented with gruits containing the following which are not historically attested to my knowledge:

\n\n
    \n
  • damask rose petals (gruit also containing hops)
  • \n
  • lavender (probably would be great with juniper berries but didn't have any)
  • \n
\n\n

Sometimes fruit and/or honey is also added. Sometimes corn sugar (fructose) is added. I have also seen other flavoring like garlic and chili peppers added to beer.

\n\n

Sometimes animal products are included. Historically the big ones were milk, whey, and chicken broth. Today, however, those ones are rarely if ever used. There are cases of oyster broth added, as well as isinglass (made from swim bladders of fish). Sometimes icelandic moss (an algae) is added as a clarifying agent.

\n\n

That should be a fairly complete list however assuming you aren't going further afield into other traditional malt liquors.

\n", "OwnerUserId": "117", "LastEditorUserId": "117", "LastEditDate": "2014-01-22T11:24:02.713", "LastActivityDate": "2014-01-22T11:24:02.713", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"180"}} +{ "Id": "180", "PostTypeId": "2", "ParentId": "60", "CreationDate": "2014-01-22T11:39:21.440", "Score": "1", "Body": "

Our bodies are ecosystems as much as they are machines. We have a wide variety of microbes in our intestines and even if the yeast is not the culprit something else could be encouraged to grow. I tend to suspect this is the real problem for the entirely unscientific reason that I have never noticed pasteurization to affect whether I am bloated after drinking beer (and sometimes it happens, and sometimes it doesn't).

\n\n

So in answer to your question, it is complicated, and it might be a factor but it is almost certainly not the only one.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-22T11:39:21.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"181"}} +{ "Id": "181", "PostTypeId": "1", "AcceptedAnswerId": "182", "CreationDate": "2014-01-22T13:12:29.223", "Score": "16", "ViewCount": "778", "Body": "

What's the difference between normal beer and trappist? Is there any difference in flavour or brewing style?

\n", "OwnerUserId": "138", "LastEditorUserId": "8506", "LastEditDate": "2019-04-05T12:26:33.497", "LastActivityDate": "2019-04-05T12:26:33.497", "Title": "What's the difference between normal beer and trappist?", "Tags": "terminology trappist differences", "AnswerCount": "3", "CommentCount": "1", "FavoriteCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"182"}} +{ "Id": "182", "PostTypeId": "2", "ParentId": "181", "CreationDate": "2014-01-22T13:12:29.223", "Score": "19", "Body": "

Trappist beers are all abbey beers, but not all abbey beers are trappist. It's a bit like champagne, it's a protected product name to designate a certain type of classical brewn beers.Trappist is the enumeration of beers brew within the walls of an abbey inhabitted by the Trappist monks of the Tre Fontane.

\n\n

Currently (Okt. 2015) there are 11 recognized trappists, of which 10 are actively producing:

\n\n

Six Belgian trappists:

\n\n
    \n
  • Chimay
  • \n
  • Orval
  • \n
  • Westmalle
  • \n
  • Westvleteren (St. Sixtus)
  • \n
  • Achel (St. Benedictus of the Achelse kluis)
  • \n
  • Rochefort
  • \n
\n\n

Netherlands:

\n\n
    \n
  • La Trappe (Brouwerij de Koningshoeven)
  • \n
  • Zundert (Brouwerij Abdij Maria Toevlucht)
  • \n
\n\n

Austria:

\n\n
    \n
  • Stift Engelszell
  • \n
\n\n

Italy:

\n\n
    \n
  • Tre Fontane Abbey
  • \n
\n\n

United States of America:

\n\n
    \n
  • Spencer
  • \n
\n\n

There's also one aspiring Trappist brewery in the US named St. Joseph’s Abbey.

\n\n

There are some strict rules to obtain \"Authentic Trappiste Product\":

\n\n
    \n
  1. The beer must be brewed within the walls of a Trappist monastery,\neither by the monks themselves or under their supervision.
  2. \n
  3. The brewery must be of secondary importance within the monastery and\nit should witness to the business practices proper to a monastic way\nof life
  4. \n
  5. The brewery is not intended to be a profit-making venture. The\nincome covers the living expenses of the monks and the maintenance\nof the buildings and grounds. Whatever remains is donated to\ncharity for social work and to help persons in need.
  6. \n
\n\n

There are some standardized naming conventions, for instance the Double (orginally used by Westmalle) is a brown ale which has an alcohol level of around 7%.

\n\n

The Tripple is another name first used by Westmalle, which are often blond and have an alcohol level of about 8% to 10%.

\n\n

For future reference you can always visit the Trappiste website here.

\n", "OwnerUserId": "138", "LastEditorUserId": "1529", "LastEditDate": "2015-10-17T04:34:54.160", "LastActivityDate": "2015-10-17T04:34:54.160", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"183"}} +{ "Id": "183", "PostTypeId": "1", "AcceptedAnswerId": "184", "CreationDate": "2014-01-22T13:17:42.147", "Score": "7", "ViewCount": "128", "Body": "

There are a few fruit beers around how are these traditionally made? I know they are all Lambics, but how are they made exactly?

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-22T18:27:39.780", "Title": "How is Lambic fruit beer traditionally made?", "Tags": "lambic", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"184"}} +{ "Id": "184", "PostTypeId": "2", "ParentId": "183", "CreationDate": "2014-01-22T13:17:42.147", "Score": "7", "Body": "

Lambic is a type of beer brewed in the Pajottenland region of Belgium and in Brussels itself at the Cantillon Brewery and museum. Lambic beer is produced by spontaneous fermentation: it is exposed to the wild yeasts and bacteria native to the Zenne valley. This gives the beer a dry, vinous, and cidery taste, usually with a sour aftertaste.

\n\n

This beer forms the basis of the Lambic fruit beers. After the Lambic is made, fruit juice is added to the barrels right before bottleing the beer.

\n", "OwnerUserId": "138", "LastEditorUserId": "43", "LastEditDate": "2014-01-22T18:27:39.780", "LastActivityDate": "2014-01-22T18:27:39.780", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"185"}} +{ "Id": "185", "PostTypeId": "1", "CreationDate": "2014-01-22T13:23:22.357", "Score": "2", "ViewCount": "44", "Body": "

In the advertising, you see certain beers saying that they have been awarded gold medals at various competitions, or other accolades earned.

\n\n

Is there a list of what are considered to be the major beer competitions, and how would you go about entering? Is that even possible for a craft brewer, or would you need to be a major manufacturer?

\n", "OwnerUserId": "116", "LastActivityDate": "2014-01-22T13:23:22.357", "Title": "What are the major beer competitions and how do you enter?", "Tags": "brewing taste", "AnswerCount": "0", "CommentCount": "2", "ClosedDate": "2014-01-22T21:21:52.780", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"186"}} +{ "Id": "186", "PostTypeId": "1", "CreationDate": "2014-01-22T13:27:35.717", "Score": "5", "ViewCount": "333", "Body": "

You see it in advertising all the time, wine and high quality spirits are the cultured, immaculately dressed set with the pearls and expensive cars in the \"high class\", expensive settings, and beer is the tailgating, short skirted waitress crowd.

\n\n

With the advent of home brewing, micro breweries and increased interest in higher quality and craft beers, is there a way to change the social perception of the beer crowd, or should we simply relegate ourselves to being the lower class cousin?

\n", "OwnerUserId": "116", "LastActivityDate": "2014-01-22T15:39:29.197", "Title": "Can the social perception of beer be changed?", "Tags": "drinking", "AnswerCount": "2", "CommentCount": "0", "ClosedDate": "2014-01-22T23:48:37.123", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"187"}} +{ "Id": "187", "PostTypeId": "1", "AcceptedAnswerId": "188", "CreationDate": "2014-01-22T13:28:35.357", "Score": "5", "ViewCount": "203", "Body": "

Orval has a very distinct taste, but I'm not quite sure how I should categorize it?

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-22T16:06:42.307", "Title": "How do I categorize Orval?", "Tags": "trappist", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"188"}} +{ "Id": "188", "PostTypeId": "2", "ParentId": "187", "CreationDate": "2014-01-22T13:28:35.357", "Score": "5", "Body": "

Orval is in a category of its own, it's not an amber or a blonde beer, it has a fresh flavor, but it's not a sour or fruit beer either. Generally it falls under the Belgian Pale Ales.

\n\n

\"enter

\n\n

Orval has a very traditional and unique brewing process which involves\n the use of dry hopping, in which large meshed bags of hops infuse the beer during the three-week maturation period. The other is the use of Brettanomyces yeast during this same maturation, which are a local wild yeast. Hallertau, Styrian Goldings and French Strisselspalt hops are used. The beer is then matured at 15°C for a minimum of four weeks on site before being distributed.

\n\n

If drunk right after bottling it has a \"young\" fresh flavor. The beer can be preserved for several years as it re-ferments once bottled. Even 35 year old Orval is still drinkable, if preserved at the right temperature. After about 1 year of preservation the beer flavor changes to a softer, sweeter and more intense experience compared to the young one.

\n\n

There are two versions of Orval, one is the normal one which can be bought in the stores and then there is also a special Petite Orval, which can only be drunk at the Orval abbey and is only produced for the Monks (no mass sale). Its alcohol percentage is a lot lower than the normal Orval.

\n", "OwnerUserId": "138", "LastEditorUserId": "138", "LastEditDate": "2014-01-22T16:06:42.307", "LastActivityDate": "2014-01-22T16:06:42.307", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"190"}} +{ "Id": "190", "PostTypeId": "1", "AcceptedAnswerId": "191", "CreationDate": "2014-01-22T13:43:27.817", "Score": "14", "ViewCount": "720", "Body": "

What temperature is ideal to store my beer? Is there a difference depending on the beer type?

\n", "OwnerUserId": "138", "LastEditorUserId": "10", "LastEditDate": "2014-01-22T14:36:44.873", "LastActivityDate": "2014-01-24T06:37:36.993", "Title": "What temperature is ideal to store my beer?", "Tags": "storage preservation", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"191"}} +{ "Id": "191", "PostTypeId": "2", "ParentId": "190", "CreationDate": "2014-01-22T13:43:27.817", "Score": "5", "Body": "

The ideal temperature for storing beer is between 10 to 15 ˚C (50 to 59 ˚F). If you are planning to preserve your beer for several years, it is better to have an even lower temperature of about 4 to 10 ˚C (40 - 50 ˚F).

\n\n

A cold cellar is ideal to preserve your beer as a humidity of about 60% - 65%. The reason being that it can affect the airtightness of the cork (or cap). Dry corks are bad for preserving beer as they will tend to break down and cause wild yiests or bacteria to enter the bottle (which would render the beer undrinkable).

\n\n

And as commented by Grohlier:

\n\n

Remember, light can drastically affect beer. Darker bottles can withstand more light than their green and clear counterparts. However, light is not good for beer in general, even if it is stored at the appropriate temperature.

\n", "OwnerUserId": "138", "LastEditorUserId": "80", "LastEditDate": "2014-01-24T06:37:36.993", "LastActivityDate": "2014-01-24T06:37:36.993", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"192"}} +{ "Id": "192", "PostTypeId": "1", "CreationDate": "2014-01-22T13:43:40.900", "Score": "7", "ViewCount": "1199", "Body": "

Does the choice of bottle cap design have any effect on the beer itself? With the primary goal being to keep the beer pressurized and prevent exposure, how do the different stoppers stack up against each other?

\n\n

It would seem to me that both the twist-top and flip-top cap designs provide roughly the same quality of seal, although a twist-top comes off easier and may be prone to opening during transport.

\n\n

In my experience, the flip-top caps, the ones where you need a bottle opener (or wooden table, or set of house keys) to get open, tend to come on the more mid-range to expensive beers whereas the standard, mass-produced cheapies come with a screw-off cap. Although, this isn't universal. I wonder if this is just a marketing technique (it needs a bottle opener so it must be good).

\n\n

Then there are the swing tops, which have a swinging metal bracket which, when pushed down, plugs the opening of the bottle with a rubber washer. Is this any better or worse than the bottle caps? I've always liked them for home brewing because they're easily recyclable.

\n", "OwnerUserId": "85", "LastActivityDate": "2014-01-22T16:24:59.820", "Title": "Does the choice of bottle cap or stopper make a difference?", "Tags": "storage bottling", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"193"}} +{ "Id": "193", "PostTypeId": "2", "ParentId": "192", "CreationDate": "2014-01-22T13:50:40.777", "Score": "3", "Body": "

I do not think that the type of cork is important. The important thing is that the cork used seals of the bottle so that no wild yeasts or bacteria are able to enter the bottle.

\n\n

Traditionally cork and flip-top caps have been used for beers required for preservation, however any seal would do.

\n\n

In my opinion it's more about tradition than functionality. Just as with french wines plastic corks can actually provide a more durable seal than metallic caps or real corks as they are less susceptible to decay due to moist. However in the spirit of the tradition and to keep customers happy it's often a less preferred option.

\n\n

For instance, Belgium is a fairly traditional country and you will often never find plastic beer bottles or twist-top caps. Not because they are up to the task, but just because the Belgians didn't like it.

\n", "OwnerUserId": "138", "LastEditorUserId": "62", "LastEditDate": "2014-01-22T16:24:59.820", "LastActivityDate": "2014-01-22T16:24:59.820", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"194"}} +{ "Id": "194", "PostTypeId": "2", "ParentId": "186", "CreationDate": "2014-01-22T13:56:06.050", "Score": "5", "Body": "

Standards and qualifications will play a big role in how we can change the perception of beer. Wine has had the Sommelier since 1907. Beer now has the Cicerone (of which I can not find a date when the certification program started). Just look at the Wikipedia difference between the Cicerone and Sommelier.

\n\n

Remember, wine has the \"low-brow\" wines that are just a cheap way to get drunk.

\n\n

As the craft beer industry continues to boom, we need to have more sophisticated conversations about beer. Talk about the subtleties that vary in like-beers, to be able to accurately describe mouth feel, know why head retention is critical, and grow as a community that is willing to take the time to teach those that show interest. Nothing will turn away a curious consumer like a bunch of beer snobs that act snobby.

\n\n

Beer will always have the beers that are associated with rednecks, tailgating, insert other disparaging term here. But as a community, we also need to embrace \"those types\" of beer. People love them, and we don't need to change that. The people that love those beers might also be willing to branch out into other styles. Unless you are trying to convince them by attacking the beer that they love and belittle them for not having an expanded range.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2014-01-22T14:26:10.687", "LastActivityDate": "2014-01-22T14:26:10.687", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"195"}} +{ "Id": "195", "PostTypeId": "1", "AcceptedAnswerId": "221", "CreationDate": "2014-01-22T13:56:11.500", "Score": "40", "ViewCount": "646374", "Body": "

Does beer really go bad after the 'best before'-date?

\n\n

I hear I can drink beer even after the expiration date, but is it safe and does it still taste good?

\n", "OwnerUserId": "138", "LastEditorUserId": "9887", "LastEditDate": "2020-01-19T21:40:50.857", "LastActivityDate": "2020-01-19T21:40:50.857", "Title": "Does beer really go bad after the 'best before'-date?", "Tags": "taste health preservation", "AnswerCount": "5", "CommentCount": "8", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"196"}} +{ "Id": "196", "PostTypeId": "2", "ParentId": "195", "CreationDate": "2014-01-22T13:56:11.500", "Score": "4", "Body": "

This depends entirely on the beer. As a rule of thumb I would say that any beer which is re-fermented once bottled, can be preserved for several years. You need to be careful when preserving, but it's not unheard of to drink 35 year old beers. Often these beers are the darker, stronger ones like Westmalle or Orval.

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-22T13:56:11.500", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"197"}} +{ "Id": "197", "PostTypeId": "2", "ParentId": "15", "CreationDate": "2014-01-22T14:13:29.950", "Score": "10", "Body": "

There was a study about this which concluded that tapped beer can actually be better for different reasons (although taste is rather subjective). The reasons are:

\n\n
    \n
  • Beer on draught tends to have less air within the barrel compared to its bottled counterpart, meaning that the beer doesn't oxidise as quickly
  • \n
  • Beer within a barrel tends to remain cool for longer periods. A bottled beer cools and warms up a lot faster, which (when this occurs) has a nefast effect on the beer's taste
  • \n
\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-22T14:13:29.950", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"198"}} +{ "Id": "198", "PostTypeId": "1", "AcceptedAnswerId": "199", "CreationDate": "2014-01-22T14:16:16.853", "Score": "8", "ViewCount": "435", "Body": "

Why do some beers have high alcohol levels and some have low ones? Is the alcohol content something that can be changed for any specific brew, and the brewer sets it at a specific level on purpose? Or is the alcohol level something that is achieved in combination with other factors in the brewing process (so for example, a particular taste will always coincide with a specific alcohol level)?

\n", "OwnerUserId": "143", "LastActivityDate": "2014-01-22T14:21:21.743", "Title": "What steps in the brewing process affect alcohol levels?", "Tags": "brewing taste alcohol-level", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"199"}} +{ "Id": "199", "PostTypeId": "2", "ParentId": "198", "CreationDate": "2014-01-22T14:21:21.743", "Score": "6", "Body": "

Beer is an alcoholic beverage produced by the saccharification of starch and fermentation of the resulting sugar. The starch and saccharification enzymes are often derived from malted cereal grains, most commonly malted barley and malted wheat.

\n\n

It can be influinced and is often influenced during the brewing process, by adding sugar (which gets transformed into alcohol) at certain phases during the brewing process. Several beers first get brewn on a barrel and then after a few weeks put onto a bottle after which sugar may be added. Adding the sugar causes a seconds fermentation which will result in a higher alcohol level.

\n\n

Often deeper tastes as experienced with for instance a La Trappe, Rocherfort 10 or Westvleteren are the effect of the higher alcohol level. While alcohol certainly plays a role in the beer's taste, spices and herbs are also important for the beer's taste body.

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-22T14:21:21.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"200"}} +{ "Id": "200", "PostTypeId": "1", "CreationDate": "2014-01-22T14:31:11.980", "Score": "2", "ViewCount": "529", "Body": "

How do you make a perfect pour from a bottle, given a typical non-widget, non-bottle-conditioned beer? Is there a special technique used to make a nice foam collar (not too much, not too few)?

\n", "OwnerUserId": "138", "LastEditorUserId": "27", "LastEditDate": "2014-01-22T23:41:54.813", "LastActivityDate": "2014-01-22T23:41:54.813", "Title": "How do you pour the perfect beer", "Tags": "pouring", "AnswerCount": "1", "CommentCount": "0", "ClosedDate": "2014-01-23T01:06:55.540", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"201"}} +{ "Id": "201", "PostTypeId": "2", "ParentId": "200", "CreationDate": "2014-01-22T14:31:11.980", "Score": "3", "Body": "

To pour a beer you take a clean beer glass, preferably those made by the brewery specifically for their beer. You hold the glass at 45 - 60 degree angle and gently pour the beer into the glass. You then move, after pouring half of the beer, the glass into the upright position as to make a foam colar of about 2 cm.

\n\n

Depending on the beer you should or should not empty the bottle completely. Very old beers should be poured carefully as they have a lot of sediment on the bottom. Younger beers can have sediment as well, but can still be drunk. The beer will get a more bittre taste if sediment is poured a long as well.

\n\n

Speed is also important, depending on the temperature of the beer, it can foam more. There are beers which have their own specifc pooring prescription. Some beers like Duvel actually need to be \"dumped\" into the glass with a vertical poor. Others like Guiness use a double poor.

\n", "OwnerUserId": "138", "LastEditorUserId": "138", "LastEditDate": "2014-01-22T15:51:57.810", "LastActivityDate": "2014-01-22T15:51:57.810", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"202"}} +{ "Id": "202", "PostTypeId": "2", "ParentId": "187", "CreationDate": "2014-01-22T14:53:53.253", "Score": "1", "Body": "

Orval is brewed primarily with pale malt (with some caramel malt) so it can most reasonably be classified as a Belgian Pale Ale.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-01-22T14:53:53.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"203"}} +{ "Id": "203", "PostTypeId": "1", "AcceptedAnswerId": "206", "CreationDate": "2014-01-22T15:11:10.153", "Score": "5", "ViewCount": "11599", "Body": "

When using a keg setup at home, either with a hand pump or a pressurized system, I keep getting a lot of foam after changing and/or pumping up the air pressure (In a hand system).

\n\n

This appears to me to be wasting beer, so how can I avoid this overfoaming of the pour?

\n", "OwnerUserId": "116", "LastActivityDate": "2014-01-22T19:30:08.067", "Title": "How to avoid keg foam?", "Tags": "pouring preparation-for-drinking", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"204"}} +{ "Id": "204", "PostTypeId": "1", "CreationDate": "2014-01-22T15:18:09.323", "Score": "10", "ViewCount": "978", "Body": "

I've got an extra room in my house that I was thinking of turning into a \"beer cellar\", or as much of a cellar as an above ground room can be. I don't have a problem with the actual construction, but especially since I'm in Phoenix, Arizona, I was trying to figure out how to insulate and cool the room for optimum storage.

\n\n

Also, should I build the shelves to store both 6 packs still in the original cardboard casings along with individual bottles, or should I plan to remove all bottles from packaging? Separate temperature control? Lighting considerations?

\n\n

One final consideration, should I keep all bottles of similar size on separate shelves, or should I have more open shelves for more air flow around bottles?

\n", "OwnerUserId": "116", "LastEditorUserId": "116", "LastEditDate": "2014-01-22T16:24:31.570", "LastActivityDate": "2014-01-31T20:17:30.217", "Title": "How do I build a beer room/cellar?", "Tags": "storage bottle-conditioning cellaring", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"205"}} +{ "Id": "205", "PostTypeId": "2", "ParentId": "172", "CreationDate": "2014-01-22T15:34:07.457", "Score": "4", "Body": "

In my (somewhat minimal) experience, Piwo Jasne and Piwo Mocne are both most commonly pilsners or perhaps more generally pale lagers. Piwo Mocne is higher in alcohol content and might be called a \"strong pale lager\", or perhaps tagged with the modifier \"Imperial\" to indicate the increased alcohol.

\n\n

That said, I don't think there is anything inherent in the term that precludes, for example, a strong ale being sold as Piwo Mocne. The two terms in the question aren't prescriptive of specific style.

\n", "OwnerUserId": "26", "LastActivityDate": "2014-01-22T15:34:07.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"206"}} +{ "Id": "206", "PostTypeId": "2", "ParentId": "203", "CreationDate": "2014-01-22T15:37:58.247", "Score": "4", "Body": "

Foam comes from over pumping. For most of my keg beers I (with a CO2 tank) use about 11-15psi). For a hand pump this is more difficult. You will have to resist the urge to over pump. If you are a little more engineer-minded you can look at THIS article to gauge more consistently your tap pressures. Make sure you let the keg settle after moving as well. Just like shaking a soda can, a lot of jarring will make the CO2 come out of solution.

\n\n

A trick I use on my homebrew system (I use 5 gallon kegs) is gently placing the keg on its side and slowly rolling it about 3 feet forward and then 3 feet back. Then, I place it back in the fridge and repeat 3 times throughout the day. This helps the CO2 re-dissolve into the beer. However, if you are pulling the keg out of a trunk, throwing it in a trash can and packing it with ice...this solution isn't viable. In which case you want to let it settle and resist the urge to over pump.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2014-01-22T19:30:08.067", "LastActivityDate": "2014-01-22T19:30:08.067", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"207"}} +{ "Id": "207", "PostTypeId": "2", "ParentId": "186", "CreationDate": "2014-01-22T15:39:29.197", "Score": "1", "Body": "

Grohlier correctly mentioned the Cicerone program, but I think the next, big step will involve engaging the \"cultured\" crowd-- literally getting the beer into their hands.

\n\n

One possible next step is fine-dining. Beer paring dinners are becoming a popular thing in my area, and there is at least one beer-centric fine-dining restaurant that I'm aware of. The \"cultured\" crowd sees wine as going hand-in-hand with food; invariably, at a wine tasting event, the host will comment, \"Can't you just imagine this with a nice lamb rack\"? Beer can absolutely play in that same field, and as more restaurants or dinners offer a beer option, or are beer centric, the perception of beer will change.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-22T15:39:29.197", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"209"}} +{ "Id": "209", "PostTypeId": "2", "ParentId": "10", "CreationDate": "2014-01-22T17:04:49.340", "Score": "3", "Body": "

This answer was originally an answer to Optimal mulling temperature?, but adapting it to this question seemed better, as the former asked a more specific question I couldn't address.

\n\n
\n

Most well known of all the mulled beers was Wassail. Recipes for this holiday favorite vary, but all were based upon the same basic formula. Sugar was placed in the bottom of a bowl, one pint of warm beer was then poured in along with nutmeg, ginger and cinnamon.

\n
\n\n

Smith, G. \"Mulled beer.\" [URL]

\n\n

One mulls beer by simmering beer in a pan, nearly always with the following ingredients:

\n\n
    \n
  • ginger
  • \n
  • nutmeg
  • \n
  • cinnamon
  • \n
  • cloves
  • \n
  • honey, agave nectar, or sugar
  • \n
\n\n

but also sometimes adding

\n\n
    \n
  • egg yolk
  • \n
  • cardamon
  • \n
  • star anise
  • \n
  • coriander
  • \n
  • black pepper
  • \n
  • allspice berries
  • \n
\n\n

and occasionally garnishing the drink with orange rinds. The mixture should be brought to a simmer but not a boil, and heated for 5 to 10 minutes depending on the recipe.

\n\n

Some even refer to warmed beer as \"mulled\" beer, i.e. beer heated it in its bottle in a pot (or slowcooker) filled with water. For this case, there is not a consensus on the heating temperature, as it appears to vary according to the beer:

\n\n
\n

Mulled beer needs to be heated slowly. A slow-cooker half-filled with water works well. Just open the bottle and stand it in the uncovered appliance. I also have used a large pot on the stove, with the burner on low. Don't let the water to get anywhere close to boiling -- 130 to 140 degrees is ideal. It's also important to keep the water level constant, so replace the water as it evaporates.

\n
\n\n

Brooks, J. R. \"Brooks on Beer: Hot, Mulled Beer?\" 2011. [URL]

\n\n
\n

Before serving, you warm the opened bottle [of Brasserie des Franches-Montagnes' La Dragonne] in a pot of hot water to raise the ale's temperature to about 110 degrees.

\n
\n\n

Russell, D. \"Cold day, cold beer? Give warm beer a try.\" 2010. [URL]

\n\n
\n

[Unibroue \"Quelque Chose\"] should be served like a mulled wine at 122 to 158 degrees Fahrenheit.

\n
\n\n

\"Unibroue Quelque Chose Beer.\" [URL]

\n", "OwnerUserId": "73", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-22T17:04:49.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"210"}} +{ "Id": "210", "PostTypeId": "1", "AcceptedAnswerId": "213", "CreationDate": "2014-01-22T17:34:23.803", "Score": "6", "ViewCount": "256", "Body": "

Some beers, like Lindemann's lambics, come in a bottle that resembles a champaigne bottle (but smaller), with a cork -- and a bottlecap. What does the cap add to this? Why is it there?

\n\n

(By \"resembles a champaigne bottle\" I mean the glass is thicker and the bottom has that \"indent\" characteristic of bottles whose contents are under higher-than-normal pressure.)

\n", "OwnerUserId": "43", "LastEditorUserId": "5064", "LastEditDate": "2021-09-25T20:11:44.650", "LastActivityDate": "2021-09-25T20:11:44.650", "Title": "What's the benefit of cap “and” cork?", "Tags": "bottling", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"211"}} +{ "Id": "211", "PostTypeId": "2", "ParentId": "63", "CreationDate": "2014-01-22T17:43:33.070", "Score": "4", "Body": "

Guinness, and a few other beers out there, are carbonated in part with nitrogen, which has much smaller bubbles. This creates a smoother mouthfeel; this is the \"creaminess\" that is often described.

\n\n

The use of nitrogen is probably uncommon for a few reasons. Firstly, there's the added production cost in the bottled or canned product: the widget. Secondly, I would wager that most breweries want the product to taste similar on draught as in a can or bottle, and it's very uncommon to have nitrogen available in a taproom. (You can get special taps which \"cream\" the beer on the way out, but again, for consistency those would have to be installed where-ever you sell your beer.) So it's something of an uphill battle. Finally, not all beers may benefit from a different type of carbonation than what's prevalent... but of course, that's subjective.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-22T17:43:33.070", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"212"}} +{ "Id": "212", "PostTypeId": "1", "AcceptedAnswerId": "214", "CreationDate": "2014-01-22T17:46:39.437", "Score": "17", "ViewCount": "6231", "Body": "

Some beers are classed as \"doublebock\" and some as \"triple bock\". Doubles seem to be a little stronger (higher APV) than average and triples seem to be stronger than that, but is that they definition or an effect? What exactly is being doubled or tripled in the production of these beers, and is the primary goal strength or some aspect of flavor or something else?

\n", "OwnerUserId": "43", "LastActivityDate": "2020-05-29T15:04:56.597", "Title": "What is being doubled or tripled in a doublebock/triple bock?", "Tags": "brewing style", "AnswerCount": "3", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"213"}} +{ "Id": "213", "PostTypeId": "2", "ParentId": "210", "CreationDate": "2014-01-22T17:53:02.120", "Score": "8", "Body": "

The bottle cap has the same purpose as a wire cage-- to ensure that the cork doesn't pop itself under the bottle's interior pressure.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-22T17:53:02.120", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"214"}} +{ "Id": "214", "PostTypeId": "2", "ParentId": "212", "CreationDate": "2014-01-22T18:03:38.733", "Score": "17", "Body": "

Doppelbock (or double bock) is intense in its maltiness and higher than \"single\" bock in terms of alcohol content, typically starting around 6-7% and going up to around 13%. There isn't anything specifically doubled or tripled; rather, doppel idiomatically refers to be being \"bigger\"/stronger than a standard bock. In terms of how higher \"maltiness\" is accomplished, that would depend on the specific beer; mashing at high temperatures, reducing lautering, using certain grains or different yeasts, and other factors all can increase the maltiness of the final product.

\n\n

A triple bock would just be a naming convention emphasizing even further the maltiness and alcoholic strength of the brew.

\n\n

As an aside, doppelbocks are an evolution of strong monastic brews used as \"liquid bread\" for fasting monks, as they were not allowed to consume solid food. These sweet, malty beers evolved over time into the modern doppelbock.

\n", "OwnerUserId": "26", "LastEditorUserId": "26", "LastEditDate": "2014-01-22T18:09:23.013", "LastActivityDate": "2014-01-22T18:09:23.013", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"215"}} +{ "Id": "215", "PostTypeId": "1", "AcceptedAnswerId": "216", "CreationDate": "2014-01-22T18:14:32.440", "Score": "22", "ViewCount": "52100", "Body": "

Beer is usually found in fridges in shops and supermarkets. At home, you would store it in the fridge as well before drinking. On the other hand, many liquor shops have stacks of beer cans outside fridges, and beer in kegs isn't usually refrigerated when it's transported.

\n\n

What are the benefits of keeping beer refrigerated? Which kinds of beer should/must be refrigerated and which ones don't need to be?

\n", "OwnerUserId": "53", "LastActivityDate": "2014-05-02T21:58:27.923", "Title": "Why should beer be kept in the fridge?", "Tags": "storage temperature", "AnswerCount": "5", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"216"}} +{ "Id": "216", "PostTypeId": "2", "ParentId": "215", "CreationDate": "2014-01-22T18:36:02.047", "Score": "17", "Body": "

Beer should be chilled to the proper serving temperature, which may vary according to ingredients and brewing methods, and even most of those are not set in stone, but can also vary according to taste.

\n\n

Guinness, for example, has a specific serving temperature related to how it was traditionally stored in Ireland (Kegs in the \"cold\" room, which was often just a room carved out of the hill behind the pub or similar).

\n\n

As far a why grocery and convenience stores keep it chilled, it's basically appealing to the \"grab and go\" drinker, who intends on consuming it in the very near future, or with a short transport. Often they are slightly higher price than if you were to go to a liquor store.

\n\n

Liquor stores have much larger selection and inventory, and refrigerating everything would be cost prohibitive. The price is generally slightly less than the grab and go locations, although many liqour stores still keep some of the more popular and mainstream beers in the cooler as well.

\n\n

For most commercially available beers, you can cool, warm and recool several times with minimal to no changes to taste. Some craft and/or home brews may be affected more by this process, but I don't know if there is any kind of a list available.

\n", "OwnerUserId": "116", "LastActivityDate": "2014-01-22T18:36:02.047", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"217"}} +{ "Id": "217", "PostTypeId": "2", "ParentId": "215", "CreationDate": "2014-01-22T18:36:21.657", "Score": "4", "Body": "

To quote Strongbad, \"A one that is not cold, is scarcely a one at all.\"

\n\n

In supermarkets you will often see the same beers stored in refrigerated and non-refrigerated sections. Or you may be able to get a beer cold somewhere but only warm somewhere else. If you go to a large beer store you will see beer of every variety sitting in aisles. The general reason for keeping beer on ice in a store is so it can be drunk right away.

\n\n

The one exception I can think of is bottle-conditioned beer. Beer where some degree of fermentation occurs in the bottle, giving it both natural carbonation and causing the flavor to develop over time. The flavors the beer will take on during conditioning vary based on warm or cold conditioning, and the beer will have a more limited shelf life. You will typically only see bottle conditioned beer as a product of home brewing.

\n", "OwnerUserId": "5", "LastActivityDate": "2014-01-22T18:36:21.657", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"218"}} +{ "Id": "218", "PostTypeId": "2", "ParentId": "36", "CreationDate": "2014-01-22T18:55:41.557", "Score": "1", "Body": "

I don't think that there is a commonly accepted glassware for saisons in general. Different sources point to 3 different types: the pint, the tupic, and the oversized wine (goblet?). A prticular saison may be better suited to one of those three, depending on whether it was crafted to have more or less aromatic, or just a beer for simple drinking.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-22T18:55:41.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"219"}} +{ "Id": "219", "PostTypeId": "2", "ParentId": "215", "CreationDate": "2014-01-22T19:38:57.590", "Score": "2", "Body": "

When talking about the temperature to store/serve beer it is important to note that there is a difference between types of beer (and what we call beer in the UK and what people call beer in other countries!).

\n\n

The Cask Marque website has a simple page denoting the various temperatures that some types of beer/ale should be stored at. It is important to note that some beers also need to be stored upright to ensure any live sediment stays at the bottom of the bottle.

\n", "OwnerUserId": "76", "LastActivityDate": "2014-01-22T19:38:57.590", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"220"}} +{ "Id": "220", "PostTypeId": "1", "AcceptedAnswerId": "226", "CreationDate": "2014-01-22T19:39:33.820", "Score": "5", "ViewCount": "989", "Body": "

We've got this local bar that brews their own beer but when I tried to buy a bottle to take home they said they were only allowed to serve the in house beer, not sell it. If the state of Florida issued them a liquor license to serve and sell beer, why can't they sell what they make?

\n\n

Just to be clear by sell I mean sell me a bottle and let me walk out with it.

\n", "OwnerUserId": "36", "LastActivityDate": "2014-01-22T20:12:55.030", "Title": "Why can't bars sell their in house brewed beers?", "Tags": "local laws", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"221"}} +{ "Id": "221", "PostTypeId": "2", "ParentId": "195", "CreationDate": "2014-01-22T19:46:23.340", "Score": "39", "Body": "

The beer will not be bad in the sense of unsafe to drink, since no harmful pathogens grow once the beer is fully fermented. So you can certainly drink the beer.

\n\n

However, the beer may not taste good! Over time, the beer will oxidize, both from oxygen introduced during packaging, but also through the release of oxygen from compounds previously oxidized in the beer. The oxygen causes the beer to stale, producing tones of sherry, paper, cardboard. Hop aromas are muted, and hop beta acids oxidize to produce an unrefined bitterness. Other forms of staling can lead to a soap taste.

\n\n

Generally, the higher the alcohol content of the beer the less you need to be concerned with the use by date.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-22T19:46:23.340", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"222"}} +{ "Id": "222", "PostTypeId": "2", "ParentId": "190", "CreationDate": "2014-01-22T19:50:34.237", "Score": "2", "Body": "

If the beer has been conditioned/pasteurized then you should store the beer as cold as possible - 2-5C is good. The biggest negative factor affecting beer storage is oxidative staling, and this proceeds 3 times faster for every 10°C/18°F increase in temperature. Inversely, each drop in temperature of the same amount causes the rate to reduce by the same 3-fold amount.

\n\n

If the beer is still living, then storage temperature will depend upon if the beer has fully conditioned, for example, storing at 15°C until the beer is conditioned and then dropping to lower temperatures.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-22T19:50:34.237", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"223"}} +{ "Id": "223", "PostTypeId": "2", "ParentId": "152", "CreationDate": "2014-01-22T19:53:47.033", "Score": "13", "Body": "

Thinking about a tomato pasta, I get acids, strong aromas, and a lingering mouthfeel. Based on this, I would lean towards a Flanders Red or Flanders Brown / Oud Bruin, depending on the acidity of the sauce (the red for more acid, the brown for less). These beers tends toward a wine-like experience, with their own acids and richness. You won't have a lot of hop presence, which would battle the aromas of the food, and the sour characters of a Flanders Red would compliment a strong tomato sauce. Alternately, perhaps a English-style brown ale, for its low bitterness and malt profile.

\n", "OwnerUserId": "27", "LastEditorUserId": "27", "LastEditDate": "2014-01-24T18:02:13.313", "LastActivityDate": "2014-01-24T18:02:13.313", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"224"}} +{ "Id": "224", "PostTypeId": "2", "ParentId": "195", "CreationDate": "2014-01-22T19:58:22.063", "Score": "3", "Body": "

This depends on many factors, but usually best-before date is what is states, also the date before which the full quality of the product is guaranteed.

\n\n

It doesn't mean you can't consume it afterwards, it just means that you can't make formal complaint about the taste or potential sickness caused by consumption of the product after that date.

\n\n

The people from food industry said me, that it is general rule, that the best-before date is normally exaggerated in bottom direction, just to protect the company from potential sues. I've often drank beer much after best-before date, and as long as that date wasn't exceeded by more than a year, I haven't noticed any big difference in taste.

\n", "OwnerUserId": "21", "LastActivityDate": "2014-01-22T19:58:22.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"225"}} +{ "Id": "225", "PostTypeId": "2", "ParentId": "169", "CreationDate": "2014-01-22T19:59:02.873", "Score": "4", "Body": "

Simply put, a draft (or draught) beer is one that uses a mechanism to push the beer from it's container (barrel/keg or can.) Typically the beer is pushed using gas, or drawn via a partial vacuum.

\n\n

A regular (non-draught) beer is a beer decanted without any special mechanism. For example a beer served directly from the bottle or a beer served from a tap inserted into the base of the cask/barrel and gravity fed.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-23T02:28:03.023", "LastActivityDate": "2014-01-23T02:28:03.023", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"226"}} +{ "Id": "226", "PostTypeId": "2", "ParentId": "220", "CreationDate": "2014-01-22T20:09:08.430", "Score": "12", "Body": "

Most States have two different types of liquor licenses. On premise and Off premise. On premise is selling alcohol to drink there, off premise is for taking stuff home. It is entirely possible that an establishment will only have one or the other.

\n", "OwnerUserId": "23", "LastActivityDate": "2014-01-22T20:09:08.430", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"227"}} +{ "Id": "227", "PostTypeId": "2", "ParentId": "220", "CreationDate": "2014-01-22T20:12:55.030", "Score": "2", "Body": "

It strongly depends on the country, but in many countries, including Poland, there is special tax on alcohol, called Excise. You need to register your product for that tax, and you must also get special permit for selling alcohol.

\n\n

There are other procedures for registering as alcohol producer for selling them to publicity, and for getting permission to sell your beer on place. You can always create your brewery!

\n\n

If the bar doesn't sell bottled beer, it means, that either the procedure of getting permit was too complicated or the conditions that need to be met made in not profitable. Their business model is to sell beer on place and they are happy with that.

\n", "OwnerUserId": "21", "LastActivityDate": "2014-01-22T20:12:55.030", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"228"}} +{ "Id": "228", "PostTypeId": "2", "ParentId": "172", "CreationDate": "2014-01-22T20:32:08.800", "Score": "5", "Body": "

Piwo Jasne is, translated, \"light beer\". It's the common market name for all 'light' beers, and they are mostly pilsners.

\n\n

Piwo Ciemne - this is \"dark beer\", so something like ale. They are dark, as the name suggests, and usually quite sweet.

\n\n

Piwo Mocne - this is simply the beer that is more condensed, so it has more alcohol. That can be light beers or dark beers (for example, very good dark strong beer \"Warka Strong\").

\n\n

Those names are the most popular market classifications in Poland, but usually you'll find more details on label or producer's page. For example, many beers have information, that they are pilsner-type beers.

\n", "OwnerUserId": "21", "LastActivityDate": "2014-01-22T20:32:08.800", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"229"}} +{ "Id": "229", "PostTypeId": "1", "CreationDate": "2014-01-22T21:05:56.283", "Score": "6", "ViewCount": "227", "Body": "

What's the difference between normal and Christmas beer? What makes them special?

\n", "OwnerUserId": "138", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:50:36.080", "LastActivityDate": "2019-05-19T14:38:28.873", "Title": "What's the difference between normal and Christmas beer?", "Tags": "occasions", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"230"}} +{ "Id": "230", "PostTypeId": "2", "ParentId": "229", "CreationDate": "2014-01-22T21:05:56.283", "Score": "-1", "Body": "

Christmas beer are seasonal beers brewed for consumption during Christmas period. These beers often (but not always) contain more alcohol than the brewery's other types of beer and may also contain spicing. It is usually quite dark, but not as dark as a stout, with a big malt presence.

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-22T21:05:56.283", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"231"}} +{ "Id": "231", "PostTypeId": "1", "CreationDate": "2014-01-22T21:25:31.543", "Score": "9", "ViewCount": "273", "Body": "

I know the actual result of the Widget, a fine, rich froth. I know the basic mechanism, pressurized gas escaping when the whole can depressurizes, and pushing the beer out from the widget. I still don't understand how this whole \"activation\" process works.

\n\n

What physical processes occur in the liquid that result in this particular effect. as opposed to, say, big, coarse big bubbles as would blowing air through a straw into beer create?

\n", "OwnerUserId": "130", "LastEditorUserId": "122", "LastEditDate": "2016-05-23T12:55:40.980", "LastActivityDate": "2016-05-23T12:55:40.980", "Title": "What is the science behind the Widget?", "Tags": "science", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"232"}} +{ "Id": "232", "PostTypeId": "2", "ParentId": "195", "CreationDate": "2014-01-22T21:28:32.463", "Score": "12", "Body": "

StillTasty.com has the following to say with regards to beer - particularly specifying that this applies to regular or light beer from bottles or cans manufactured by major breweries:

\n

Opened Containers

\n

Good for 1 day, refrigerated.

\n
\n

Tips:

\n
    \n
  • Keep refrigerated and tightly covered.
  • \n
  • After opening, most commercially manufactured beer will remain safe to consume if properly stored, but it will quickly become flat and lose flavor.
  • \n
\n
\n

Unopened Containers

\n

Good for 4-6 months, in pantry or refrigerator.

\n
\n

Tips:

\n
    \n
  • The precise answer to the question "How long does beer last?" depends to a large extent on storage conditions - store beer in cool, dark area.
  • \n
  • Keep beer away from direct sources of heat or light; too much exposure to light can cause beer to develop a foul taste.
  • \n
  • To maximize the shelf life of beer, store beer at a temperature between 45° F and 55° F (colder than the typical room temperature, but warmer than a refrigerator) - if this is not possible, store beer in the refrigerator.
  • \n
  • Storage times shown are for best quality only - after that, the beer's color or flavor may change, but in most cases, it will still be safe to consume if it has been stored properly.
  • \n
  • How to tell if beer is bad? If beer develops an off odor, flavor or appearance, it should be discarded for quality purposes.
  • \n
  • "Best By," "Best if Used By," and "Use By" dates on commercially packaged foods sold in the United States represent the manufacturer's estimate of how long the product will remain at peak quality - in most cases, the beer will still be safe to consume after that date, as long as it has been stored properly and the package is not damaged.
  • \n
  • Beer made by some micro-breweries may not retain peak quality as long as beer from major breweries.
  • \n
\n
\n", "OwnerUserId": "162", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-01-22T21:28:32.463", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"233"}} +{ "Id": "233", "PostTypeId": "1", "AcceptedAnswerId": "253", "CreationDate": "2014-01-22T21:31:58.850", "Score": "9", "ViewCount": "2554", "Body": "

I was at a picnic where someone brought us a keg of beer. They left the keg, the tap, and bid us to have fun and left. And there we stood, baffled how to get this to work. Someone figured something out and we got our cups full of beer froth with a tiny bit of beer on the bottom.

\n\n

I wouldn't want such a situation to repeat, so could someone give me a brief guide of how to assemble a beer stand (keg+tap) without getting it to explode into my face, get a proper stream going (instead of just a lot of froth), and pour it properly?

\n", "OwnerUserId": "130", "LastEditorUserId": "1077", "LastEditDate": "2016-01-04T00:05:42.467", "LastActivityDate": "2016-01-04T00:05:42.467", "Title": "Crash course to serving keg beer", "Tags": "serving keg", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"234"}} +{ "Id": "234", "PostTypeId": "1", "CreationDate": "2014-01-22T21:32:04.380", "Score": "9", "ViewCount": "90", "Body": "

Recently I've started seeing references to the term 'Cicerone' pop up around the internet; generally, they are described as a 'Beer Sommelier' and the subject is left at that.

\n\n

I'd like to understand the role a little bit better. What exactly does a cicerone do? If I encounter one in a restaurant, what sort of knowledge can I expect her to have? Is there a certification or credential of some sort that they're expected to receive? What sort of training is required?

\n", "OwnerUserId": "8", "LastActivityDate": "2014-01-23T16:34:07.970", "Title": "What exactly is a Cicerone? What do they do?", "Tags": "serving cicerone restaurants", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"235"}} +{ "Id": "235", "PostTypeId": "1", "AcceptedAnswerId": "238", "CreationDate": "2014-01-22T21:42:38.283", "Score": "11", "ViewCount": "2649", "Body": "

Dogfish Head makes IPAs called \"60 Minute\", \"90 Minute\", and \"120 Minute\". According to Wikipedia:

\n\n
\n

Their names refer to the length of the boil time of the wort in which the hops are continuously added.

\n
\n\n

There is also a limited edition \"75 Minute\" which is really a blend of the 60 & 90 varieties.

\n\n

What I find odd however, is that these numbers also roughly correspond to the beers' ABV% & IBU.

\n\n

Again, from Wikipedia:

\n\n
    \n
  • 60 Minute: 6.0% ABV, 60 IBU
  • \n
  • 90 Minute: 9.0% ABV, 90 IBU
  • \n
  • 120 Minute: 18% ABV, 120 IBU
  • \n
  • 75 Minute: 7.5% ABV, (no IBU listed)
  • \n
\n\n

Generally, the ABV% is about one-tenth the boil time in minutes, while the IBU is directly equivalent. Is this naturally due to the chemical reactions which occur during this part of the brewing process, or must Dogfish Head be doing something in particular which leads to an abnormally tight correlation here?

\n", "OwnerUserId": "162", "LastActivityDate": "2014-04-19T06:59:41.323", "Title": "How does boil time directly affect ABV% & IBU?", "Tags": "brewing ipa", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"236"}} +{ "Id": "236", "PostTypeId": "2", "ParentId": "235", "CreationDate": "2014-01-22T21:50:32.503", "Score": "2", "Body": "

There is no correlation between boil time and ABV.

\n\n

The increased ABV stems from them adding more malt to balance out the extreme bitterness for the beers with longer boil times.

\n", "OwnerUserId": "148", "LastActivityDate": "2014-01-22T21:50:32.503", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"238"}} +{ "Id": "238", "PostTypeId": "2", "ParentId": "235", "CreationDate": "2014-01-22T21:59:59.640", "Score": "12", "Body": "

First, it's important to note that the boil time is not the only thing that increases with each of those beers. Dogfish Head continually hops during the boil, and the boil extracts the alpha acids from the hops, giving the beer bitterness, so a longer boil with more hops results in a wort that is more bitter.

\n\n

Here is where the additional alcohol comes in: To counteract the extra bitterness, the beers that have boiled longer have both additional malt added to balance the bitterness, and are given additional fermentation and conditioning time to allow the yeast to convert all of those malt sugars into alcohol. In 120 Minute IPA's case, it spends an entire month in fermentation, resulting in an exceptionally high level of alcohol at the end.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-01-22T21:59:59.640", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"239"}} +{ "Id": "239", "PostTypeId": "2", "ParentId": "81", "CreationDate": "2014-01-22T22:23:34.453", "Score": "3", "Body": "

I guess there are 2 important think to point out:

\n

Beer is also alcohol

\n

That is directly from wikipedia:

\n
\n

Men's sexual behaviors can be affected dramatically by alcohol. Both chronic and acute alcohol consumption have been shown in most (but not all) studies to inhibit testosterone production in the testes. This is believed to be caused by the metabolism of alcohol reducing the NAD+/NADH ratio both in the liver and the testes; since the synthesis of testosterone requires NAD+, this tends to reduce testosterone production.

\n

As testosterone is critical for libido and physical arousal, alcohol tends to have deleterious effects on male sexual performance. Studies have been conducted that indicate increasing levels of alcohol intoxication produce a significant degradation in male masturbatory effectiveness (MME). This degradation was measured by measuring blood alcohol concentration (BAC) and ejaculation latency. Alcohol intoxication can decrease sexual arousal, decrease pleasureability and intensity of orgasm, and increase difficulty in attaining orgasm.

\n
\n

Since wikipedia show related soruce of that info and most of them are clinical research, we can say that alcohol have a negative effect on men.

\n
\n

In many women, alcohol increases sexual arousal and desire, although it does lower the physiological signs of arousal. Women have a different response to alcohol intoxication. Studies have shown that acute alcohol consumption tends to cause increased levels of testosterone and estradiol. Since testosterone controls in part the strength of libido in women, this tends to cause an increase in interest in sex. Also, because women have a higher percentage of body fat and less water in their bodies, alcohol can have a quicker, more severe impact. Women’s bodies take longer to process alcohol; more precisely, a woman's body often takes one-third longer to eliminate the substance.

\n

Sexual behavior in women under the influence of alcohol is also different from men. Studies have shown that increased BAC is associated with longer orgasmic latencies and decreased intensity of orgasm. Some women report a greater sexual arousal with increased alcohol consumption as well as increased sensations of pleasure during orgasm. Because ejaculatory response is visual and can more easily be measured in males, orgasmic response must be measured more intimately. In studies of the female orgasm under the influence of alcohol, orgasmic latencies were measured using a vaginal photoplethysmograph, which essentially measures vaginal blood volume.

\n
\n

Different from men, we can say alcohol have more pros beside few cons for women.

\n

Beer and couples

\n

Men

\n

Beer is probably the least powerful aphrodisiac alcoholic drink. The alcohol percentage in beer is low, meaning that more liquid has to be consumed to raise men's testosterone levels to hit that "comfortable" level. Most beers are very nourishing and filling, and when too many of them are consumed, they can create an unpleasant stomachache. Drinking too much beer will make men go to the washroom more often, as well as create a bloating sensation. The effects of being bloated surely don't entice sexual encounters and won't lead men to seek out sexual opportunities. Yet, some special beers have a local reputation for increasing libido, but even with that, beer is not the best choice for men.

\n

Women

\n

While hops in beer will have a negative impact on men’s hormonal balance, it may actually be positive for women. Hops has aphrodisiac-like qualities for women, as because of the phytoestrogen it contains, which mimic natural estrogen. Low sex drive in women is often cause by low levels of estrogen.

\n

Consuming beer, especially hop-rich varieties like IPA, could actually help restore hormonal balance and help with libido and also alleviate menopausal symptoms of fatigue, irritability and hot flashes

\n", "OwnerUserId": "81", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-01-22T22:23:34.453", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"240"}} +{ "Id": "240", "PostTypeId": "2", "ParentId": "229", "CreationDate": "2014-01-22T22:32:59.937", "Score": "9", "Body": "

A Christmas Ale seems to be another term for a \"Winter Warmer\" beer -- a dark, malty beer (raisins, dark fruit) meant to be enjoyed in colder months, with a warming effect, either from the actual alcohol, or spices it was brewed with (think nutmeg, clove, that sort of thing). To my mind, its kindred to a barley wine, just spiced up. This is not a warm summer day, sitting on the porch, type of beer, as you may have guessed.

\n\n

So a Christmas Ale is a sub-classification of beers in general.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-22T22:32:59.937", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"241"}} +{ "Id": "241", "PostTypeId": "2", "ParentId": "31", "CreationDate": "2014-01-22T23:14:25.710", "Score": "4", "Body": "

Unfortunately, there's not much one can do, at least using only household products.

\n\n

While filling, using a counterpressure bottle filler would maximize the longevity of the beer as well as filling the beer while it's very cold, near its freezing point ~29 degrees F (so that its CO2 is maximally dissolved), if you have a choice in the matter (likely not).

\n\n

Once opening the growler over multiple sessions, however, it's not the ineffectiveness of the seal (using a swing-top growler should do just fine) as much as it is the growing amounts of air that get sealed within.

\n\n

There exist several products funded and developed via Kickstarter you might want to check out:

\n\n\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-22T23:14:25.710", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"243"}} +{ "Id": "243", "PostTypeId": "1", "CreationDate": "2014-01-23T02:10:21.910", "Score": "9", "ViewCount": "291", "Body": "

In Czech Republic pubs with tank beer are pretty common and popular. There in many pubs and restaurants the beer is not stored in mobile casks or kegs but in much larger stationary tanks.

\n

\"enter

\n

Here is interesting article about tank beer in Prague.

\n

It seems that in other countries tank beer is not popular so much. For example I have found some references from United Kingdom but there the tank beer seems to be used mainly on sport stadiums and other large facilities.

\n

How is tank beer popular in other countries? Is not tank beer in pubs and restaurants only a Czech phenomenon?

\n", "OwnerUserId": "165", "LastEditorUserId": "5064", "LastEditDate": "2021-10-01T06:47:12.390", "LastActivityDate": "2021-10-01T06:47:12.390", "Title": "Popularity of tank beer", "Tags": "storage draught restaurants", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"244"}} +{ "Id": "244", "PostTypeId": "2", "ParentId": "235", "CreationDate": "2014-01-23T02:14:13.133", "Score": "1", "Body": "

As a note on the boil process and ABV. Boiling effectively stops the process of converting starches into sugars which the yeast can turn into alcohol by destroying enzymes in the malt. Therefore once you are boiling, this process has stopped. Boiling affects hops, by boiling off the aroma and extracting more of the organic acids that provide bitterness.

\n\n

What does affect abv is the period of time the wort is kept warm before boiling. This time and temperature affects how much of the starches convert and therefore trades between body and abv. Boiling fast means you have a lot of body and low alcohol. Boiling later means you have more abv and a lot less body.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-23T02:14:13.133", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"245"}} +{ "Id": "245", "PostTypeId": "1", "AcceptedAnswerId": "248", "CreationDate": "2014-01-23T02:44:18.310", "Score": "4", "ViewCount": "108", "Body": "

For pushing of beer out of a keg to the line and faucet various media could be used. Usually they are gases which come into a direct contact with the beer like: carbon dioxide, nitrogen, carbon dioxide + nitrogen, air etc.

\n\n

The beer could be also contained in a polypropylene sack to not come into contact with the pushing gas for example to avoid oxidization caused by the oxygen from air.

\n\n

What are the effects of various pushing media on the taste, durability and quality of the beer?

\n", "OwnerUserId": "165", "LastActivityDate": "2014-01-23T05:24:08.137", "Title": "What are the effects of draught beer pushing medium on beer's taste and quality?", "Tags": "taste draught gas", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"246"}} +{ "Id": "246", "PostTypeId": "1", "CreationDate": "2014-01-23T02:52:10.307", "Score": "8", "ViewCount": "137", "Body": "

Some brewers are awesome and kind enough to place information like the ABV, IBU, and even SRM right on the label of any beer they distribute. This is rad, because (in theory), it means I know exactly what I'm getting myself into, and how to expect a given beer should taste.

\n\n

However, I find that - especially with IBU, this information often isn't available - even though it is among the most reliable predictors of the overall flavor profile of a beer that I've never drank. As a consumer, it's a really helpful way to try to sort through different beers. I've been trying to educate my palate by paying attention to things like how different beers are rated along this scale, in order to better adjust my expectations, but unfortunately, without good information, this is hard to do.

\n\n

Is there any way that I can figure out how the beer I'm drinking rates on that scale without complicated equipment?

\n", "OwnerUserId": "8", "LastActivityDate": "2014-01-23T07:22:30.863", "Title": "Is there any way that I can discern the IBU of a beer if the bewer doesn't provide that information?", "Tags": "taste ibu", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"247"}} +{ "Id": "247", "PostTypeId": "2", "ParentId": "246", "CreationDate": "2014-01-23T03:00:53.643", "Score": "8", "Body": "

I would argue that even having the IBUs on the bottle you still don't really know what you're going to get.

\n\n

The bitterness of the beer isn't just down to the quantity of alpha acids, which is what the IBUs measure. The bitterness is offset by any residual sweetness in the beer.

\n\n

A brewer can brew two different beers with the same IBUs, and them taste different. For example, with two beers with 20 IBUs - one might taste balanced between sweet and bitter, while the other one just tastes sweet. Another pair of beers with 70 IBUs, one might be unpleasantly bitter, while the other a more balanced kind bitter, or even simply neutral. The FG can give you some insight into these differences, but it's still not going to be precise.

\n\n

Frankly the best way to know how the bitterness of the beer plays with the rest of the beer qualities is to read the label for any subjective descriptive text, or simply buy it and taste it.

\n\n

If you did want to measure it, you would need to use spectrophotometer and solvent extraction.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-23T07:22:30.863", "LastActivityDate": "2014-01-23T07:22:30.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"248"}} +{ "Id": "248", "PostTypeId": "2", "ParentId": "245", "CreationDate": "2014-01-23T03:41:23.157", "Score": "3", "Body": "

There are disposable kegs that work the way you describe - with a inner pouch that is filled with beer and gas pressure is applied to the outside of that.

\n\n

For draught systems that directly push the beer, there are these gasses in common use:

\n\n
    \n
  1. air - such as with a hand-pump
  2. \n
  3. CO2 - homebrewers and short runs
  4. \n
  5. N2 - for creamflow beers or where the beer line is longer than 50'.
  6. \n
  7. A mix of N2 and CO2
  8. \n
\n\n

Using air to push the beer doesn't have any immediate affect on taste. However, after a few hours the oxygen in the air will start to stale the beer, causing staling flavors, and a muted hop aroma.

\n\n

Using CO2 to push the beer can cause the beer to have more \"fizz\" and in extreme cases more carbonic bite.

\n\n

For long beer lines, N2 is used to overcome the carbonation problem with CO2.

\n\n

A combination of N2 and CO2, typically in the ratio 75%/25% is used for Guinness and creamflow beers. When used in conjunction with a stout or creamer faucet, this has a definite affect on the flavor and appearance of the beer - bitterness is rounded out and the beer has a thicker mouthfeel. When the beer is poured, the faucet and gas pressure cascades of bubbles to form when poured in the glass, which produce a lovely thick dense head of foam on top of the glass. With this type of serving, it's key to have a relatively low amount of dissolved CO2, or the glass will be filled with foam only.

\n", "OwnerUserId": "112", "LastEditorUserId": "13", "LastEditDate": "2014-01-23T05:24:08.137", "LastActivityDate": "2014-01-23T05:24:08.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"249"}} +{ "Id": "249", "PostTypeId": "2", "ParentId": "58", "CreationDate": "2014-01-23T05:36:48.357", "Score": "3", "Body": "

Provided all the bottling equipment was properly sanitised (which you'd hope was the case for commercial beer), you shouldn't notice any impact on the taste of the beer.

\n\n

That said, plastic bottles do not provide as good a seal as a crown sealed glass bottle. If you store the beer for long enough (say six months to a year), a plastic bottle will have lost some of its carbonation. If you stick to the \"drink by\" date on commercial beer though, this shouldn't be a problem.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-01-23T05:36:48.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"250"}} +{ "Id": "250", "PostTypeId": "1", "CreationDate": "2014-01-23T06:15:05.220", "Score": "11", "ViewCount": "212", "Body": "

I was talking to an American friend the other day and he told me they had something called \"light\" beer. This was to be a light product just as you would find for instance for Coca-Cola or other soda pop, which contains less calories than a normal beer.

\n\n

How are they produced to contain less calories than a normal beer?

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-23T06:59:29.180", "Title": "How is Light Beer produced?", "Tags": "brewing", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"251"}} +{ "Id": "251", "PostTypeId": "2", "ParentId": "231", "CreationDate": "2014-01-23T06:26:38.690", "Score": "9", "Body": "

Widgetized beers are packaged with liquid nitrogen, and the widget, which contains a small hole. The liquid nitrogen warms, turns to a gas inside the sealed can, which forces gas and beer into the widget through the hole.

\n\n

When the can is opened, the pressure inside drops suddenly, causing the contents of the widget to be shot into the beer, agitating the beer, producing the foam.

\n\n

If this were tried with a regularly carbonated beer, you'd end up with foam erupting out of the can. Hence, beers packaged with a widget have only about 1/3 the carbon dioxide dissolved than regular beers, plus the nitrogen, which creates a smooth mouthfeel and dense foam. Due to the requirements of reduced carbon-dioxide, the widget is used almost exclusively with Stouts, Bitters and Irish Red ales - styles that can be served with lower volumes of carbon-dioxide.

\n\n

see

\n\n\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-23T06:26:38.690", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"252"}} +{ "Id": "252", "PostTypeId": "2", "ParentId": "250", "CreationDate": "2014-01-23T06:54:13.143", "Score": "11", "Body": "

The calories in beer come mainly from the alcohol and the carbohydrates in the beer. By reducing either or both of these, the beer will become lighter. As well as being lighter in calories, light beers are typically lighter in taste also.

\n\n

Alcohol is reduced by starting with a lower amount of sugar in the wort (lower OG.) By fermenting less sugar, less alcohol is produced. The carbohydrates in beer are so-called residual sugars. These are reduced by reducing the amount of non-fermentable sugars, such as by adjusting the recipe to avoid malts that contain unfermentable sugars (such as Cara/Crystal malts, and highly kilned malts). Also the brewer can adjust the temperature that the grains are mashed to produce a more fermentable wort with less residual sugar.

\n\n

To see how alcohol and carbs affect the calories in beer, here's an excerpt from this table that lists the % abv, grams of carbohydrates in a 12.oz serving:

\n\n
Name        Brewer          abv     cal.    carbohydrates\nBusch Ice   Anheuser Busch  5.9%    169 12.5g     \nBusch Light Anheuser Busch  4.1%    95  3.2g\n
\n\n

The light beer has considerably less calories than the regular beer. In fact, around 80% of the calories in that beer come from the alcohol:

\n\n
1 g of alcohol = 7 kcal. \n\n1 g of carbohydrate = 4 kcal.\n\nVolume of beer is 12oz. x 28.6g = 343ml.  Volume of alcohol is 4.1 % x\n343 = 14 ml\n\nTo convert alcohol volume to weight, divide by 1.25. Weight of alcohol\nis 14 / 1.25 = 11.2g \n
\n\n

So

\n\n
\n

Energy from alcohol is 11.2 x 7 = 78.4 kcal. As percent: 78.4/95 =\n 82%

\n \n

Energy from carbs is 3.2 x 4 = 12.8. As percent: 12.8/95 = 13%

\n
\n\n

(The total is less than 100% - the data doesn't account for protein, which is typically about 1g/12oz, which is about 4 kcal.)

\n\n

By brewing the beer with an even lower %abv, the beer would be even lighter in calories, but possibly at the expense of flavor.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-23T06:59:29.180", "LastActivityDate": "2014-01-23T06:59:29.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"253"}} +{ "Id": "253", "PostTypeId": "2", "ParentId": "233", "CreationDate": "2014-01-23T08:00:41.727", "Score": "9", "Body": "

For a keg system to pour beer without excessive foam, the system must be balanced, and the serving line/faucet free of obstructions. Serving beer at too high a pressure, or through a half-open faucet/tap agitates the beer, causing the foam you saw.

\n\n

The system is balanced by having the pressure inside the keg set to just a touch more (0.5-1psi) than the pressure resistance outside the keg. The pressure resistance outside the keg comes from the beer line and the tap - the longer the beer line, the more resistance. Also any increase in height between the keg and the end of the tap will increase resistance.

\n\n

But even if the system was originally balanced, with the right dispensing pressure or adequate length of beer line, there are still some things working against you:

\n\n
    \n
  • if the keg has been sloshed about, some of the carbon dioxide will have come out of the beer and into the headspace, creating more pressure. It takes several days for this to equalize again.

  • \n
  • as the keg warms, the pressure inside the keg increases, since gas has a higher pressure at higher temperature with the same volume.

  • \n
\n\n

If you have a keg that is overpressured, you have 3 basic options:

\n\n
    \n
  1. reduce the pressure inside the keg by venting some of the gas. Some kegs have a pressure relief valve that can be pulled to reduce pressure. But do it in small bursts, and try the beer after each until you see that the beer comes out not to quickly.
  2. \n
  3. increase the resistance outside the keg by using a longer beer line and/or placing the keg somewhere low and serving the beer higher. (e.g. keg at ground level and stand up to serve the beer.)
  4. \n
  5. dispense a large amount beer to a large jug - removing beer from the keg will reduce the pressure in the keg, and keeping it in a jug gives time for the head on the beer to settle down. While you're waiting, just pour some more beer from the keg - this will come out slower and have less foam.
  6. \n
\n\n

see

\n\n\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-23T08:00:41.727", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"254"}} +{ "Id": "254", "PostTypeId": "1", "AcceptedAnswerId": "262", "CreationDate": "2014-01-23T08:26:49.693", "Score": "8", "ViewCount": "559", "Body": "

I've always been a fan of \"the colder the better\". I enjoy using a glass that has been placed in the freezer.

\n\n

Obviously, in this scenario, there's frozen condensation on it, but is this enough to dilute the beer such that I'm destroying the flavor by doing so?

\n", "OwnerUserId": "121", "LastActivityDate": "2014-01-25T15:38:52.787", "Title": "Does a frosted glass cause any significant dilution of the beer it holds?", "Tags": "serving temperature", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"255"}} +{ "Id": "255", "PostTypeId": "1", "AcceptedAnswerId": "261", "CreationDate": "2014-01-23T08:31:01.367", "Score": "9", "ViewCount": "1881", "Body": "

Do hops have (or had in the past) any use outside of brewing beer?

\n\n

I mean: In the question of dating first modern beers we have the first record of cultivating hops predating the first record of use of hops in beer by nearly a century. Could the hops have been cultivated for any other purpose than brewing, or can we safely assume if they were cultivated, there was beer made with them?

\n", "OwnerUserId": "130", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-23T09:51:55.270", "Title": "What uses do hops have outside of brewing?", "Tags": "hops history", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"256"}} +{ "Id": "256", "PostTypeId": "1", "AcceptedAnswerId": "264", "CreationDate": "2014-01-23T08:31:31.993", "Score": "19", "ViewCount": "26764", "Body": "

I've heard of beers such as our local brand in the Philippines and this one, and though I haven't sampled them yet, I am quite curious: how do you add flavor to beer? I've drank a few style of beers but I haven't dealt with any \"flavored\". As I'm not familiar with the brewing process yet, I want to know how as I don't think it's as simple as adding a syrup on the beer after brewing.

\n", "OwnerUserId": "127", "LastEditorUserId": "80", "LastEditDate": "2014-04-13T23:26:37.997", "LastActivityDate": "2019-06-25T00:09:25.363", "Title": "How can a beer be flavored?", "Tags": "brewing flavor", "AnswerCount": "7", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"257"}} +{ "Id": "257", "PostTypeId": "1", "AcceptedAnswerId": "258", "CreationDate": "2014-01-23T08:31:42.643", "Score": "14", "ViewCount": "4167", "Body": "

I know that there may be some debate raging over this today, depending on what side of the Atlantic one is on, but there seems to be a clear point in history when beer went from being enjoyed warm to warm beer being undesirable.

\n\n

I'm assuming some of this had to do with the advent of refrigeration, but in what era in America was the serving temperature more likely to be cold than warm? Has a similar trend occurred in Europe and other parts of the world?

\n", "OwnerUserId": "121", "LastActivityDate": "2014-01-23T08:39:06.640", "Title": "When in the history of serving beer did it transition from a warm beverage to a cold one?", "Tags": "serving temperature history", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"258"}} +{ "Id": "258", "PostTypeId": "2", "ParentId": "257", "CreationDate": "2014-01-23T08:39:06.640", "Score": "7", "Body": "

First, there are currently beers that are served warm, particularly very dark ones. So part of it has to do with the character of beer.

\n\n

There are two important factors I see, looking at this as a history nut but not knowing of any sources on this topic. The first, as you say, is widespread refrigeration. But this was not the major factor in cold beverages generally since ice was often preserved into the summer for cooling beverages (and has been since ancient times). But refrigeration makes this easier and thus cheaper.

\n\n

The second is actually the modern bottlecap which is a product of industrialization. Before the bottlecap most beers were served uncarbonated. They might be chilled or not, but they would have been entirely uncarbonated, shipped in wooden barrels, etc. and had an altogether different flavor and character than our modern beers. My experience playing with these concepts as a homebrewer suggests that such beers were better suited to being served warm than comparably dark carbonated beers.

\n\n

To understand why, I think you have to look at carbonation and how temperature affects that. Carbon dioxide is more soluble in cold water than warm water, so the warmer the beer is, the faster it goes flat, and the more it fizzes when opened. So you have two ways carbonation affects the picture. First it impacts the taste and serving conditions differently at different temperatures, and secondly it imparts a distinctive off-tang when the beer goes flat. Temperature helps offset the latter to a mild extent but at the expense of the former. I think this also helps explain why richer beers are more often served warm than lighter beers.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-23T08:39:06.640", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"259"}} +{ "Id": "259", "PostTypeId": "1", "AcceptedAnswerId": "263", "CreationDate": "2014-01-23T08:43:22.773", "Score": "12", "ViewCount": "116", "Body": "

Microbreweries make less than 15,000 barrels per year, and craft breweries make less than 6,000,000 barrels per year.

\n\n

Aside from this distinction, are there any differences in the styles of production by the two entities? If there's no difference in production technique, why make this distinction at all?

\n", "OwnerUserId": "121", "LastActivityDate": "2014-01-23T13:25:28.247", "Title": "Aside from the number of barrels they produce, what is the main difference between a craft brewery and a microbrewery?", "Tags": "brewing breweries production", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"260"}} +{ "Id": "260", "PostTypeId": "2", "ParentId": "255", "CreationDate": "2014-01-23T08:52:31.850", "Score": "5", "Body": "

According to Wikipedia, hops can be used in other beverages.

\n\n
\n

The only major commercial use for hops is in beer, although hops are also an ingredient in Julmust, a carbonated beverage similar to soda that is popular in Sweden during December, as well as Malta, a Latin American soft drink. Hops are sometimes added to some varieties of kvass. They are also used for flavor in some tisanes.

\n
\n\n

Hops are also used medicinally.

\n\n
\n

Hops are also used in herbal medicine in a way similar to valerian, as a treatment for anxiety, restlessness, and insomnia.

\n
\n\n

Also:

\n\n
\n

Hops are of interest for hormone replacement therapy, and are used in preparations for relief of menstruation-related problems.

\n
\n", "OwnerUserId": "149", "LastActivityDate": "2014-01-23T08:52:31.850", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"261"}} +{ "Id": "261", "PostTypeId": "2", "ParentId": "255", "CreationDate": "2014-01-23T09:46:52.057", "Score": "8", "Body": "

In answer to part of your question, there are probably no other reasons for large-scale cultivation of hops in the 8th century other than for brewing. While hops were used in medicine, the major national herbals of Anglo-Saxon England don't mention them. That we have strong references in early 8th century England (see \"Anglo-Saxon Food and Drink\" by Ann Hagen) to comparatively large-scale cultivation of hops strongly suggests they were used in brewing.

\n\n

Hops are used in medicine as well, but the amounts used there are very small in comparison to those used for brewing, and the two major Anglo-Saxon national herbals, Bald's Leechbook and The Lacnunga don't mention them (I think the Old English Herbarium does, but it is a translation into Old English of a continental Latin work). Keep in mind most of my work with these has been in translation (Pollington's) and translating plants from the descriptions often poses interesting issues. I could probably find standarized editions in Old English if needed however.

\n\n

One of the interesting connections here is that two of the most important early brewing herbs, hops and henbane, both had strong connections to female medical concerns (this is also interesting because historically brewing was women's work, hence the obsolete term \"alewife\" not referring to a fish--- the woman's place in keeping a tavern was privileged but brewing was sort of like cooking, something every woman was supposed to know). Hops to heavy periods, and henbane was used to address pain in childbirth. Both of these may contribute to Bald's warning that pregnant women may drink ale safely but not beer, for beer would cause a risk of miscarriage.

\n\n

In general for hops to be grown to an extent noteworthy, one is almost certainly talking about brewing, whether grains or honey, and whether alone or with other herbs.

\n", "OwnerUserId": "117", "LastEditorUserId": "117", "LastEditDate": "2014-01-23T09:51:55.270", "LastActivityDate": "2014-01-23T09:51:55.270", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"262"}} +{ "Id": "262", "PostTypeId": "2", "ParentId": "254", "CreationDate": "2014-01-23T12:23:47.430", "Score": "13", "Body": "

I would say that the condensate amounts to no more than 1ml for a 500ml glass, which is a 0.2% dilution.

\n\n

No to be too coarse, but I imagine most people dilute the beer more after taking a sip!

\n\n

Comparatively, I think the excessively cold temperature will contribute more to destroying the flavor than a small amount of condensate from the glass.

\n\n

So, if you enjoy the beer in a frozen glass, then keep at it.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-23T15:16:41.827", "LastActivityDate": "2014-01-23T15:16:41.827", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"263"}} +{ "Id": "263", "PostTypeId": "2", "ParentId": "259", "CreationDate": "2014-01-23T13:17:39.243", "Score": "9", "Body": "

That is the difference. The distinction is purely one of size, and exists mainly for purposes of trade and legal organization. The gulf between the two wasn't always so large, but as the Boston Beer Company (Sam Adams) has grown, the standard for 'Craft Brewing' has been increased to allow for their continued categorization as a Craft Brewer. Even with the increases, the gulf in capacity between 'craft' and the various major macrobrewers is so large as to render the adjustments to the definition of 'craft' largely benign. The additional standards that a so called 'craft' brewery must restrict the use of cheap adjuncts in their grain bill keeps out the few smaller regional breweries that might otherwise fall under the umbrella. There's no 'craft' in making cheap alcohol water out of rice and corn.

\n", "OwnerUserId": "8", "LastEditorUserId": "8", "LastEditDate": "2014-01-23T13:25:28.247", "LastActivityDate": "2014-01-23T13:25:28.247", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"264"}} +{ "Id": "264", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2014-01-23T13:25:55.353", "Score": "17", "Body": "

Ok, so the basic brewing process is this (not homebrewing detail here, just a distant overview):

\n\n

Heat your wort with water, steep, then add hops and boil, add more hops as you begin to cool, once cool enough add yeast, ferment, bottle.

\n\n

Flavored beers can be made a bunch of different ways. You can add herbs, spices, or flavorings before or after the boil, for example. Seeds and roots would usually be added before the boil; herbs would usually be added after. I would probably add fruit after but this is something that folks could argue about forever. If you buy something like smoke-flavored beer, chili flavored beer, etc. these are probably made this way.

\n\n

There's a second type of flavored beer I have seen for sale in certain bars and restaurants in Asia though. That's where you take a fairly light beer on tap and add it to a glass along with a shot of flavoring syrup (like lychee or peach). These usually have sweeter flavor with clearer fruit flavors than the fermented fruit beers. If the beer is pasteurized, the flavoring could be added before bottling and carbonation. I think that is what you are seeing.

\n", "OwnerUserId": "117", "LastEditorUserId": "73", "LastEditDate": "2014-01-23T18:14:03.807", "LastActivityDate": "2014-01-23T18:14:03.807", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"265"}} +{ "Id": "265", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2014-01-23T14:54:38.873", "Score": "-2", "Body": "

Just a fun fact: Some consider if you add something other than hops, malt, water and yeast to beer, it is no longer technically a beer according to German purity law. What you have is a malt beverage. (You can see this in the small print on malt beverages such as SweetWater Blue for example)

\n\n

\"Sweet

\n\n

Sweet Water Brewing Company Label

\n\n

Edit: (This is controversial and certainly not enforced)

\n\n

There are tons of flavors you can impart based on the types of hops and malts you use and when you add them in the brewing process.

\n\n

When boiling the wort, you can add hops to impart flavor midway through the process. If you add them at the beginning, you get bitterness primarily from the hops. If you add them at the end, you get primarily aroma from the hops.

\n\n

It is common practice to add hops in all 3 stages for those reasons.

\n\n

There's also a lot of flavor that you can add to the beer by aging it in barrels. It is common to use barrels from whiskey or bourbon for this purpose among craft brewers. This can add a huge punch of flavor in some beers. (This may be happening on in the Rogue beer you linked to)

\n", "OwnerUserId": "55", "LastEditorUserId": "5064", "LastEditDate": "2016-10-06T23:22:51.243", "LastActivityDate": "2016-10-06T23:22:51.243", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"266"}} +{ "Id": "266", "PostTypeId": "2", "ParentId": "234", "CreationDate": "2014-01-23T16:34:07.970", "Score": "3", "Body": "

Basically, they are experts in beer. They are knowledgeable in everything from the brewing process and the beer styles to properly serving beer and how to pair it with food. Yes, there are certification programs around, such as this one. I'm not sure about training, but it seems like it involves a series of exams, much like actuarial exams or the FE and PE for engineers. craftbeer.com has a great article.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-23T16:34:07.970", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"267"}} +{ "Id": "267", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2014-01-23T16:41:41.700", "Score": "7", "Body": "

The Rogue Voodoo Doughnut Maple Bacon Ale is an interesting example because the ingredients list shows two different ways flavors can be imparted to beer. The smoky bacon flavor comes both from the actual inclusion of bacon and from the smoked malt: Briess Cherrywood Smoked Malt, Weyermann Beechwood Smoked Malt, House-smoked Hickory Malt. As discussed in Does chocolate stout contain real chocolate?, certain flavors can be achieved through the malting process rather than through additional ingredients. Similarly maple is fermentable and could be added directly to boost alcohol content and impart a more subtle maple flavor.

\n\n

That said, this beer does contain actual bacon and \"maple flavor\". To get a look at and when and how the flavors are added, we can look at this clone recipe.

\n\n
Name              Amount     Time        Use\nFenugreek         0.25 oz    5.0 min     Boil\nMaple Extract     1.0 oz     6.0 days    Primary\nBacon, cooked     4.0 oz     0.0 days    Bottle\n
\n\n

Here, fenugreek is added during the boil phase, while creating the wort. The boiling helps extract the flavor from the herb. Maple extract gets added later during fermentation. Maple extract or syrup could be used, but syrup is more expensive and fermentable so a stronger maple flavor is being achieved with extract. The official ingredient list calls for \"Pure Maple Flavoring\" so I assume the same is being done there. Lastly the bacon is being added at the end. This is to add direct flavoring to the beer without interfering in the fermentation process.

\n", "OwnerUserId": "5", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-23T16:41:41.700", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"268"}} +{ "Id": "268", "PostTypeId": "1", "AcceptedAnswerId": "270", "CreationDate": "2014-01-23T16:49:11.707", "Score": "23", "ViewCount": "25639", "Body": "

I've heard that in the middle ages the water was so bad that everyone drank beer or wine. Is that true? Did pregnant women and small children also drink beer?

\n", "OwnerUserId": "36", "LastActivityDate": "2021-09-05T13:44:05.417", "Title": "Did everyone drink beer in the middle ages?", "Tags": "history health", "AnswerCount": "5", "CommentCount": "0", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"269"}} +{ "Id": "269", "PostTypeId": "1", "AcceptedAnswerId": "271", "CreationDate": "2014-01-23T17:21:16.297", "Score": "8", "ViewCount": "161", "Body": "

When you see advertising for beer, some of them advertise awards that they have won at various beer festivals and/or competitions.

\n\n

What are the judging standards at these competitions, and what are the most prestigious competitions?

\n", "OwnerUserId": "116", "LastEditorUserId": "116", "LastEditDate": "2014-01-24T04:01:59.643", "LastActivityDate": "2014-01-25T08:00:05.547", "Title": "What do they judge on at beer competitions?", "Tags": "brewing taste competition", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"270"}} +{ "Id": "270", "PostTypeId": "2", "ParentId": "268", "CreationDate": "2014-01-23T18:11:23.213", "Score": "34", "Body": "

Beer was commonly drunk in the middle ages (and renaissance), but what they drank is different from the beer we're used to today.

\n\n

Beer and ale, being grain-based, were important dietary staples -- it's said that beer is liquid bread, and that's not far off. For the common man (not nobility), in particular, grain made up a substantial part of the diet, with meat being fairly rare. (Will try to update later with a friend's research on amount of grain/household consumed in medieval England, but it's substantial.)

\n\n

Common beer was not aged for months or years like some beers today; rather, a batch might be produced in as little as half a week. These are \"small beers\" (or \"small ales\", for the unhopped variety), which are mildly alcoholic but drinkable in volume without unfortunate effects. These small beers/ales were produced in the home/manor; it was just one more task for the cooks. (See, for example, Markham's The English Housewife, 1615 -- so that's rnnaissance not medieval, but is consistent with earlier cooking sources I've seen.)

\n\n

I'm not aware of exceptions being made for pregnant women and small children. Arguing from absence of evidence is risky, but I've worked with a variety of medieval and renaissance cookbooks and the occasional medicinal source, and I haven't seen anything along the lines of \"drinks for the pregnant and young\".

\n\n

You may find the following helpful:

\n\n\n", "OwnerUserId": "43", "LastActivityDate": "2014-01-23T18:11:23.213", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"271"}} +{ "Id": "271", "PostTypeId": "2", "ParentId": "269", "CreationDate": "2014-01-23T18:35:41.450", "Score": "7", "Body": "

There are SO many different subcategories now. You can download the full judging guidelines and registration into the different styles.

\n\n

Main categories include:

\n\n
    \n
  • Beer
  • \n
  • Mead
  • \n
  • Cider
  • \n
\n\n

Some of the sub-categories of beer include:

\n\n
    \n
  1. LIGHT LAGER
  2. \n
  3. PILSNER
  4. \n
  5. EUROPEAN AMBER LAGER
  6. \n
  7. DARK LAGER
  8. \n
  9. BOCK
  10. \n
  11. LIGHT HYBRID BEER
  12. \n
  13. AMBER HYBRID BEER
  14. \n
  15. ENGLISH PALE ALE
  16. \n
  17. SCOTTISH AND IRISH ALE
  18. \n
  19. AMERICAN ALE
  20. \n
  21. ENGLISH BROWN ALE
  22. \n
  23. PORTER
  24. \n
  25. STOUT
  26. \n
  27. INDIA PALE ALE (IPA)
  28. \n
  29. GERMAN WHEAT AND RYE BEER
  30. \n
  31. BELGIAN AND FRENCH ALE
  32. \n
  33. SOUR ALE
  34. \n
  35. BELGIAN STRONG ALE
  36. \n
  37. STRONG ALE
  38. \n
  39. FRUIT BEER
  40. \n
  41. SPICE / HERB / VEGETABLE BEER
  42. \n
  43. SMOKE-FLAVORED AND WOOD-AGED BEER
  44. \n
  45. SPECIALTY BEER
  46. \n
\n\n

I think winning an award at any sanctioned competition would be huge. I do see the World Beer Awards, the US Open Beer Championships, Great American Beer Festival, and North American Beer Awards, just to name a few. There are also Homebrewing awards that are very competitive.

\n", "OwnerUserId": "22", "LastEditorUserId": "85", "LastEditDate": "2014-01-25T02:48:03.597", "LastActivityDate": "2014-01-25T02:48:03.597", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"272"}} +{ "Id": "272", "PostTypeId": "1", "CreationDate": "2014-01-23T18:47:57.217", "Score": "1", "ViewCount": "106", "Body": "

Is a black lager really a lager (in terms of yeast and brewing time)? Can I just throw in whatever would make a good stout but use lager yeast? If not, then how much play is there to the recipe?

\n\n

I've got a little bit of experience brewing ales, mainly stout and brown ale. Just a few months ago I tried my first experiment, deviating a little from a recipe in my choice of malts and yeast, but still using a malt extract for my primary malt. I have zero experience with brewing lager.

\n", "OwnerUserId": "181", "LastActivityDate": "2014-01-23T19:32:12.913", "Title": "How can I brew a black lager?", "Tags": "brewing lager schwarzbier", "AnswerCount": "1", "CommentCount": "3", "ClosedDate": "2014-01-23T20:30:02.307", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"273"}} +{ "Id": "273", "PostTypeId": "1", "CreationDate": "2014-01-23T19:28:38.253", "Score": "2", "ViewCount": "139", "Body": "

The first time I made a batch of beer, the guy said that you could use wine sanitize to clean the bottles (you can't - beer sanitizer kills more stuff than wine sanitizer). My resulting beer was soapy-tasting and cloudy. After that, I used a bleach solution and the next batch came out way better.

\n\n

At the local homebrewer's club, I've heard people talk about using hard liquor (e.g. cheap whiskey or vodka) to sanitize equipment, because they seem to think that other sanitizers affect the end taste.

\n\n

Has anyone used hard liquor to sanitize? Does it make a difference to the taste? Does it work well?

\n", "OwnerUserId": "182", "LastEditorUserId": "43", "LastEditDate": "2016-05-27T14:47:53.520", "LastActivityDate": "2016-05-27T14:47:53.520", "Title": "Sanitation Options (Hard Liquor)", "Tags": "brewing", "AnswerCount": "0", "CommentCount": "3", "ClosedDate": "2014-01-23T21:13:32.883", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"274"}} +{ "Id": "274", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2014-01-23T19:32:10.593", "Score": "3", "Body": "

Some types of hops have interesting flavors. For example, simcoe hops has a pine-y, fruity taste.

\n\n

Some interesting beer ideas would be pine, rosemary, or cardamom (I've had one - it was amazing).

\n\n

Also, some white beers (like Hoegaarden) have coriander and citrus peel.

\n", "OwnerUserId": "182", "LastActivityDate": "2014-01-23T19:32:10.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"275"}} +{ "Id": "275", "PostTypeId": "2", "ParentId": "272", "CreationDate": "2014-01-23T19:32:12.913", "Score": "1", "Body": "

A black lager, or perhaps a schwarzbier, really is a lager. Aside from the difference in the fermentation process, there will be some difference in your base ingredients, as a schwarzbier will focus less on the chocolates or coffee flavor of a stout.

\n\n

I suspect you may find significantly more information in homebrew.stackexchange.com, as hunse suggests. We would love to go into all sorts of detail over there!

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-23T19:32:12.913", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"277"}} +{ "Id": "277", "PostTypeId": "1", "AcceptedAnswerId": "287", "CreationDate": "2014-01-23T21:26:09.000", "Score": "7", "ViewCount": "73", "Body": "

Is there one beer competition (or ranking) that is widely recognized as the \"Superbowl\" of beer competitions? In that being the winner or rankings to come out of that competition are the standard to measure beers against.

\n", "OwnerUserId": "32", "LastActivityDate": "2014-01-23T23:56:28.700", "Title": "Is there a widely agreed upon beer ranking or competition?", "Tags": "taste", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"278"}} +{ "Id": "278", "PostTypeId": "1", "AcceptedAnswerId": "286", "CreationDate": "2014-01-23T21:59:56.217", "Score": "11", "ViewCount": "2335", "Body": "

Are there any common medicinal uses for beer? I'm thinking along the lines of how liquor can be used as an antiseptic and less of how red wine can improve your heart health.

\n", "OwnerUserId": "36", "LastEditorUserId": "36", "LastEditDate": "2014-01-23T22:26:31.877", "LastActivityDate": "2017-05-03T06:09:43.507", "Title": "Are there any medicinal uses for beer?", "Tags": "health", "AnswerCount": "5", "CommentCount": "6", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"279"}} +{ "Id": "279", "PostTypeId": "2", "ParentId": "278", "CreationDate": "2014-01-23T22:36:09.073", "Score": "7", "Body": "

Beer apparently not only lowers the risk of kidney stones, but also helps dissolve and pass existing kidney stones (additionally by dilating the ureters—the tubes connecting the kidneys to the bladder).

\n\n
\n

Beer consumption was inversely associated with risk of kidney stones; each bottle of beer consumed per day was estimated to reduce risk by 40% [...]

\n
\n\n

Hirvonen, T. et al. Nutrient Intake and Use of Beverages and the Risk of Kidney Stones among Male Smokers. 1999. [PDF]

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-23T22:36:09.073", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"280"}} +{ "Id": "280", "PostTypeId": "5", "CreationDate": "2014-01-23T22:59:21.117", "Score": "0", "Body": "

This tag is about Polish beers, as well as about beer consumption/availability in Poland. It should be used for questions about:

\n\n
    \n
  • Polish beers (classification, quality, brand names, availability abroad etc.)
  • \n
  • beer availability in Poland (what foreign beers you can buy and where)
  • \n
  • consumption culture and legal aspects (where you can drink beer, when and where is beer consumed etc.)
  • \n
\n", "OwnerUserId": "21", "LastEditorUserId": "21", "LastEditDate": "2014-01-24T17:51:29.997", "LastActivityDate": "2014-01-24T17:51:29.997", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"281"}} +{ "Id": "281", "PostTypeId": "4", "CreationDate": "2014-01-23T22:59:21.117", "Score": "0", "Body": "Questions about Polish beers, as well as about beer consumption/availability in Poland.", "OwnerUserId": "21", "LastEditorUserId": "21", "LastEditDate": "2014-01-24T17:53:08.240", "LastActivityDate": "2014-01-24T17:53:08.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"282"}} +{ "Id": "282", "PostTypeId": "5", "CreationDate": "2014-01-23T23:00:14.873", "Score": "0", "Body": "

Questions about flavor and how it is influenced by various factors such as temperature and glassware.

\n\n

Questions on this tag can be about the taste of any type of alcohol

\n", "OwnerUserId": "5539", "LastEditorUserId": "5078", "LastEditDate": "2016-06-16T15:31:15.457", "LastActivityDate": "2016-06-16T15:31:15.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"283"}} +{ "Id": "283", "PostTypeId": "4", "CreationDate": "2014-01-23T23:00:14.873", "Score": "0", "Body": "Questions about flavor and how it is influenced by various factors such as temperature and glassware. ", "OwnerUserId": "21", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:18:27.420", "LastActivityDate": "2016-06-16T15:18:27.420", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"284"}} +{ "Id": "284", "PostTypeId": "5", "CreationDate": "2014-01-23T23:02:43.387", "Score": "0", "Body": "

Questions about how alcohol consumption can affect health. Health aspects of consuming various types of alcohol, as well as influence of alcohol or creation conditions on its properties in that aspect.

\n", "OwnerUserId": "21", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:18:21.920", "LastActivityDate": "2016-06-16T15:18:21.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"285"}} +{ "Id": "285", "PostTypeId": "4", "CreationDate": "2014-01-23T23:02:43.387", "Score": "0", "Body": "Questions about how alcohol consumption can affect health. Health aspects of consuming various types of alcohol, as well as influence of alcohol or creation conditions on its properties in that aspect.", "OwnerUserId": "21", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:17:50.103", "LastActivityDate": "2016-06-16T15:17:50.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"286"}} +{ "Id": "286", "PostTypeId": "2", "ParentId": "278", "CreationDate": "2014-01-23T23:37:19.183", "Score": "12", "Body": "

Just like wine, absolutely! I'm not a doctor and I am not giving medical advice; I am not liable whatsoever for your drunken antics.

\n\n

With that said, in addition to kidney benefits:

\n\n
    \n
  • Beer contains high amounts of silicon, which makes bones stronger
  • \n
  • In moderation, it has been shown to lower the risk of cardiovascular problems. However, when abused, cardiovascular problems spike instead. It helps to raise levels of \"good cholesterol\" which helps to keep arteries free of blockages.
  • \n
  • It may help out your brain, keeping Alzheimer's disease at bay.
  • \n
  • It is high in antioxidants and helps reduce your risk of cancer.
  • \n
  • It is high in B vitamins, namely B6 and B12
  • \n
  • Moderate amounts of any alcohol, beer included, may help decrease your risk of stroke by reducing the chance of blood clotting in the cardiovascular system.
  • \n
  • I highly doubt this one, but apparently, studies have shown a reduced risk of diabetes among men who drink occasionally.
  • \n
  • Studies have shown that it has been linked to lower blood pressure.
  • \n
  • It contain fiber! Beta-glucans in particular, which are a soluble type of fiber.
  • \n
  • Like sauerkraut, pickles, kimchi, yogurt, miso, and kombucha, beer is a fermented food, so many of the benefits of fermented foods such as aiding in digestion may apply to beer as well.
  • \n
\n\n

Yahoo Beauty

\n\n

4 Health Benefits Of Beer Drinking: Antioxidants, B-Vitamin, And Protein Are There... But Don't Overdo It

\n", "OwnerUserId": "31", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T14:55:46.433", "LastActivityDate": "2016-10-08T14:55:46.433", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"287"}} +{ "Id": "287", "PostTypeId": "2", "ParentId": "277", "CreationDate": "2014-01-23T23:56:28.700", "Score": "5", "Body": "

There are some that claim this, such as the World Beer Cup - but like this one, these are mostly US only, so the range of beers is very limited - as well as generally charging to enter.

\n\n

The International Brewing Awards, now in it's 128th year is probably the best known global competition, with a truly international line-up (although this year the cask ales category was dominated by the UK)

\n", "OwnerUserId": "187", "LastActivityDate": "2014-01-23T23:56:28.700", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"288"}} +{ "Id": "288", "PostTypeId": "2", "ParentId": "268", "CreationDate": "2014-01-23T23:56:35.670", "Score": "7", "Body": "

I do not know much but I know there is a published book about that. Beer in the Middle Ages and the Renaissance by Richard W. Unger. Some lines from the excerpt of the book:

\n
\n

Modern beer, however, has little in common with the drink that carried that name through the Middle Ages and Renaissance. Looking at a time when beer was often a nutritional necessity, was sometimes used as medicine, could be flavored with everything from the bark of fir trees to thyme and fresh eggs, and was consumed by men, women, and children alike...

\n

It was the beverage of choice of urban populations that lacked access to secure sources of potable water; a commodity of economic as well as social importance; a safe drink for daily consumption that was less expensive than wine; and a major source of tax revenue for the state.

\n

Unger describes the transformation of the industry from small-scale production that was a basic part of housewifery to a highly regulated commercial enterprise dominated by the wealthy and overseen by government authorities.

\n
\n

These are some part I crop from the excerpt. Probably book have more but since I do not own it, I can not help you more.

\n

update: There is a big excerpt in Google Books. It contains first a few tens of pages with some removed pages but I guess it will give you more ingormation about that.

\n", "OwnerUserId": "81", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-01-24T00:03:42.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"289"}} +{ "Id": "289", "PostTypeId": "2", "ParentId": "278", "CreationDate": "2014-01-24T03:33:18.697", "Score": "3", "Body": "

There are a number of uses I have heard of people using beer for. I will add a personal experience below as well.

\n\n
    \n
  1. I have heard of people washing their hair with it, believing it helps promote healthy hair and scalp.

  2. \n
  3. Heavy, high starch beers, have long been used as a food source for fasting monks, sort of a liquid bread.

  4. \n
  5. Beer is commonly used for cooking certain things because the alcohol (as with wine) helps bring out certain flavors.

  6. \n
\n\n

Additionally I want to mention something I use it for. This works for me because of very specific reasons and I am not recommending that anyone else try it. However, I get asthma frequently following upper respiratory illnesses (I have since I was a teenager). I have a couple of alternative medical strategies for dealing with this depending on what is available. Note, if you have asthma, don't take medical advice from me: asthma can be life threatening. Work with a doctor. However, among other things, I find that drinking a number of drinks of beer or wine for two nights in a row will cause the asthma to clear up until I get sick again. This naturally works best when I am not otherwise consuming alcohol, but it allows me to be mostly medication free regarding my asthma (doing this two to three times a year). Again this has a bunch of risks, so I am mentioning it just for informational purposes. In general anything medical deserves a great deal of respect because what can cure can kill.

\n\n

Also some kinds of traditional beer have very specific health benefits. In Indonesia, \"tape hitam\" (black rice beer, consumed with the lees as a sort of soup) is generally understood to reduce blood cholesterol. As it turns out the helper cultures used are extremely close (and sometimes the same) as those which produce lovostatin. In fact lovostatin was originally found in Chinese fermented rice products.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-24T03:33:18.697", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"291"}} +{ "Id": "291", "PostTypeId": "2", "ParentId": "171", "CreationDate": "2014-01-24T06:19:47.043", "Score": "3", "Body": "

Almost but not boiling.

\n\n

I've been over a few recipes and \"simmering\" seems to be the consensus.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-24T06:19:47.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"292"}} +{ "Id": "292", "PostTypeId": "2", "ParentId": "21", "CreationDate": "2014-01-24T06:29:38.687", "Score": "7", "Body": "

It's true that there are different types of hangovers.

\n\n

However, those are mostly the result of differences in the impurities in the alcohol (that is, all the non-alcohol stuff that differentiates beer from wine from vodka). And for those differences, it's largely the difference between different types of liquor.

\n\n

Beer is, compositionally, pretty much the same. There might be enough difference between a heavy chocolate stout and a hoppy IPA, but between different brands of lighter beers (like pilsners), there's unlikely to be a noticeable difference in hangovers barring a weird food allergy to a minor element of one pilsner vs another.

\n\n

Some far more likely causes of your friends reporting worse hangovers for different brands of the same beer type are:

\n\n
    \n
  • Different quantities between evenings. One evening you drank 10 Pilsner Urquells and the next you drink 8 Beck's. How well are you really counting at that point? If you think you had \"about 9 beers\" both nights, you might blame the worse hangover on Pilner Urquell.
  • \n
  • Differences in alcohol level between brands. The difference between 3.8% and 4.2% adds up after a while.
  • \n
  • Small sample size. Would you rely on a medical study of only 3 or 4 people? Probably not. Likewise, if your friend reports getting a bad hangover the last 3 or 4 times they drank Konig, it may just be a bit of coincidence, and they would have had a nasty hangover those nights regardless of what they drank.
  • \n
\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-24T06:29:38.687", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"293"}} +{ "Id": "293", "PostTypeId": "1", "AcceptedAnswerId": "299", "CreationDate": "2014-01-24T06:44:00.180", "Score": "23", "ViewCount": "2832", "Body": "

It's happened to the best of us: you really want a nice hefeweizen or maybe a good bitter, but all you have are room-temperature bottles. Short of waiting an hour or so or (god forbid) putting ice in it, how can a bottle or can of beer be effectively cooled quickly?

\n", "OwnerUserId": "80", "LastActivityDate": "2017-02-17T10:17:24.317", "Title": "What are some ways to quickly cool a beer?", "Tags": "temperature drinking", "AnswerCount": "6", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"294"}} +{ "Id": "294", "PostTypeId": "2", "ParentId": "293", "CreationDate": "2014-01-24T07:00:16.783", "Score": "8", "Body": "

One method I know is to have large, heavy steins kept in the freezer. That way as soon as you bring beer, you can cool it by pouring into the stein. It won't cool your lukewarm beer to optimal temperature but it will give it a good few degrees drop.

\n\n

You can use \"reusable ice cubes\", which are essentially tiny plastic bags with water - that way you won't dilute your beer. There's also a stainless steel variety, it has slightly worse heat capacity but sinks to the bottom, which is less annoying than plastic bags floating in your stein.

\n\n

I read somewhere about making ice cubes from beer somewhere, so that they don't dilute your beer (you need a good freezer for that though). I can't vouch if they don't affect the taste though.

\n\n

A smart method though, is to use the buffer beer. Remove the \"buffer beer\" from the fridge, put the the lukewarm beer in the fridge, drink the buffer beer - meanwhile the beer you put in the fridge becomes your new buffer beer ;)

\n\n

edit: if you go with reusable ice cubes, use ones that contain water inside. Don't buy in to the scam of granite ice cubes or solid steel ice cubes. Their thermal capacity is abysmal. To provide the amount of temperature drop a single normal ice cube provides, you'd need to fill your glass with granite cubes to nearly the brim.

\n", "OwnerUserId": "130", "LastEditorUserId": "130", "LastEditDate": "2017-02-17T10:17:24.317", "LastActivityDate": "2017-02-17T10:17:24.317", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"295"}} +{ "Id": "295", "PostTypeId": "2", "ParentId": "293", "CreationDate": "2014-01-24T08:33:03.177", "Score": "9", "Body": "

Another option might be some what less conservative, but instead of using ice cubes you could also use chilling rocks. This is also often used as an alternative for cooling whisky without diluting it.

\n\n

\"enter

\n\n

Soapstone is a non-porous, odorless and inert stone. It is tasteless and will not absorb odors from your freezer like ice cubes do. Soapstone has a high thermal mass, giving it the natural ability to retain its temperature for extended periods of time.

\n\n

If you are a bit more patient, you can just put the beer in the freezer for about 10 minutes.

\n", "OwnerUserId": "138", "LastActivityDate": "2014-01-24T08:33:03.177", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"296"}} +{ "Id": "296", "PostTypeId": "2", "ParentId": "293", "CreationDate": "2014-01-24T09:29:52.157", "Score": "6", "Body": "

At the Defcon security conference in Las Vegas, the Beverage Cooling Contraption Contest is an exciting outdoor event.

\n\n

Over the years, techniques have included adiabatic cooling (using a jet engine), dry ice, liquid nitrogen etc.

\n\n

In 2008, this team managed to cool a keg of beer from 80F to 33F in 35 seconds using air power, dry ice and alcohol.

\n", "OwnerUserId": "187", "LastActivityDate": "2014-01-24T09:29:52.157", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"297"}} +{ "Id": "297", "PostTypeId": "1", "AcceptedAnswerId": "298", "CreationDate": "2014-01-24T10:45:39.400", "Score": "7", "ViewCount": "208", "Body": "

Most of lighter alcohols can be distilled or concentrated to obtain strong liquors. Wine can be distilled into cognac or brandy, apple cider is concentrated into applejack, Sake distilled into Imo—sake etc.

\n\n

Is there any liquor produced by concentrating or distilled from beer?

\n", "OwnerUserId": "130", "LastEditorUserId": "5078", "LastEditDate": "2016-05-27T15:05:49.537", "LastActivityDate": "2016-05-27T15:05:49.537", "Title": "What do you obtain by concentrating/distilling beer?", "Tags": "brewing", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"298"}} +{ "Id": "298", "PostTypeId": "2", "ParentId": "297", "CreationDate": "2014-01-24T11:16:35.797", "Score": "7", "Body": "

There are a number of distilled spirits that are made from the same grains that are used to make beer, so could be considered to be \"distilled beer\".

\n\n

The most obvious one is whisky, which can be made using various grains including including barley, malted barley, rye, malted rye, wheat, buckwheat and corn.[1] Whiskys don't generally include hops though, so you wouldn't use a random beer as a starting point.

\n\n

Vodka can also be made from grain, but the production process removes most of what you'd consider to be \"beer\".

\n", "OwnerUserId": "170", "LastActivityDate": "2014-01-24T11:16:35.797", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"299"}} +{ "Id": "299", "PostTypeId": "2", "ParentId": "293", "CreationDate": "2014-01-24T13:03:04.400", "Score": "23", "Body": "

Take a bucket. Or a bowl. Or a cooler. Or any other similar vessel. Put your beer bottles or cans (sealed! For the love of god, sealed!) at the bottom of the bucket.

\n\n

Fill it most of the way with ice. Then fill in with water until the bottles are submerged. Then throw in any remaining ice.

\n\n

Finally, add a volume of salt commensurate with the quantity of water, both solid and liquid, you've already got in there.

\n\n

Wait anywhere from 5 to 20 minutes depending on desired coldness and quantity of beer.

\n\n

Enjoy!

\n\n

(Rinse the rim of the bottle if you're finicky. Also, this will probably ruin the label. Sorry. Why do you care about that anyway? You weirdo.)

\n", "OwnerUserId": "8", "LastEditorUserId": "8", "LastEditDate": "2014-01-24T16:00:24.837", "LastActivityDate": "2014-01-24T16:00:24.837", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"300"}} +{ "Id": "300", "PostTypeId": "1", "AcceptedAnswerId": "311", "CreationDate": "2014-01-24T16:29:23.663", "Score": "21", "ViewCount": "1119", "Body": "

I know there are already one or two questions that touch on specific beers. However, I would like more of a comprehensive list. I would also like to understand why those types of glasses are chosen. Is it for head retention? Breathability? Appearances?

\n", "OwnerUserId": "22", "LastActivityDate": "2016-10-05T19:48:43.827", "Title": "What glasses are meant for which beers and why?", "Tags": "glassware", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"301"}} +{ "Id": "301", "PostTypeId": "5", "CreationDate": "2014-01-24T17:12:37.593", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-01-24T17:12:37.593", "LastActivityDate": "2014-01-24T17:12:37.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"302"}} +{ "Id": "302", "PostTypeId": "4", "CreationDate": "2014-01-24T17:12:37.593", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-01-24T17:12:37.593", "LastActivityDate": "2014-01-24T17:12:37.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"303"}} +{ "Id": "303", "PostTypeId": "5", "CreationDate": "2014-01-24T17:13:23.460", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-01-24T17:13:23.460", "LastActivityDate": "2014-01-24T17:13:23.460", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"304"}} +{ "Id": "304", "PostTypeId": "4", "CreationDate": "2014-01-24T17:13:23.460", "Score": "0", "Body": "Influence of various temperatures on taste, storing and brewing of beer", "OwnerUserId": "21", "LastEditorUserId": "21", "LastEditDate": "2014-01-24T17:51:22.200", "LastActivityDate": "2014-01-24T17:51:22.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"305"}} +{ "Id": "305", "PostTypeId": "5", "CreationDate": "2014-01-24T17:14:34.573", "Score": "0", "Body": "

Schwarzbier, or black beer, is a dark lager made in Germany. They tend to have an opaque, black color with hints of chocolate or coffee flavors, and are generally around 5% abv. They are similar to stout in that they are made from roasted malt, which gives them their dark color.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:57:03.400", "LastActivityDate": "2016-06-20T06:57:03.400", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"306"}} +{ "Id": "306", "PostTypeId": "4", "CreationDate": "2014-01-24T17:14:34.573", "Score": "0", "Body": "Schwarzbier, or black beer, is a dark lager made in Germany. They tend to have an opaque, black color with hints of chocolate or coffee flavors, and are generally around 5% abv. They are similar to stout in that they are made from roasted malt, which gives them their dark color.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:28:23.497", "LastActivityDate": "2016-06-18T00:28:23.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"307"}} +{ "Id": "307", "PostTypeId": "5", "CreationDate": "2014-01-24T17:15:45.873", "Score": "0", "Body": "

Questions about beer, wine, liquors or liqueurs that are available only in small geographic areas, although they may be very popular there, they are mostly unknown in other regions.

\n\n
\n

In geography, regions are areas that are broadly divided by physical characteristics (physical geography), human impact characteristics (human geography), and the interaction of humanity and the environment (environmental geography). Geographic regions and sub-regions are mostly described by their imprecisely defined, and sometimes transitory boundaries, except in human geography, where jurisdiction areas such as national borders are defined in law. - Region (Wikipedia)

\n
\n", "OwnerUserId": "-1", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T15:41:58.147", "LastActivityDate": "2018-09-29T15:41:58.147", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"308"}} +{ "Id": "308", "PostTypeId": "4", "CreationDate": "2014-01-24T17:15:45.873", "Score": "0", "Body": "Questions about beer, wine, liquors or liqueurs that are available only in small geographic areas, although they may be very popular there, they are mostly unknown in other regions.", "OwnerUserId": "21", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T15:41:58.147", "LastActivityDate": "2018-09-29T15:41:58.147", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"310"}} +{ "Id": "310", "PostTypeId": "2", "ParentId": "293", "CreationDate": "2014-01-24T20:23:48.367", "Score": "2", "Body": "

It takes a lot of time to cool a beer bottle in fridge. But it takes much less time if you put them in freezer. However, you shouldn't forget about such bottle, if you don't want the beer to freeze and explode the bottle.

\n\n

If it's not fast enough, take a few glasses, pour a bit beer into each and put them all into fridge. They will cool down much faster than the whole bottle, but the risk of making mess with broken glass is bigger, so it's better to check them each few minutes.

\n", "OwnerUserId": "21", "LastActivityDate": "2014-01-24T20:23:48.367", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"311"}} +{ "Id": "311", "PostTypeId": "2", "ParentId": "300", "CreationDate": "2014-01-24T20:34:05.573", "Score": "25", "Body": "

Function

\n\n

Beer glassware serves a few primary purposes:

\n\n
    \n
  • it is part of the branding of the beer (for beers with their own glass)
  • \n
  • it presents the beer (beauty is in the eye of the beer holder) showcasing the beer's color, clarity and/or carbonation.
  • \n
  • it influences how quickly volatiles (aromatics) are released
  • \n
  • it influences how much beer can be consumed per sip (e.g. compare champagne flute vs. beer mug)
  • \n
  • it can promote head retention (through the shape, plus small etchings in the base of the glass)
  • \n
\n\n

Some examples

\n\n
    \n
  • A Pilsner glass is a long tall V-shaped glass. It emphasizes the\ncolor, clarity and effervescence of the Pilsner. It's similar in\nprinciple to the fluted champagne glass, but having larger rim,\naffords larger sips.

  • \n
  • The traditional mug is a robust glass, primarly aimed at \"chinking\"\nglasses together and allowing large swallows of beer.

  • \n
  • The challace/goblet can be beautiful pieces of work, designed to\nshowcase the beer, and also promote and maintain a large head.

  • \n
  • The tulip glass captures volatiles (in the narrow part of the glass)\nwhile the large opening at the top supports a large head.

  • \n
  • The Sniffer, typically used for cognac/brandy, but also for very\nstrong ales, has a large base that curves up to a small opening to\ncapture the aromatics, and to allow for swirling to encourage more\naromatics to be released.

  • \n
  • The Stange, a long tall glass, amplifies the malt and hop\ncharacteristics by concentrating them in a smaller area, while also\nproviding a simple elegant presentation of the beer. Often used with\ndelicate beers.

  • \n
  • The Weizen glass is similar to the pilsner glass, but larger\n(typically 0.5l minimum) with plenty of room for the large head\ntypical of a wheat beer.

  • \n
\n\n

For more details and images, see Glassware for Beer.

\n", "OwnerUserId": "112", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T19:48:43.827", "LastActivityDate": "2016-10-05T19:48:43.827", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"312"}} +{ "Id": "312", "PostTypeId": "1", "AcceptedAnswerId": "318", "CreationDate": "2014-01-24T20:52:06.363", "Score": "9", "ViewCount": "838", "Body": "

I've seen quite a few recipes for this old Polish soup based on beer, egg, cheese and some other ingredients but all of them call for \"beer\" or at best \"light beer\". I don't doubt most make a rather tasty dish but I'd like to aim at historical accuracy. While probably Seasoned Advice will be good with the rest of ingredients, I'd like to ask about the beer choice:

\n\n

Which of beers currently in trade would most resemble what was brewed in Poland 300-500 years ago? What traits, properties, brands should I look for, that are most true to the antique recipes?

\n", "OwnerUserId": "130", "LastActivityDate": "2015-06-12T17:35:03.090", "Title": "What type of beer should be used in making Beer Soup (Polewka Piwna)", "Tags": "history cooking", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"313"}} +{ "Id": "313", "PostTypeId": "1", "CreationDate": "2014-01-25T00:58:19.447", "Score": "3", "ViewCount": "731", "Body": "

Beer has a fairly high calorie count - roughly between 150 and 300kcal per serving of 0.5l depending on kind. A significant percent of that is alcohol though, which is fully metabolized without any reserves whatsoever being retained - empty calories without actual nutritional contribution to organism.

\n\n

I wonder what is the actual typical contribution of beer to human body energy reserves - energy from sugars, fats, proteins? How should I count beer in my diet?

\n", "OwnerUserId": "130", "LastActivityDate": "2014-01-25T01:29:12.943", "Title": "What is the \"nutritional calorie\" count of beer?", "Tags": "nutrition", "AnswerCount": "1", "CommentCount": "3", "ClosedDate": "2014-01-26T21:15:05.223", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"314"}} +{ "Id": "314", "PostTypeId": "2", "ParentId": "313", "CreationDate": "2014-01-25T01:29:12.943", "Score": "5", "Body": "

It really comes down to the specific beer you are drinking.

\n\n

In addition to trace elements, and vitamins, the main dietary contribution of beer is from carbohydrates, proteins and alcohol.

\n\n

Protein and Carbohydrates provide 4 kcal/g energy, while alcohol provides 7 kcal/g.

\n\n

With dietary planing, you need to look at the specific foods you plan to consume, and no different with beer and diet - here you'll need to look at specific beers to determine nutritional and energy value.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-25T01:29:12.943", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"315"}} +{ "Id": "315", "PostTypeId": "1", "AcceptedAnswerId": "321", "CreationDate": "2014-01-25T03:26:55.270", "Score": "6", "ViewCount": "221", "Body": "

I enjoy the Sam Adams seasonal varieties, as they usually put people in the holiday spirit(s), etc., and they evoke the feeling of \"only for a limited time\" like a Shamrock shake at McDonalds.

\n\n

In that vein, were the beers originally designated \"seasonal\" due to the availability of certain ingredients during different times of the year (Harvest Pumpkin Ale springs to mind) or is this notion of a seasonal beer chiefly a marketing construct?

\n", "OwnerUserId": "121", "LastActivityDate": "2014-01-25T07:41:32.317", "Title": "Were the Sam Adams seasonal beers actually developed to accommodate seasonal availability of ingredients or are they just a marketing construct?", "Tags": "breweries ingredients varieties", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"316"}} +{ "Id": "316", "PostTypeId": "2", "ParentId": "312", "CreationDate": "2014-01-25T03:42:54.653", "Score": "1", "Body": "

There appears to be no consensus.

\n\n

After scanning hundreds of Google results for polewka piwna (and polewka beer) using Google Translate to read pages in Polish, I found, as you did, most recipes refer generically to \"beer (not dark).\"

\n\n

I found several pages getting as specific as \"Lager.\"

\n\n

I found a single blog post whose author used a blueberry-flavored ale.

\n\n

Therefore I'd conclude it's a matter of taste—maybe not a matter at all, but if so, up to experimentation.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-25T03:42:54.653", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"317"}} +{ "Id": "317", "PostTypeId": "2", "ParentId": "315", "CreationDate": "2014-01-25T03:59:37.547", "Score": "3", "Body": "

It's hard to say either way unless we find a primary source (someone privy to the company's strategies), but I think a refinement of your question might be—

\n\n
\n

Are any ingredients for brewing either unavailable or prohibitively expensive depending on season?

\n
\n\n

I doubt this is the case—if an ingredient were impractical to obtain in other seasons but one, then I'd imagine the price of that seasonal beer would be extraordinary, which isn't the case with Sam Adams' seasonal beers.

\n\n

If by chance there do exist such ingredients, then the next question is—are any of those ingredients used in Sam Adams' seasonal beers, which itself is a difficult question, since Sam Adams' recipes are proprietary. From Sam Adams' site, though,

\n\n
\n

Samuel Adams® Octoberfest is a malt lover's dream, masterfully blending together five roasts of barley to create a delicious harmony of sweet flavors including caramel and toffee. The beer is kept from being overly sweet by the elegant bitterness imparted by the German Noble hops.

\n
\n\n

Unless one of those \"five roasts of barley\" (providing the above is even true and not a marketing statement itself) is some rarity in other seasons, which I highly doubt, again, I'd say mass produced seasonal beers are only \"seasonal\" for the sake of marketing and inducing a certain feel—

\n\n
\n

Samuel Adams® Octoberfest provides a wonderful transition from the lighter beers of summer to the winter's heartier brews.

\n
\n\n

I feel guilty posting this as an answer, since, it's not a definitive answer, but I don't feel the question can be answered by anyone but a primary source, so perhaps this question should be closed instead—but I don't know what the appropriate reason would be.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-25T03:59:37.547", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"318"}} +{ "Id": "318", "PostTypeId": "2", "ParentId": "312", "CreationDate": "2014-01-25T04:21:31.223", "Score": "2", "Body": "

Let me start off by saying that I am an Italian-American, not a drop of Polish blood in me; so I'm not really in sync with Polish traditions.

\n\n

With that said, most of the recipes I'm seeing make it clear that you want to use a light beer, so obviously you're not gonna want to use a stout or porter here (though I'd be curious how it tastes; my friend swears by Guinness in his beef stew). With that said, most lagers or pilsners (a type of lager) should be fine for your purposes (of course I would avoid macro-lagers like Bud, Coors, and Miller because they are awful). Anchor Steam Beer might be interesting in the soup as it packs a lot of flavor for a lager type beer in my opinion. For authenticity, you're likely gonna want to use a pilsner. You have to realize, as the Wikipedia article points out, that until the 1840's or so, most beer from the area was top-fermented (like ales; modern pilsners and lagers are bottom-fermented) and the taste varied widely, so I'm not sure how a beer 300-500 years ago would have tasted. The closest you'll likely be able to go back is the 1840's; in which case I'd give Pilsner Urquell a shot as it's the first pilsner beer in the world. Victory makes a mean pilsner (Braumeister Pils) too. Unfortunately it's draft only, so if you have a growler handy you can use it; otherwise best look elsewhere. Of course you can probably get away with most Czech pilsners. I can't figure out why Beer Advocate doesn't have a sorting option so that you can sort based upon the rating, but I digress.

\n\n

You have to remember that beer was much different 300-500 years ago. Yes, there are some breweries such as Dogfish Head who recreate ancient ales. Yards has also recreated three brews based upon George Washington's, Thomas Jefferson's, and Ben Franklin's (my favorite of the three) original recipes. But for the most part, beer has evolved in the last 300-500 years; even in the case of the Dogfish Head and Yards brews I mentioned since they have to be pasteurized and must meet the (stupid) FDA standards here in the US. If you've ever tried raw milk, you know how much pasteurization changes the flavor; same goes for juice and beer.

\n\n

With that said, lets go back to the whole top-fermenting thing. You might want to give a grätzer a try as well. It's an ancient Polish beer which has been recently making a comeback. There's a project going on right now to recreate the brew. However, since the brew is so (recently) new, I'm not sure how available it is; you'll likely have to make a trip to San Francisco to get some. There are others too, such as those offered by Westbrook Brewing Co. and Schlossbrauerei Au. But I'm not sure how readily available these are either. You're probably better off brewing this once yourself until this beer is pulled off the \"endangered beers\" list. Yards has also experimented with this style, but again, it's not readily available (see Tadeusz Kosciuszko Smoked Pol)

\n\n

This website may also be of use to you; it outlines a history of Polish beers.

\n", "OwnerUserId": "31", "LastEditorUserId": "31", "LastEditDate": "2014-01-25T04:46:18.300", "LastActivityDate": "2014-01-25T04:46:18.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"319"}} +{ "Id": "319", "PostTypeId": "1", "AcceptedAnswerId": "493", "CreationDate": "2014-01-25T05:19:54.127", "Score": "8", "ViewCount": "583", "Body": "

One thing I have noticed around South-East Asia is that the primary affordable dark beer is Guiness. This appears to be due to high beer tariffs and the fact that Guiness has breweries all over (for example in Kuala Lumpur, Jakarta, and more places).

\n\n

How did this come to be? How did Guiness come to expand so far and wide? Was it during colonial days or later?

\n", "OwnerUserId": "117", "LastEditorUserId": "21", "LastEditDate": "2014-01-26T01:26:53.860", "LastActivityDate": "2014-02-05T11:08:07.850", "Title": "Why is Guiness so prolific in South-East Asia?", "Tags": "history", "AnswerCount": "1", "CommentCount": "4", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"320"}} +{ "Id": "320", "PostTypeId": "2", "ParentId": "152", "CreationDate": "2014-01-25T05:23:51.130", "Score": "2", "Body": "

As object88 mentioned, you're gonna want a Flanders Red or Flanders Brown because they are more wine like than beer like. You're gonna want to avoid overly hoppy beers like your IPA's or even pale ales. You could probably get away with a good lager or pilsner as well. Another suggestion, if you can get your hands on it would be one of Dogfish Head's newest ancient ales, Birra Etrusca Bronze, which is a recreation of an ancient Roman beer from the Tuscan part of Italy.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-25T05:23:51.130", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"321"}} +{ "Id": "321", "PostTypeId": "2", "ParentId": "315", "CreationDate": "2014-01-25T05:31:54.827", "Score": "5", "Body": "

A few notes on brewing and the seasons. It isn't a question of availability today but there are other factors that likely have seasonal impact.

\n\n

Traditionally (say, 1000 years ago), yes, brewing recipes would vary with the seasons. Some ingredients like henbane seed or barley keep extremely well. Others do better fresh (herbs and such). It is likely that gruit components varied with the seasons. This is not an issue today. Aside from some components of other beers (pumpkin ale, beers with seasonal fruit), most beers today do not involve ingredients that are problematic to preserve over a year.

\n\n

There is a second issue though. That is that beers traditionally have another factor which is starch content. The starch contributes significantly to calorie count of the beer, and usually darker, richer beers have higher carbohydrate count. It makes sense to consume more calories in cold weather than warm weather, and it makes sense that darker, heavier beers would be favored in winter while lighter beers would be favored in summer (although as one would note the heavier beers came out of traditions of using them as bread substitutes for fasting monks and so would have year-round applicability in monasteries).

\n\n

I don't think it has to do with availability. I think instead it has to do with seasonal expectations and reserving richer, heavier, higher starch beers for the winter (we have higher metabolism in winter, see http://www.mate.tue.nl/mate/pdfs/4319.pdf, and generally less availability of fresh foods before modern refrigeration and rapid transport). I don't know when this became common though. In general, when I look back a thousand years ago, I don't see anything in primary sources to suggest heavier malts in the winter. So trying to date this would seem speculative. There is a fairly obvious practical pattern though.

\n\n

EDIT: As I think about this, I would note that aside from lagers, it is very hard to brew in the winter in a colder climate. There may also be a component where heavier, stronger beers keep better and therefore keep into the winter better.

\n", "OwnerUserId": "117", "LastEditorUserId": "117", "LastEditDate": "2014-01-25T07:41:32.317", "LastActivityDate": "2014-01-25T07:41:32.317", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"322"}} +{ "Id": "322", "PostTypeId": "2", "ParentId": "268", "CreationDate": "2014-01-25T05:55:26.993", "Score": "13", "Body": "

The answer is complex, to be honest. In the Middle Ages? Where? When? These are important questions. Lumping around a thousand years and very different cultural eras (ranging from the Vendell-era Norse to the Byzantine Empire) into the same label is problematic at the very least.

\n\n

The answer I think to the question as stated has to be \"no\" insofar as there were times and places in the Middle Ages where beer was a clear luxury (early medieval Iceland comes to mind). Similarly, it isn't always clear that beer was universally consumed by the lower classes in much of the Middle Ages (though certainly towards the end it became more common).

\n\n

Example 1: Anglo-Saxon England

\n\n

This being said, beer was an important dietary staple in much (though not all!) of medieval Europe at least among monks, merchants, and the upper classes. Heavier beers were used as bread substitutes. For the common man in Anglo-Saxon England, though, even bread was a luxury and most grains were cooked into gruel, porridge, either with or without fracturing (think of bulgur wheat). This would then be supplemented with vegetables, eggs, dairy, and sometimes meat (even for the serfs, at least in Anglo-Saxon England, meat was not out of the question). Well water was the primary source of hydration in this era (again see Hagen, below), and laws were passed to ensure that drinking water directly from someone else's well was protected, legal activity (in other words, a well owner could restrict what people could take away from the well, but not what they could drink on the spot).

\n\n

If we separate out the lower classes and the areas where beer was not commonly available (Iceland, for example) the picture changes dramatically. Beer was very common, but not at all a homogeneous beverage. Bald's Leechbook (10th Century, Anglo-Saxon) contains the warning that while \"ealu\" (-> ale) may be consumed by pregnant women, \"beor\" (-> beer) causes miscarriage. Identifying these beverages is problematic. Ann Hagen (\"Anglo-Saxon Food and Drink\") suggests that \"beor\" must have been a strong mead instead of a malt liquor based on descriptions of specific gravity (she calculates a minimum alcohol content of around 20%). If it was a strong mead, it may have been further supplemented by herbs like mugwort, henbane, and hops, and therefore even more problematic than a strong mead might be. In this case, it would have been fermented grains would have been certainly consumed by children and pregnant women.

\n\n

Interestingly the traditional fermented rice and cassava dishes here in Indonesia are acceptable to serve to children too.

\n\n

Sources on history:

\n\n
    \n
  1. Hagen, Ann. \"Anglo-Saxon Food and Drink\"
  2. \n
  3. Pollington, Stephen. \"Leechcraft\" (for an edition of Bald's Leechbook with facing page translation).
  4. \n
\n\n

Example 2: Medieval Iceland

\n\n

The early Icelandic settlers tried to grow barley for beer with only very limited success. Alcoholic beverages were thus very much a luxury item, and usually if someone was going to have it (going mostly by medieval saga evidence as ethnography), it was going to be someone who had gone viking and returned with a fair bit of wealth. A second point though is that Icelandic society recognized about three levels of society (godhi, bondi, and thrall) based on relationship to certain kinds of property: a godhi (priest-attorney-legislator-jurist) owned a godhord (the office was property and could be sold, loaned, or even put into partnership property). A bondi (free juryman) owned land. And a thrall was owned (though the actual requirements would have been more like early serfdom than slavery due to a lack of central administration and enforcement). In addition to successful bondi-turned-vikings, you would have had the fact that a godhi had sufficient economic benefits from office to likely be able to afford alcoholic beverages at least sometimes.

\n\n

In Iceland, drinking was usually a social action and as far as the existing evidence goes would have been a specifically male activity limited to the sorts of ritualized drinking portrayed in Beowulf (such ritualized drinking is portrayed in the Volsung Saga, Egill's Saga, Njall's Saga, and many many others). Drunkenness was warned against in the literature, and there are very interesting questions of what else was put in the beverages, since poisoning was a pretty clear concern in the literature (Eddic poems such as Havamal and Sigdrifumal speak to both these concerns). From archaeological evidence from \"continental\" Scandinavia, we may surmise henbane was common, and this may to some extent play into the references to military drinking in Hrolf Kraki's Saga.

\n\n

In short, in Iceland, as far as we can tell, beer and mead would have been limited to far more ritualized roles (reinforcing social obligations, certain forms of oaths, etc). Literature on women and alcohol is very sparse. It's probable that the bride drank at the wedding as part of making the wedding official. There's a lot of uncertainty beyond this however in terms of attitudes towards pregnancy and alcohol.

\n\n

Further reading:

\n\n
    \n
  • the various sagas referenced above.
  • \n
  • The Poetic Edda (I usually recommend the Hollander translation if you are going to work in translation because he tends to be transparent about which emendations he is using).
  • \n
  • Byock, Jesse: Viking-Age Iceland
  • \n
  • Byock, Jesse: Medieval Iceland
  • \n
  • Roesdahl, Else: The Vikings
  • \n
  • Pollington, Stephen: Leechcraft (for some archaeological discussions of Scandinavian forts and brewing).
  • \n
\n", "OwnerUserId": "117", "LastEditorUserId": "2585", "LastEditDate": "2014-12-20T02:01:47.893", "LastActivityDate": "2014-12-20T02:01:47.893", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"323"}} +{ "Id": "323", "PostTypeId": "2", "ParentId": "269", "CreationDate": "2014-01-25T08:00:05.547", "Score": "5", "Body": "

In a nutshell, most beer judging is based on how well the beer represents the style category that it is entered into.

\n\n

These aspects of the beer are evaluated to see if they match with what is expected for the style:

\n\n
    \n
  • appearance: color / foam / clarity
  • \n
  • aroma: malt / hop / yeast / esters
  • \n
  • mouthfeel: body / carbonation
  • \n
  • flavor: lots here - see below
  • \n
  • aftertaste: flavors and aromas that persist after the beer is swallowed
  • \n
  • overall impression: drinkability
  • \n
\n\n

All of these are evaluated with respect to what is expected for the style, and points assigned. The beer may be perfectly drinkable, but be marked down because it doesn't fit with the style. For example, a hefeweizen that is dark would be lose points for appearance since they are light-colored beers by style.

\n\n

Judging sheets often have a list of flavor descriptors. Some flavors are bad for any beer, such as rubber, astringent, soapy, while others may or may not be considered faults depending upon style. For example, fruitiness in an English Ale is much desired, but not in a Pilsner, similarly low levels of diacetyl in a Stout is acceptable, but not in a Hefeweizen.

\n\n

The BJCP Scoresheet provides a working example of the notes a beer judge

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-25T08:00:05.547", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"324"}} +{ "Id": "324", "PostTypeId": "1", "AcceptedAnswerId": "326", "CreationDate": "2014-01-25T08:41:45.277", "Score": "3", "ViewCount": "283", "Body": "

Is there a visual criterion to roughly estimate the order of calories a beer contains?

\n\n

Specifically, I wonder if \"the darker the beer, the more energetic value it has\" holds [1]. Please, prove or disprove.

\n\n
\n\n

[1] (What lead to this belief: When I drink a trappist or a Guinness Extra Stout, both dark, I somehow identify the density with calories. But is that true?)

\n", "OwnerUserId": "200", "LastEditorUserId": "200", "LastEditDate": "2014-01-25T11:20:26.883", "LastActivityDate": "2019-07-05T08:26:19.017", "Title": "Which are the most caloric beers? Are there, say, visual criteria to identify them?", "Tags": "nutrition", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"325"}} +{ "Id": "325", "PostTypeId": "2", "ParentId": "293", "CreationDate": "2014-01-25T09:07:56.423", "Score": "2", "Body": "

One method I've used seen to good effect is to wrap the bottle in wet paper towels, and then put that in the freezer. Once the paper is frozen, the beer is quite cool, also the paper can be removed just by twisting it and it comes right off.

\n\n

Obviously, don't forget that you put them in the freezer to start with...

\n", "OwnerUserId": "195", "LastActivityDate": "2014-01-25T09:07:56.423", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"326"}} +{ "Id": "326", "PostTypeId": "2", "ParentId": "324", "CreationDate": "2014-01-25T09:42:43.840", "Score": "7", "Body": "

No. Color has little to do with calories, and possibly surprisingly, mouthfeel can have little influence also.

\n\n

You can have a Belgian Tripel that is medium light bodied, that has many more calories than a pint of Guinness, simply because the alcohol level in the Tripel contributes more calories than the sugars from Guinness. Also Guinness is served on Nitrogen which creates the sensation of a thicker beer, as if there were more carbs and protein giving a fuller body.

\n\n

The calorific load from a beer comes from both carbohydrates and alcohol, which are present in both dark and light beers regardless of beer color.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-25T09:42:43.840", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"327"}} +{ "Id": "327", "PostTypeId": "2", "ParentId": "324", "CreationDate": "2014-01-25T10:29:29.767", "Score": "5", "Body": "

Color does not effect calories it has. There is a guide at Beer Data for calculating home-brewed beer, but I'd guess it might help you too.

\n\n
cal per 12 oz beer = [(6.9 × ABW) + 4.0 × (RE - 0.1)] × FG × 3.55\n
\n\n
\n

The first item in brackets gives the caloric contribution of ethanol, which is determined from the ABW and the known value of 6.9 cal/g of ethanol. The second item in brackets gives the caloric contribution of carbohydrates, which is determined from the RE (Real Extract) and the known value of 4.0 cal/g for carbohydrates. An empirically-derived constant (0.1) accounts for the ash portion of the extract. Together, these terms give the calories per 100 g beer. This is easily converted to calories per 100 ml beer by accounting for the final gravity (FG, in (g beer)/(ml beer)). In turn, 100 ml is converted to 12 oz by a scalar (3.55, in (100ml/12 oz))

\n
\n\n

Also, there is a list of Complete Beer Calories which lists the calorie content of 250+ beers with calorie and ABV values.

\n", "OwnerUserId": "81", "LastEditorUserId": "39", "LastEditDate": "2014-01-26T02:54:09.770", "LastActivityDate": "2014-01-26T02:54:09.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"328"}} +{ "Id": "328", "PostTypeId": "2", "ParentId": "254", "CreationDate": "2014-01-25T15:38:52.787", "Score": "3", "Body": "

In France we're told that you should always rince the glass with a bit of cold water before serving to remove any trace of dust which will make the foam smoother.
\nSince you're not supposed to dry it afterward, I guess that would dilute the beer more than the fozen condensation and it's still not enough water to have any impact on the flavor.

\n", "OwnerUserId": "172", "LastActivityDate": "2014-01-25T15:38:52.787", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"329"}} +{ "Id": "329", "PostTypeId": "1", "AcceptedAnswerId": "331", "CreationDate": "2014-01-25T21:01:31.223", "Score": "10", "ViewCount": "208", "Body": "

Everyone knows how to drink beer, but it seems like it's an acquired skill to be able to differentiate (and articulate) different flavors. Whereas someone just turning 21 might say \"this beer tastes... dark\", a more experienced drinker might describe it as \"nutty and chocolatey, with mocha overtones and black currents in the aftertaste.\"

\n\n

What are some good strategies for moving from the first quote to the second? That is to say, how does one train their palate for beer tasting?

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-26T22:10:32.920", "Title": "What's a good way to train your palate?", "Tags": "taste", "AnswerCount": "3", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"330"}} +{ "Id": "330", "PostTypeId": "1", "AcceptedAnswerId": "332", "CreationDate": "2014-01-26T00:52:37.730", "Score": "5", "ViewCount": "4243", "Body": "

It may be dependent upon local custom, but what scales are used to measure beer? Is there one in particular that is used globally, or could be said to be specific to beer or alcoholic drinks?

\n\n

Typically, I see either pints or whatever the local standard of measurement for liquid is (say, fluid ounces or milliliters) so this isn't really a global standard.

\n\n

Serving sizes also aren't standard; in my country alone, if you go to a pub and ask for a pint or a schooner, the size will depend on what state you're in.

\n\n

However, I have seen the measurement l (lower-case L) used. Is this litres, or something else?

\n", "OwnerUserId": "85", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-26T04:42:37.917", "LastActivityDate": "2019-01-26T04:42:37.917", "Title": "What units are used to measure beer by volume?", "Tags": "terminology", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"331"}} +{ "Id": "331", "PostTypeId": "2", "ParentId": "329", "CreationDate": "2014-01-26T01:01:34.880", "Score": "9", "Body": "

Flights!

\n\n

I didn't know much about beers until I moved to San Diego, where I was introduced to beer flights:

\n\n

                \"enter

\n\n

Somehow, I'd never heard of or seen them!

\n\n

A flight is 4 or 5 small servings of beer, typically in 4.5- to 5-oz. glasses, usually served on a \"paddle.\" At least in San Diego, a flight costs as much as a pint on draught, so often it's a no-brainer to get flights if you want to taste a variety of beers. When you order a flight, you of course get to choose what 4 or 5 beers you'd like to have. I often select similar beers—a set of stouts and porters—or a bunch of IPAs (and doubles)—so I can really get a chance to taste what distinguishes specific brands and subtypes.

\n\n

When a friend of mine flew in from New York (also never having heard of flights), he was enthusiastic about getting two flights and sharing all 10—doing blind tests on one another. He went from saying, before we got to the bar, \"All beer tastes the same to me—I can only taste dark or light,\" to, \"Oh man, I didn't know I was even capable of tasting such little differences!\"

\n\n

So, beer flights are an effective yet casual and fun way to get yourself or anyone to appreciate the multifarious tastes of beers.

\n\n

I think trying to start with all the ingredients, brewing processes, and the (dizzying) gamut of terminologies for all the subtle tastes, might be like teaching someone to drive by starting with the difference between torque and horsepower—they can't fully appreciate the meaning of words until they've experienced the sensations they describe. By contrasting beers side-by-side, we build an internal, as-of-yet-wordless \"vocabulary\" of tastes, e.g \"This beer has more of... that thing, whatever it's called, than this one,\" and then we learn terminology (and ingredients and processes) as a means of filling those voids in words for senses we've experienced. Otherwise, we're storing abstract definitions, which we don't retain very well.

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2014-01-26T15:29:41.170", "LastActivityDate": "2014-01-26T15:29:41.170", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"332"}} +{ "Id": "332", "PostTypeId": "2", "ParentId": "330", "CreationDate": "2014-01-26T01:05:51.803", "Score": "6", "Body": "

Beer is measured by volume, but which measure depends both on country and on the context in which the measure is being used.

\n\n

For instance, in the US, you will almost always find servings of beer measured in fluid ounces.

\n\n

However, in production, you will regularly find the measure being listed in barrels (31 imperial gallons).

\n\n

You'll regularly find beer sold in pints (16oz), though that could also mean a 20oz glass as you only get 16oz of beer with a proper head.

\n\n

My limited experience with bits of Europe indicates beer there is sold by the mL. Also worth noting is that Liter can be represented as either L or l so when you see \"l\" you're seeing Liters.

\n\n

So, no. There isn't a global unit of volume for beer. But it is almost always sold by volume.

\n\n

Also, with the rising popularity of high gravity beers, standard beer servings vary in part because to serve similar amounts of alcohol across standard servings you've got to serve differing quantities.

\n", "OwnerUserId": "39", "LastEditorUserId": "39", "LastEditDate": "2014-01-26T01:45:05.330", "LastActivityDate": "2014-01-26T01:45:05.330", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"333"}} +{ "Id": "333", "PostTypeId": "1", "AcceptedAnswerId": "334", "CreationDate": "2014-01-26T01:52:05.843", "Score": "9", "ViewCount": "986", "Body": "

I have seen occasionally discussion of \"sour malt\" on home brewing forums. What is it? Are there any commercially available sour malt beers?

\n", "OwnerUserId": "117", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:50:06.610", "LastActivityDate": "2016-07-28T14:50:06.610", "Title": "What is a \"sour malt\" beer? Are there any commercially available sour malt beers?", "Tags": "sour-beer", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"334"}} +{ "Id": "334", "PostTypeId": "2", "ParentId": "333", "CreationDate": "2014-01-26T03:27:35.467", "Score": "7", "Body": "

Sour malt (aka. acidulated malt, saurmalt) is a base malt that has been processed so that it contains lactic acid.

\n\n

The acid is useful in adjusting the pH of the mash during brewing. Typically brewers use a 1-10% with 2-5% being typical.

\n\n

The malt's existence is due to the Reinheitsgebot - the German Beer Purity law. This forbids the use of any ingredients other than malt, hops, water and yeast - making the use of other additives to adjust mash pH illegal. Hence, saurmalt was developed as a way to allow brewers to adjust the mash pH while staying within the restrictions of the purity law.

\n\n

Nowadays, using a sour mash goes way further than just correcting pH. It's used to define the sourness in some beers, such as Berliner Weisse, Lambics, Flemish Reds and Browns and Stouts.

\n\n

So, while you can't buy a beer made only with sour malt, there are plenty that have used it, or an equivalent souring technique to produce the sour notes in the beer.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-26T03:27:35.467", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"335"}} +{ "Id": "335", "PostTypeId": "2", "ParentId": "329", "CreationDate": "2014-01-26T03:56:02.860", "Score": "3", "Body": "

In a word, practice.

\n\n

Most people drinking beer don't actually \"taste\" the beer properly. They just drink it. Of course, you do get some impression of the beer just from casual drinking, but it's not on the same level as if you are properly tasting it.

\n\n

So, the first step to getting from the first quote to the second is learning how to taste the beer correctly and completely so that you can pick up all the nuances in the flavor and aroma. How to sample a beer properly? I think that's a good candidate for a new question!

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-26T03:56:02.860", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"336"}} +{ "Id": "336", "PostTypeId": "2", "ParentId": "330", "CreationDate": "2014-01-26T04:47:09.983", "Score": "6", "Body": "

In the UK, beer in Bars and Pubs is still sold in Pints, even though EU regulations require the actual quantity to be described in metric units.

\n\n

But asking for a \"pint\" is a lot easier than asking for \"586ml of beer please barman\". (Note that they use imperial units in the UK, and UK pint is bigger than it's US counterpart.)

\n\n

Bottled beer is invariably sold in 500ml bottles or 330ml bottles.

\n\n

In Scandinavia, and I believe most of Europe, beer is sold in half liters (500ml) in bars, while bottles are typically 500ml or 330ml.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-26T04:47:09.983", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"337"}} +{ "Id": "337", "PostTypeId": "1", "CreationDate": "2014-01-26T19:20:22.630", "Score": "15", "ViewCount": "211", "Body": "

If I want to fully appreciate what a beer is offering, how do I properly taste the beer to reveal all the nuances in the aroma, flavor and aftertaste?

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-26T21:43:30.797", "LastActivityDate": "2014-01-27T16:31:00.187", "Title": "How do you properly taste a beer?", "Tags": "taste cicerone", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"338"}} +{ "Id": "338", "PostTypeId": "1", "CreationDate": "2014-01-26T20:39:28.193", "Score": "11", "ViewCount": "8389", "Body": "

I'll be the first to admit that I have, at best, the palate of a highly experienced amateur. I can tell an IPA from a Stout from a Doppelbock primarily on the common visual, olfactory, and above all else tastes that are found throughout any example of each style. However, while I've had many delightful 'Saisons' in my time as a drinker of beer, I've never been able to get a straight answer about what characteristics define the style. The best I've ever been able to get is vague handwavey historical notions about the beers role as a 'refreshing summer ale'.

\n\n

Which is... somewhat unsatisfying to someone who would hope that the term might actually mean something. So, does it? If so, what? If I pick up a Saison from a brewery I've never heard of, what characteristics should I expect it to exhibit that earn it the name?

\n", "OwnerUserId": "8", "LastActivityDate": "2015-06-18T15:18:52.910", "Title": "What are the defining characteristics of a Saison? What should I expect when I drink one?", "Tags": "style saison", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"339"}} +{ "Id": "339", "PostTypeId": "2", "ParentId": "337", "CreationDate": "2014-01-26T21:33:08.903", "Score": "3", "Body": "

According to Oz Clarke, you should burp the beer (to judge the hops).

\n\n

See this clip from Oz & James Drink to Britain (episode 1, starting at about 2:28):
\nhttp://www.youtube.com/watch?v=e1FH076U4Lk&t=2m28s

\n", "OwnerUserId": "166", "LastEditorUserId": "166", "LastEditDate": "2014-01-27T16:31:00.187", "LastActivityDate": "2014-01-27T16:31:00.187", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"340"}} +{ "Id": "340", "PostTypeId": "1", "AcceptedAnswerId": "344", "CreationDate": "2014-01-26T21:44:11.193", "Score": "9", "ViewCount": "2522", "Body": "

I know dubbels are considered as strong beers, but what should I expect in when I try one of them?

\n\n

What are their defining characteristic? What should I expect in term of taste, foam, color and mouthfeel?

\n", "OwnerUserId": "215", "LastEditorUserId": "4962", "LastEditDate": "2018-06-25T16:03:42.993", "LastActivityDate": "2018-06-25T16:03:42.993", "Title": "What should I expect from a Belgian double (dubbel)?", "Tags": "taste style dubbel", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"341"}} +{ "Id": "341", "PostTypeId": "2", "ParentId": "329", "CreationDate": "2014-01-26T22:10:32.920", "Score": "2", "Body": "

Take Tasting Notes

\n\n

It's easy to \"just drink it\". If you want to really pay attention to the beer, there's nothing better than forcing yourself to write it down. The format doesn't matter much, but I prefer a multi-part tasting form to force me to think about each part of the beer. For example, I usually break it down into 4 sections:

\n\n
    \n
  • Appearance: How much head? How long did the head last? What color was it? What color is the beer itself?
  • \n
  • Aroma: What do you smell? How strong is the smell?
  • \n
  • Taste: What do you taste? How does that compare what you smelled? How's the aftertaste?
  • \n
  • Mouthfeel: Usually just watery, oily, or creamy.
  • \n
\n\n

Tasting notes like this force you to really concentrate on the taste, which helps improve your palate. They're also nice because you now have a record of your thoughts on that beer to refer to later (maybe to compare to other beers of that style).

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-26T22:10:32.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"342"}} +{ "Id": "342", "PostTypeId": "2", "ParentId": "337", "CreationDate": "2014-01-26T22:15:25.757", "Score": "14", "Body": "

Beer Advocate's Guide is a decent one. The abridged version is:

\n\n
    \n
  1. Look at the beer. How's the color and head?
  2. \n
  3. Swirl it a little bit to pull out the aroma
  4. \n
  5. Smell it. Swirl again if need be. I recommend taking a 20 second break after smelling, then smelling again, since if you smell too long, your nose gets used to it and it becomes harder to pick up the notes.
  6. \n
  7. Sip it. Don't swallow immediately, but keep it on your tongue for a moment. Breath out with it still in your mouth and pay attention to the resulting smell (unless you just ate a bunch of garlic before the beer).
  8. \n
  9. Taste again as the beer warms up a bit.
  10. \n
\n", "OwnerUserId": "80", "LastEditorUserId": "112", "LastEditDate": "2014-01-27T03:52:04.613", "LastActivityDate": "2014-01-27T03:52:04.613", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"343"}} +{ "Id": "343", "PostTypeId": "2", "ParentId": "340", "CreationDate": "2014-01-26T22:26:50.127", "Score": "-4", "Body": "

In short, prepare for a hangover. They pack a strong amount of alcohol (6-9% ABV), but you won't really taste it much. You're gonna get a lot of malt flavor, they're not very hoppy beers. So expect some sweet, fruity flavors. I'd recommend you give Allagash Dubbel Ale a try. It's a bit pricey (at like $12 for a 4-pack), but it's well worth it. I've never been disappointed by any beer from Allagash.

\n\n

Now If you're curious, a Tripel is like a double, but they use three times the amount of malt than a standard Trappist \"single\", hence the name. So expect flavors similar to that of the dubbel, but much more pronounced. They are also higher in alcohol than a dubbel (9-12% ABV). For this style, my personal favorite, as of now (I've only had two of them) is Weyerbacher Brewing Co's Merry Monks Ale. The other one was the Allagash Tripel, which was also outstanding, but I'm partial to the Monks.

\n", "OwnerUserId": "31", "LastEditorUserId": "31", "LastEditDate": "2014-01-27T15:12:41.210", "LastActivityDate": "2014-01-27T15:12:41.210", "CommentCount": "8", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"344"}} +{ "Id": "344", "PostTypeId": "2", "ParentId": "340", "CreationDate": "2014-01-27T01:56:42.503", "Score": "6", "Body": "

As with any style, there's a fair deal of variation from one brewery to another. At a high level, though, you can expect them to be darker (although not stout-dark), rich, and malty. Expect a complex taste, with many notes and flavors.

\n\n

More specifically, the BJCP have this to say (abridged):

\n\n
    \n
  • Aroma: malty sweetness, hints of caramel or chocolate, and moderate fruity esters. Some will have a little spice to them.
  • \n
  • Appearance: Dark amber to copper in color, Large, dense head.
  • \n
  • Taste: Same as aroma. Alcohol flavor, if any, should be mild and not solvent-y. No or minimal hop flavor.
  • \n
  • Mouthfeel: Medium-full body. Medium-high carbonation.
  • \n
\n\n

See here for the full description.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-27T01:56:42.503", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"345"}} +{ "Id": "345", "PostTypeId": "2", "ParentId": "338", "CreationDate": "2014-01-27T03:04:37.383", "Score": "6", "Body": "

Well, Saison is quite a broad category simply because it comes from a broad definition.

\n\n

The original term comes from regular strength light ales ca. 3.5% abv) brewed during the Autumn in Belgium, and stored for drinking in the summer by farm workers. (Hence the pseudonym \"farmhouse ale\".)

\n\n

As wikipedia states:

\n\n
\n

Historically, saisons did not share identifiable characteristics to\n pin them down as a style, but rather were a group of refreshing summer\n ales made by farmers.

\n
\n\n

In modern times, the category has been interpreted to mean:

\n\n
    \n
  • a light to golden ale
  • \n
  • use the Dupont yeast, which gives particular esters and pepper characteristics (hence they have a \"Belgian\" character)
  • \n
  • around 7% abv
  • \n
  • fruity, spicy (some examples add fruit, such as apple juice.)
  • \n
  • highly carbonated
  • \n
\n\n

This might seem quite vague, but the combination of yeast, light malt, strength and carbonation lead to a fairly unique and identifiable beer.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-27T03:04:37.383", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"346"}} +{ "Id": "346", "PostTypeId": "2", "ParentId": "338", "CreationDate": "2014-01-27T04:51:32.283", "Score": "4", "Body": "

I agree with mdma that it's traditionally more of a historical definition than a stylistic one. To expand on their answer, though, in 2008, the BJCP defined a saison as the following (abridged):

\n\n

Aroma: Moderate sweetness with light, grainy, spicy wheat aromatics, often with a bit of tartness. Some coriander, with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy orangey fruitiness.

\n\n

Appearance: Very pale straw to very light gold in color. Cloudy.

\n\n

Flavor: Pleasant sweetness and a zesty, orange-citrusy fruitiness. Crisp with a dry, tart, finish. Can have a low wheat flavor. Optionally has a very light lactic-tasting sourness. Herbal-spicy flavors, which may include coriander and other spices; subtle + not overpowering.

\n\n

Mouthfeel: Medium-light to medium body; effervescent character from high carbonation. Minimal bitterness in finish.

\n\n

For more detail, see the full version.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-27T04:51:32.283", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"347"}} +{ "Id": "347", "PostTypeId": "1", "AcceptedAnswerId": "349", "CreationDate": "2014-01-27T05:16:18.610", "Score": "15", "ViewCount": "1436", "Body": "

I've heard it said that you should never use a dish-washer on a proper beer-tasting glass, as it can negatively affect head retention. Is this the case, and if so, what's the best way to keep a tasting glass clean without messing it up for future tasting?

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-27T23:09:50.530", "Title": "Beer glass cleaning", "Tags": "taste glassware", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"348"}} +{ "Id": "348", "PostTypeId": "1", "AcceptedAnswerId": "360", "CreationDate": "2014-01-27T06:13:47.420", "Score": "10", "ViewCount": "211", "Body": "

If I remember correctly, aging wine in barrels is known to promote aeration and add phenols from the wood into the mix.

\n\n

Does the wood react any differently to produce any flavors unique to beer? Is the aeration beneficial for flavor?

\n", "OwnerUserId": "121", "LastActivityDate": "2015-07-19T16:43:53.813", "Title": "Does aging in oak barrels add the same compounds to beer as it does to wine?", "Tags": "aging", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"349"}} +{ "Id": "349", "PostTypeId": "2", "ParentId": "347", "CreationDate": "2014-01-27T06:29:53.403", "Score": "13", "Body": "

If your dishwasher uses a rinsing/drying agent (Finish/Jet Dry type product), these products contain surfactants, which serve to reduce surface tension and \"flatten\" the water molecules for faster drying.

\n\n

I would imagine that any residual surfactants on the glass reduce the surface tension of the carbon dioxide bubbles and cause them to pop, reducing the amount of head on the beer. Since these products tend to brag that they remain on the dishes after washing to give them a \"sheen\" I imagine there is quite a bit of residue.

\n\n

Washing your glasses by hand is probably the best approach to avoid this. While most dishwashing liquids also contain a lot of surfactants, they are designed to be rinsed away easily. I suppose you could empty your dishwasher of rinse aid, but I don't know how other dishes would come out.

\n\n

See this site for some of the details. I think it's run by one of the manufacturers of the rinse aid products, so take it with a grain of salt.

\n", "OwnerUserId": "121", "LastActivityDate": "2014-01-27T06:29:53.403", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"350"}} +{ "Id": "350", "PostTypeId": "2", "ParentId": "324", "CreationDate": "2014-01-27T08:35:32.003", "Score": "3", "Body": "

Considering that ethanol is the highest contributor to calorie count of a beer, and that the amount of remaining ingredients only vary to a degree, while variance in ethanol is very high, the odd modern beers with extreme extreme alcohol content will be the most calorical.

\n\n

It appears currently Brewmeister Snake Venom is the top alcohol content beer, at 67,5%, with 2025kcal in 12 fl.oz serving. The alcohol content runners-up don't top that by means of excessive sugar levels, therefore we can safely assume this is the most calorical beer.

\n\n

Of course the competition in topping that is sharp, and we're soon to expect other beers with even more alcohol - and more calories as result.

\n\n

There is no plain visual criterion to what beer has most calories, but you can safely correlate stated alcohol content with that.

\n\n

...also note: Alcohol is empty calories - calories that are not absorbable - storable by human organism. A good mild caramel beer of 1.5% alc. content might be more fattening than the top alcohol content beers, simply because it contains more sugar.

\n", "OwnerUserId": "130", "LastActivityDate": "2014-01-27T08:35:32.003", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"351"}} +{ "Id": "351", "PostTypeId": "1", "AcceptedAnswerId": "375", "CreationDate": "2014-01-27T12:04:07.693", "Score": "23", "ViewCount": "54894", "Body": "

Modern beer is typically served in glassware, and the reasons for the various styles are addressed in What glasses are meant for which beers and why?

\n\n

I have some alternative vessels at home, including a pewter tankard. The problem I have with drinking from it is that the pewter has a slight tang which you notice on your lips and the tip of your tongue. Depending on the the style of beer, this can either enhance or detract from the taste. (Personally, I've noticed that hefeweizen benefits from the slight acidic tinge, while some Lagers are really undrinkable from it.)

\n\n

Are there any styles of beer for which it's actually advantageous to drink from something other than glassware, like pewter? Say, for example, they've been brewed specifically to pair well with the material of the vessel.

\n\n

Alternatively, should I even be drinking from this kind of vessel at all? While it's documented that pewter and other materials were used historically to make tankards, should I even be bothering today or is it just a gimmick?

\n", "OwnerUserId": "85", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2021-09-25T20:14:14.603", "Title": "Drinking from a pewter mug?", "Tags": "glassware", "AnswerCount": "4", "CommentCount": "3", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"352"}} +{ "Id": "352", "PostTypeId": "2", "ParentId": "347", "CreationDate": "2014-01-27T12:29:23.473", "Score": "5", "Body": "

Another problem could be that dishwasher procedures could permanently change physical properties of the glass surface. The changes could be:

\n\n
    \n
  • mineral deposits
  • \n
  • etching and corrosion
  • \n
  • devitrification (crystallization of the amorphous glass)
  • \n
\n\n

See hazing of glassware on Wikipedia.

\n\n

The physically changed surface would usually create nucleation points for collecting of the released carbon dioxide to form bubbles. See also beer glass widget. This could cause faster release of carbon dioxide from the beer and a subsequent change of the taste of the beer.

\n", "OwnerUserId": "165", "LastActivityDate": "2014-01-27T12:29:23.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"353"}} +{ "Id": "353", "PostTypeId": "1", "AcceptedAnswerId": "356", "CreationDate": "2014-01-27T13:24:36.643", "Score": "7", "ViewCount": "245", "Body": "

On a private party or picnic when we use hand pump to push beer out of a keg the beer can relatively quickly get stale. What can be done to keep the beer in a good quality for as long as possible?

\n\n

I can imagine that a low temperature and not moving the keg can help. What about air pressure? Is it better to keep it low or higher? I guess that low pressure is better because lower amount of air should dissolve in the beer in such a case. What other factors could influence the beer durability in such a situation?

\n", "OwnerUserId": "165", "LastActivityDate": "2014-09-15T08:58:28.957", "Title": "What can I do to prevent beer staling in a keg being pushed by air?", "Tags": "freshness keg", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"354"}} +{ "Id": "354", "PostTypeId": "1", "CreationDate": "2014-01-27T13:30:22.547", "Score": "12", "ViewCount": "1997", "Body": "

I usually try to drink all of the beer in my growler over the course of two nights. While the second serving is usually a good bit less stellar than the first it's usually still quite drinkable.

\n\n

However, because I almost always plan to drink it over two nights, sometimes the second half of the growler gets left a few days longer. After that it's basically undrinkable.

\n\n

Usually I snag Imperial Stouts, or other high gravity brews (currently I have a Southern Tier Creme Brulee ripening in the fridge :().

\n\n

Is there a good use for this spoiled beer or should I just pour it out? I was wondering if beer bread was a good idea or not.

\n", "OwnerUserId": "39", "LastActivityDate": "2017-07-04T07:58:46.540", "Title": "Are there any good uses for beer that has sat in my growler for too long?", "Tags": "growlers cooking", "AnswerCount": "8", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"355"}} +{ "Id": "355", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2014-01-27T14:15:59.217", "Score": "12", "Body": "

Supposedly washing your hair with it has some nice effects,\nand people have found other creative uses: \nHow to make good use of flat, leftover beer from your Christmas party.

\n\n

However, if it is only a few days old and has been in the fridge, it's unlikely that it's done much more than go completely flat, so any use that doesn't require it to be carbonated would be fitting. -- I'd go for the bread.

\n", "OwnerUserId": "212", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T15:19:58.250", "LastActivityDate": "2016-10-08T15:19:58.250", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"356"}} +{ "Id": "356", "PostTypeId": "2", "ParentId": "353", "CreationDate": "2014-01-27T14:20:12.537", "Score": "5", "Body": "

Avoiding agitating the beer and reducing the temperature are the two key ways to slow down the rate of staling, but really once there's air in the beer it's just a matter of time before it goes bad.

\n\n

Have you considered using a small CO2 charger like this -

\n\n

\"corny

\n\n

This uses small CO2 cartridges to push the beer. The advantage being that the keg won't stale quickly since very little air is introduced.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-27T14:20:12.537", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"357"}} +{ "Id": "357", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2014-01-27T14:22:13.643", "Score": "2", "Body": "

You could use it to make steak and ale pie, this works particularly well with darker beers. Although you don't need much - about 1 cup / 220ml.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-27T14:22:13.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"359"}} +{ "Id": "359", "PostTypeId": "2", "ParentId": "353", "CreationDate": "2014-01-27T15:48:33.623", "Score": "3", "Body": "

Because CO2 has a significantly higher affinity for water (and therefore beer), than O2 or N2 (the other major components in air) under normal keg conditions (pressure and temperature), I think it's worth a shot:

\n\n

If you take off the air pump and start charging it with CO2, and then pump a good bit of beer/foam out of it (to rid it of some of the air), you should have a much nicer ratio of dissolved CO2 to other gases. That plus keeping it chilled and not shaking it (just like you'd treat a can of beer) should help it last a good deal longer.

\n\n

(This is assuming you've got a \"ruined\" keg on your hands. Obviously it's preferable to start out with CO2.)

\n", "OwnerUserId": "212", "LastActivityDate": "2014-01-27T15:48:33.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"360"}} +{ "Id": "360", "PostTypeId": "2", "ParentId": "348", "CreationDate": "2014-01-27T16:38:00.597", "Score": "5", "Body": "

You remember correctly.

\n\n

(http://indianapublicmedia.org/amomentofscience/age-wine-wooden-barrels/)

\n\n

\"Tannic

\n\n

(Tannic acid, a tannin found in oak)

\n\n

Tannins, the chemicals that are transferred from the oak barrels to the wine, are extremely good at forming hydrogen bonds (just look at the structure!), which makes them very soluble in water. Considering that both beer and wine have no shortage of water in them, these molecules are quite willing to join either substance.

\n\n

As for the aeration, I believe that may actually be an undesirable consequence of using the barrels for beer. However I can't imagine the effects being very profound unless you were aging the beer like you would with wine (months or years versus weeks).

\n", "OwnerUserId": "212", "LastActivityDate": "2014-01-27T16:38:00.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"361"}} +{ "Id": "361", "PostTypeId": "1", "AcceptedAnswerId": "362", "CreationDate": "2014-01-27T18:25:04.527", "Score": "22", "ViewCount": "11280", "Body": "

What's the point of the lid on the beer stein?

\n\n

\"beer

\n", "OwnerUserId": "36", "LastEditorUserId": "8506", "LastEditDate": "2019-04-10T07:34:41.843", "LastActivityDate": "2020-02-19T02:11:24.053", "Title": "Why do steins have lids?", "Tags": "history serving glassware", "AnswerCount": "6", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"362"}} +{ "Id": "362", "PostTypeId": "2", "ParentId": "361", "CreationDate": "2014-01-27T18:35:56.260", "Score": "23", "Body": "

Today they're largely just traditional. However, originally they helped:

\n\n
    \n
  1. To keep the beer cool by preventing airflow from above.
  2. \n
  3. To keep insects and other contaminants out.
  4. \n
  5. To prevent spillage while cheers-ing and generally carousing.
  6. \n
\n\n

See the following article on Stein Lids for more detail.

\n", "OwnerUserId": "80", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T18:58:26.960", "LastActivityDate": "2016-10-05T18:58:26.960", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"363"}} +{ "Id": "363", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2014-01-27T18:42:23.880", "Score": "7", "Body": "

Cooking with beer is always a good decision, and stouts are a prime choice. Since it doesn't matter if they're a little flat, why not try some?

\n\n\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-27T18:42:23.880", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"364"}} +{ "Id": "364", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2014-01-27T18:46:06.843", "Score": "8", "Body": "

In my experience, many recipes that call for beer either work fine with flat beer or call for it that way. Examples include chili, fish poached in beer, and some stews.

\n\n

I would be reluctant to use it for bread unless the recipe calls for a \"normal\" amount of yeast, though. Some recipes seem to rely on the yeast in the beer and others add bread yeast, so check in order to avoid baking a hockey puck.

\n\n

This is for conventional bread. If you're making a quick bread that uses baking soda, you don't need help from the beer for rising. (Thanks waxeagle.)

\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2014-01-27T18:51:07.280", "LastActivityDate": "2014-01-27T18:51:07.280", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"365"}} +{ "Id": "365", "PostTypeId": "2", "ParentId": "22", "CreationDate": "2014-01-27T19:41:28.183", "Score": "7", "Body": "

I would like to point out that taste is not the only important criterion when drinking beer. What you want is a good experience, and the taste is only a part (albeit a major part) of that.

\n\n

Having different glasses for different types of beers can affect your drinking experience in a number of different ways. First off, having an unusual or unique glass can often be very fun, because it's probably not something you're used to. The first time I ever drank beer from a litre mug was a very fun experience for me, and not because it made the beer taste differently. Secondly, I find that different types of glasses encourage me to enjoy the beer in different ways. I find that glasses with stems, which are often used for stronger beers, encourage me to drink the beer more slowly and savor it a bit more than a glass without a stem. I think these effects on experience are one of the big reasons for the wide variations in beer glassware. As a beer manufacturer, if I could make a unique glass that will better help people remember my beer, I would consider that a worthwhile investment.

\n\n

I'm not trying to say that the effects of glassware on taste don't exist or are unimportant; I think they are important. But they're only part of the story.

\n", "OwnerUserId": "68", "LastEditorUserId": "7835", "LastEditDate": "2018-06-06T08:48:59.710", "LastActivityDate": "2018-06-06T08:48:59.710", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"366"}} +{ "Id": "366", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2014-01-27T21:11:20.993", "Score": "4", "Body": "

Making it into a marinade for steaks would work.

\n\n

Depending on the type of beer, I would also consider using it for boiling sausages/bratwurst with it. Though I find that the darker beers are the best for this.

\n", "OwnerUserId": "222", "LastActivityDate": "2014-01-27T21:11:20.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"367"}} +{ "Id": "367", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2014-01-27T22:22:07.817", "Score": "6", "Body": "

I'd definitely say cook with it as others have mentioned. You're really just trying to impart some of the beer flavors into the food; you don't really need a fresh beer to do that as carbonation doesn't affect the flavor, it affects the mouth-feel. The carbonation from a fresh beer would be lost in cooking anyway. If it's only been 2 days, it probably hasn't spoiled, so you're fine.

\n\n

Beer bred is always an option. I also saw someone else on here mention Polish Beer Soup.\nBeer-battered fish is another option. I could go on and on with recipes though. The Brooklyn Brew Shop has a lot of interesting ones that I've never seen before, such as french toast (might be good with a chocolate stout or other dessert stout) and beer braised greens.

\n\n

Household uses include trapping insects in your home, washing hair, fertilizing plants, cleaning wood furniture, etc.

\n", "OwnerUserId": "31", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-27T22:22:07.817", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"368"}} +{ "Id": "368", "PostTypeId": "2", "ParentId": "347", "CreationDate": "2014-01-27T23:09:50.530", "Score": "3", "Body": "

When cleaning a beer glass your goal is to remove everything you can from the surface. As the other answers mention, washing with dish detergent tends to leave an unpleasant film. It's not hard to keep your glassware clean:

\n\n
    \n
  • Don't use beer glasses for other drinks, particularly drinks with fat (like milk) since glassware cleaner isn't designed to remove it.
  • \n
  • Always rinse your glasses immediately: your job's much harder if the lacing and sediment dries caked on the glass.
  • \n
  • Hand wash your glassware, not only because of the detergent, but also because the best glasses are made of the thinnest glass, so they're quite delicate.
  • \n
  • Use a beer-specific cleaning agent, a percarbonate cleaner like PBW, One-Step or B-Brite. These are formulated specifically to deal with the compounds that beer leaves in a glass.
  • \n
\n\n

If you only ever drink beer out of your beer glasses and always rinse them soon after, you'll find that you can wash with a pretty weak cleaning solution. I almost never need more than about 1/2 ounce of PBW in a gallon of hot water.

\n\n

Also see How to Brew's section on cleaning products.

\n", "OwnerUserId": "224", "LastActivityDate": "2014-01-27T23:09:50.530", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"369"}} +{ "Id": "369", "PostTypeId": "1", "AcceptedAnswerId": "370", "CreationDate": "2014-01-28T02:25:22.910", "Score": "9", "ViewCount": "139", "Body": "

Is it made brewed in such a way as to have no alcohol, or is it just normal beer with the alcohol removed, or some other process?

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-28T09:32:01.053", "Title": "How is non-alcoholic beer produced?", "Tags": "non-alcoholic", "AnswerCount": "2", "CommentCount": "0", "ClosedDate": "2014-01-31T23:45:12.830", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"370"}} +{ "Id": "370", "PostTypeId": "2", "ParentId": "369", "CreationDate": "2014-01-28T04:29:21.207", "Score": "6", "Body": "

Non-alcoholic beers (in the U.S., no more than 0.05% ABV) begin their lives like every other beer; they go through the same 8 step process outlined here, but one step is added between the last two steps -- the conversion.

\n\n

The beer has already been fermented when added to a conditioning tank, where it is left to mature for several days (the 7th step), from here it is cooked to remove the alcohol. Due to the absurdly high boiling point of water (100°C), it is easy to evaporate the alcohol (boiling point = 78.3°C) and leave the rest of the beer behind. Vacuum evaporation is also used in most modern breweries to preserve flavor and speed up the process.

\n\n

Another method used is reverse osmosis, which allows the water and alcohol to escape from the beer through a membrane. The alcohol is then distilled from the solution, and the water is added back to the sugary syrup originally left behind, reforming the beer (minus alcohol).

\n\n

The beer is now non-alcoholic and continues to the last step of the brewing process where it is filtered, carbonated, and stored (until it is packaged for sale).

\n", "OwnerUserId": "212", "LastActivityDate": "2014-01-28T04:29:21.207", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"371"}} +{ "Id": "371", "PostTypeId": "1", "AcceptedAnswerId": "376", "CreationDate": "2014-01-28T05:08:42.850", "Score": "18", "ViewCount": "8726", "Body": "

One of my favorite stouts, Left Hand's \"Nitro Milk Stout,\" is supposed to be poured \"hard\" (rapidly dumping the whole bottle in the cup by holding it completely upside down)

\n\n

Typical pouring was covered in a previous question: How do you pour the perfect beer

\n\n

In another question Guinness (a 'nitro' beer) was brought up as a special case: Why does Guinness have a special pouring process / bottle, while other stouts do not?

\n\n

Are all nitros poured differently than carbonated beers?

\n\n

And are all nitros poured the same (or very similar) way?

\n\n

(i.e. all carbonated are \"soft\" poured and all nitros are \"hard\" poured)

\n", "OwnerUserId": "212", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-28T07:32:57.363", "Title": "When are beers better \"hard\" poured rather than \"soft\" poured?", "Tags": "style pouring", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"372"}} +{ "Id": "372", "PostTypeId": "1", "AcceptedAnswerId": "394", "CreationDate": "2014-01-28T05:31:30.897", "Score": "9", "ViewCount": "5314", "Body": "

I know several people who refuse to drink stouts, or will only have 2 as opposed to 4 if we were drinking something else (generally a bock or lighter beer). I feel like I drank less of them too, and it is always to the same end; feeling too full to drink another.

\n\n

I remember looking it up at some point and the Calories & ABV were negligibly different.

\n\n

There must be a reason, I know several people who feel the same way. Since then I've just assumed that it is psychosomatic and that the fuller taste makes you feel more full.

\n", "OwnerUserId": "212", "LastActivityDate": "2017-01-10T19:03:11.640", "Title": "Why do some beers seem to make people feel more full?", "Tags": "stout", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"373"}} +{ "Id": "373", "PostTypeId": "2", "ParentId": "147", "CreationDate": "2014-01-28T05:54:07.243", "Score": "-1", "Body": "

The hoppiest of IPAs... They're good at any (preferably every) meal.

\n\n

Joking aside, I would personally choose something like a porter, though I have a fairly strong bias toward them. Something with a fuller taste seems appropriate though, since (in my opinion) is would work quite well with the potatoes.

\n", "OwnerUserId": "212", "LastEditorUserId": "212", "LastEditDate": "2014-01-29T00:10:16.883", "LastActivityDate": "2014-01-29T00:10:16.883", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"374"}} +{ "Id": "374", "PostTypeId": "2", "ParentId": "372", "CreationDate": "2014-01-28T07:14:38.660", "Score": "2", "Body": "

the beers you mention as filling are heavier beers, with much higher starch contents than the lighter beers that are less filling.

\n\n

Basically in brewing you have the following process: before you add yeast you convert some (or all in theory) of the starches to sugar. Then you add yeast. Then that converts the sugars into alcohol. Starches remain as starches.

\n\n

This is a property that older beers made use of to a large extent. Remember that the darker, heavier beers evolved as a bread substitute for fasting monks. They wouldn't be much of a bread substitute if they weren't filling.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-28T07:14:38.660", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"375"}} +{ "Id": "375", "PostTypeId": "2", "ParentId": "351", "CreationDate": "2014-01-28T07:27:03.347", "Score": "16", "Body": "

To be honest, I think drinking carbonated (with CO2 at least) beer from pewter is asking for trouble if you do it regularly. The tang you feel is dissolved metal and a component of that, depending on the pewter, may be lead (or could be copper, tin, bismuth, antimony, etc). A major factor in that is acidity, and both hops and carbonation contribute.

\n\n

Acidic solutions react with metals to produce hydrogen gas and dissolved metal salts. So carbonic acid from carbonated beer will react with the tin to produce hydrogen and tin carbonate, and the same basic process with other metals. The specific metal that reacts will depend on the pewter.

\n\n

There are some ways around this. You could, for example, coat the inside of the vessel with bees wax. This can then be washed by hand with hot tap water and soap (and is a common method in making drinking horns). This has the pro/con (depending on your taste) of imparting a slight honey taste to everything you drink out of the vessel.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-01-28T07:27:03.347", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"376"}} +{ "Id": "376", "PostTypeId": "2", "ParentId": "371", "CreationDate": "2014-01-28T07:32:57.363", "Score": "13", "Body": "

Beers served on nitro have only about 25-40% of the dissolved carbon dioxide compared to regular beers served only on CO2. For stouts, the figure is usually closer to 25% - 40% is for lagers served on nitro.

\n\n

With only 25% of the carbon dioxide, there is less concern of creating too large a foam. Plus the nitrogen causes the foam to be made of very very small bubbles, which readily turn back into beer. You can see this as the cascade (video) after the beer has been poured hard into the glass.

\n\n

If the beer served on nitro has more than 35% CO2 then it's a good idea to reduce how hard you pour - as the percentage of CO2 increases, so does the size of the foam with a hard pour.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-28T07:32:57.363", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"377"}} +{ "Id": "377", "PostTypeId": "2", "ParentId": "369", "CreationDate": "2014-01-28T09:32:01.053", "Score": "0", "Body": "

In Germany there are two other possibilities:

\n\n
    \n
  • adding the yeast at 0°C so there will be almost no production of alcohol
  • \n
  • stopping the fermentation process at an alcohol level of 0,5%
  • \n
\n", "OwnerUserId": "171", "LastActivityDate": "2014-01-28T09:32:01.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"378"}} +{ "Id": "378", "PostTypeId": "2", "ParentId": "147", "CreationDate": "2014-01-28T10:52:45.810", "Score": "4", "Body": "

This of course is pretty subjective, but I will try to answer it anyway.

\n\n

I would say that the choice of beer in this case should depend on one of this factors:

\n\n
    \n
  1. You want to accompany or match the taste of the steak and seasoning.
  2. \n
  3. You want to have the beer as a regular drink nearby that does not disturb the taste of the \nsteak.
  4. \n
\n\n

I will assume that you only use salt and pepper for seasoning.

\n\n

Case 1:

\n\n

For this, I would recommend a Dunkel (dark lager). From my experience, it compliments the taste of the steak and seasoning, without disturbing it.
\nThe taste does not sit in your mouth too long, thus if you wait a moment (few seconds) between beer and the mashed potatoes, it should not cause any trouble with them, too.

\n\n

Case 2:

\n\n

If the beer is just meant as a drink nearby that should not disturb the taste of the meat, any lighter Pils (pale lager) should be fine.
\nIt does not have a long lasting taste, goes well with mashed potato and does not clash with the steak.

\n\n

Disclaimer:
\nI am from Germany, thus my choices might be a bit... regional. All of the above are just personal recommendations, based on my experience.

\n", "OwnerUserId": "229", "LastActivityDate": "2014-01-28T10:52:45.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"379"}} +{ "Id": "379", "PostTypeId": "1", "CreationDate": "2014-01-28T11:05:35.027", "Score": "3", "ViewCount": "172", "Body": "

Assuming a relatively cool and stable environment, how long can you store beer in:

\n\n
    \n
  • Bottles
  • \n
  • Wooden barrels
  • \n
  • Metallic barrels
  • \n
  • Cans (Yes, I really asked that.)
  • \n
\n\n

without it loosing its carbonation and taste or going off?
\nAre there general rules that apply to any sort of beer or is this highly specific?

\n\n

(Please note that this question is not about intentionally aging the beer, just storing it.)

\n", "OwnerUserId": "229", "LastEditorUserId": "122", "LastEditDate": "2016-05-23T12:56:27.353", "LastActivityDate": "2016-05-23T12:56:27.353", "Title": "How long can you store beer?", "Tags": "storage", "AnswerCount": "0", "CommentCount": "4", "FavoriteCount": "1", "ClosedDate": "2014-01-28T18:18:07.093", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"380"}} +{ "Id": "380", "PostTypeId": "1", "CreationDate": "2014-01-28T11:43:50.330", "Score": "3", "ViewCount": "154", "Body": "

As pointed out in Are there any medicinal uses for beer?, beer has some beneficial effects on ones health.
\nAssuming a beer with average alcohol level and an average, healthy adult, how much would be a healthy amount to drink on regular bases?
\nAlso, how would the alcohol influence the health benefits?

\n", "OwnerUserId": "229", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-28T11:43:50.330", "Title": "In what amounts is beer beneficial to ones health?", "Tags": "health", "AnswerCount": "0", "CommentCount": "4", "ClosedDate": "2014-01-28T15:46:19.300", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"381"}} +{ "Id": "381", "PostTypeId": "1", "CreationDate": "2014-01-28T15:39:56.967", "Score": "8", "ViewCount": "5595", "Body": "

Do open container laws in the U.S. apply to non-alcoholic beers? (Open container laws do vary from state to state but there may be a general consensus on definitions, e.g. the definition of \"an alcoholic beverage.\" Focusing on the most populous states, California, Texas, New York, and Florida may be a good estimator of widely-applicable laws.)

\n\n

I'm not looking for speculation (however logical) e.g. \"Non-alcoholic beers still have alcohol and are therefore subject to the same laws,\" or \"Non-alcoholic beers can't be purchased by minors, therefore [...],\" only citations of state laws or on-the-record statements by law enforcement officials.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-28T18:42:21.053", "Title": "Do open container laws in the U.S. apply to non-alcoholic beers?", "Tags": "laws non-alcoholic", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "0", "ClosedDate": "2014-01-29T01:35:41.087", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"382"}} +{ "Id": "382", "PostTypeId": "1", "AcceptedAnswerId": "395", "CreationDate": "2014-01-28T18:04:27.527", "Score": "10", "ViewCount": "323", "Body": "

Is there a difference if we compare the classical cooling of the whole keg:

\n\n

\"enter

\n\n

and the quick flow cooling where the keg is at the ambient temperature?

\n\n

\"enter

\n\n

Can the quick cooling have negative effect on the beer's taste or head?

\n", "OwnerUserId": "165", "LastActivityDate": "2014-01-29T13:49:38.310", "Title": "Can quick beer cooling have a negative effect on the beer's taste?", "Tags": "taste draught head", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"383"}} +{ "Id": "383", "PostTypeId": "1", "AcceptedAnswerId": "388", "CreationDate": "2014-01-28T18:38:59.933", "Score": "8", "ViewCount": "2537", "Body": "

There has been some confusion around the laws regarding \"refillable containers\" in California. At times, I have been told that a brewery cannot refill another brewery's growler. At other times, I have been told that a brewery may (or by their discretion, may not) refill. I own growlers from at least 3 different breweries, and I have friends who have many more -- it makes sense to me that I should be able to take any clean container to a brewery which offers growlers, and have it filled.

\n\n

What do the actual laws of California state, regarding who can refill and into what vessels?

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-28T21:12:26.563", "Title": "Can a brewery in California fill any growler?", "Tags": "laws growlers", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"384"}} +{ "Id": "384", "PostTypeId": "2", "ParentId": "381", "CreationDate": "2014-01-28T18:42:21.053", "Score": "1", "Body": "

In California, it only applies to alcoholic beverages.

\n\n

California Vehicle Code 23223:

\n\n
\n

Possession of Open Container in Motor Vehicle

\n \n

(a) No driver shall have in his or her possession, while in a motor\n vehicle upon a highway or on lands, as described in subdivision (b) of\n Section 23220, any bottle, can, or other receptacle, containing any\n alcoholic beverage that has been opened, or a seal broken, or the\n contents of which have been partially removed.

\n \n

(b) No passenger shall have in his or her possession, while in a motor\n vehicle upon a highway or on lands, as described in subdivision (b) of\n Section 23220, any bottle, can, or other receptacle containing any\n alcoholic beverage that has been opened or a seal broken, or the\n contents of which have been partially removed.

\n
\n", "OwnerUserId": "226", "LastActivityDate": "2014-01-28T18:42:21.053", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"385"}} +{ "Id": "385", "PostTypeId": "1", "AcceptedAnswerId": "386", "CreationDate": "2014-01-28T18:45:44.170", "Score": "17", "ViewCount": "37897", "Body": "

Which types of beer are commonly used to create half-and-half beers?

\n\n

\"half-and-half

\n\n

In frequent recipes are only beers of contrasting colours being used (like pilsener vs porter or pale lager vs stout) or other combinations are being commonly used too? What are some of the most popular recipes?

\n", "OwnerUserId": "165", "LastEditorUserId": "37", "LastEditDate": "2015-11-06T18:50:30.607", "LastActivityDate": "2020-04-20T23:28:28.947", "Title": "Which types of beer are commonly used for half-and-half beers?", "Tags": "colour beer-cocktails", "AnswerCount": "9", "CommentCount": "0", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"386"}} +{ "Id": "386", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2014-01-28T19:35:52.560", "Score": "12", "Body": "

In a Half and Half (also known as a \"Black and Tan\" in certain locations), the primary factor will be the density of the two beers -- one beer must be of a lesser density than the other to stay afloat. Contrasting colors are used for visual effect; otherwise, how might you know one was floating?

\n\n

Common recipes involve floating the less dense Guinness over a Bass, or a Guinness over a Harp Lager. Its Guinness' particular light density that makes it a good candidate for so many half-and-half style recipes.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-28T19:35:52.560", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"387"}} +{ "Id": "387", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2014-01-28T20:17:57.463", "Score": "4", "Body": "

Personally when creating a \"Half and Half\", Guiness is the only constant. The other beer is usually something only lighter in color. Wheat beers have an interesting flavor. IPA's have their bitterness cut when made into a Half and Half.

\n\n

Beyond that, I will sometimes select the beer so that the drink gets an awesome name:

\n\n
    \n
  • Black and Blue - Guiness w/ Labatt Blue
  • \n
  • Black Sunset - Guiness w/ Leinie's Sunset Wheat
  • \n
  • Black Cow - Guiness w/ New Glarus Spotted Cow
  • \n
\n", "OwnerUserId": "222", "LastActivityDate": "2014-01-28T20:17:57.463", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"388"}} +{ "Id": "388", "PostTypeId": "2", "ParentId": "383", "CreationDate": "2014-01-28T21:12:26.563", "Score": "8", "Body": "

They can, provided that they:

\n\n
    \n
  • Cover up existing labels
  • \n
  • Add their own label containing the brewery name, beer name, and abv.
  • \n
  • Are a brewery (bars and retailers cannot).
  • \n
\n\n

You're not alone in being confused, though. A lot of breweries didn't really know either, and as a result decided not to, just to be safe.

\n\n

Further complicating the issue is that many breweries just don't want to, either because they make money on their growlers or because it's a pain to deal with the labeling when their bar is busy.

\n\n

SFGate has a decent article for further reading.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-28T21:12:26.563", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"389"}} +{ "Id": "389", "PostTypeId": "2", "ParentId": "382", "CreationDate": "2014-01-28T22:48:38.377", "Score": "5", "Body": "

As long the beer's sealed, there should be no difference in taste due to rapid or slow cooling. Lowering the temperature only increases the solubility of CO2, which should dissolve later.

\n\n

Temperature itself does impact taste, supposedly due to our taste buds being number in cold, hiding certain flavors (which can be desirable or undesirable depending on the beer). But this isn't related to the rate of cooling of beer.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-28T22:48:38.377", "CommentCount": "0", "CommunityOwnedDate": "2014-01-28T22:48:38.377", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"390"}} +{ "Id": "390", "PostTypeId": "5", "CreationDate": "2014-01-28T22:54:32.403", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-01-28T22:54:32.403", "LastActivityDate": "2014-01-28T22:54:32.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"391"}} +{ "Id": "391", "PostTypeId": "4", "CreationDate": "2014-01-28T22:54:32.403", "Score": "0", "Body": "A dark ale brewed with roasted malt, originating in London in the early 1720s, which was derived from the porter.", "OwnerUserId": "27", "LastEditorUserId": "27", "LastEditDate": "2014-01-29T00:08:11.623", "LastActivityDate": "2014-01-29T00:08:11.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"392"}} +{ "Id": "392", "PostTypeId": "5", "CreationDate": "2014-01-28T22:56:31.197", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-01-28T22:56:31.197", "LastActivityDate": "2014-01-28T22:56:31.197", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"393"}} +{ "Id": "393", "PostTypeId": "4", "CreationDate": "2014-01-28T22:56:31.197", "Score": "0", "Body": "A resealable portable container, typically 32-64 fluid oz., used by consumers to purchase beer at a brewery and consume elsewhere.", "OwnerUserId": "27", "LastEditorUserId": "27", "LastEditDate": "2014-01-29T00:08:01.530", "LastActivityDate": "2014-01-29T00:08:01.530", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"394"}} +{ "Id": "394", "PostTypeId": "2", "ParentId": "372", "CreationDate": "2014-01-28T22:59:31.760", "Score": "6", "Body": "

I think a some of it is psychological - I too remember struggling to drink down a pint of Guinness. But now I can put away plenty! The darker color and dense head give the perception of a bigger beer.

\n\n

But in reality most pub Stouts such as Guinness are quite light beers, in terms of their physical density (specific gravity) so it's not that they are physically harder to drink.

\n\n

Some reasons that Stouts can taste and feel heavier:

\n\n
    \n
  • Stouts tends to be more bitter, so tougher to drink for those not used to it
  • \n
  • Serving on N2 (\"Nitro\") creates the illusion of a thicker mouthfeel (it's not fully understood at present quite why that is)
  • \n
  • The lower CO2 levels removes a certain \"light\" quality from the beer. Beers with more CO2 feel lighter, effervescent and easier to drink.
  • \n
\n\n

Of course, there are some stouts that really are fuller bodied, but I focused on Guinness simply because that's the one most available throughout the world and yet is counter-intuitively lighter than typical pub beers.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-29T07:06:01.987", "LastActivityDate": "2014-01-29T07:06:01.987", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"395"}} +{ "Id": "395", "PostTypeId": "2", "ParentId": "382", "CreationDate": "2014-01-28T23:45:14.353", "Score": "5", "Body": "

I can think of three possible impacts this scheme might have on a keg of beer.

\n\n
    \n
  1. Since the keg is kept at room temperature, if the beer is unpasteurized the flavor will evolve at a faster rate than refrigerated beer would. This isn't a change due to the quick cooling, per se, but it is a possibly major difference.
  2. \n
  3. As mentioned by @acheong, the CO2 solubility of beer is significantly lower at room temperature, so keeping the beer properly carbonated becomes a more difficult task. Specifically, you have to keep the pressure much higher, making the serving pressure higher, which makes the complex calculus of draft line measurements that much harder.
  4. \n
  5. Chill haze could be an issue. If the brewer didn't take steps to prevent it, there'll be haze-inducing proteins in suspension. If the beer is stored cool, these will quickly fall out, but if it's kept warm and only cooled at the time it's served, they'll end up in your glass.
  6. \n
\n", "OwnerUserId": "224", "LastActivityDate": "2014-01-28T23:45:14.353", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"396"}} +{ "Id": "396", "PostTypeId": "2", "ParentId": "351", "CreationDate": "2014-01-29T00:02:11.867", "Score": "3", "Body": "

You're right to have identified a peculiar flavor coming from pewter. There are two parts to this: the leaching of the metals as mentioned by Chris as well as the oxidation of lipids in your mouth. In my opinion neither of these is particularly pleasant.

\n

That being said, when pewter was phased out in favor of glass, there were many who held on to their pewter tankards for drinking porter. Ron Pattinson shares an anecdote about an Irish MP who would hide his pewter mug under the table to avoid the critical eye of others in the pub. Today you might get a similar reaction from craft beer drinkers appalled at your treatment of the beer.

\n", "OwnerUserId": "224", "LastEditorUserId": "5064", "LastEditDate": "2021-09-25T20:14:14.603", "LastActivityDate": "2021-09-25T20:14:14.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"397"}} +{ "Id": "397", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2014-01-29T00:56:23.027", "Score": "8", "Body": "

I think it all depends on your personal preference. There are many different combinations out there such as the Black and Tan, but some companies have also started coming out with six packs that they intend for you to mix. Shock Top, for example, released a six pack that featured their Chocolate Wheat and their Belgium White.

\n\n

What I would do is think of a dark beer you enjoy and then a lighter (but still flavorful beer) that you like and just experiment with mixing them. In my case I would choose to mix Left Hand Milk Stout and a Kentucky Kolsch. Let me know what you try! I am curious!

\n", "OwnerUserId": "233", "LastActivityDate": "2014-01-29T00:56:23.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"398"}} +{ "Id": "398", "PostTypeId": "2", "ParentId": "8", "CreationDate": "2014-01-29T01:53:14.717", "Score": "19", "Body": "

A pictty good summary: \n\"enter

\n\n

(Source: BeerSci: What Is The Difference Between A Lager And An Ale?)

\n\n

The first part of the picture depicts the description in my answer about where the yeast \"works,\" the temperatures at which they work, and then some common types of ales/lagers. The second picture shows S. cerevisiae (common ale yeast) and a wild yeast S. eubayanus making some new cold tolerant yeast strain babies that are the common lager yeast (S. pastorianus). Note: my biology is rusty but from my reading and looking at the picture, this is what I derived.

\n\n

(From @Grohlier's comment)

\n", "OwnerUserId": "123", "LastEditorUserId": "5064", "LastEditDate": "2016-07-17T02:45:00.713", "LastActivityDate": "2016-07-17T02:45:00.713", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"399"}} +{ "Id": "399", "PostTypeId": "1", "CreationDate": "2014-01-29T06:54:31.877", "Score": "18", "ViewCount": "5100", "Body": "

Cask ales seem popular outside of the US (especially in the UK). What distinguishes that style of beer from beer out of a normal keg?

\n", "OwnerUserId": "80", "LastActivityDate": "2016-01-05T14:19:58.477", "Title": "What's the difference between a cask beer and a kegged beer?", "Tags": "serving", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"400"}} +{ "Id": "400", "PostTypeId": "2", "ParentId": "399", "CreationDate": "2014-01-29T07:16:48.273", "Score": "18", "Body": "

Cask ales are not stored under pressure , and require a pump to transfer the beer from the cask. As the ale is not under pressure, it is also not as heavily carbonated as other beers.

\n\n

In contrast kegged beer is stored under pressure, and is forced to the tap by pumping gas into the keg (usually carbon dioxide or nitrogen).

\n", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-01-30T00:20:59.763", "LastActivityDate": "2014-01-30T00:20:59.763", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"401"}} +{ "Id": "401", "PostTypeId": "1", "AcceptedAnswerId": "414", "CreationDate": "2014-01-29T07:48:41.170", "Score": "20", "ViewCount": "14668", "Body": "

Yeast was identified as the cause of fermentation in the 1800s, but beer has been around since long before then. How was fermentation started before the intentional introduction of yeast? Was it all lambic-style ambient yeast, or what?

\n", "OwnerUserId": "80", "LastActivityDate": "2021-09-29T17:31:30.270", "Title": "How was beer brewed before the discovery of Yeast?", "Tags": "history yeast", "AnswerCount": "7", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"402"}} +{ "Id": "402", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2014-01-29T08:53:46.477", "Score": "1", "Body": "

There is no production of alcohol without yeast. Before the "discovery" (better: selection and cultivation) of the Yeasts we know and use today, humans had to rely on luck.

\n

Its a wild fermentation, many different microbes and fungi are competing for their nutrition (sugar).\nThe problem here is: Many yeasts produces fusel alcohol, i.e. methyl alcohol (which can cause blindness).\nOther bacteria could cause the fermentation to vinegar.

\n

So the resulting product seldom was good, mostly it was not drinkable for us today ;)

\n

Since the cultivation of special yeasts it's possible to control the fermentation, while adding a big amount of the yeast. So this yeast has a big advantage over others. Further the produced alcohol and carbondioxyde protects the beverage from other organisms.

\n", "OwnerUserId": "171", "LastEditorUserId": "5064", "LastEditDate": "2021-09-29T17:31:30.270", "LastActivityDate": "2021-09-29T17:31:30.270", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"403"}} +{ "Id": "403", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2014-01-29T09:58:15.303", "Score": "4", "Body": "

There are many plants where yeast grows in symbiotic mutuality. Take fresh dark grapes - the slight white \"sediment\" on the surface is natural yeast, and you won't find grapes without it.

\n\n

Another such plant is barley. Normally, the yeast only appears on the seeds, in relatively small amounts. Malting creates optimal environment for the yeast growth though, making the whole volume of the seed (as opposed to just the surface) nutritious for the yeast, and as it grows, it produces alcohol.

\n\n

Sure there is always a risk that a different culture of fungi or bacteria takes over, killing off the yeast (and e.g. producing vinegar instead of alcohol) but if brewing is performed in relative cleanliness, with little contaminants that could disrupt the process, the natural yeast will take over and dominate it, killing off all competing cultures.

\n\n

Currently, cultured yeast provide a kick-start to the process, simply leaving no time for different cultures to dominate the batch, and radically shortening the process that would normally take a long time until natural yeast reaches concentrations you create by just adding cultured yeast, but it's not essential to the process - it's just a strong push in the right direction.

\n", "OwnerUserId": "130", "LastActivityDate": "2014-01-29T09:58:15.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"404"}} +{ "Id": "404", "PostTypeId": "1", "AcceptedAnswerId": "482", "CreationDate": "2014-01-29T10:28:20.093", "Score": "6", "ViewCount": "404", "Body": "

I have heard from many people that beer helps to improve muscles. Generally one way to improve muscle is by exercise (maybe dance, gym, games). As far as I know, beer (alcohol) is a diuretic, which makes kidney produce more urine, so drinking beer too much can lead to dehydration. So the combination of beer and exercise (sweating) would lead to a worse condition.

\n\n

So my question's are:

\n\n
    \n
  • Does it really help to improve muscle?
  • \n
  • If it does, then how? And when should it can be taken? Before or after exercise?
  • \n
\n", "OwnerUserId": "189", "LastEditorUserId": "27", "LastEditDate": "2014-01-30T00:59:26.577", "LastActivityDate": "2014-02-01T00:34:46.077", "Title": "Does beer really help to improve muscles?", "Tags": "health", "AnswerCount": "1", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"405"}} +{ "Id": "405", "PostTypeId": "1", "AcceptedAnswerId": "411", "CreationDate": "2014-01-29T10:33:57.453", "Score": "8", "ViewCount": "226", "Body": "

Of all types of beer, what type of beer require the most time to produce?

\n", "OwnerUserId": "52", "LastActivityDate": "2014-01-30T04:49:07.063", "Title": "What type of beer require the most time to produce?", "Tags": "brewing production", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"406"}} +{ "Id": "406", "PostTypeId": "2", "ParentId": "8", "CreationDate": "2014-01-29T12:34:31.443", "Score": "13", "Body": "

This is pretty good explanation

\n\n
\n

\"enter

\n
\n\n

Source: Twenty Things Worth Knowing About Beer.

\n", "OwnerUserId": "189", "LastEditorUserId": "5064", "LastEditDate": "2016-07-17T02:49:19.827", "LastActivityDate": "2016-07-17T02:49:19.827", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"407"}} +{ "Id": "407", "PostTypeId": "2", "ParentId": "405", "CreationDate": "2014-01-29T13:32:00.103", "Score": "3", "Body": "

The time it takes to make beer can be anywhere from 10 days to several months.

\n\n

There are a few factors that determine how long a beer takes to be ready to drink. The original gravity of the beer (gravity measure the amount of sugar in the wort), the type and strain of yeast used, and alcohol content of the finished beer. Other factors such as any adjuncts used in the beer can affect this as well.

\n\n

For example, a low gravity, low alcohol ale using an efficient yeast strain can be ready to drink in as little as 10 days. However a heavy lager beer can take 2-3 months to complete and some Belgian yeast strains can take several weeks to complete fermentation.

\n\n

Some beers go through additional conditioning post-fermentation before they are at their prime to drink. This conditioning may include simple bottle conditioning or barrel-aging to impart different flavors. There are some barrel-ages stout beers that have taken 18+ months to complete the process before the brewer feels they are ready to serve.

\n", "OwnerUserId": "263", "LastEditorUserId": "52", "LastEditDate": "2014-01-30T04:49:07.063", "LastActivityDate": "2014-01-30T04:49:07.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"408"}} +{ "Id": "408", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2014-01-29T13:42:29.423", "Score": "1", "Body": "

Before brewers discovered the importance of yeast in the brewing process they had to rely on the local wild yeasts for fermentation. Louis Pasteur discovered the importance of yeast to brewing in 1857.

\n\n

Ancient brewers still used the same process of mashing the grains to extract sugars for fermentation and adding hops for bittering and preservation. As a side note, prior to the use of hops in brewing brewers used a mix of herbs called \"gruit\" which provided flavoring but no preservation.

\n\n

Certain areas of the world are known to have wild yeasts better suited to brewing and still produce beers of this style today, such as Belgian lambics.

\n", "OwnerUserId": "263", "LastActivityDate": "2014-01-29T13:42:29.423", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"409"}} +{ "Id": "409", "PostTypeId": "2", "ParentId": "382", "CreationDate": "2014-01-29T13:49:38.310", "Score": "1", "Body": "

In short, no. The time it takes to cool a beer will not have an impact on the flavor of a beer. However there are certain temperatures that are preferred for serving certain beers.

\n\n

The most damaging thing to beer flavor is light pollution. When in direct light, isohumulones from the bittering agents in hops can react with riboflavin (Vitamin B2) in beer and produce 3-methylbut-2-ene-1-thiol (MBT) which has a noticeable skunky flavor and aroma.

\n", "OwnerUserId": "263", "LastActivityDate": "2014-01-29T13:49:38.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"410"}} +{ "Id": "410", "PostTypeId": "2", "ParentId": "399", "CreationDate": "2014-01-29T14:34:54.930", "Score": "9", "Body": "

Cask beer is not kept under pressure whereas Keg beer is (with CO2 or a nitrogen mixture).

\n\n

Beers served in Cask vs Keg (w/ CO2) vs Keg (w/ Nitro) will have slightly different tastes and appearances. Cask beer will be a \"flatter\" due to the lack of pressure keeping the CO2 in solution in the beer. Cask beer can also take on a butterscotch flavor due to the exposure to air. Hoppy beers will be mellowed in the Cask vs in a Keg. Beer in a cask needs to be drank within a few days of opening the cask due to the exposure to oxygen.

\n\n

Kegs served with CO2 are typically how beers are served. If the keg is using a Nitro tap, the beer will get a smoother milky texture due to the gas and the head will cascade in waves. The beer will last much longer in a keg because of the gas keeping oxygen away from the beer.

\n", "OwnerUserId": "222", "LastActivityDate": "2014-01-29T14:34:54.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"411"}} +{ "Id": "411", "PostTypeId": "2", "ParentId": "405", "CreationDate": "2014-01-29T14:38:06.233", "Score": "8", "Body": "

The most time? I'd think Gueze. It is a blend of 1 and 2 (and sometimes 3) year old lambic. So the minimum time to produce would be 2 years.

\n", "OwnerUserId": "23", "LastEditorUserId": "23", "LastEditDate": "2014-01-29T18:19:01.087", "LastActivityDate": "2014-01-29T18:19:01.087", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"412"}} +{ "Id": "412", "PostTypeId": "2", "ParentId": "405", "CreationDate": "2014-01-29T14:49:23.367", "Score": "7", "Body": "

In addition to what's said, a major caveat is sour beer. Modern breweries have managed to coax and trick lagers into being ready without months of expensive aging, but there is no way to hurry a sour. The bacteria and wild yeast strains that make those flavors require specific conditions, and changing those conditions changes the rates of their activity and the flavor of the beer. Lambics in particular are often blended and contain \"young\" beer, which is only a year old, and \"old\" beer which can be 3 or 4 years, or more. Then the beer is aged an additional year in the bottle, but can be kept for 10 years or more.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-01-29T14:49:23.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"413"}} +{ "Id": "413", "PostTypeId": "1", "AcceptedAnswerId": "429", "CreationDate": "2014-01-29T14:56:01.430", "Score": "8", "ViewCount": "14265", "Body": "

Is there formaldehyde in beer? If there is, what purpose does it serve?

\n", "OwnerUserId": "189", "LastEditorUserId": "4238", "LastEditDate": "2015-07-01T02:01:36.810", "LastActivityDate": "2015-07-01T02:01:36.810", "Title": "Is there formaldehyde in beer?", "Tags": "health", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"414"}} +{ "Id": "414", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2014-01-29T15:53:09.787", "Score": "25", "Body": "

You don't need to know what something is to use it effectively. Though yeast was only identified as a microorganism recently, it has been known as the cause of fermentation for many centuries. It's easy to underestimate how sophisticated people throughout history were.

\n\n

Before yeast was monocultured in labs it was actively cultured by brewers. They would transfer the yeast cake from a batch that's finishing into a recently-brewed batch. This cake contained a whole ecosystem of yeasts and bacterias, but a few strains were usually dominant.

\n\n

By applying artificial selection brewers developed different strains of yeast in different areas. The yeast culture was the make-or-break characteristic of a brewery, and defined the styles of beer that could be produced more than any other factor (other than water in Burton).

\n\n

Evidence of this process comes from the history of lager: bottom-fermenting yeast (Saccharomyces carlsbergensis) emerged in the fifteenth century as a direct result of the cold storage regime of northern brewers such as Carlsberg.

\n\n

They may not have known it was a microorganism, but middle ages brewers most certainly knew that yeast was the cause of fermentation. That's why they called it \"Godisgood\".

\n", "OwnerUserId": "224", "LastActivityDate": "2014-01-29T15:53:09.787", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"415"}} +{ "Id": "415", "PostTypeId": "1", "AcceptedAnswerId": "417", "CreationDate": "2014-01-29T16:07:56.303", "Score": "12", "ViewCount": "1720", "Body": "

Given that the British tend to drink their beer at a higher temperature than those of us in the US, should beer brewed in an English style be consumed that way? The justification I can think of is: the people developing the taste of the beer probably consumed it at a certain temperature, which might have not been the ice-cold levels that predominate in the Colonies.

\n", "OwnerUserId": "29", "LastActivityDate": "2017-01-28T05:36:20.993", "Title": "Should English/English-style beers be served warmer, since that is how the taste was developed?", "Tags": "brewing temperature taste", "AnswerCount": "6", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"416"}} +{ "Id": "416", "PostTypeId": "2", "ParentId": "415", "CreationDate": "2014-01-29T17:02:05.153", "Score": "2", "Body": "

There may be a general consensus for the \"proper\" serving temperature, which could involve questions like \"what do most people seem to like?\", and \"what temperature does the brewer feel best accentuates the parts of the beer they want to highlight?\". So there are good reasons for beer to be served at particular temperatures. In the case of your British bitters, age-old recipes were probably designed to allow the beer to taste its best at room temperature. As for a modern British beer, I suppose that would depend on what the brewer had in mind.

\n\n

That said, my general thought is that you should drink a beer at the temperature you most like it, so the should part of your question is self-determined, and don't let anyone tell you that your taste buds are wrong.

\n\n

Myself, I tend to like my American IPAs cooler than the typical recommended serving temperature. And before I visited the UK, I couldn't stand a room temperature beer. Then, after a week in Tunbridge Wells, I picked up a large appreciation for hand-pumped UK beer, served at room temp. So you should open yourself to trying new things as well.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-29T17:02:05.153", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"417"}} +{ "Id": "417", "PostTypeId": "2", "ParentId": "415", "CreationDate": "2014-01-29T17:05:42.310", "Score": "10", "Body": "

Serving temperature is, of course, a preference. Serve it frozen or boiling if you want. However, a few opinions are:

\n\n
    \n
  • CAMRA says that Real Ale (aka cask ale, usually english-style) should be served at 12-14 °C (54-57 °F), which is colder than room temperature, but warmer than your usually keg beer.
  • \n
  • Ratebeer says the same thing regardless of whether it’s cask or not.
  • \n
  • BeerAdvocate says 7-10 °C (45-50 °F) for an english bitter.
  • \n
\n\n

So, if you’re looking for a rule of thumb: “cool but not super-cold” or “cellar temp” will probably get you close enough.

\n", "OwnerUserId": "80", "LastEditorUserId": "3755", "LastEditDate": "2015-05-11T21:31:38.223", "LastActivityDate": "2015-05-11T21:31:38.223", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"418"}} +{ "Id": "418", "PostTypeId": "1", "AcceptedAnswerId": "419", "CreationDate": "2014-01-29T17:16:22.697", "Score": "8", "ViewCount": "4500", "Body": "

Someone told me that drinking beer will increase the size of our belly. Is it true? Since I don’t drink beer, I don’t have any idea about that.

\n", "OwnerUserId": "269", "LastActivityDate": "2020-03-24T09:01:37.057", "Title": "Will drinking too much of beer increase the size of belly?", "Tags": "health", "AnswerCount": "7", "CommentCount": "5", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"419"}} +{ "Id": "419", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2014-01-29T17:23:11.563", "Score": "21", "Body": "

Most beer has a lot of calories. Just like any other calorie intake, if you consume more than you burn, you will gain weight.

\n\n

So, yes, drinking \"too much\" beer will \"increase the size of belly\". What \"too much\" means, however, is dependent on your other habits.

\n\n

The typical \"(beer | pot) (belly | gut)\" is usually \"Abdominal Obesity\" which, by definition, means obesity in the abdominal area specifically, i.e. the belly.

\n", "OwnerUserId": "192", "LastEditorUserId": "271", "LastEditDate": "2014-01-29T17:36:58.633", "LastActivityDate": "2014-01-29T17:36:58.633", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"420"}} +{ "Id": "420", "PostTypeId": "2", "ParentId": "413", "CreationDate": "2014-01-29T18:11:49.260", "Score": "3", "Body": "

There might be trace amounts of it due to the oxidization of methanol from partially fermented sugars. But unless it is added to beer, not enough to be significant as opposed to other compounds that are present.

\n", "OwnerUserId": "222", "LastActivityDate": "2014-01-29T18:11:49.260", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"421"}} +{ "Id": "421", "PostTypeId": "2", "ParentId": "413", "CreationDate": "2014-01-29T18:12:03.480", "Score": "5", "Body": "

Use

\n\n

Formaldehyde can be used as a cheap clarification agent (making the beer clear; irish moss is a safe additive used for the same purpose). However, as it's a known carcinogen, it should be used very minimally.

\n\n

Prevalence

\n\n

TLDR: It's not widely used, and its use is in decline. Here's a reasonably well-sourced article on it.

\n\n

It was hard to find any good sources on it, but:

\n\n
    \n
  • Various articles and blog posts seem to indicate there may be some in a few Chinese beers.
  • \n
  • Most beers with formaldehyde have below the WHO safety limit, and so are fine to drink.
  • \n
  • Some sources seem to say that formaldehyde may occur naturally in some brewing processes, but only in trace (and safe) amounts.
  • \n
\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-29T18:12:03.480", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"423"}} +{ "Id": "423", "PostTypeId": "5", "CreationDate": "2014-01-29T19:25:50.200", "Score": "0", "Body": "

Saison (French, \"season\") is a broadly defined pale ale that in modern versions is generally around 7% abv, highly carbonated, fruity, spicy and is influenced by Saison Dupont Vieille Provision. As a beer style it originated from beers brewed during the cooler and less active months in farmhouses in Wallonia, the French-speaking region of Belgium, and then stored for drinking by the farm workers during the summer months. It is believed that these farmhouse beers would have been of a lower abv than modern saisons - probably initially around 3 to 3.5% abv on average, rising in the early 20th century to between 4.5 and 6.5% abv. Modern saisons are brewed in a range of countries, particularly the USA, and are often bottle conditioned.

\n\n

Saison / Farmhouse Ale on Beeradvocate

\n\n

Saison on Wikipedia

\n", "OwnerDisplayName": "user150", "LastEditorDisplayName": "user150", "LastEditDate": "2014-01-30T14:56:18.713", "LastActivityDate": "2014-01-30T14:56:18.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"424"}} +{ "Id": "424", "PostTypeId": "4", "CreationDate": "2014-01-29T19:25:50.200", "Score": "0", "Body": "Saison (French, \"season\") is a broadly defined pale ale that in modern versions is generally around 7% abv, highly carbonated, fruity, spicy and is influenced by Saison Dupont Vieille Provision.", "OwnerDisplayName": "user150", "LastEditorUserId": "5539", "LastEditorDisplayName": "user150", "LastEditDate": "2016-06-18T00:28:01.447", "LastActivityDate": "2016-06-18T00:28:01.447", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"425"}} +{ "Id": "425", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2014-01-29T19:27:58.020", "Score": "5", "Body": "

A beer belly comes not so much from beer and the frequent drinking of it as it does with the food that is typically associated with beer (for example, burgers, pizza, etc... very high in calories).

\n", "OwnerUserId": "276", "LastActivityDate": "2014-01-29T19:27:58.020", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"426"}} +{ "Id": "426", "PostTypeId": "1", "AcceptedAnswerId": "427", "CreationDate": "2014-01-29T19:30:45.563", "Score": "6", "ViewCount": "4079", "Body": "

If I'm looking for a beer to make shandy with, what should I be looking for, in terms of flavour?

\n", "OwnerUserId": "7", "LastActivityDate": "2014-01-29T20:34:58.633", "Title": "What beers are good for making shandy?", "Tags": "shandy", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"427"}} +{ "Id": "427", "PostTypeId": "2", "ParentId": "426", "CreationDate": "2014-01-29T19:59:28.010", "Score": "4", "Body": "

It seems as though lighter beers are the most popular:

\n\n
    \n
  • In northern Germany, a half-and-half made of Pilsner beer and lemon soda is known as an Alster
  • \n
  • In southern Germany, a mix of Weißbier and lemon soda is called a \"Russ'\" (Russian).
  • \n
  • The Radler (cyclist) Biermischgetränk has a long history in German-speaking regions. It consists of a 80:20 or 70:30 mixture of beer and German-style lemonade (not American-style lemonade, but sparkling lemon soda, similar but not identical to Sprite or 7 Up).
  • \n
\n\n

From wikipedia

\n\n

In general, shandies are meant to be \"refreshing\" drinks, so the lighter beers makes sense. You can get creative with dark or hoppy beers, but in general you want lighter brews like pilsners, saisons, golden ales, etc.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-29T19:59:28.010", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"428"}} +{ "Id": "428", "PostTypeId": "2", "ParentId": "426", "CreationDate": "2014-01-29T20:34:58.633", "Score": "0", "Body": "

I've had the Leinenkugel's Orange Shandy recently, which I liked. Most shandys (shandies?) seem to be lemon, this one was orange. I think using orange and something with a distinctly Belgian taste instead of a basic pilsner could be interesting. Think Blue Moon which everybody puts a slice of orange in anyway.

\n", "OwnerUserId": "113", "LastActivityDate": "2014-01-29T20:34:58.633", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"429"}} +{ "Id": "429", "PostTypeId": "2", "ParentId": "413", "CreationDate": "2014-01-29T20:41:51.583", "Score": "6", "Body": "

tl;dr—Yes, but only at safe levels.

\n\n

Formaldehyde was detected in beer, at safe levels, as far back as 1983:

\n\n
\n

A simple procedure was developed for the determination of formaldehyde in samples of beer and soft drinks. [...] Levels of formaldehyde found were in the low mg/kg range. Detection limits were less than 0.1 mg/kg of sample.

\n
\n\n

Lawrence, J. F. and Iyengar, J. R. The Determination of Formaldehyde in Beer and Soft Drinks by HPLC of the 2,4-Dinitrophenylhydrazone Derivative. 1983; published online 2006. [URL]

\n\n

A more recent study summarizes how China came under scrutiny, but also how industry standards have changed since (emphasis mine, hereon):

\n\n
\n

In 2005, various Chinese newspapers reported that formaldehyde was detected in 95% of the samples of Chinese commercial bottled beers tested in the course of a journalistic investigation. The addition of formaldehyde during mashing is allowed in China, and it is believed to improve the clarity of the resulting wort and beer and the colloidal stability of the latter. Nevertheless, the hygienic standard for fermented alcoholic beverages in China was revised, to stipulate that the formaldehyde content of the finished beer must not exceed 2 mg/L.

\n
\n\n

Wu, Q. et al. Investigation into Benzene, Trihalomethanes, and Formaldehyde in Chinese Lager Beers. 2012. [PDF]

\n\n

From the abstract of the same paper,

\n\n
\n

Beers brewed commercially in China have been surveyed for the presence of a number of potential contaminants, including benzene, trihalomethanes and formaldehyde. [...] Formaldehyde was measured in 29 beers (including 7 imported brands) using solid-phase microextraction with on-fiber derivatization. Formaldehyde levels were between 0.082–0.356 mg/L. None of the beer samples exceeded WHO drinking water criteria for benzene, trihalomethanes or formaldehyde.

\n
\n\n

The researchers compared their results to existing literature, which they found were similar:

\n\n
\n

Donhauser and co-workers examined beers from Europe, using a HPLC method, and showed that 65% of them contained detectable formaldehyde, although in many the level was close to the detection limit of 0.2 mg/L. More recently, the South Korean Food and Drug Administration has analysed imported beers (13 from China and 4 from Germany). They found that the average content of formaldehyde was 0.132 mg/L, which was compatible with food safety legislation.

\n
\n\n

(I couldn't find a free link to the above-referenced material, only a citation.)

\n\n

Apparently, formaldehyde does appear naturally in the brewing process (though, again, I couldn't find the study, only another citation):

\n\n
\n

Borchert has confirmed that formaldehyde can be formed naturally in the brewing process, thus beers can contain up to 0.1 mg/L of formaldehyde, even when none is used in the brewery.

\n
\n\n

Anyway, formaldehyde no longer seems preferred as a clarification agent, as a substitute exists:

\n\n
\n

To meet consumer expectations and to avoid further problems, more and more breweries now choose PVPP as a replacement product for the clarification of wort and beer.

\n
\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-29T20:41:51.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"430"}} +{ "Id": "430", "PostTypeId": "1", "AcceptedAnswerId": "431", "CreationDate": "2014-01-29T20:49:01.653", "Score": "19", "ViewCount": "1916", "Body": "

I see some US beers advertising that they brew according to the \"German Beer Purity Law.\" What is that, and is it still relevant today?

\n", "OwnerUserId": "80", "LastEditorDisplayName": "user150", "LastEditDate": "2014-01-29T21:36:58.333", "LastActivityDate": "2014-01-29T21:36:58.333", "Title": "What is the German Beer Purity Law?", "Tags": "brewing laws german-beers", "AnswerCount": "3", "CommentCount": "5", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"431"}} +{ "Id": "431", "PostTypeId": "2", "ParentId": "430", "CreationDate": "2014-01-29T21:07:08.017", "Score": "18", "Body": "

The German Beer Purity Law, also know as the Reinheitsgebot, dictates what ingredients may be used to create beer in Germany: barley, hops, and water. It dates back to 1487, which is why you may notice the omission of yeast: it hadn't been recognized as an ingredient yet. The law was removed from the books in 1993, and replaced by another similar law which allowed yeast, sugar, and some of the more common brewing ingredients.

\n\n

In the case of a US brewery making such a claim, it's a sort of advertisement toward the \"purity\" of their product, i.e., they don't use adjuncts (rice, etc) or other flavorings (fruit, spices) in their beer.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-29T21:07:08.017", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"432"}} +{ "Id": "432", "PostTypeId": "2", "ParentId": "430", "CreationDate": "2014-01-29T21:07:18.983", "Score": "4", "Body": "

The purity law has been introduced to regulate the production of beer in the Holy Roman Empire. The original text stipulated that the only ingredients that could be used in the production of beer were water, barley and hops.

\n\n

The \"Reinheitsgebot\" has actually survived the Holy Roman Empire. Many German brewers are proud of this heritage and claim to stick to it. It's relevance today is commercial. It's used as a label for marketing reasons.

\n", "OwnerDisplayName": "user150", "LastActivityDate": "2014-01-29T21:07:18.983", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"433"}} +{ "Id": "433", "PostTypeId": "2", "ParentId": "430", "CreationDate": "2014-01-29T21:19:39.180", "Score": "17", "Body": "

In addition to what's been said, the original purpose of the order was to protect consumers from brewers who used problematic (toxic/psychoactive) herbs to preserve their beer, instead forcing them to use hops. Also only using barley allowed wheat and rye to be used exclusively by bakers to keep the cost of bread down.

\n\n

One could argue the tradition has kept German brewers from innovating, and also keeps a lot of interesting styles out of reach. Most Belgian-style beers, despite having a similar heritage to German styles, will include candi sugar and spices like anise and coriander. Technically, sour beers are also out. Also, a lot of the Trappist ales will use sugar adjuncts. Today, it's mostly a statement of adherence to tradition, which can carry good marketing weight. But this is beer, not marketing.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-01-29T21:19:39.180", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"434"}} +{ "Id": "434", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2014-01-29T21:40:55.860", "Score": "4", "Body": "

Well, yes, beer has some calories, according to this article; The Truth About Beer and Your Belly:

\n\n
\n

A typical beer has 150 calories – and if you down several in one\n sitting, you can end up with serious calorie overload.

\n
\n\n

but read further

\n\n
\n

Alcohol can increase your appetite. Further, when you're drinking\n beer at a bar or party, the food on hand is often fattening fare like\n pizza, wings, and other fried foods

\n
\n\n

I've heard from a lot of people that beer increases appetite more that other alcoholic drinks, and in fact beer pairs very well with such calorie rich food as pig knuckle, or similar... as well as pizza, chips etc.

\n\n

If you compare calories in beer and pig knuckle you'll see what is more likely to cause obesity.

\n", "OwnerUserId": "21", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T21:05:01.237", "LastActivityDate": "2016-10-08T21:05:01.237", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"435"}} +{ "Id": "435", "PostTypeId": "1", "AcceptedAnswerId": "436", "CreationDate": "2014-01-29T21:58:40.043", "Score": "14", "ViewCount": "23712", "Body": "

I was perusing a question about uses for flat beer (\"Are there any good uses for beer that has sat in my growler for too long?\") when I came across an answer that mentioned \"any use that doesn't require it to be carbonated would be fitting\".

\n\n

If I have flat beer, and I have, say, a sodastream (or some such), can I effectively re-carbonate my beer? What would be the disadvantage to doing so?

\n", "OwnerUserId": "286", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2021-05-08T20:34:49.383", "Title": "Can beer be recarbonated?", "Tags": "carbonation", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"436"}} +{ "Id": "436", "PostTypeId": "2", "ParentId": "435", "CreationDate": "2014-01-29T22:14:10.317", "Score": "9", "Body": "

Sodastream: maybe, but at your own risk.

\n\n

According to Sodastream's FAQ, \"You risk damaging your soda maker, not to mention making a big fizzy mess!\". However, there are a few articles discussing how to carbonate non-water with one.

\n\n

Anecdotes vary:

\n\n\n\n

Some tips:

\n\n
    \n
  • It will definitely void your warranty
  • \n
  • Use plastic, not glass, bottles to avoid shrapnel if you make a mistake.
  • \n
  • Take your time; most reports indicate it's easy to over-carbonate your beer.
  • \n
\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-29T22:14:10.317", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"437"}} +{ "Id": "437", "PostTypeId": "2", "ParentId": "435", "CreationDate": "2014-01-29T22:26:58.483", "Score": "6", "Body": "

Add sugar to bottle-conditioned beer

\n\n

Warning: This method is error-prone, high-effort, and probably not worth your time. Could be fun, though. :)

\n\n

Most commercial beer is force-carbonated. That is to say, the beer is produced and ready to drink (minus the fizz) before they put it in the bottle and mechanically carbonate the beer.

\n\n

Beer that is bottle-conditioned or bottle-fermented, however, is put into a bottle with some extra sugar. The beer is intentionally left with a little of the yeast from the fermentation process, and is sealed with the sugar. The yeast then does it's normal thing: it eats the sugar and excretes alcohol plus carbon-dioxide. Since the bottle is sealed, the CO2 has nowhere to go, so it goes into dissolution in the beer, giving you that fizz. Most bottled homebrew will be like this.

\n\n

So, if you have a beer that is both flat and was bottle-conditioned (and therefore still has some yeast in it), you might be able to bottle-ferment it again:

\n\n
    \n
  1. Add a very small amount of sugar to the bottle. Table sugar works, although corn sugar (which you can find from a brew store) is ideal. It'll be really hard to get the right amount (about 0.083 oz), so I recommend pre-measured tablets of the stuff: http://www.northernbrewer.com/shop/munton-s-carb-tabs.html
  2. \n
  3. Seal the bottle somehow. If you have a bottle-capper and some caps, that'd be ideal. Otherwise, you might be able to get by with a soda bottle and cap. If you're really lucky, your beer is in a swing top bottle.
  4. \n
  5. Wait a week, maybe a couple to be sure.
  6. \n
\n\n

If you're lucky, there's enough viable yeast in the bottle to start acting again (now that it has new sugar to eat), which will create more CO2 and recarbonate the bottle.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-29T22:26:58.483", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"438"}} +{ "Id": "438", "PostTypeId": "2", "ParentId": "415", "CreationDate": "2014-01-30T04:59:24.017", "Score": "0", "Body": "

First, let's say there is what is considered \"proper\", and then there is personal-preference. To be a good Cicerone, know what is \"proper\" but also show tolerance for personal preference.

\n\n

With that out the way, it's definitely considered the \"proper\" thing to do to serve English beers warmer than ice-cold. Many of the delicate malty flavours you get from English malt, the fruitiness from esters produced by the English yeast, plus grassy, herbal or floral tones from the hops are muted greatly when the beer is served too cold.

\n\n

Some people say it's served at room room temperature. Modern room temperature of around 20°C/68°F is too warm. The ideal serving temperature is a cold cellar - typically around 12°C;55°F.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-30T04:59:24.017", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"439"}} +{ "Id": "439", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2014-01-30T05:05:01.370", "Score": "-1", "Body": "

The Vikings used to brew beer (some of us still do!). They did this without the specific knowledge of yeast. Each family owned a stock of wood that belonged to the family brewery which was used to stir the wort prior to fermentation. This inoculated the wort and provided the yeast needed for fermentation.

\n\n

Although they didn't know why it happened, they did know that unless they used the stirring stock, they wouldn't get beer.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-30T05:05:01.370", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"440"}} +{ "Id": "440", "PostTypeId": "1", "CreationDate": "2014-01-30T06:37:49.347", "Score": "10", "ViewCount": "6523", "Body": "

Consider your average american IPA. What food would go well with it?

\n", "OwnerUserId": "80", "LastActivityDate": "2016-12-12T20:30:54.303", "Title": "What food pairs well with an IPA?", "Tags": "pairing ipa", "AnswerCount": "5", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"441"}} +{ "Id": "441", "PostTypeId": "2", "ParentId": "440", "CreationDate": "2014-01-30T06:49:15.297", "Score": "4", "Body": "

Cured meats - the saltiness of the meat and bitterness in the IPA play well together.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-30T06:49:15.297", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"442"}} +{ "Id": "442", "PostTypeId": "2", "ParentId": "415", "CreationDate": "2014-01-30T08:40:00.120", "Score": "1", "Body": "

Just like everyone else said, it's a preference. I alway say that the darker the beer, the warmer it has to be, so here are my rules:
\n- Light beer/White beer/Kriek: In the fridge and goes in the freezer for a couple of minutes before serving
\n- Golden beer: In the fridge
\n- Amber beer: In the fridge and stay at room temperature for a couple of minutes before serving
\n- Dark beer: At room temperature and goes in the fridge before serving
\n- Stout: At room temperature at all time.

\n", "OwnerUserId": "172", "LastActivityDate": "2014-01-30T08:40:00.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"443"}} +{ "Id": "443", "PostTypeId": "2", "ParentId": "440", "CreationDate": "2014-01-30T12:03:22.457", "Score": "10", "Body": "

As a complete novice to food pairings with beer, I've been looking at this nifty pairing chart on http://www.craftbeer.com [PDF] whenever pairing questions have come up on Beer.SE. According to it, the suggested pairing for an IPA is

\n\n
\n

Strong, spicy food (classic with curry!); bold, sweet desserts like carrot cake

\n
\n\n

and for a Double/Imperial IPA is

\n\n
\n

Smoked beef brisket, grilled lamb; Southern chicken-fried steak.

\n
\n\n

I found a great little summary by Michael Agnew (2012) that explains some of the rationale behind these pairings (emphasis mine hereon):

\n\n
\n

When pairing IPA with food you have three basic flavor hooks at your disposal; bitterness, hop flavor (spicy, grassy, herbal, earthy, and citrus), and caramel. Hop flavors have a great affinity for spices and light fruits. Bitterness has a cooling affect. Paired with spicy dishes, IPA will fan the flames at first, but douse them in the end. Bitterness also amplifies salty and umami flavors. The caramel flavors in the beer will latch onto the sweeter side of a dish, tying into things like caramelized onion or the crispy skins of roast poultry. And the hop acids and carbonation make IPAs great palate cleansers to take on even the fattiest deep-fried delights.

\n
\n\n

Samuel Adams has a \"Pair with Sam\" tool, and looking at its suggested pairings for their Whitewater IPA (hoppier than their Latitude 48 IPA), pork appears to be the meat of choice: pulled pork, barbeque ribs, chorizo, roasted pork tenderloin, and sweet sausage; and the rest of its suggestions align with the salty-and-spicy pattern we've seen.

\n\n

We seem to have found strong consensus already, but just one more to make sure. In Blue Point Brewing Company's words, its IPA pairings are meant to complement

\n\n
\n

intensely flavorful, highly spiced dishes, such as curry, and bold, sweet desserts like flourless chocolate cake and crème brulée

\n
\n\n

or

\n\n
\n

rich, aromatic, spicy and smoked foods such as chili, BBQ ribs, grilled chicken, and beef.

\n
\n\n

Actually, I think they stole those words from Wegmans' Guide to Beer and Food Pairing.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-01-30T12:03:22.457", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"444"}} +{ "Id": "444", "PostTypeId": "1", "AcceptedAnswerId": "445", "CreationDate": "2014-01-30T15:48:17.273", "Score": "14", "ViewCount": "317", "Body": "

Not referring to the internationally famous pop icon, of course. I have heard beer aficionados talk about someone named Michael Jackson, and it's clear that be played an important part in the modern beer world. Who was he, and what were those contributions?

\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-30T21:03:08.447", "Title": "Who was Michael Jackson?", "Tags": "history", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"445"}} +{ "Id": "445", "PostTypeId": "2", "ParentId": "444", "CreationDate": "2014-01-30T16:01:20.470", "Score": "8", "Body": "

He was an English author who was a noted expert on beer and whiskey, and he wrote a number of books on beer, probably most famously The World Guide to Beer.

\n", "OwnerUserId": "37", "LastEditorUserId": "4", "LastEditDate": "2014-01-30T20:17:44.470", "LastActivityDate": "2014-01-30T20:17:44.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"446"}} +{ "Id": "446", "PostTypeId": "1", "CreationDate": "2014-01-30T17:30:49.767", "Score": "10", "ViewCount": "8973", "Body": "

I understand IPAs are less amenable to aging than, say, a barely wine. But how long, specifically, can you age an IPA - days, months, a year or two?

\n", "OwnerUserId": "80", "LastActivityDate": "2020-10-05T02:16:19.187", "Title": "How long can you age an ipa?", "Tags": "ipa aging", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"447"}} +{ "Id": "447", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2014-01-30T17:38:43.607", "Score": "8", "Body": "

A half and half is a Guinness with Harp.

\n\n

This style of beer combination is accomplished by using a dense beer on the bottom followed by a beer of lesser density on the top (usually poured over a spoon to ensure that it doesn't sink through).

\n\n

Essentially it is usually an ale or lager underneath a stout. Some popular versions and combinations include

\n\n
    \n
  • The Trinity
    \nGuinness, Smithwicks, Harp
  • \n
  • Blacksmith
    \nGuinness & Smithwick’s Irish Ale
  • \n
  • Black & Black
    \nGuinness & Guinness Stout
  • \n
  • Black Pyramid
    \nGuinness & Pyramid
  • \n
  • Black & Gold
    \nGuinness & Magner’s Cider
  • \n
  • Black & Red
    \nGuinness & Killian’s Irish Red
  • \n
  • Black & Sam
    \nGuinness & Sam Adams
  • \n
  • Black & Fire
    \nGuinness & Firestone
  • \n
  • Black Coffee
    \nGuinness & Black Butte Porter
  • \n
  • Eclipse
    \nGuinness & Blue Moon
  • \n
  • Black Castle
    \nGuinness & Newcastle
  • \n
  • Black on Blonde
    \nGuinness & Stella Artois
  • \n
  • Black Tire
    \nGuinness & Fat Tire
  • \n
  • Black Torpedo
    \nGuinness & Sierra Nevada
  • \n
  • Dark & Steamy
    \nGuinness & Anchor Steam
  • \n
  • Irish American
    \nGuinness & Budweiser
  • \n
  • The Noogie
    \nGuinness & Pabst Blue Ribbon
  • \n
  • Half & Half
    \nGuinness & Harp
  • \n
  • Black & Tan
    \nGuinness & Bass
  • \n
  • San Patricios
    \nGuinness & Corona
  • \n
\n", "OwnerUserId": "303", "LastActivityDate": "2014-01-30T17:38:43.607", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"448"}} +{ "Id": "448", "PostTypeId": "1", "CreationDate": "2014-01-30T17:52:46.343", "Score": "6", "ViewCount": "461", "Body": "

Does anyone know about the laws when it comes to shipping beers to individual states?

\n\n

I am from Kentucky, which does not allow an individual to have alcohol shipped directly to their home address.

\n\n

Is there a way around this?\nAre the states doing anything that may legalize this?

\n\n

I would love to start being able to participate in beer of the month clubs.

\n", "OwnerUserId": "233", "LastEditorUserId": "73", "LastEditDate": "2014-01-30T20:38:34.700", "LastActivityDate": "2014-01-30T23:07:44.097", "Title": "United States Beer Shipping Laws", "Tags": "laws united-states", "AnswerCount": "1", "CommentCount": "9", "ClosedDate": "2014-02-07T05:39:37.957", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"449"}} +{ "Id": "449", "PostTypeId": "5", "CreationDate": "2014-01-30T18:07:45.547", "Score": "0", "Body": "

Beer, wine or other alcoholic drinks and food matching is the process of pairing food dishes with alcoholic drinks of one sort or another to enhance the dining experience.

\n\n

In many cultures, wine has had a long history of being a staple at the dinner table and in some ways both the winemaking and culinary traditions of a region will have evolved together over the years.

\n\n

Other regions pair beer with other culinary traditions, as do the pairings of various liquors, liqueurs and cocktails.

\n", "OwnerUserId": "-1", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T14:59:34.620", "LastActivityDate": "2018-09-29T14:59:34.620", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"450"}} +{ "Id": "450", "PostTypeId": "4", "CreationDate": "2014-01-30T18:07:45.547", "Score": "0", "Body": "The matching of beer, wine or other alcoholic drinks with a specific food or meal, to enhance particular attributes of each, and raise overall enjoyment of both.", "OwnerUserId": "27", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T14:59:34.620", "LastActivityDate": "2018-09-29T14:59:34.620", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"451"}} +{ "Id": "451", "PostTypeId": "2", "ParentId": "446", "CreationDate": "2014-01-30T18:24:06.503", "Score": "9", "Body": "

DIPAs generally have a high enough ABV (7%+) to age for a few months...but you probably don't want to.

\n\n

Most contemporary IPAs and DIPAs are best drank within 3 weeks from the date of bottling. Stone's \"Enjoy By\" Series gives you 5 weeks to drink the IPA if properly refrigerated. Super hop-bursted IPAs with a ton of aroma like Heady Topper recommend to drink them within 2 days, claiming the flavor and aroma begins to degrade after only a few hours if unrefrigerated.

\n\n

One notable exception is Dogfish Head's 120 Minute IPA which is super high ABV and can probably be considered a barleywine for the purpose of aging.

\n\n

Less intense IPAs like Long Trail's Vermont IPA could probably keep up to 2 months, maybe 3 with really good refrigeration but not much beyond that without starting to taste real strange and losing a lot of their floral and herbal notes.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-01-30T18:24:06.503", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"452"}} +{ "Id": "452", "PostTypeId": "2", "ParentId": "444", "CreationDate": "2014-01-30T21:03:08.447", "Score": "2", "Body": "

To add some information, he was known as the \"Beer Hunter\". He would travel around the world in the pursuit of new beers. Unfortunately he died in 2007. Wikipedia has quite a lot more info about his life if you are interested.

\n\n

His website, which is called Beer Hunter, contains parts of his work and is accessible here

\n", "OwnerUserId": "215", "LastActivityDate": "2014-01-30T21:03:08.447", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"453"}} +{ "Id": "453", "PostTypeId": "1", "AcceptedAnswerId": "457", "CreationDate": "2014-01-30T21:06:32.440", "Score": "7", "ViewCount": "93", "Body": "

Recently, I traveled to Denver, CO, and though I didn't go for beer-specific purposes, I took advantage of a few breweries (and taphouses) that were conveniently close to my hotel.

\n\n

The one I was most excited about was Great Divide, mostly because I had discovered their Saint Bridget's Porter years beforehand. I did not keep track of this beer, however, and was disappointed to find that they no longer produced it.

\n\n

The bartender informed me that this was because \"porters don't do well in the marketplace.\"

\n\n

Is this a common opinion among brewers? Could it just be regional to Denver? What might the reasoning be behind this?

\n", "OwnerUserId": "192", "LastActivityDate": "2014-01-30T23:14:15.337", "Title": "Porter in the Marketplace", "Tags": "breweries porter", "AnswerCount": "1", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"456"}} +{ "Id": "456", "PostTypeId": "2", "ParentId": "448", "CreationDate": "2014-01-30T23:07:44.097", "Score": "1", "Body": "

I'm not sure about Kentucky, but it seems to be legal here in NY. I've never ordered beer online as the shipping prices are astronomical and I've got a pretty decent beer distributor down the block with a large selection.

\n\n

With that said, the way it seems to work is that the delivery person (whether it be UPS, FedEx, DHL, USPS, etc) ID's you at the door when you sign for the package. I've got a big dog (Neapolitan Mastiff) though, so my package carriers usually just sign for me and run for the hills when they have the displeasure of delivering something to my house haha. So I'm not sure if they'd bother checking my ID if I ever bought beer online. I'm perfectly legal drinking age though, so it doesn't matter.

\n\n

With that said, you'd probably be best off looking through your local laws and maybe start a petition to have it legalized. I don't think its in the best interests of this community to be discussing loopholes in the law (despite how much I hate the government). I say start a petition, maybe it'll become a proposition and be placed on the ballot come election day. The only other option would be to have it shipped to another address in a border state if you live near the border. No online beer distributor is going to violate the law or tamper with it to make a buck, there's too much liability; they could lose their license and be put out of business.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-01-30T23:07:44.097", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"457"}} +{ "Id": "457", "PostTypeId": "2", "ParentId": "453", "CreationDate": "2014-01-30T23:14:15.337", "Score": "7", "Body": "

TL;DR: Yes, but they're growing.

\n\n

\"Beer

\n\n

This chart shows, for craft beer sold in 2012, the relative portion of the market each style made up, with IPA being the most popular (a relatively new occurrence). Porters do not even show up.

\n\n

\"enter

\n\n

Here's another for 2011 showing porters as quite low on the list.

\n\n

\"enter

\n\n

This chart shows the year-over-year increase in sales by style. You'll note here that, at least in 2011, porters weren't growing very fast either.

\n\n

More recent data was a little hard to come by, but it seems that the overall sales numbers are unlikely to change that much in a couple years: IPAs, Pale ales, Ambers and Amber Lagers are probably still topping the charts. So it's not that porters don't sell at all, but they're certainly not top earners.

\n\n

Drifting into conjecture, I would say that the people interested in 'big beers' will take a stout over a porter, and those interested in a more subtle beer will go for a brown or an amber, leaving porters in a bit of a no-man's-land in the middle.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-30T23:14:15.337", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"458"}} +{ "Id": "458", "PostTypeId": "1", "AcceptedAnswerId": "460", "CreationDate": "2014-01-31T04:14:24.583", "Score": "28", "ViewCount": "2198", "Body": "
    \n
  1. You're holding a bottle of beer, mostly full
  2. \n
  3. A prankster comes up and hits your bottle from above with hers.
  4. \n
  5. Yours immediately and violently overflows (while hers stays unaffected).
  6. \n
\n\n

See this short video.

\n\n

Of special note is the fact that this does not occur when a beer bottle is hit from below or on the sides.

\n\n

What mechanism causes this? Is it a property of beer, or of glass beer bottles, or something else?

\n", "OwnerUserId": "80", "LastEditorUserId": "5064", "LastEditDate": "2017-08-16T11:47:14.140", "LastActivityDate": "2017-08-16T11:47:14.140", "Title": "Why do beer bottles overflow when hit from above?", "Tags": "bottles", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"460"}} +{ "Id": "460", "PostTypeId": "2", "ParentId": "458", "CreationDate": "2014-01-31T05:49:33.437", "Score": "31", "Body": "

tl;dr

\n\n

Tapping the top causes compression waves started through the air in the opening (which is why it only works from the top.) The compression waves bounce at the bottom and become expansion waves. The compression and expansion causes agitation which foams up the beer.

\n\n

Tell me more...

\n\n

The layman's summary from Scientists discover why beer bottles overflow after a sudden impact:

\n\n
\n

A lot happens in the short period of time between tap and torrent. The\n moment some jerk clocks your bottle's mouth, a compression wave\n travels down through the glass. When the wave hits bottom, it's\n reflected as an expansion wave that travels through the beer. These\n waves keep bouncing back and forth, with the compression waves\n breaking up the CO2 bubbles in your beer into thousands of incredibly\n tiny microbubbles, and the expansion waves causing those microbubbles\n to violently expand into skyrocketing plumes.

\n \n

The result? Millions and millions of expanding CO2 bubbles turn your\n beer into foam shooting out of your bottle. With any luck, it spills\n all over your jerk friend's pants.

\n
\n\n

The abstract from the published article:

\n\n
\n

A sudden vertical impact on the mouth of a beer bottle generates a\n compression wave that propagates through the glass towards the bottom.\n When this wave reaches the base of the bottle, it is transmitted to\n the liquid as an expansion wave that travels to free surface, where it\n bounces back as a compression wave. This train of\n expansion-compression waves drives the forced cavitation of existing\n air pockets, leading to their violent collapse. A cloud of very small\n daughter bubbles are generated upon these collapses, that expand much\n faster than their mothers due to their smaller size. These rapidly\n growing bubble clusters effectively act as buoyancy sources, what\n leads to the formation of bubble-laden plumes whose void fraction\n increases quickly by several orders of magnitude, eventually turning\n most of the liquid into foam.

\n
\n", "OwnerUserId": "112", "LastActivityDate": "2014-01-31T05:49:33.437", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"461"}} +{ "Id": "461", "PostTypeId": "2", "ParentId": "440", "CreationDate": "2014-01-31T08:39:25.180", "Score": "2", "Body": "

Spicy foods. My personal favorite is stir fry. Something that isn't heavy on carbs is ideal, so with stir fry I go light on the noodles (or rice) and heavy on peppers, onions, and meat (usually chicken or beef). Again, don't use the milder sauces like teriyaki, use something with some kick.

\n", "OwnerUserId": "212", "LastActivityDate": "2014-01-31T08:39:25.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"462"}} +{ "Id": "462", "PostTypeId": "2", "ParentId": "59", "CreationDate": "2014-01-31T13:00:53.317", "Score": "4", "Body": "

When I visited Stella Artois brewery in Leuven (Belgium), they told us that they distributed the same beer in two kind of bottles. In brown reusable simply labeled bottles for distribution inside Belgium (note that it is a regular beer, the most drunk in Belgium), and in green more fancier labeled bottles with "imported" insciption on it for distribution around the world.

\n

In belgium Stella Artois is a normal cheap beer, but where I live, in Spain, it is sold as imported special beer and costs more than double. However, the liquid inside the bottles is the same. So it is just marketing strategy.

\n

The guy who showed us the brewery was clear. While people outside belgium are kind to pay more for a fancier bottle, they would distribute more expensive fancier bottles.

\n", "OwnerUserId": "301", "LastEditorUserId": "301", "LastEditDate": "2020-08-28T07:35:54.813", "LastActivityDate": "2020-08-28T07:35:54.813", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"463"}} +{ "Id": "463", "PostTypeId": "1", "AcceptedAnswerId": "465", "CreationDate": "2014-01-31T15:26:58.170", "Score": "15", "ViewCount": "868", "Body": "

I ask this because I just ordered an \"American Pale Ale\" and it's actually quite dark in color. So how can I tell a pale ale? What actually defines an ale as pale?

\n", "OwnerUserId": "85", "LastActivityDate": "2014-01-31T16:11:17.257", "Title": "What constitutes a Pale Ale?", "Tags": "ale", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"464"}} +{ "Id": "464", "PostTypeId": "2", "ParentId": "463", "CreationDate": "2014-01-31T15:54:15.223", "Score": "4", "Body": "

A pale ale is traditionally an ale that is is brewed predominantly with pale malt and is hop forward. Brewers often add additional malts in order to achieve whatever it is that they're specifically trying to achieve for a given beer, and a pale ale with some caramel or crystal malt will indeed have a darker coloration though on the whole the properties of the beer may still mean that it resides within the definition of the pale ale style.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-01-31T15:54:15.223", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"465"}} +{ "Id": "465", "PostTypeId": "2", "ParentId": "463", "CreationDate": "2014-01-31T16:01:15.017", "Score": "12", "Body": "

It's historical.

\n\n

The \"Pale\" in Pale Ale is mostly historical. In the 18th century, most beers were dark due to being produced with barley malt that was kilned or roasted over wood fires. But from England emerged a new technique using pale malts, cured in coke-fuelled kilns. This applied to both ales and lagers, resulting in beers that were bronze, copper or gold—and while you wouldn't look at such colors today and consider them notably \"pale,\" they certainly were pale in contrast to beers back then. In the turn of the 19th century and beyond, the style spread from England to the rest of Europe—

\n\n
\n

When a new brewery was built in Pilsen in Bohemia in 1842, a coke-fired kiln was imported from England. The result was the first golden lager, Pilsner Urquell, which was made possible by British ingenuity and technical advance.

\n
\n\n

http://www.beer-pages.com/protz/features/ipa.htm

\n\n

Note that American Pales are distinct from India Pales as well as from American India Pales. See my answer about the differences between styles of IPAs.

\n", "OwnerUserId": "73", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-01-31T16:01:15.017", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"466"}} +{ "Id": "466", "PostTypeId": "2", "ParentId": "463", "CreationDate": "2014-01-31T16:04:54.210", "Score": "7", "Body": "

The American Pale Ale (also known as APA) is normally a light-colored ale that is traditionally hoppy with light malt flavor. But its formal description is a little bit more flexible. It's defined as a very balanced style. It originates from the English Pale Ales.

\n\n

The BJCP describes it as the following (short version):

\n\n
    \n
  • Aroma: Moderate to strong hop. Citrusy hop is very common. Also, low to moderate maltiness.

  • \n
  • Appearance: Pale golden to deep amber. Moderately large white to off-white head with good retention. Generally quite clear.

  • \n
  • Taste: Pretty much the same as aroma.

  • \n
  • Mouthfeel: Medium-light to medium-full body.

  • \n
\n\n

For more information see here!

\n", "OwnerUserId": "215", "LastEditorUserId": "215", "LastEditDate": "2014-01-31T16:11:17.257", "LastActivityDate": "2014-01-31T16:11:17.257", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"467"}} +{ "Id": "467", "PostTypeId": "1", "CreationDate": "2014-01-31T17:13:39.710", "Score": "11", "ViewCount": "6255", "Body": "

If I get a beer labelled 5% ABV, how accurate is that measurement likely to be?

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-31T18:24:45.083", "Title": "How accurate is Alcohol by Volume in beer?", "Tags": "abv", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"468"}} +{ "Id": "468", "PostTypeId": "2", "ParentId": "467", "CreationDate": "2014-01-31T17:26:29.547", "Score": "12", "Body": "

tl;dr — By regulation, ±0.3-0.5%.

\n\n

Chemically speaking, I'm not sure—maybe someone else can go into measuring techniques, alterations (continued fermentation?) during distribution, etc.

\n\n

But countries and regions specify tolerances for error.

\n\n

In the United States, according to Title 27: Alcohol, Tobacco, and Firearms, Part 7: Labeling and Advertising of Malt Beverages, §7.71:

\n\n
\n

(c) Tolerances. (1) For malt beverages containing 0.5 percent or more alcohol by volume, a tolerance of 0.3 percent will be permitted, either above or below the stated percentage of alcohol. Any malt beverage which is labeled as containing 0.5 percent or more alcohol by volume may not contain less than 0.5 percent alcohol by volume, regardless of any tolerance.

\n
\n\n

http://www.ecfr.gov/cgi-bin/text-idx?SID=1affcd509f9614478fbbc0c85551765a&node=27:1.0.1.1.5.8.41.1&rgn=div8

\n\n

In the EU,

\n\n
\n
    \n
  • 0.5% vol. for beers having an alcoholic strength not exceeding 5.5 % vol. and beverages classified under subheading 22.07 B II of the Common Customs Tariff and made from grapes
  • \n
  • 1% vol. for beers having an alcoholic strength exceeding 5.5 % vol. and beverages classified under subheading 22.07 B I of the Common Customs Tariff and made from grapes; ciders, berries, fruit wines, and the like; beverages based on fermented honey
  • \n
  • 1.5 % vol. for beverages containing macerated fruit or parts of plants
  • \n
  • 0.3 % vol. for other beverages
  • \n
\n
\n\n

http://www.icap.org/table/alcoholbeveragelabeling

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2014-01-31T18:24:45.083", "LastActivityDate": "2014-01-31T18:24:45.083", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"469"}} +{ "Id": "469", "PostTypeId": "2", "ParentId": "467", "CreationDate": "2014-01-31T18:04:04.900", "Score": "7", "Body": "

There are two ways a brewery can measure the abv:

\n\n
    \n
  1. By wort gravity: by measuring the specific gravity of the wort (the sugar solution that the yeast ferment into beer) both before and after fermentation. The difference is the amount of sugar consumed, which can be used to approximate the amount of alcohol produced.
  2. \n
  3. By distillation: the sample is heated, so the water and ethanol (alcohol) evaporate off and are collected in a condenser. The specific gravity of this is measured, which can then be used to calculate the percentage of alcohol, since the densities of alcohol and water are both known.
  4. \n
\n\n

Both methods are exact and the accuracy is entirely due to the accuracy of the equipment used to measure.

\n\n

The least accurate and precise is the case of (say) a microbrewer using a regular glass hydrometer to measure the OG and FG (method 1 above) - these read to 4 significant digits, with an accuracy of +/-1 SG at best. Without getting into the details, the accuracy then is about +/-5% of the final value for a regular strength beer. So for a 5% beer, that would be +/-0.25%.

\n\n

With lab grade equipment, the accuracy of method 2 can be as good as 0.05%, since the specific gravities are measured with greater precision (and accuracy.) So our 5% beer would be with accuracy 0.0025%.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-01-31T18:13:52.407", "LastActivityDate": "2014-01-31T18:13:52.407", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"470"}} +{ "Id": "470", "PostTypeId": "1", "AcceptedAnswerId": "471", "CreationDate": "2014-01-31T18:59:21.883", "Score": "17", "ViewCount": "2525", "Body": "

In my experience, as well as accounts of others' experiences, it seems that clear and green bottles are inferior to brown bottles for storing beer. I know this is due to the amount of light allowed through the bottle.

\n\n

But why do breweries continue to use green and (especially) clear bottles? Why bother with a bottle that is more likely to allow beer to spoil?

\n", "OwnerUserId": "192", "LastActivityDate": "2014-01-31T20:17:09.733", "Title": "Why use clear or green bottles?", "Tags": "skunking bottles", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"471"}} +{ "Id": "471", "PostTypeId": "2", "ParentId": "470", "CreationDate": "2014-01-31T19:08:50.680", "Score": "15", "Body": "

Fully attributing the Berghoff Beer Blog for this interesting story (emphasis mine),

\n\n
\n

Around World War II, brown glass rose in demand and many companies had to forfeit their brown glass for their country. Unfortunately that meant companies with higher quality beers had to use clear glass, which made their beers look like cheaper, clear glass beers. Higher quality brewers’ solution was to sell their beer in green bottles so a consumer could tell the difference between a regular beer and a higher quality. The green beer bottle became a status symbol for many European breweries.

\n \n

These days, there’s not much of a reason to sell a beer in a green bottle other than for marketing and aesthetic. Many companies use it to distinguish their beer from others. Of course, some beers have used green bottles for so long, it would seem silly to switch to a brown glass now.

\n \n

Lucky for us, glass suppliers are able to apply clear, UV protected coats to glass that help keep beer fresh no matter what kind of bottle it is in. [...]

\n
\n\n

http://www.berghoffbeer.com/blog/what-does-the-color-of-your-beer-bottle-mean/

\n\n

So, perhaps it's no longer the case that clear and green bottles are (noticeably) inferior to brown bottles!

\n\n
\n\n

Edit: I failed to find historical sources for the above claims, even some indication of higher demand for brown glass during World War II. However, the story seems widely believed today, true or not.

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2014-01-31T19:17:20.950", "LastActivityDate": "2014-01-31T19:17:20.950", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"472"}} +{ "Id": "472", "PostTypeId": "1", "AcceptedAnswerId": "477", "CreationDate": "2014-01-31T19:49:17.750", "Score": "9", "ViewCount": "1650", "Body": "

In the US there are tons of rules about alcohol that vary widely from state to state and at the federal level. For example you can brew your own beer in most states but you have to have a license for liquor. Similarly, wine tastings are usually OK but beer tastings are illegal in many places.

\n\n

I'm not asking about the specifics of how each law came to be, that would take an encyclopedia. Rather, I want to know if there was an overall philosophy that drove regulating beer differently from other alcohol. Did different companies or industry groups lobby for laws that benefited their product over other companies products? Was there an overall public sentiment that drove the differences?

\n", "OwnerUserId": "36", "LastActivityDate": "2014-02-03T08:57:40.450", "Title": "Why is beer regulated differently than other types of alcohol?", "Tags": "history laws", "AnswerCount": "5", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"473"}} +{ "Id": "473", "PostTypeId": "2", "ParentId": "470", "CreationDate": "2014-01-31T20:17:09.733", "Score": "5", "Body": "

I would expect that companies which use clear bottles don't expect their product to see that much sunlight, or that they think their customers won't notice a little skunking if it does see any. Anecdotally, I typically associate clear bottles with the larger brewers (Coors, Budweiser), and I don't think of those beers as having much in the way of hops, the source of the isohumulones which, when combined with light, create the \"skunk\".

\n\n

Wikipedia points out something interesting as well:

\n\n
\n

In some cases, such as Miller High Life, a hop extract that does not\n have isohumulones is used to bitter the beer so it cannot be\n 'lightstruck'.

\n
\n", "OwnerUserId": "27", "LastActivityDate": "2014-01-31T20:17:09.733", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"474"}} +{ "Id": "474", "PostTypeId": "2", "ParentId": "204", "CreationDate": "2014-01-31T20:17:30.217", "Score": "5", "Body": "

You'll probably do best keeping the room layout simple and as easily organized as possible. The main thing for the beer is to keep the temperature steady and relatively low (around 50F) and keep light out. Even with brown bottles there's still some UV penetration, which you want none of. So keep it dark when you're not in there and try to avoid florescent lighting when you're there. Keeping it organized also helps you minimize your time in there, which keeps light and temperature steady.

\n\n

I wouldn't worry too much about the air flow as long as it's not completely stagnant and all the areas of the room are getting some air of the right temperature. Liquid and glass hold temperature a lot better than air on their own so they won't have significant fluctuation once you get them where you want them. I think most collections prefer shallow shelves for this reason.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-01-31T20:17:30.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"475"}} +{ "Id": "475", "PostTypeId": "1", "AcceptedAnswerId": "478", "CreationDate": "2014-01-31T20:34:37.143", "Score": "9", "ViewCount": "6162", "Body": "

Making beer & brats involves boiling bratwurst & sliced onions in beer and finishing the brats on the grill.

\n\n

What's a good beer to use to cook with and then drink with the brats once they're done?

\n", "OwnerUserId": "36", "LastActivityDate": "2014-02-01T19:49:56.903", "Title": "What kind of beer should I use when making beer & brats?", "Tags": "pairing cooking", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"476"}} +{ "Id": "476", "PostTypeId": "2", "ParentId": "472", "CreationDate": "2014-01-31T20:55:05.550", "Score": "6", "Body": "

Part of the answer has to do with how the beverages survived prohibition. Winemakers were allowed to continue producing various grape products like grape juice, and even sold home wine kits with explicit instructions on how to avoid making wine from them. Very tongue-in-cheek. A lot of liquor distillers managed to survive somewhat on their liquors being considered \"medicinal\". Beer, however, basically got demolished. Especially considering their suffering during World War 1, which had just ended when prohibition began. Any businesses that survived prohibition that used to be breweries either became producers of other products like ice cream or made barely alcoholic barley-based beverages. Brewing in the US was at a huge disadvantage coming out of prohibition, and the few surviving large companies managed to successfully lobby to have the new distribution laws written to benefit them.

\n\n

Also, as I mentioned wine and liquor sort of continued to be produced during Prohibition. This led to their presence in the speakeasies, and their inclusion in the invention of many new cocktails. People being used to them over the past few years, and the allure of being what was drank in speakeasies, acted as built in marketing. Which beer lacked.

\n\n

Finally, beer was much less transportable than wine or liquor, especially liquor. While localized wineries managed to survive, most people's local brewery had folded. Liquor and wine became go-to drinks, and the only beer being promoted was from a few larger companies that needed to ramp up to reach everyone. They were basically able to write their own ticket.

\n\n

We're sort of in the opposite place now where consumer demand is for beer instead of liquor and wine, and the demand is for beer that's coming from smaller and more regional breweries, which I imagine is how wine was back in the day.

\n\n

I am not an historian, some of this is inference from known fact rather than referenced fact, but I think it makes sense and hopefully it helps you.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-01-31T20:55:05.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"477"}} +{ "Id": "477", "PostTypeId": "2", "ParentId": "472", "CreationDate": "2014-01-31T20:56:27.930", "Score": "9", "Body": "

Part of it is philosophical

\n\n

Why are airplane pilots regulated differently from car drivers? Because it's much easier to do damage with one vs the other. Likewise, it's a lot easier to get so drunk that you do something stupid (or just get alcohol poisoning) on liquor than beer. As such, they're treated differently.

\n\n

Part of it is political

\n\n

The companies that make beer are not generally the same ones that make liquor. Those two groups of companies also have different groups of lobbyists, who have pushed for laws at different times in different political climates.

\n\n

Part of it is practical

\n\n

Liquor and beer production face different logistical needs. For example:

\n\n
    \n
  • Beer has much higher shipping costs per dollar worth of product, so shipping rules might need to be different.
  • \n
  • Breweries have a need to keep their product cold at the point of sale, so it might make sense to have them sold in stores that already have coolers (like gas stations), whereas liquor companies wouldn't push as hard for that availability.
  • \n
  • Liquor has no equivalent of the brewpub, so they don't really care much about sales at their production facility.
  • \n
  • Beer has less consumer utility per unit of volume than liquor (ie, you need more of it to have the same amount of fun), so people generally need it closer to their houses. Since you don't need to buy liquor as often as you buy beer, it's more feasible to have centralized liquor stores
  • \n
\n\n

Part of it is \"moral\"

\n\n

Especially on the US East coast, there are a lot of laws around booze with their origins in religious morality and the puritan aversion to alcohol. Beer, being seen as a \"lesser evil\", tends to have less opposition to laws that would increase its availability.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-01-31T20:56:27.930", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"478"}} +{ "Id": "478", "PostTypeId": "2", "ParentId": "475", "CreationDate": "2014-01-31T21:09:20.713", "Score": "9", "Body": "

Go for lower alcohol and less hoppy. Alcoholic drinks on meat can give great flavor, but the alcohol has a tendency to dry out said meat. Some form of malty session beer would be great to cook with, if you had any near you. Rauchbier would probably work well, since that smoke flavor would really enhance the meat, but drinking it with it might be too much. If you do cook them this way, don't boil, just simmer for a while.

\n\n

What would probably be pretty pimp, would be to make a beer reduction with the onions and serve that on the brats. Sauté some onions, and right after they've started to caramelize, add some of a great malty beer...maybe a Marzen... and simmer it on medium heat until it starts to thicken up and make a syrupy sauce that sticks to the onions.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-01-31T21:09:20.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"479"}} +{ "Id": "479", "PostTypeId": "1", "CreationDate": "2014-01-31T21:55:39.973", "Score": "15", "ViewCount": "5787", "Body": "

It's often recommended that you drink water before and during a heavy drinking session. Why is it that, despite being mostly water, beer dehydrates you?

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-01T10:19:08.893", "Title": "Why does beer dehydrate you?", "Tags": "drinking water", "AnswerCount": "1", "CommentCount": "2", "ClosedDate": "2014-02-07T04:14:02.410", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"480"}} +{ "Id": "480", "PostTypeId": "1", "CreationDate": "2014-01-31T23:14:27.907", "Score": "8", "ViewCount": "3875", "Body": "

I bought a 6 pack of Shock Top last night and is suggests on the package to make a drink they are calling a \"Choc-Top.\" The pack comes with 3 Belgian Wheat normal Shock Tops and 3 Chocolate Wheat beers.

\n\n

I've looked around online and seen a bunch of pictures of nicely layered beverages. How do I acheive this layering when pouring my beer into a glass?

\n", "OwnerUserId": "39", "LastEditorUserId": "37", "LastEditDate": "2015-11-06T18:51:25.590", "LastActivityDate": "2019-04-01T07:59:39.777", "Title": "How do I get good layer seperation for a Shock Top Choc-top?", "Tags": "serving beer-cocktails", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"481"}} +{ "Id": "481", "PostTypeId": "2", "ParentId": "472", "CreationDate": "2014-02-01T00:07:47.437", "Score": "-1", "Body": "

I think it has something to do with the thinking of Whiskey Rebellion, -- a tax was on spirts but not wine or beer. Whiskey was considered a luxury tax - yet it turns out a LOT of people were making and drinking Whiskey at the time

\n", "OwnerUserId": "330", "LastActivityDate": "2014-02-01T00:07:47.437", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"482"}} +{ "Id": "482", "PostTypeId": "2", "ParentId": "404", "CreationDate": "2014-02-01T00:34:46.077", "Score": "6", "Body": "

There was a study at the University of Tokushima that showed beer containing flavaprenin \n(8-Prenylnaringenin), which is found in hops, limited muscle atrophy in debilitated lab mice. The idea that humans could have benefits of flavaprenin through drinking beer is not quite right, as you would die from alcohol poisoning before you would see the benefits.

\n\n

if you are interested here is a non-technical article on the topic: http://www.dailymail.co.uk/health/article-2208966/Beer-help-strong-old-age--youd-need-drink-83-litres-A-DAY.html

\n", "OwnerDisplayName": "user332", "LastActivityDate": "2014-02-01T00:34:46.077", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"483"}} +{ "Id": "483", "PostTypeId": "2", "ParentId": "480", "CreationDate": "2014-02-01T01:31:08.790", "Score": "7", "Body": "

Pour it over the back of a spoon

\n\n

As with any layered beer, your goal is to reduce the velocity of the top beer as it hits the bottom beer. So, pour it over the back of a spoon to split the stream up into smaller rivulets (which won't push as far into the lower beer):

\n\n

\"\"
\n(original source)

\n\n

For advanced drinkers, bend a spoon handle so that you can lower the spoon further into the glass while still keeping the spoon head perpendicular to the table. This means that the beer doesn't have as far to fall from the spoon into the glass-beer.

\n\n

The technique of making a layered beer takes a little practice, so give it a few tries (and drink all of your mistakes!)

\n", "OwnerUserId": "80", "LastEditorUserId": "8506", "LastEditDate": "2019-04-01T07:59:39.777", "LastActivityDate": "2019-04-01T07:59:39.777", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"484"}} +{ "Id": "484", "PostTypeId": "2", "ParentId": "472", "CreationDate": "2014-02-01T03:01:45.587", "Score": "3", "Body": "

In addition to the ground covered in other answers, some of it undoubtedly is historical in nature due to the fact that wine, beer, and other ales historically were consumed for hydration and energy. This slate article covers some of this; while it was probably a myth that people drank ales as a source of clean water, they did hydrate and gain energy from them. As such, beer and ale were associated with 'normal' consumption, much like soda would be today, and thus is treated somewhat differently from 'spirits', which have no real purpose other than getting one drunk, and even from wine, which was primarily associated with the nobility.

\n", "OwnerUserId": "334", "LastActivityDate": "2014-02-01T03:01:45.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"485"}} +{ "Id": "485", "PostTypeId": "1", "CreationDate": "2014-02-01T09:08:20.187", "Score": "31", "ViewCount": "39088", "Body": "

I've seen people complain when served a beer without foam. Equally, getting a glass full of foam is no use.

\n\n

When serving a beer, how much is the right amount of foam and why is this important?

\n", "OwnerUserId": "112", "LastActivityDate": "2019-03-14T08:05:51.383", "Title": "Why is it important to have foam on a beer?", "Tags": "serving foam", "AnswerCount": "5", "CommentCount": "6", "FavoriteCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"486"}} +{ "Id": "486", "PostTypeId": "2", "ParentId": "479", "CreationDate": "2014-02-01T10:19:08.893", "Score": "13", "Body": "

Well, this question might get closed as a duplicate, but I'm going to answer it anyway, and try to answer it better. IMO, the suggested duplicate answers a different question, only answering the hydration question too, by side-effect. Personally, I like this question paired with that answer, better than that question.

\n\n

tl;dr — Alcohol is a diuretic (defined: a substance that promotes the production of urine), causing you to expel more water than the body would normally expel.

\n\n

That much has been shown conclusively.

\n\n
\n

If sufficient alcohol is ingested, the diuresis occurs at the expense of all cellular components, and dehydration ensues.

\n
\n\n

Roberts, K. E. Mechanism of Dehydration Following Alcohol Ingestion. 1963. [Abstract (HTML)]

\n\n

As far back as the 1930s, researchers were trying to understand whether alcohol—the substance itself—is a diuretic, or indirectly induces chemicals which are diuretic (or which inhibit antidiuretics) or triggers cortical functions that cause diuresis.

\n\n
\n

[Most] writers either state categorically or imply that alcohol per se has no diuretic action. In 1932, however, from a comparison of the diuretic effects of a given volume of water, with and without alcohol, [...] Murray concluded that alcohol itself was exerting a diuretic action. [...] The diuretic action of alcohol has now been demonstrated on five other subjects, and its mode of action investigated [...]

\n
\n\n

Eggleton, M. G. The Diuretic Action of Alcohol in Man. 1941. [Full Paper (PDF)]

\n\n

The first paper (1963) actually confirmed that alcohol—yes, ethanol itself—inhibits antidiuretic hormones, causing diuresis, causing dehydration. (Caffeine does this too, by the way.)

\n\n

So, yeah. That's how that happens.

\n\n
\n\n

Unrelated, but I found this interesting in the second paper...

\n\n
\n

It [the diuresis] is initiated by the increase in blood-alcohol concentration and fails to be maintained if this concentration is kept steady, even at high levels [...] The diuretic response to alcohol differs markedly in one respect from that of the cerebral cortex. The latter is most affected by the rate of increase in blood-alcohol concentration: the greater this rate of increase, the greater the disturbance of function at any absolute concentration. The diuretic response, on the other hand, is dependent mainly on the duration of increasing blood-alcohol concentration and not on the rate of increase (Tables 6, 7). The naturally slow absorber, therefore, tends to give a larger diuretic response than the rapid absorber.

\n
\n\n

The slower you get drunk, the more dehydrated you'll be!

\n", "OwnerUserId": "73", "LastActivityDate": "2014-02-01T10:19:08.893", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"487"}} +{ "Id": "487", "PostTypeId": "2", "ParentId": "485", "CreationDate": "2014-02-01T10:48:18.690", "Score": "15", "Body": "

Apart from the simple explanation of people liking the foam, the lack of head could indicate problems with the beer. For example:

\n\n
    \n
  1. It could mean that the glass is dirty, or there is left over soap residue on the glass. This can affect the taste of the beer.

  2. \n
  3. It could indicate that the beer has lost its carbonation (the head being formed by the gas quickly coming out of solution in the beer). For many forms of storage a lack of internal pressure will indicate that they are no longer sealed properly, which makes it easier for infections to enter the beer or for it to oxidise.

  4. \n
\n\n

As for the ideal amount of head, to some extent it will depend on the style of beer.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-02-01T10:48:18.690", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"488"}} +{ "Id": "488", "PostTypeId": "1", "AcceptedAnswerId": "491", "CreationDate": "2014-02-01T19:06:17.957", "Score": "12", "ViewCount": "685", "Body": "

Different beers and different types of storage result in different amounts of foam being produced when the beer is poured, from almost none at all to a glass full of foam.

\n\n

What factors, both in terms of ingredients/type of beer and storage, affect how much foam will be produced? And, as a bonus question, how do I avoid excessive amounts of foam when pouring?

\n", "OwnerUserId": "53", "LastActivityDate": "2014-02-01T20:38:45.047", "Title": "What determines how much foam a beer produces when it is poured?", "Tags": "storage ingredients pouring foam", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"489"}} +{ "Id": "489", "PostTypeId": "2", "ParentId": "485", "CreationDate": "2014-02-01T19:38:12.780", "Score": "26", "Body": "

Most importantly, a good head helps release the aromas of the beer, especially the hops. Aroma is everything for enjoyment of a good brew. When enjoying a super-hoppy IPA, you should always use a glass that provides a large surface area for aromatics to rise from.

\n\n

It can also provide the a pleasant mouth feel. Stouts definitely benefit from a thick, silky head.

\n\n

And lastly, it's eye candy.

\n\n

As for the right amount of head, it varies. Generally in an average pint glass you want 1-2 finger-widths of head. Some hefeweizens and wit beers are best with a bit more.

\n", "OwnerUserId": "341", "LastEditorUserId": "341", "LastEditDate": "2014-02-01T20:42:39.750", "LastActivityDate": "2014-02-01T20:42:39.750", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"490"}} +{ "Id": "490", "PostTypeId": "2", "ParentId": "475", "CreationDate": "2014-02-01T19:49:56.903", "Score": "4", "Body": "

When cooking sweeter meats like brats or other sausages, I always use very malty beers, typically of the darker variety. Nut brown ales, dopplebock, stouts are favorites.

\n\n

Flank steak marinated in a combo of Newcastle Brown Ale, lots of red pepper flakes, garlic, lime juice, salt and pepper makes universally awesome fajita meat.

\n\n

If you're making sauces or deglazing a pan, definitely go with the malty stuff.

\n", "OwnerUserId": "341", "LastActivityDate": "2014-02-01T19:49:56.903", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"491"}} +{ "Id": "491", "PostTypeId": "2", "ParentId": "488", "CreationDate": "2014-02-01T20:02:37.250", "Score": "8", "Body": "

With regards to the beer, 4 things primarily determine the amount and consistency of head:

\n\n
    \n
  1. Types of malt used: light malt typically produces larger, more dish-soapy bubbles. Roasted or dark malts will typically produce smaller bubbles. The proteins in the malt are what determine the consistency of the bubbles. There are additives that can alter and enhance the head forming capabilities of the beer. These are usually forms of protein. One of the best silky mouth feel beers I've ever had is Flying Dog Pearl Necklace Oyster Stout. Yes - they actually add oysters to the brew. The protein makes for an amazing feel.
  2. \n
  3. Amount of carbonation: pretty self explanatory. Mo' gas, mo' bubbles. Higher ABV beers and very malty beers can sometimes hold almost no CO2. Give these a rough pour to produce a decent head.
  4. \n
  5. Type of carbonation: CO2 produces larger bubbles while nitrogen produces very fine small bubbles which gives Guinness its famous silky creamy head.
  6. \n
  7. Conditioning & storage: bottle conditioned beer will hold more CO2 and have a different head and mouth feel and coarser bubbles. kegs carbonated by pressurizing with CO2 will hold less and be a bit foamier.
  8. \n
\n\n

With regards to the pour, if less head is desired, tilt the glass at least 45 degrees and pour slowly, on the glass, rising as you pour to always be pouring just above the level of the beer. For more head, well... dump 'er in.

\n\n

The glass will make a difference too. For some high-browed beer-snobbery about cleaning your beer glasses: http://byo.com/porter/item/425-can-you-explain-the-dos-and-donts-of-cleaning-beer-glasses

\n", "OwnerUserId": "341", "LastEditorUserId": "341", "LastEditDate": "2014-02-01T20:38:45.047", "LastActivityDate": "2014-02-01T20:38:45.047", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"492"}} +{ "Id": "492", "PostTypeId": "2", "ParentId": "440", "CreationDate": "2014-02-01T20:07:10.720", "Score": "5", "Body": "

CHEESE! Extremely sharp cheddar is best. A sharp Vermont or New York white cheddar will do as well.

\n\n

My personal favorite is Tillamook Special Reserve Extra Sharp.

\n", "OwnerUserId": "341", "LastActivityDate": "2014-02-01T20:07:10.720", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"493"}} +{ "Id": "493", "PostTypeId": "2", "ParentId": "319", "CreationDate": "2014-02-01T20:19:58.240", "Score": "4", "Body": "

Guinness licenses their brand and recipe to many breweries which is why they are so prolific everywhere. An example is the fact that Labatt's brews most Guinness sold in North America. So, their widespread popularity is simply a combination of marketing and smart distribution.

\n", "OwnerUserId": "341", "LastActivityDate": "2014-02-01T20:19:58.240", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"496"}} +{ "Id": "496", "PostTypeId": "2", "ParentId": "330", "CreationDate": "2014-02-01T21:45:30.103", "Score": "2", "Body": "

In Germany, beer in bars and pubs is sold in jars of varying size. Different ingredients, different yeasts (top fermented or bottom fermented), different jars, different traditions.

\n\n

In the Cologne area, the traditional beer Kölsch is sold in traditional jars of 0.2 l (200 ml). It should be drunken quickly and therefore smaller glasses are appropriate. Some pubs use 250 ml as their standard size however. Usually larger glasses are also available (300, 400, or 500 ml).

\n\n

In Bavaria, standard sizes are rather 500 or 1000 ml.

\n\n

Standard bottle is 500 ml, but many brands also offer 330 ml bottles.

\n", "OwnerUserId": "95", "LastActivityDate": "2014-02-01T21:45:30.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"497"}} +{ "Id": "497", "PostTypeId": "2", "ParentId": "109", "CreationDate": "2014-02-01T22:32:24.890", "Score": "2", "Body": "

From my own experience the effect of frozen-thawed beer tends to be flatter and have a more watery consistency.

\n\n

Possibly this similar question on HomeBrew could help you: Link to HomeBrew question

\n", "OwnerDisplayName": "user332", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2014-02-01T22:32:24.890", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"498"}} +{ "Id": "498", "PostTypeId": "2", "ParentId": "243", "CreationDate": "2014-02-01T22:49:35.430", "Score": "2", "Body": "

Tank beer does seem to be mainly a Czech thing, although there are some pubs in England that use tanks too. In terms of why it might not be as popular in other countries, there seem to be some downsides: you would need to clean the tanks about once a week, also if you are dealing with unpasteurized beer it must be consumed in a shorter time period which may lead to possible waste of product.

\n\n

Link to a article of a pub in England with tank beer here

\n", "OwnerDisplayName": "user332", "LastEditorDisplayName": "user332", "LastEditDate": "2014-02-02T01:33:04.993", "LastActivityDate": "2014-02-02T01:33:04.993", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"499"}} +{ "Id": "499", "PostTypeId": "2", "ParentId": "243", "CreationDate": "2014-02-01T22:49:55.550", "Score": "4", "Body": "

According to the article you linked to, the specific draw of tank beer is that it's unpasteurized. This does also exist (albeit not served from tanks) in the form of Real Ale, or Cask Ale in Britain. Historically, this was not only popular, but the primary distribution mechanism for beer in Britain a hundred years ago. However, its popularity has diminished over time because it's harder to transport and doesn't last as long as pasteurized beer, making it more expensive which necessarily reduces the size of the market that can and will pay for it.

\n\n

Tanked beer is something that you see in brewpubs in the United States, where transportation isn't an issue (since it's being brewed on-site) but real ale is definitely on the decline in the U.K. and possibly only survives due to CAMRA, the British Beer Preservation Society's Campaign for Real Ale.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-02-01T22:49:55.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"500"}} +{ "Id": "500", "PostTypeId": "2", "ParentId": "480", "CreationDate": "2014-02-02T02:08:40.010", "Score": "8", "Body": "

As mentioned by @Fishtoaster (and as depicted in the cat gif) pouring over the back of a spoon is definitely a must - you really want to make sure none of the top layer breaks into the bottom layer.

\n

There are a few other ways to make your layering more effective as well.

\n

As seen in the animated gif, a curved beer glass is used. Ideally, you want it to have this shape

\n

\"\"
\n(source: kegerator.com)

\n

If you use a regular pint glass it will have a greater potential of mixing the layers.

\n

A common mistake when making these layers is to get as close to 50% as possible. The downside is that as you drink it, it will mix with these portions. Ideally, you should be looking at a 70% base, 30% top in order to have and maintain two defined layers.

\n", "OwnerUserId": "303", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-02-18T06:58:57.783", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"501"}} +{ "Id": "501", "PostTypeId": "1", "CreationDate": "2014-02-02T06:36:38.503", "Score": "13", "ViewCount": "293", "Body": "

IPAs go bad, barley wines improve, and stouts mellow over time. I'm curious though: what's actually happening? What compounds are building up or breaking down? What chemical processes actually happen to constitute \"aging\" in beer?

\n", "OwnerUserId": "80", "LastEditorUserId": "80", "LastEditDate": "2014-02-04T17:21:59.440", "LastActivityDate": "2015-07-19T15:52:31.117", "Title": "What is happening during aging?", "Tags": "aging", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"502"}} +{ "Id": "502", "PostTypeId": "2", "ParentId": "501", "CreationDate": "2014-02-02T09:48:18.087", "Score": "13", "Body": "

In short, the main factors in aging is a combination of compounds breaking down and oxidation.

\n\n

IPAs - hop aroma breakdown

\n\n

For IPAs, it's the hop aromas that break down fairly quickly - the aromatic compounds are volatile and break down noticably within a short timeframe:

\n\n
\n

Tom Nielsen, Sierra Nevada’s senior research analyst focused on hop\n degradation, says that their research has shown that after about two\n and a half to three months, hop aroma in a packaged beer, derived\n mainly from beta acids in the hop flower, has already started to\n diminish significantly. It’s a sentiment backed by Patrick Langlois at\n Great Divide in Denver, brewers of notable hoppy beers including their\n Fresh Hop Pale Ale, Titan IPA, and Hercules Double IPA. “Hops tend to\n dissipate in three to four months, which is why that is the\n recommended shelf life for most of our beers. \n (Source)

\n
\n\n

Barley Wines - Oxidation

\n\n

Barley wines are not hop flavor or aroma focused beers - the major hop component is bittering acids, so they don't suffer the same problem with aroma losses as IPAs. However, some of the bittering compounds also have a half-life of 1 year, so clear changes are happening in that timeframe to the bitterness.

\n\n

However, the major change for a barleywine is oxidation. There is always oxygen in the beer - either small amounts introduced during packaging, or from oxidization during the mash, which is then later released into the beer. When alcohol in the beer oxidizes, it becomes ethanal (acetaldehyde) which is a main component in sherry, and gives apple or sherry-like tones, which in a big barleywine are considered positive effects of aging, if kept in check.

\n\n

Stouts

\n\n

Contrasting with both IPAs and barleywines, Stouts that are meant for aging are neither hop focused nor benefit much from oxidation. Oxidizing the medium roasted malts in the wort would produce cardboard flavors due to production of trans-2-nonenal. Fortunately, the highly kilned malts act as an anti-oxidant to help prevent the beer from oxidizing. What little odization does occur tends to produce port-like flavors.

\n\n

The roasty character in stout comes from large Maillard compounds. These are still poorly understood, I can't find research to back it up, but I would guess the roasty character mellows due to the large compounds breaking down into shorter ones. This might explain why in some stouts the dark fruit flavors become more emphasized over time (since they are shorter Maillard compounds.)

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-02T09:54:55.697", "LastActivityDate": "2014-02-02T09:54:55.697", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"503"}} +{ "Id": "503", "PostTypeId": "5", "CreationDate": "2014-02-03T02:24:09.740", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-02-03T02:24:09.740", "LastActivityDate": "2014-02-03T02:24:09.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"504"}} +{ "Id": "504", "PostTypeId": "4", "CreationDate": "2014-02-03T02:24:09.740", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-02-03T02:24:09.740", "LastActivityDate": "2014-02-03T02:24:09.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"505"}} +{ "Id": "505", "PostTypeId": "2", "ParentId": "472", "CreationDate": "2014-02-03T08:57:40.450", "Score": "1", "Body": "

It's complicated. I think you have to look at these laws as an intersection of the practical and the cultural.

\n\n

Let's look at two different distinctions you make.

\n\n

Home Production

\n\n

In the US, you can usually make your own beer, mead, or wine, but cannot make hard liquor without a license from BATF, state licenses, tax payments, etc. Exact laws of course vary state by state, but the US tax code contains exemptions for home brewers and wine makers.

\n\n

Part of the reason here is historical. Liquor is a major tax source, and black market liquor hasn't always been very safe. We hear stories about wood alcohol making people go blind, but the real problems were either accidental heavy metal poisoning or deliberate adulteration with relatively nasty chemicals. In practice methyl alcohol was not a major problem, particularly accidental inclusion of it, as in most concentrations primarily makes the hangover significantly worse (btw, red wine is known for harsh hangovers as are some fruit brandies because of methyl alcohol content). The adulterants have included (and do include in some parts of the world) things like battery acid, caustic soda, and the like.

\n\n

A second problem of course is safety. In the distilling process, you are dealing the combination, usually, of heating elements or open flames and a liquid that is roughly as flammable as gasolene. While it is quite possible to distil safely, there are generally acknowledged gains health and safety-wise to pushing for a formal economy here.

\n\n

Wine Tastings vs Beer Tastings

\n\n

Here laws vary considerably between states. For example, the one part of the liquor code that is explicitly applied to home brewers is an exemption for home brewing competitions. So you can take your beer to a competition without losing the home brewing exemption.

\n\n

Wine tastings have almost always had some acceptance on the theory that making fine wine has a level of cultural refinement and aesthetic nuance that beer does not (we may find this false but it an attitude --- if you don't believe me, compare reading a wine review with a beer review). The wine culture is different from the beer culture and so they make a different case.

\n\n

Again laws here vary state by state. However, the argument, I think, is that wine tasting is essential to the sales process, while beer drinkers are less picky on average.

\n\n

In essence these laws have a practical component particularly where hard liquor is concerned, and a cultural component.

\n", "OwnerUserId": "117", "LastActivityDate": "2014-02-03T08:57:40.450", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"506"}} +{ "Id": "506", "PostTypeId": "1", "AcceptedAnswerId": "510", "CreationDate": "2014-02-03T18:24:49.433", "Score": "17", "ViewCount": "8530", "Body": "

I recently got a \"Gnarly Oak\" craft brew package. Three 22 oz beers and a glass. However, on the beers are some abbreviations and numbers I don't understand. they all have a 5.5% ABV, and I get the IBU and color numbers but what are the rest? The numbers and abbr's are below:

\n\n
\n
    \n
  • Winter Bock - 15 OG, 62.5 RDF - light, tasty, ever so slightly bitter
  • \n
  • Hazelnut Dark - 15 OG, 60.4 RDF - nice bitter red with slightly sweet aftertaste
  • \n
  • Chocolate Stout - 14.8 OG, 66.8 RDF - very sweet with hints of chocolate and malt
  • \n
\n
\n\n

EDIT\nIn light of the answers so far, I should say I have brewed my own, and if OG is original gravity, it doesn't fit with the scale I know of. if 15 OG ~= 1.015, it doesn't match what that would give in final ABV. Is this OG on a different scale I haven't seen

\n", "OwnerUserId": "352", "OwnerDisplayName": "CDspace", "LastEditorUserId": "352", "LastEditDate": "2014-02-03T18:59:36.657", "LastActivityDate": "2014-02-04T05:45:56.913", "Title": "What do these \"OG\" and \"RDF\" numbers mean?", "Tags": "taste style", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"507"}} +{ "Id": "507", "PostTypeId": "2", "ParentId": "506", "CreationDate": "2014-02-03T18:38:02.357", "Score": "4", "Body": "

OG = Original Gravity
\nThe amount of sugar available for fermentation, measured based on density vs water (1.000)

\n\n

RDF = Real Degree of Fermentation
\nsugar in cold wort has been fermented into alcohol in beer with the term degree of fermentation. More residual sugar == more sweetness

\n", "OwnerUserId": "353", "LastActivityDate": "2014-02-03T18:38:02.357", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"508"}} +{ "Id": "508", "PostTypeId": "2", "ParentId": "506", "CreationDate": "2014-02-03T18:44:47.447", "Score": "2", "Body": "

OG stands for \"original gravity\", which is the density of the liquid, before fermentation in the case of beer. Another \"gravity\" you may hear is \"final gravity\", or FG: the density of the beer after fermentation. Typically, gravity is expressed as thousandths over 1.0, where 1.0 is water. However, Gnarly Oak says that their Winter Bock has an OG of 15, which is likely in degrees Plato. I leave it to other answers to thoroughly explain what that is.

\n\n

The density, of course, is increased by the sugar and other \"good stuff\" that makes beer, well, beer. After the yeast has eaten the sugar and produced alcohol, you can measure the final gravity. What makes this interesting is that if you have the OG and the FG, you can calculate your alcohol by volume with a little math.

\n\n

I am completely unfamiliar with RDF, however.

\n", "OwnerUserId": "27", "LastEditorUserId": "27", "LastEditDate": "2014-02-03T19:20:10.793", "LastActivityDate": "2014-02-03T19:20:10.793", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"509"}} +{ "Id": "509", "PostTypeId": "2", "ParentId": "506", "CreationDate": "2014-02-03T18:57:24.987", "Score": "7", "Body": "

I'll answer one half and leave the other half to someone else.

\n\n

OG is “Original Gravity”

\n\n

Specific Gravity (often shorted to just ‘gravity’) is a measure of the density of a liquid. Since its is mostly water, you can compare beer’s density to water to find out how much other stuff is in it. Water has a gravity of 1.000, and beers will often have an original gravity of 1.200 to 1.020.

\n\n

“Original Gravity” is the density of beer before it’s fermented (when it’s called ‘wort’), and “Final Gravity” is the density after it’s fermented. You can determine the alcohol content of a beer by comparing the two gravities and inferring how much fermentable “stuff” disappeared during fermentation (i.e., was converted to alcohol and CO2).

\n\n

In commercial beer, you can use OG as a shorthand for how “Big” the beer is because it indicates how much malt and other fermentable stuff was in it. So a lighter-flavored beer like a blonde or a pilnser will often have a low original gravity (1.020 to 1.050, for example), whereas a big stout or barelywine might have a higher original gravity (1.080 up to as much as 1.200).

\n\n

OG is in important measurement for home brewers, so another use of it on a commercial beer is to help people produce clones of said beer at home by reproducing the OG (among other factors).

\n\n

Definition

\n\n

To get a little more technical, Specific Gravity is the ratio of the density of one liquid to another. In brewing, we always use water. So, the density of water divided by the density of water is 1.000. The density of beer divided by the density of water is what we refer to as ‘gravity’ when discussing beer. And since it’s a ratio of two identical measures, there are no units. It’s not 1.000 somethings; it’s just 1.000.

\n\n

Plato

\n\n

Homebrewers often use \"brewer's points\" (eg 1.123), but you'll sometimes see the \"Plato Scale\", which is more popular in central Europe. A good approximation is that 1˚ plato = 4 brewer's points. So 12˚ Plato corresponds to a gravity of 1.048.

\n", "OwnerUserId": "80", "LastEditorUserId": "80", "LastEditDate": "2014-02-03T19:05:03.550", "LastActivityDate": "2014-02-03T19:05:03.550", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"510"}} +{ "Id": "510", "PostTypeId": "2", "ParentId": "506", "CreationDate": "2014-02-03T18:57:55.277", "Score": "16", "Body": "

From the figures you posted,

\n\n

OG - \"Original Gravity\". When measured with a hydrometer, it measures the density relative to water. E.g. 1.010 is 1% heavier than water. The units here are degrees Plato (°P), which describe the amount of dissolved sugars. Here, 15 means 15% dissolved sugar. This means the beer (or more correctly, the wort) contained 15% sugar before fermentation started.

\n\n

RDF - The real degree of fermentation. This is in contrast to the Apparent Degree of Fermentation, which is (OG-FG)/OG. When the final gravity is measured using hydrometer, the alcohol in the beer, being less dense than water (SG. 0.789) causes the gravity to appear lower, so it looks as though the yeast has fermented more sugar than it actually has. The Real degree of Fermentation takes the alcohol into account and computes the actual amount of sugars fermented. This tells you the how much of the original sugar was fermented (as a percentage).

\n\n

So, what does this mean in practice?

\n\n
\n

Winter Bock - 15 OG, 62.5 RDF - light, tasty, ever so slightly bitter

\n
\n\n

This has an average RDF for a beer that size, so it will be somewhat malty, but not cloying.

\n\n
\n

Hazelnut Dark - 15 OG, 60.4 RDF - nice bitter red with slightly sweet aftertaste

\n
\n\n

This has more dissolved sugars in it compared to the Bock, so you'd expect it to be a thicker mouthfeel and slightly more sweet, although you may not taste the sweetness if it's offset by roasted malts.

\n\n
\n

Chocolate Stout - 14.8 OG, 66.8 RDF - very sweet with hints of chocolate and malt

\n
\n\n

Being the driest of all the beers, yet the taste description is given as very sweet. This shows that knowing the residual sugars doesn't tell you the sweetness, simply because there are different kinds of residual sugar. For example, dextrins create body, but have relatively little taste, so would taste not as sweet as a beer containing a lot of residual maltose or glucose.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-04T05:45:56.913", "LastActivityDate": "2014-02-04T05:45:56.913", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"511"}} +{ "Id": "511", "PostTypeId": "1", "AcceptedAnswerId": "512", "CreationDate": "2014-02-03T22:49:13.797", "Score": "9", "ViewCount": "174", "Body": "

Does anyone know if a \"session beer\" has to be below a specific ABV to qualify as a session beer?

\n", "OwnerUserId": "359", "LastEditorUserId": "80", "LastEditDate": "2014-02-03T23:02:04.317", "LastActivityDate": "2014-02-03T23:02:04.317", "Title": "Does a session beer have to be below a specific ABV?", "Tags": "ale abv", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"512"}} +{ "Id": "512", "PostTypeId": "2", "ParentId": "511", "CreationDate": "2014-02-03T23:00:20.090", "Score": "8", "Body": "

Like many beer terms, \"session beer\" is not rigorously defined. Several groups have tried, though:

\n\n\n\n

Really, though, if you call something a session beer, most people will understand that to mean something you could easily drink several of in a session (ie, lighter and more mild than a \"big\" beer).

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-03T23:00:20.090", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"513"}} +{ "Id": "513", "PostTypeId": "1", "AcceptedAnswerId": "514", "CreationDate": "2014-02-04T04:51:53.947", "Score": "14", "ViewCount": "3607", "Body": "

After my taste adjusted to the flavors of IPAs, one of my favorites was He'brew Brewing's Bittersweet Lenny, which as it turns out is an IPA made with rye. I poked around on BeerAdvocate, and found this long list of rye beers, which seem to include pales, IPAs, and even a brown rye.

\n\n

What constitutes a \"rye\" beer (i.e., a certain ratio of rye to other grain)? Are there characteristics common to a rye beers, and if so, what are they? In other words, if I like a rye beer, am I likely to enjoy any rye beer?

\n", "OwnerUserId": "27", "LastActivityDate": "2014-02-04T06:45:56.517", "Title": "What are the characteristics of a rye beer?", "Tags": "ingredients", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"514"}} +{ "Id": "514", "PostTypeId": "2", "ParentId": "513", "CreationDate": "2014-02-04T05:18:20.820", "Score": "14", "Body": "

A rye beer is any beer that incorporates rye, usually malted rye.

\n\n

How much Rye and how it tastes

\n\n

There are no laws to state that the quantity of rye should be above some minimum, so some rye beers include just a few percent of the malt bill as rye, while others such as Roggenbier base their entire flavor profile on rye, using over 50% rye malt. With such a large difference in the grain bill and the amount of rye, the two beers taste very different.

\n\n

When rye is added to beer between 10-20% of the grain bill, it gives a pleasant spiciness and bread-like quality to the beer that blends well with most hop types, particularly spicy or citrussy hops. Rye can also add some dryness to the aftertaste.

\n\n

Above 20% the spiciness becomes progressively more assertive and the beer fuller, more earthy and hearty, and perhaps not unsurprisingly, tastes similar to rye bread.

\n\n

Var-rye-ation

\n\n

Rye beers show considerable variation. Rye is a versatile ingredient, which has become increasingly popular recently with craft brewers, so there is no longer a common theme underlying rye beers, other than the rye itself. In fact, even the rye can vary. New malts are appearing, such as crystal rye which give a new flavor dimension to beers - crystal rye provides some of the spiciness of malted rye with dark fruits, and a pleasant dryness in the finish. This means the brewer can make a rye beer from:

\n\n
    \n
  • malted rye
  • \n
  • flaked (unmalted) rye
  • \n
  • crystal rye
  • \n
\n\n

Rye is becoming at least as versatile as wheat, if not in fact more so. While most Wheat beers focus on the esters and phenolics produced by the yeast (banana/clove), Rye beers have the freedom to exploit the full spectrum of beer flavors and are not constrained by adherence to a particular style entrenched in tradition.

\n\n

But will you like some other rye beer having tried one?

\n\n

If you don't like the taste of rye in beer, then there's a good chance you won't like most rye beers, since the rye flavor is most likely going to be present. However, if you do like the taste of rye, there is still no saying up front that you will like any rye beer simply due to the diversity of beers that can be brewed with rye.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-04T06:45:56.517", "LastActivityDate": "2014-02-04T06:45:56.517", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"515"}} +{ "Id": "515", "PostTypeId": "1", "AcceptedAnswerId": "517", "CreationDate": "2014-02-04T14:18:43.197", "Score": "11", "ViewCount": "11714", "Body": "

I saw a comment asking this question here, and became curious. In the context of a tasting panel or competition, what is the appropriate serving size?

\n", "OwnerUserId": "368", "LastEditorUserId": "5064", "LastEditDate": "2019-12-13T01:45:40.603", "LastActivityDate": "2019-12-13T01:45:40.603", "Title": "What is the best serving size for a beer tasting?", "Tags": "serving taste competition", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"516"}} +{ "Id": "516", "PostTypeId": "2", "ParentId": "515", "CreationDate": "2014-02-04T15:07:43.617", "Score": "4", "Body": "

You want to have enough beer so that a person would be able to see the head profile along with getting a good look at the color/clarity of the beer. Along with being able to take 2 - 3 sips of the beer.

\n\n

A tasting would be a larger pour as this would be more of a friendly gathering and you want the people to enjoy the beer, I would aim for 4 - 6 oz. It is also not too much if they don't like it. For a tasting, you don't really care if people are getting drunk.

\n\n

For a competition since you are not aiming to really \"drink\" the beer, I would say that it would probably be 2 - 3 oz. Judges are going to aim to not get drunk on the beer, so the smaller pour helps with that.

\n", "OwnerUserId": "222", "LastActivityDate": "2014-02-04T15:07:43.617", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"517"}} +{ "Id": "517", "PostTypeId": "2", "ParentId": "515", "CreationDate": "2014-02-04T15:16:52.313", "Score": "7", "Body": "

There are two angles to consider

\n\n
    \n
  • what is best for the beer
  • \n
  • what is best for the tasting scenario
  • \n
\n\n

For the beer, a serving size that is appropriate should:

\n\n
    \n
  • provide sufficient beer to not warm up excessively in the cup or glass in the minute or two tasting is underway. This means serving sizes should be at least 60ml/2 oz. (If the beer is served too cold, leave it in the bottle to warm, so that all samples are poured together and tasted at the same temperature.)
  • \n
\n\n

For the tasting situation we have to consider:

\n\n
    \n
  • There may be a limited amount of an evaluation beer to share between the number of judges so serving sizes should be restrained.

  • \n
  • Furthermore, some additional beer should be left over in case a re-evaluation is necessary. This is particularly important with styles where volatiles are a key contributor, since they dissipate quickly, plus the olfactory sense quickly becomes tired, requiring a pause and then a fresh sample.

  • \n
\n\n

Taking these two into account gives a typical serving size in the order of 3-4oz/75-100ml.

\n\n

Note that the glass can be larger - particularly a long tall glass is good for capturing the aromatics of a smaller sample.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-02-04T15:16:52.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"518"}} +{ "Id": "518", "PostTypeId": "1", "AcceptedAnswerId": "519", "CreationDate": "2014-02-04T15:26:44.127", "Score": "46", "ViewCount": "6753", "Body": "

My favorite beers come in bottles and in cans. I always buy it in bottles because I've heard that cans negatively impact the flavor of the beer.

\n\n

Is this true?

\n\n

If so, how does it work?

\n", "OwnerUserId": "36", "LastEditorUserId": "5078", "LastEditDate": "2016-06-14T07:42:05.693", "LastActivityDate": "2021-01-15T14:44:45.603", "Title": "Do cans change the taste of beer?", "Tags": "storage cans", "AnswerCount": "9", "CommentCount": "3", "FavoriteCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"519"}} +{ "Id": "519", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2014-02-04T16:01:32.443", "Score": "26", "Body": "

First, I love this question because it is actually interesting.

\n\n

I researched this when I noticed that bottled coke tasted so much better than canned coke. Cans keep out all light so the contents actually never become tainted. The reason that most like bottled over canned is because they like the taste with those impurities. \nSome complain that they can taste aluminum with cans, but this is more than likely in their head since cans are lined with a thin layer of plastic.

\n\n

I like certain beers better in cans and certain ones better in bottles. I would try both :)

\n", "OwnerUserId": "233", "LastEditorUserId": "233", "LastEditDate": "2014-02-04T16:07:47.800", "LastActivityDate": "2014-02-04T16:07:47.800", "CommentCount": "10", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"520"}} +{ "Id": "520", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2014-02-04T16:31:27.063", "Score": "16", "Body": "

I heard a quote from the revered Charlie Bamforth, who basically said that packaging beers in cans was a far better way to preserve the beer from brewery to customer than packaging in bottles, but bottles are still more aesthetically pleasing to the customer, so they are usually preferred. And that's from a man that has been head of Quality Assurance for a number of years.

\n\n

It's purely in the mind - there isn't any real change to the beer. If anything, the difference with bottled beer is that the canned version is better preserved.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-04T16:42:53.507", "LastActivityDate": "2014-02-04T16:42:53.507", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"521"}} +{ "Id": "521", "PostTypeId": "1", "AcceptedAnswerId": "527", "CreationDate": "2014-02-04T18:23:03.580", "Score": "15", "ViewCount": "535", "Body": "

Typically I want to age 22oz bottles, but I'm curious if I could get away with aging a smaller bottle. Is there any difference based on bottle size?

\n", "OwnerUserId": "83", "LastActivityDate": "2014-02-04T20:11:31.223", "Title": "Does bottle size affect aging or storage?", "Tags": "storage aging bottles", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"522"}} +{ "Id": "522", "PostTypeId": "1", "AcceptedAnswerId": "538", "CreationDate": "2014-02-04T18:56:02.367", "Score": "15", "ViewCount": "1533", "Body": "

When tasting wine, it is often suggested that tasters do not swallow the wine, but simply taste as necessary and then spit into a bucket/spittoon of some sort. This, of course, aids in the tasting of large amounts of wine without the effect of the alcohol (getting drunk).

\n\n

In casual tastings among friends, part of the fun is obviously getting drunk. However, I've been wondering if judges at competitions or more formal tasting venues (possibly breweries themselves) use spittoons.

\n\n

To put it in the form of a question: Are spittoons ever used for beer tasting?

\n", "OwnerUserId": "192", "LastActivityDate": "2021-10-12T20:18:56.953", "Title": "Are Spittoons Used in Beer Tastings?", "Tags": "taste", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"523"}} +{ "Id": "523", "PostTypeId": "2", "ParentId": "521", "CreationDate": "2014-02-04T19:12:12.290", "Score": "4", "Body": "

This is an incomplete answer, but I know that there are some smaller bottles of \"old ale\" beers which are made for aging. In particular, there are several from the UK which are sold in the 200-300mL range, such as Thomas Hardy's.

\n\n

I'm afraid that I can't tell you anything about the effect (or non-effect) of bottle size.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-02-04T19:12:12.290", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"524"}} +{ "Id": "524", "PostTypeId": "2", "ParentId": "522", "CreationDate": "2014-02-04T19:16:48.867", "Score": "5", "Body": "

No. While in a wine tasting it's acceptable to spit out the wine, in beer tasting you actually have to drink the beer. I don't remember the exact reasoning since it's been a few years since my Beers of the World class, but I think it had something to do with the carbonation affecting the after taste if you don't swallow the beer. Keep in mind that while judging beers at a tasting you only get ~2 ounces, so it's easier to pace yourself and dump out anything past what you need to get your impression. Half of beer judge training is learning to quickly assess flavor.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-02-04T19:16:48.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"525"}} +{ "Id": "525", "PostTypeId": "2", "ParentId": "522", "CreationDate": "2014-02-04T19:17:34.763", "Score": "-1", "Body": "

As far as I've seen, no. The reason has nothing to do with alcohol content or getting drunk (some beers like Belgian tripels, imperial stouts, or barley wines can easily clock in at a higher ABV than wines). It's got more to do with the human tongue itself and how taste buds are organized on the tongue. Essentially, beer is a much more complex drink; beer tasters use all of their taste buds while wine drinkers may only use a select few. So when you drink beer, you're not going to be overwhelming any set of taste buds unevenly while you run that risk when drinking wine. Generally when drinking wine, you're only using your sweet and sour sets of taste buds. For instance, I don't know about you, but I've never really had a bitter wine. I've had sweet or sour wines, but never bitter or salty wines. On the other hand, I've had all of that with beer.

\n\n

If you look at the diagram of the tongue below, you'll notice that the bitter taste bud receptors are on the back of the tongue. In order to reach these receptors and taste the beer to its fullest, you must swallow the beer.

\n\n

\"enter

\n\n

If you're curious, see page 3-4 of this article. It goes into much more detail:\nhttp://www.gabc-boston.org/_Newsl/2012_11.pdf

\n", "OwnerUserId": "31", "LastActivityDate": "2014-02-04T19:17:34.763", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"526"}} +{ "Id": "526", "PostTypeId": "1", "AcceptedAnswerId": "529", "CreationDate": "2014-02-04T19:30:03.690", "Score": "9", "ViewCount": "221", "Body": "

I'm not sure about other countries, but in the UK we have various brands of 'extra strong' lager beers, the most famous of which is Carlsberg Special Brew (9%), but there are others.

\n\n

The perception a lot of people have is that these beers are favoured by Alcoholics and avoided by everyone else and that the brewers continue to produce the product regardless.

\n\n

Is this actually the case, or is there another, more legitimate market out there for extra strong lager?

\n", "OwnerUserId": "380", "LastEditorUserId": "380", "LastEditDate": "2014-02-04T20:06:20.907", "LastActivityDate": "2014-02-04T20:45:43.587", "Title": "Who do the brewers of extra strong lager claim their target market is?", "Tags": "breweries specialty-beers", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"527"}} +{ "Id": "527", "PostTypeId": "2", "ParentId": "521", "CreationDate": "2014-02-04T20:11:31.223", "Score": "9", "Body": "

Not really.

\n\n

In theory, larger bottles mean that the little bit of air trapped at the top of the bottle is smaller compared to the volume of beer than it would be in a standard 12 oz bottle. However, I've been unable to find any research backing this up, and anecdotally it makes no difference.

\n\n

Larger bottles are favored for aging beers mostly for practical reasons:

\n\n
    \n
  • Stores are more willing to sell a single large bottle (whereas many often require the purchase of an entire six-pack for smaller beers)
  • \n
  • It's easier to share a large bottle, which you often want to do with a good beer you're aging
  • \n
  • They're often (but not always) cheaper than the equivalent beer split up between several smaller bottles.
  • \n
\n\n

But taste and aging-wise, there's no benefit to larger bottles.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-04T20:11:31.223", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"528"}} +{ "Id": "528", "PostTypeId": "2", "ParentId": "446", "CreationDate": "2014-02-04T20:17:57.683", "Score": "3", "Body": "

I agree with the other answers: IPA's are not really intended to be aged like a barleywine. However, the style was historically brewed to survive the long journey by ship from England to India. So while they might lose some the freshness and hop volatiles over time, you can certainly keep them for many months and they will still be very drinkable. (Assuming, of course, that the brewery handled the beer properly prior to bottling).

\n\n

So, don't be in a rush to finish them. And never, ever throw beer out that you think may be too old without tasting it first. Beer does not spoil in the sense that it becomes harmful or dangerous.

\n", "OwnerUserId": "381", "LastActivityDate": "2014-02-04T20:17:57.683", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"529"}} +{ "Id": "529", "PostTypeId": "2", "ParentId": "526", "CreationDate": "2014-02-04T20:45:43.587", "Score": "8", "Body": "

You’re absolutely right about the perception. It’s similar in the US for people who buy Steel Reserve and other malt liquors: they’re a cheap means to an end.

\n\n

The reality, though, seems to be that a lot of people like the taste:

\n\n
\n

'Of course, the most common question I get asked is: 'Isn't it just winos who drink it?' ' admits Katie Rawll, Carlsberg's senior brand manager responsible for Special Brew. 'But our researches show that the underneath-the-arches brigade accounts for only 2 per cent of its overall drinkers. They're certainly not consuming the volume.'

\n
\n\n

From what I can tell, it’s a special occasion beer for the crowd that isn’t into good beer. They drink cheap lager year round, but if they want to reward themselves, celebrate an occasion, or make a party a bit more interesting, they’ll break out a strong lager. Much like breaking out a bottle of wine, but cheaper (and tastier if you don’t care for wine).

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-04T20:45:43.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"530"}} +{ "Id": "530", "PostTypeId": "2", "ParentId": "522", "CreationDate": "2014-02-04T20:57:01.743", "Score": "11", "Body": "

Not generally.

\n\n

The aftertaste of beer is more important than it is in wine, and much of the aftertaste comes from swallowing.

\n\n

Also, beer isn't generally as alcoholic as wine, so the risk of getting drunk on a taste is lower. Although some beers can be in the 10-12% range, the average abv is much lower.

\n\n

Further, although the idea of a tongue map has been relatively discredited in scientific circles, it was taught in schools for a long time. As such, many people (including beer judges) incorrectly believe you taste bitterness with the back of your tongue. Since bitterness is a much larger part of beer than wine, many believe you need to swallow to properly taste it.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-04T20:57:01.743", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"531"}} +{ "Id": "531", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2014-02-04T22:34:57.963", "Score": "26", "Body": "

As a member of a Studentenverbindung, having one principle of scientia, we of course tested this a long time ago with around a dozen or maybe a bit more testers.

\n\n

We poured beer from the same manufacturer (fresh batch) into glasses and had people taste them, and for every glass (everyone had multiple ones) they had to say if they think it was from a bottle, a can, or a keg, and which tasted better.

\n\n

After around 50 or 60 glasses, there was no statistical evidence whatsoever that any of the three could be identified, or tasted better.

\n\n

From my personal experience though, I always think that a keg is better than a bottle is better than a can. But why is that so? I only have the theory that due to the feeling of the container you drink from, your taste is altered (just like food with the same flavour/taste somehow tastes different, with a different texture). Additionally I think the amount of beer that flows into your mouth is different, as well as maybe the turbulence, causing a different amount of carbon dioxide (or nitrogen, depending on your beer culture) to leave the beer before you can actually taste and swallow (which again changes the texture).

\n", "OwnerUserId": "389", "LastEditorUserId": "407", "LastEditDate": "2014-02-05T12:00:12.780", "LastActivityDate": "2014-02-05T12:00:12.780", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"532"}} +{ "Id": "532", "PostTypeId": "1", "AcceptedAnswerId": "533", "CreationDate": "2014-02-04T22:56:54.107", "Score": "9", "ViewCount": "3151", "Body": "

I've been to multiple combination bars/beer stores, where you can either buy bottles to go, or drink them on premises. If you buy a bottle to go, it costs the base price, but if you buy one to drink there, you have to pay an additional \"corking\" fee. Is this due to licensing or tax laws, or just a way for a store to make a quick extra buck? I know that restaurants will charge you this same type of fee if you bring in your own bottle of wine, but I don't understand why a beer store would charge you this for drinking a bottle of beer that you bought from them.

\n", "OwnerUserId": "63", "LastActivityDate": "2016-12-03T16:43:59.587", "Title": "Why do corking fees exist?", "Tags": "laws", "AnswerCount": "1", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"533"}} +{ "Id": "533", "PostTypeId": "2", "ParentId": "532", "CreationDate": "2014-02-04T23:20:50.957", "Score": "8", "Body": "

Reviewing various state regulations on GoBYO, corking fees generally do not appear to be mandatory but instead optional for establishments that already have liquor licenses.

\n\n

Beverage sales generally represent some of the highest profit items for restaurants. Soda tends to have the highest margins since it is so cheap, but alcohol is easily a 200% or higher margin and sells per bottle/glass. If people can bring in their own beverages without paying, or just paying cost, it dramatically reduces the amount of money a restaurant can make.

\n\n

For a retail beer store that lets you drink on premises, it's possible that they are now dealing with two sets of rules, one for selling and one for consumption, or that they have to take on higher insurance liabilities. You're also transforming retail space into dining space creating an opportunity cost. This would justify an increased cost. It would probably also wreck their general retail business if they tried not charging a corking fee. If you knew of a bar where you could buy beer at retail cost, wouldn't you go there all the time?

\n", "OwnerUserId": "5", "LastActivityDate": "2014-02-04T23:20:50.957", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"534"}} +{ "Id": "534", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2014-02-04T23:31:25.287", "Score": "13", "Body": "

There are a few types of beers which are (generally) good to age.

\n\n
    \n
  1. Strong Beers: like such as barleywines, robust porters, and imperial stouts. It is benefical if a beer is 8-10 percent or stronger, since an elevated alcohol profile will typically become smoother, mellower and more agreeable. That does not mean lower alcohol percentage beers can not be aged, but higer percentage beers are more suitable most of the time.
  2. \n
  3. Dark Malt: like Palo Santo and World Wide Stout. Darker, maltier beer is better because the sweet, residual sugars tend to soften over time. Even lower-alcohol beers with a malt-heavy profile will age better.
  4. \n
  5. Wild Beers: living organisms change the beer as it ages in the bottle. Orval Trappist Ale is a classic example. The Belgian pale ale receives a dose of Brettanomyces yeast as it goes in the bottle. The yeast can live in the bottle for years, slowly consuming sugars and protecting the beer’s existing flavors by consuming oxygen. Over time it goes from being bright and hoppy to bready, earthy and spicy. But sometimes they are unstable, because the yeast rapidly works through a beer and alters its character.
  6. \n
\n\n

What not to age: IPA do not improve with age. Hoppy beers are not for aging.

\n", "OwnerUserId": "81", "LastActivityDate": "2014-02-04T23:31:25.287", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"535"}} +{ "Id": "535", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2014-02-05T01:20:00.163", "Score": "8", "Body": "

I actually do not think that the can itself changes the taste of the beer as much as the beer placed in the can may be a little different. I think that the real difference is going to be between keg beer and can/bottle beer.

\n\n

Canned/bottled beer has a longer shelf life than keg beer. Canned/bottled beer has a shelf life of roughly 45-60 days, whereas a keg is only 25-40 days 1.

\n\n

This means that worst case scenario for comparison you could be tasting a 2 month old canned beer versus a 3 week old draft. It can cause a difference in taste, there is a \"freshness date\" after all. (See this excellent answer from @mdma for more information on what happens as beer ages)

\n\n

But where does this date come from? Almost all imported retail beer is pasteurized. The reason for pasteurizing the beer is from a business standpoint. It basically allows the beer to last longer and be shipped at room temperature (this applies to kegs, cans, and bottles).

\n\n

An alternative to the pasteurization process is bottle conditioning. Most domestic beers follow this path. Essentially this process involves beers being sterile filtered and chilled to the point that any surviving bacteria, which could ferment the beer, become dormant 2.

\n\n

So basically the probability that the beer begins to ferment is higher over time. A canned beer and a keg beer can taste the same if they both left the brewery at the same time, and both experienced the same conditions during the time it took them to reach you. It is just that kegs have a better chance of taking less time and of being better preserved.

\n\n

From a practical standpoint though, bottles can cause broken glass, kegs weigh close to 50 lbs. full, and cans allow for shotgunning. Make sure your container of choice fits your environment :)

\n\n

1. How long will a keg of draft beer remain fresh?
\n2. What is pasteurized and non-pasteurized keg beer?

\n", "OwnerUserId": "303", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-02-05T01:27:24.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"536"}} +{ "Id": "536", "PostTypeId": "1", "CreationDate": "2014-02-05T01:26:01.023", "Score": "6", "ViewCount": "1733", "Body": "

I love drinking beer after a run. It's also good to drink electrolytes after a run.

\n\n

Is it possible to add electrolytes to beer? How would you do it?

\n", "OwnerUserId": "87", "LastActivityDate": "2018-09-17T20:22:43.267", "Title": "Beer containing electrolytes", "Tags": "additives", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"537"}} +{ "Id": "537", "PostTypeId": "2", "ParentId": "536", "CreationDate": "2014-02-05T02:08:51.213", "Score": "9", "Body": "

Electrolytes are just dissolved salts, where the ions can help transmit an electrical charge through the liquid. So adding some table salt to your beer would be a way to add electrolytes.

\n\n

That said, drinking alcohol will dehydrate you, so added electrolytes might not actually help. If you are feeling thirsty after your run, it would be best to drink water (with or without added elecrolytes) rather than replacing water with beer. Save the beer until after you've rehydrated.

\n", "OwnerUserId": "170", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-02-05T02:08:51.213", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"538"}} +{ "Id": "538", "PostTypeId": "2", "ParentId": "522", "CreationDate": "2014-02-05T02:28:29.170", "Score": "20", "Body": "

To my knowledge, the answer is always no.

\n\n

To fully experience the flavor of beer, one must swallow it. This is because, unlike the vast majority of wine, beer is carbonated (albeit to varying degrees). When you swallow beer, some of the carbonation escapes the liquid as gas, and actually rises up from your throat into your nose (or, at least, into your nasal passages), carrying with it some of the flavor molecules of the beer. Thus your sense of smell combines with your sense of taste to produce an overall sense of flavor in a manner that is different from what occurs when you drink (uncarbonated) wine.

\n\n

If you spit out your beer, you're ruining the experience.

\n\n

(This explanation is based on one that I heard years ago from a brewmaster at Anheuser-Busch. I can't remember his exact words, but you get the gist.)

\n\n

On a side note, regarding the important relationship between taste and smell, I'm sure you will see tasters at both beer tastings and especially wine tastings swirl their drink a bit to smell it from the glass before tasting it. The difference is that carbonated beverages pack a smell double-whammy coming at you after you swallow.

\n", "OwnerUserId": "396", "LastActivityDate": "2014-02-05T02:28:29.170", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"539"}} +{ "Id": "539", "PostTypeId": "1", "CreationDate": "2014-02-05T05:35:18.073", "Score": "12", "ViewCount": "1125", "Body": "

I have started to collect beer cans over the past year or so, some are older and some are new. I am curious to see where I can find more information on what specific old or new beer cans (by brand, etc) are considered valuable and/or collector items?

\n", "OwnerUserId": "403", "LastEditorUserId": "6255", "LastEditDate": "2018-07-25T08:37:42.297", "LastActivityDate": "2018-07-25T08:37:42.297", "Title": "Where can I found out which beer cans are \"collectable\"?", "Tags": "cans", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"540"}} +{ "Id": "540", "PostTypeId": "2", "ParentId": "536", "CreationDate": "2014-02-05T05:40:25.300", "Score": "9", "Body": "

Beer already contains electrolytes, which are disassociated metal salts (the compound splits into positive and negatively-charged ions.)

\n\n

In beer, Calcium (Ca), Pootassium (K), Magnesium (Mg), Iron (F) and Sodium (Na) ions are found in quite high levels

\n\n
Mineral content in a 25 cl glass of lager or light beer, average values.\n+------------+----+------+----+----+----+----+------+-------+-------+-----+\n|  1 glass   | Ca |  Fe  | Mg | F  | K  | Na |  Zn  |  Cu   |  Mn   | Se  |\n+------------+----+------+----+----+----+----+------+-------+-------+-----+\n|            | mg | mg   | mg | mg | mg | mg | mg   | mg    | mg    | mcg |\n| Lager      | 18 | 0,10 | 21 | 43 | 89 | 18 | 0,07 | 0,032 | 0,043 | 4,3 |\n| Light beer | 18 | 0,14 | 18 | 42 | 64 | 11 | 0,11 | 0,085 | 0,057 | 4,2 |\n+------------+----+------+----+----+----+----+------+-------+-------+-----+\n
\n\n

(source)

\n\n

If you wanted to increase the electrolyte level, you could experiment with adding small amounts (e.g. 1/8tsp) of these salts, since they also have an effect on the taste of the beer (so makes for an interesting taste experiment!):

\n\n
    \n
  • Calcium Chloride (CaCl) - rounds out and softens the beer emphasizing the malt
  • \n
  • Calcium Sulphate (CaSO4) - makes the hop bitterness crisper
  • \n
\n\n

However, eating some commonly available foods is even more effective at replenishing electrolyte levels, simply because they contain so many, and is better for you than the typical sports drink that contains a lot of sugar to cover the taste of the salts.

\n\n

Also keep in mind, that beer is a diuretic, so you should drink water prior to and after drinking beer to avoid further dehydration after your exercise.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-02-05T05:40:25.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"541"}} +{ "Id": "541", "PostTypeId": "2", "ParentId": "539", "CreationDate": "2014-02-05T06:08:47.613", "Score": "9", "Body": "

Breweriana has a database of collectable beer paraphernalia with prices. Tick the \"include All (In-Stock & Sold)\" button for their complete range. They're trying to sell to you, of course, so their prices are probably a bit higher than you'd getting selling the same thing, but it's useful if you have an item you want to get valued.

\n\n

Ebay, on the other hand, is more limited but more practical. It's a good first stop for selling any collectable, since you can see what people have actually gotten for items. That'll be the most accurate price estimate, although you're not likely to find really rare stuff on there because of the small audience.

\n\n

Also, there are a number of books on the subject, of which breweriana helpfully lists a few.

\n\n

Finally, the BCCA is the largest organization around beer can collecting, and have a lot of resource son the subject. You can use their site to find a local chapter and ask someone about your specific collection in person.

\n\n
\n\n

To expand on this a little, here is a really quick guide:

\n\n
    \n
  • If it's from the mid 70s or so on, it's probably not that valuable. Exceptions sometimes include aluminum cans, cans with punch tops, and cans with cone tops.
  • \n
  • If it's in poor condition, it's probably not worth much unless it's quite rare. Unless it's better than \"grade 2\" (defined as \"Has a clean label, but there may be rust or other blemishes near the seam, the lid, or the bottom. Colors may be irregular\"), it's probably not valuable.
  • \n
  • American OIs (opening instructions, named after the instructions that came with them on how to open them) can be worth $35 to $1000. Most others before the 70s will have a chance of being between $10 and $500, depending on their rarity.
  • \n
\n", "OwnerUserId": "80", "LastEditorUserId": "80", "LastEditDate": "2014-02-05T06:23:12.090", "LastActivityDate": "2014-02-05T06:23:12.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"543"}} +{ "Id": "543", "PostTypeId": "1", "CreationDate": "2014-02-05T09:03:16.807", "Score": "17", "ViewCount": "3372", "Body": "

Just wondering how a bottle conditioned beer will change over its life - if at all? And is there a perfect time to drink one? Also do different types change differently?

\n", "OwnerUserId": "48", "LastEditorUserId": "52", "LastEditDate": "2014-02-06T19:43:30.683", "LastActivityDate": "2014-02-06T19:43:30.683", "Title": "Should bottle conditioned beers be consumed quickly after purchase and do they carry on changing taste for a while?", "Tags": "taste aging bottle-conditioning", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"545"}} +{ "Id": "545", "PostTypeId": "2", "ParentId": "543", "CreationDate": "2014-02-05T15:41:52.860", "Score": "13", "Body": "

Quite the opposite, bottle conditioned beer is perfect for aging. The yeast carbonates the beer and will produce slight changes over time, like upping the ABV. This needs to be done in climate controlled environments similar to wine. The yeast will settle to bottom and you want to avoid pouring this into your glass when finished.

\n\n

I brewed a Imperial honey stout and aged a few bottles at 68f for about a year for my birthday. The beer started at about 7.2 ABV The beer finished at over 9 ABV (this is because the yeast had plenty of starch to munch on and the carbonation was not affected.

\n", "OwnerUserId": "410", "LastActivityDate": "2014-02-05T15:41:52.860", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"546"}} +{ "Id": "546", "PostTypeId": "1", "AcceptedAnswerId": "547", "CreationDate": "2014-02-05T16:24:39.500", "Score": "14", "ViewCount": "2338", "Body": "

Florida has a strange bottling law that allows growlers in 32 oz and 128 oz sizes but not 64 oz. People have tried to get the law changed but so far it's failed. How did the 64 oz size come to be illegal and what is the rationale for not legalizing it?

\n", "OwnerUserId": "36", "LastActivityDate": "2014-02-05T17:52:31.130", "Title": "Why are half gallon growlers illegal in Florida?", "Tags": "laws growlers", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"547"}} +{ "Id": "547", "PostTypeId": "2", "ParentId": "546", "CreationDate": "2014-02-05T17:52:10.747", "Score": "14", "Body": "

In 2001, Florida State Senator Tom Lee championed a bill which was passed that allowed for more sizes of beer containers to be sold in Florida.

\n\n

Prior to the bill passing, only 12 ounce, 16 ounce or 32 ounce packaging was allowed. This prevented most craft beers from entering the state and to allow those entry, the law enacted stated that anything under 32 ounces or over 1 gallon would now be allowed.

\n\n

The unintended side affect of this law was that anything in between that range was still banned, including the 64 ounce container. 3 years ago, there was a bill written which would allow the sale of a 64 ounce container in Florida, but it was not sent to the floor for a vote because it involved other caveats with regards to craft breweries in the state. The main reason a vote was not taken was that the legislature felt that there should be more consideration taken to assist the craft brewers. Although that bill was stopped, the movement is still ongoing to have these container sizes legalized.

\n\n

Read more: Tampa Bay Times: Size matters: Craft brewers challenge Florida's beer container laws

\n", "OwnerUserId": "303", "LastActivityDate": "2014-02-05T17:52:10.747", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"548"}} +{ "Id": "548", "PostTypeId": "2", "ParentId": "546", "CreationDate": "2014-02-05T17:52:31.130", "Score": "9", "Body": "

It isn't that half-gallon growlers are specifically illegal as such, but more of a quirk of how the different types and sizes of legal containers are defined.

\n\n

The Florida laws governing beer (or more accurately \"malt beverage\") container sizes specify that:

\n\n
    \n
  • \n

    Individual containers of malt beverage sold or offered for sale shall\n be no larger than 32 ounces.

    \n
  • \n
\n\n

However:

\n\n
    \n
  • \n

    The above law does not apply to malt beverages packaged \"in bulk\"\n which is defined as a keg or \"other individual container\" containing 1\n gallon or more of malt beverage.

    \n
  • \n
\n\n

So it isn't really that 32oz and 1 gallon growlers are legal and 64oz growlers aren't, it's that a 32oz container is the largest legal sized individual container, and a gallon is the smallest legal container for \"bulk\" packaging exempt from the maximum container size regulation.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-02-05T17:52:31.130", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"549"}} +{ "Id": "549", "PostTypeId": "2", "ParentId": "543", "CreationDate": "2014-02-05T18:49:21.107", "Score": "9", "Body": "

In addition to Waitkus his answer I would like to note that the perfect time to drink a beer depends on the type, brand and most importantly taste. There is also a difference when storing larger bottles. For instance a 75 cl Duvel bottle (or larger) can be stored easily for several years, whereas the smaller bottles of the same beer don't fair too well.

\n\n

Other beers, mostly heavier abbey beers allow for prolonged storing. For instance an Orval changes taste quite drastically once you have stored it for about 1 - 2 years. I've even seen these beers being stored for 30 years and still being drinkable (although you needed to pour it very carefully as there was a lot of cediment). The monks of Westmalle even have 35 year old beer on site for their own consumption.

\n\n

In regards to taste, they tend to become heavier, stronger in taste, sometimes a bit more sour. They also loose a bit of their carbonation (very old beers).

\n", "OwnerUserId": "138", "LastActivityDate": "2014-02-05T18:49:21.107", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"550"}} +{ "Id": "550", "PostTypeId": "1", "CreationDate": "2014-02-05T21:31:49.317", "Score": "11", "ViewCount": "2769", "Body": "

Bottle conditioned beers (such as many homebrews or those explicitly labelled as bottle conditioned/fermented) are, I'm told, supposed to be poured a specific way to avoid getting the yeast from the bottle into the glass. How should I pour such a beer?

\n\n

Bonus points for gifs or diagrams I can distribute with my homebrew. :)

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-05T21:53:54.883", "Title": "How do you pour a bottle conditioned beer?", "Tags": "pouring bottle-conditioning", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"551"}} +{ "Id": "551", "PostTypeId": "2", "ParentId": "550", "CreationDate": "2014-02-05T21:44:44.847", "Score": "10", "Body": "

\"Pour

\n\n

When pouring a beer with sediment, or lees, make sure your glass is of a size to accommodate the full contents of the bottle plus the attendant foam. Pour smoothly into the glass, watching the neck of the bottle, and suspend pouring when you see sediment starting to come to the neck. If you haven’t screwed it up, you have a glass of clear, inviting beer. Well done.

\n", "OwnerUserId": "410", "LastEditorUserId": "-1", "LastEditDate": "2017-03-10T09:42:50.110", "LastActivityDate": "2014-02-05T21:53:54.883", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"552"}} +{ "Id": "552", "PostTypeId": "2", "ParentId": "550", "CreationDate": "2014-02-05T21:45:56.923", "Score": "10", "Body": "

\"enter

\n\n

Unfortunately, I don't know the source of this image—a Google reverse image search reveals only a single webpage which itself attributes the image to Google searching.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-02-05T21:45:56.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"553"}} +{ "Id": "553", "PostTypeId": "2", "ParentId": "543", "CreationDate": "2014-02-05T22:31:54.973", "Score": "5", "Body": "

Bottle conditioned beers definitely have longer shelf-lives than their pasteurized/filtered counterparts - the yeast helps scavenge oxygen and release sulphites to stop free radicals (such as from lipid breakdown) from staling the beer.

\n\n

The yeast can survive for decades - Guinness observed yeast still alive in the bottle after 35 years!

\n\n

How long a bottle conditioned beer can be aged for and, thus how soon you should drink, comes mainly down to

\n\n
    \n
  • the alcohol percentage - stronger beers age better, and
  • \n
  • the color - darker beers age better than lighter ones
  • \n
\n\n

While a light beer may be best consumed within 5 years, darker beers can be aged much longer than that.

\n\n

See

\n\n\n", "OwnerUserId": "112", "LastActivityDate": "2014-02-05T22:31:54.973", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"554"}} +{ "Id": "554", "PostTypeId": "1", "AcceptedAnswerId": "570", "CreationDate": "2014-02-05T23:30:12.823", "Score": "9", "ViewCount": "622", "Body": "

Different beer bottles and cans (with contents) from different places collected in the past 3 years.

\n", "OwnerUserId": "418", "LastActivityDate": "2014-02-07T21:18:28.040", "Title": "Will a collection of 100 beers collectively be worth more 20 years from now than their value today?", "Tags": "bottles cans", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"555"}} +{ "Id": "555", "PostTypeId": "2", "ParentId": "554", "CreationDate": "2014-02-05T23:48:00.693", "Score": "6", "Body": "

No for the cans; maybe for the contents.

\n\n

While it's hard to predict the future, we can infer from the past. As it stands, beer cans as old as 40 years are pretty much worthless (with a few exceptions). This is because right around the mid 70s, beer can collection as an activity exploded. Beer cans before that point became valuable, but beer cans from after that point were heavily collected (up through the present day), and are therefore pretty low value.

\n\n

TLDR: There exist too many well-preserved beer cans from the current era for them to be worth anything in the next 20 years at least (and probably well through the next 40-60 years).

\n\n

That's just the cans, though. Exceptions might be very specific beers known to be age-able for decades. Unfortunately, most beers just don't age that long. Even a hearty barely wine usually peaks, at most, after a couple years. The Stone Vertical Epic 020202 series was meant to be aged 10 years, which is unusually long for a beer.

\n\n

If you could find a beer you reasonably believed would improve over the course of several decades, you might be able to get some money out of it if it were stored properly.

\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-05T23:48:00.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"556"}} +{ "Id": "556", "PostTypeId": "1", "CreationDate": "2014-02-06T00:34:37.937", "Score": "3", "ViewCount": "127", "Body": "

If you could go back in time and tell yourself to read a specific book about beer, which book would it be?

\n", "OwnerUserId": "303", "LastActivityDate": "2014-02-06T00:44:29.473", "Title": "What is the single most influential book every beer enthusiast should read?", "Tags": "brewing taste storage serving", "AnswerCount": "1", "CommentCount": "3", "FavoriteCount": "2", "ClosedDate": "2014-02-06T05:55:19.877", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"557"}} +{ "Id": "557", "PostTypeId": "1", "AcceptedAnswerId": "559", "CreationDate": "2014-02-06T00:38:02.590", "Score": "3", "ViewCount": "69", "Body": "

When looking for source material to quote, often I find articles from a wide variety of places when it comes to beer. When looking for technology information, I find it best to simply go to the most highly reputable sources (such as a source authored by Mozilla, Google, Microsoft, etc.).

\n\n

Are there any readily available online sources of high repute for beer?

\n", "OwnerUserId": "303", "LastActivityDate": "2014-02-06T02:00:40.923", "Title": "What are some online sources for information on beer of high repute?", "Tags": "resources", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ClosedDate": "2014-02-07T16:09:00.647", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"558"}} +{ "Id": "558", "PostTypeId": "2", "ParentId": "556", "CreationDate": "2014-02-06T00:44:29.473", "Score": "4", "Body": "

Tasting Beer by Randy Mosher is by far the most valuable beer book I've ever read. It covers the styles you'll encounter, the flavors, the technology, the history, the science, and more. I was a fairly knowledgeable beer enthusiast when I read it, but I wish I'd read it ten years earlier. If I had, it would have increased my enjoyment of getting to know beer ten-fold by increasing my understanding of what I was drinking.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-02-06T00:44:29.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"559"}} +{ "Id": "559", "PostTypeId": "2", "ParentId": "557", "CreationDate": "2014-02-06T02:00:40.923", "Score": "4", "Body": "

There are quire a few poorly-sourced beer blogs out there, many of whom get their information from other beer blogs. If you want high-quality information, I'd suggest:

\n\n
    \n
  • Well-known authors. Anything by Michael Jackson is usually pretty well-regarded. Randy Mosher is also reasonably trustworthy. Honestly, any published author is likely to be considerably more authoritative than random blogs.
  • \n
  • Beer-related Organizations like the bjcp or the aha and their magazine \"Zymurgy\"
  • \n
  • Industry publications like the brewers association
  • \n
  • Brewing literature. There's a very active homebrewing community out there, and you can find answers to some questions on beer production there. How to Brew is one of the better ones available for free online.
  • \n
\n", "OwnerUserId": "80", "LastActivityDate": "2014-02-06T02:00:40.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"560"}} +{ "Id": "560", "PostTypeId": "1", "AcceptedAnswerId": "563", "CreationDate": "2014-02-06T06:35:52.913", "Score": "14", "ViewCount": "491", "Body": "

I was wondering if it's generally a good idea to pair beer-based recipes with the same beer that you use to cook them. For instance, should you drink a Guinness with Beef and Guinness Stew? Should you drink the same beer that you use to make your batter when you make Beer Battered Fish and Chips?

\n", "OwnerUserId": "63", "LastActivityDate": "2021-10-13T14:55:26.103", "Title": "Should a meal with beer as an ingredient be paired with that same beer?", "Tags": "pairing cooking", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"561"}} +{ "Id": "561", "PostTypeId": "2", "ParentId": "560", "CreationDate": "2014-02-06T08:32:01.417", "Score": "-2", "Body": "

Definitely yes. you could add the beer of your choice to add some extra flavour to the sauce and enjoy the whole dish with a nice beer at the right temperature.

\n

For the right temperature I would refere to that:\nWhat temperature should I serve my beer?

\n

In my humble opinion, you can also refine your stew with wine and drink the same one while eating.

\n", "OwnerUserId": "141", "LastEditorUserId": "5064", "LastEditDate": "2021-10-13T14:55:26.103", "LastActivityDate": "2021-10-13T14:55:26.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"562"}} +{ "Id": "562", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2014-02-06T14:00:50.377", "Score": "7", "Body": "

I don't know how/if the actual storage in cans vs bottles affects the taste, however you should expect that they are not filled with the same beer.

\n\n

Many companies will have different production logistics, and the can will often come from a different site than a bottle of the same brand, and will have slightly different water and production process, so the beers will taste slightly different before they even touch the can; and they may even have intentionally different production and additives.

\n", "OwnerUserId": "427", "LastActivityDate": "2014-02-06T14:00:50.377", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"563"}} +{ "Id": "563", "PostTypeId": "2", "ParentId": "560", "CreationDate": "2014-02-06T15:02:43.787", "Score": "18", "Body": "

There is no culinary basis to make that generalization. The choice of beer (or wine or any other ingredient used to add depth) may be selected to enhance, balance, contrast, or even counteract one of the other ingredients. But that doesn't necessarily make it the beverage of choice to accompany the resulting dish.

\n\n

The beer-as-an-ingredient may not even be the dominant flavor of the dish. And if it is the dominant flavor, that doesn't necessarily mean \"more of the same\" is the best accompaniment.

\n\n

For example, (I'm drawing an analogy) I might add a dry white wine to a pasta sauce to add depth or a sweeter white wine to help cut acidity. But tomato-based pasta dishes are traditionally accompanied by a red wine, not white.

\n\n

These are broad generalizations, but there's nothing to say that my favorite bread recipe enhanced with a light lager must (or even preferably) be matched with a lager.

\n\n

It's the overall flavor of the dish that determines the best accompaniment. Not the beer ingredient.

\n", "OwnerUserId": "60", "LastEditorUserId": "60", "LastEditDate": "2014-02-07T16:38:46.813", "LastActivityDate": "2014-02-07T16:38:46.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"564"}} +{ "Id": "564", "PostTypeId": "1", "CreationDate": "2014-02-06T18:51:24.557", "Score": "3", "ViewCount": "1335", "Body": "

It seems like it's possible to find beer from almost every corner of the world today. What are the countries without any national brands / breweries?

\n", "OwnerUserId": "52", "LastActivityDate": "2014-02-06T23:46:37.080", "Title": "Countries not producing beer", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "1", "ClosedDate": "2014-02-07T05:40:51.493", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"565"}} +{ "Id": "565", "PostTypeId": "2", "ParentId": "522", "CreationDate": "2014-02-06T19:39:36.173", "Score": "7", "Body": "

Spitoon? No. Bucket for dumping the remainder? Yes. I agree with the other posters, with the addition that in the ONE competition I've judged in as a Novice, as Sloleam points out, we typically did not finish the 2-3 oz or so that was poured, and the remainder was dumped in a bucket. According to the BJCP guidelines,

\n
\n

you sniff it, look at it, taste it (allowing it to linger before swallowing).

\n
\n

That's it. After that, you typically dump the rest in a bucket, especially if you are going to be judging several categories :) However, unlike a wine competition, you swallow what you taste.

\n", "OwnerUserId": "428", "LastEditorUserId": "428", "LastEditDate": "2021-10-12T20:18:56.953", "LastActivityDate": "2021-10-12T20:18:56.953", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"566"}} +{ "Id": "566", "PostTypeId": "2", "ParentId": "564", "CreationDate": "2014-02-06T23:46:37.080", "Score": "6", "Body": "

While not exhaustive, countries that observe strict Islamic law, such as Iran, do not allow the production of alcoholic beverages.

\n\n

In the case of Iran, there are some companies that produce non-alcoholic beer, but none that produce a traditional alcoholic beer.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-02-06T23:46:37.080", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"567"}} +{ "Id": "567", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2014-02-07T00:22:17.120", "Score": "6", "Body": "

If you are drinking beer directly from the can or bottle, then one measurable difference is the speed at which it warms up while you are drinking it. As glass is an insulator and aluminium is a conductor, you'd expect the can to be more efficient at transferring heat from your hand and the environment into the beer. So a glass bottle should keep the within the optimum temperature range for longer than the can.

\n\n

This result is backed up by some research done by students at Worcester Polytechnic Institute, which compared the rate at which refrigerated liquid warms up to room temperature in glass and aluminium bottles. The heating rate differences should be even more noticeable if the bottles were in contact with a body temperature heat source.

\n\n

This effect can be minimised by insulating the can using a stubby holder/beer cozy. In another experiment comparing cans held in a person's hand, over a 30 minute period an uninsulated can rose in temperature by about 14°C while the insulated can rose only 3°C.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-02-07T00:22:17.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"568"}} +{ "Id": "568", "PostTypeId": "1", "AcceptedAnswerId": "569", "CreationDate": "2014-02-07T01:32:31.617", "Score": "11", "ViewCount": "569", "Body": "

I was just making a stout float and noticed that my beer foamed up a ton.

\n\n

It's not a very carbonated beer (there was barely a hiss when I opened the growler), yet the head was several inches with not very much beer poured into the chilled mug.

\n\n

What causes this massive head and is there a good way to prevent it?

\n", "OwnerUserId": "39", "LastEditorUserId": "39", "LastEditDate": "2014-02-07T11:16:14.380", "LastActivityDate": "2014-02-07T11:16:14.380", "Title": "Why do stouts foam so much when you pour them over ice cream?", "Tags": "head", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"569"}} +{ "Id": "569", "PostTypeId": "2", "ParentId": "568", "CreationDate": "2014-02-07T03:19:18.823", "Score": "14", "Body": "

For the same reason that root beer floats behave in a similar fashion. Even though there is less carbonation than in root beer (and I presume similarly less foam, though still a significant quantity) the irregular surface of the ice cream offers a massively larger number of nucleation sites than the smooth glass of your favorite beer vessel. These nucleation sites cause the CO2 to come out of solution, and voila, much foam does appear. I believe that the ice cream has properties that enhance the foaming effect as well.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-02-07T03:19:18.823", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"570"}} +{ "Id": "570", "PostTypeId": "2", "ParentId": "554", "CreationDate": "2014-02-07T21:18:28.040", "Score": "3", "Body": "

Not likely, unless there are some rare beers in there that benefit from aging and are kept in the right conditions.

\n\n

Most beers will oxidize over time, even with a sealed cork or cap a minute amount of oxygen can permeate the seal, over the course of 20 years this could damage the beer. Some companies may wax dip their beers as well, in many cases wax dipping is more for aesthetics but can also help minimize oxygen exchange for periods of long storage.

\n\n

Only certains beers are suited for aging, such as some lambics, saisons, Belgian quads, and high ABV stouts and barleywines, to name a few. Even for some of these it may be noted to cellar for no more than 3-5 years.

\n\n

For long term aging you also need to maintain temperatures in the range of 55°F. This temperature should be held consistently with any major swings up or down being avoided.

\n\n

Outside of this you would need to have beers that are rare and highly sought after today to have even a chance of them being valuable in the future. Even if you picked out 20 of the most sought after beers today it's important to remember tastes change and they may not be sought after in 20 years. Just look at the changes the American craft beer environment has gone through in 20 years!

\n", "OwnerUserId": "263", "LastActivityDate": "2014-02-07T21:18:28.040", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"571"}} +{ "Id": "571", "PostTypeId": "1", "AcceptedAnswerId": "572", "CreationDate": "2014-02-07T23:37:01.317", "Score": "10", "ViewCount": "121", "Body": "

In Harpoon's UFO series (and other related products from other companies), the beer is bottled unfiltered, so some of the yeast carries over into the bottled beer.

\n\n

As long as the beer is kept in a cool area, as not to promote the growth of the yeast, how much fermentation will occur? Aside from producing extra carbon dioxide and eventually ruining the beer, is this harmful when it proceeds over short periods?

\n", "OwnerUserId": "121", "LastEditorUserId": "170", "LastEditDate": "2014-02-08T05:02:57.470", "LastActivityDate": "2014-02-09T05:40:30.083", "Title": "How much fermentation happens post-bottling in a UFO?", "Tags": "freshness yeast filtering", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"572"}} +{ "Id": "572", "PostTypeId": "2", "ParentId": "571", "CreationDate": "2014-02-08T00:47:48.623", "Score": "8", "Body": "

It depends on how much sugar is present in the bottled beer.

\n\n

If the beer is bottle-conditioned, a small amount of sugar is added deliberately in order to carbonate the beer. Once the yeast have eaten all the sugar, they stop producing carbon dioxide and fall to the bottom of the bottle. This is not physiologically harmful in any way, but the beer might need to be poured carefully to avoid too much yeast in the glass.

\n\n

(If the beer is force-carbonated at the brewery, the yeast may contribute to the flavor of the beer, but does not produce any CO2.)

\n\n

Harpoon's UFO appears to be bottle-conditioned, meaning the carbonation is produced naturally by the yeast. It's a hefeweizen, where the yeast character is actually desired - most people recommend to pour half the bottle, swirl it to suspend the remaining yeast, and then pour the rest.

\n\n

(Now, home-brewed beer can be harmful if too much sugar is added at bottling - the bottles can explode and cause injury. The beer itself doesn't become harmful, though.)

\n", "OwnerUserId": "288", "LastActivityDate": "2014-02-08T00:47:48.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"573"}} +{ "Id": "573", "PostTypeId": "2", "ParentId": "571", "CreationDate": "2014-02-08T13:53:53.200", "Score": "4", "Body": "

The yeast have most likely stopped fermenting by the time you get the bottle, considering it's probably at least a 5 days old by that point.

\n\n

The yeast stop when the fermentable sugars have been consumed. This doesn't mean they consume all sugars in the beer, but rather just those that are fermentable. Most beer has both fermentable and unfermentable sugars. This ensures there is some body still to the beer from the unfermentable sugars when fermentation is complete.

\n\n

It's unlikely even if kept warm that the yeast will produce more carbon dioxide or cause any harm to the beer - there is nothing available they can metabolize, so they floc to the bottom and go dormant.

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-09T05:40:30.083", "LastActivityDate": "2014-02-09T05:40:30.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"574"}} +{ "Id": "574", "PostTypeId": "1", "AcceptedAnswerId": "575", "CreationDate": "2014-02-09T17:14:51.480", "Score": "20", "ViewCount": "10457", "Body": "

I've heard this urban legend that when Guinness changed their brewing equipment at some point, people started to complain that the beer tasted worse. According to the legend, it turned out that before rats were getting into the barrels, drowned in them and thus gave Guinness its \"unique flavour\".

\n\n

That legend aside (although I would also be interested to hear opinions on that), are there any beers that are deliberately brewed with meat or meat products? What does adding meat to the brewing process achieve?

\n", "OwnerUserId": "53", "LastActivityDate": "2016-10-05T19:03:09.470", "Title": "Are some beers brewed with meat?", "Tags": "brewing ingredients", "AnswerCount": "4", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"575"}} +{ "Id": "575", "PostTypeId": "2", "ParentId": "574", "CreationDate": "2014-02-09T18:54:42.747", "Score": "27", "Body": "

Bacon Beer

\n\n

I've heard of beers made with rauchmalt - smoked malt, where the brewer has \"dry hopped\" with bacon or bacon flavored soya to give the beer a bacon flavor and aroma - allowing the bacon and the smoked malt to enhance each other. One commercial example is Bacon Maple Ale from Rogue, which features a variety of smoked malts (over different woods) plus applewood smoked bacon.

\n\n

Cock Ale

\n\n

Here is a recipe for ale made with chicken broth:

\n\n
\n

PERIOD: England, 17th century | SOURCE: The Closet Of the Eminently\n Learned Sir Kenelme Digby Kt. Opened, 1677 | CLASS: Authentic

\n \n

DESCRIPTION: A drink of ale, chicken broth, & sack

\n \n

To make Cock-Ale.

\n \n

Take eight gallons of Ale, take a Cock and boil him well; then take\n four pounds of Raisins of the Sun well stoned, two or three Nutmegs,\n three or four flakes of Mace, half a pound of Dates; beat these all in\n a Mortar, and put to them two quarts of the best Sack: and when the\n Ale hath done working, put these in, and stop it close six or seven\n days, and then bottle it, and a month after you may drink it.

\n
\n\n

And PS: the Guinness meat story because of finding rats in the fermentation tanks or barrels is a myth. Or to put it another way, even if it did ever did happen once, it's not practiced now. It's hard enough for bacteria to get into the fermentation tanks or barrels, let alone something as big as a rat! (Nowadays they use stainless or aluminum kegs.)

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-09T23:02:46.403", "LastActivityDate": "2014-02-09T23:02:46.403", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"576"}} +{ "Id": "576", "PostTypeId": "2", "ParentId": "574", "CreationDate": "2014-02-10T00:59:09.670", "Score": "7", "Body": "

Another example is oyster stout. While some breweries today use the name for beers that don't contain oysters, it was originally brewed with oysters. It seems that the style grew out of the popular food pairing of stout and oysters, leading to attempts to combine the two, starting in New Zealand in 1929.

\n\n

One example of a modern brewery using oysters is Porterhouse Brewing Company in Ireland. More information on the style can be found in this article.

\n", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-02-10T01:53:56.533", "LastActivityDate": "2014-02-10T01:53:56.533", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"577"}} +{ "Id": "577", "PostTypeId": "2", "ParentId": "574", "CreationDate": "2014-02-10T02:48:39.287", "Score": "6", "Body": "

A recent release by an Icelandic brewery actually contains whale meat, and inevitably this has been quite controversial!\nWhale Meat Beer From Icelandic Brewery Stirs Up Controversy, Outrages Conservationists.

\n\n

I'd like to try it myself but it's not for export and the only way I could afford to get to Iceland anytime soon would be canoe. Seems a bit chilly out for that, though.

\n", "OwnerUserId": "444", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T19:03:09.470", "LastActivityDate": "2016-10-05T19:03:09.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"578"}} +{ "Id": "578", "PostTypeId": "2", "ParentId": "574", "CreationDate": "2014-02-10T02:54:48.000", "Score": "6", "Body": "

Guinness, in common with some other beers, does actually involve a meat product in the brewing process, specifically the swim bladders of fish. This substance is not nominally retained in the final beverage.

\n", "OwnerUserId": "445", "LastActivityDate": "2014-02-10T02:54:48.000", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"579"}} +{ "Id": "579", "PostTypeId": "1", "AcceptedAnswerId": "595", "CreationDate": "2014-02-10T04:53:33.973", "Score": "10", "ViewCount": "270", "Body": "

I wasn't a beer enthusiast while living in NYC, but still I don't recall hearing much about local breweries. Are there any worthwhile beers brewed in NYC, worth visiting at their sources?

\n\n

Looking to hear from people who have actually visited breweries in NYC, since anyone could just Google \"breweries in NYC\". A local might take into consideration breweries which are easily accessible via the subway system, or breweries in fun neighborhoods, not some desolate industrial park in Brooklyn (unless that's part of the appeal) or a shady neighborhood in the Bronx.

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2019-04-04T07:57:39.917", "LastActivityDate": "2019-04-04T07:57:39.917", "Title": "What are some breweries locals like to visit in New York City?", "Tags": "breweries recommendations", "AnswerCount": "2", "CommentCount": "4", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"580"}} +{ "Id": "580", "PostTypeId": "1", "AcceptedAnswerId": "581", "CreationDate": "2014-02-10T10:56:17.747", "Score": "10", "ViewCount": "587", "Body": "

I fly a lot, and like to seek out new beers while waiting or between connecting flights. Frequent flyers: let's help each other out and compile (community wiki-style) a list of establishments in major airports that serve local beers.

\n\n

For definition's sake, though arbitrary, let's say a \"major airport\" is one which

\n\n\n\n

So, outside of the U.S., check the airport's Wikipedia page for the stats—for example Berlin's Schönefeld Airport, with 7,000,000+ enplanements in 2010. Also eligible are airports like Luxembourg's main airport, serving less than 5,000,000 passengers per year, but the most in its country. If this definition seems to rule out some rather important airports, we can modify the rules.

\n\n

This list would probably help me with \"tiebreaking\" when I can't decide what flights I'd rather take. It would also give me a reason to enjoy longer-than-desired connections :-)

\n\n
\n\n

This is a question asked among the series of regional-but-potentially-useful-if-specific-enough questions. See

\n\n\n", "OwnerUserId": "73", "LastEditorUserId": "-1", "LastEditDate": "2017-03-17T08:31:08.567", "LastActivityDate": "2014-04-07T23:56:18.987", "Title": "Local beers to try at airports (major airports only)", "Tags": "breweries local", "AnswerCount": "1", "CommentCount": "3", "FavoriteCount": "2", "ClosedDate": "2015-06-04T06:34:53.160", "CommunityOwnedDate": "2014-03-16T22:17:52.637", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"581"}} +{ "Id": "581", "PostTypeId": "2", "ParentId": "580", "CreationDate": "2014-02-10T10:56:17.747", "Score": "6", "Body": "

This is a community wiki. Please be respectful while editing others' contributions.

\n

Let's keep the list alphabetical by IATA code.

\n

ATL — Hartsfield–Jackson Atlanta Int'l Airport

\n
    \n
  • Concourse B. SweetWater Draft House & Grill.
  • \n
\n

BOS - Logan Int'l Airport

\n
    \n
  • Terminal A / Gate A22. Harpoon Tap Room. (Highly rated!)

    \n

    \"enter

    \n
  • \n
\n

CLE - Cleveland Hopkins Airport

\n
    \n
  • Main Terminal Great Lakes Brewery\nhttps://www.greatlakesbrewing.com/home\nFull selection of beers on tap.

    \n

    The Edmund Fitzgerald Porter is delicious and year-round, but the Spring 2014 seasonal is most likely the Chill Wave Double IPA, which is one of their best.\nSometimes, they have brewery-exclusive kegs, which are always very good!

    \n

    \"enter

    \n
  • \n
\n

JFK - John F. Kennedy Int'l Airport

\n
    \n
  • Terminal 2 / Gate 67. (That's most popularly the Domestic US Delta terminal.) BRKLYN Beer Garden. As of 2014, they've got 6 Brooklyn / Bronx beers on draught, and a few from Long Island and upstate.

    \n

    \"enter

    \n

    Source: acheong87

    \n
  • \n
\n

LHR - London Heathrow

\n
    \n
  • Terminal 5 / near gate A7. The Crown Rivers always has some real ale on tap, from a hand pump.
  • \n
\n

MSP - Minneapolis / St. Paul Int'l Airport

\n
    \n
  • Terminal 1 / Concourse G near gate 17. Taste of Mill City Tavern serving Surly Bender, Summit IPA, Fulton Sweet Child of Vine and Shell's Pilsner on tap.
  • \n
\n

ORD - Chicago O'Hare Int'l Airport

\n
    \n
  • Terminal 3 / Gate L8. Goose Island Beer Company.

    \n

    \"enter

    \n
  • \n
\n

SAN - San Diego Int'l Airport

\n\n

TPA - Tampa Int'l Airport

\n\n", "OwnerUserId": "73", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-04-07T23:56:18.987", "CommentCount": "3", "CommunityOwnedDate": "2014-02-10T10:56:17.747", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"582"}} +{ "Id": "582", "PostTypeId": "2", "ParentId": "579", "CreationDate": "2014-02-10T13:45:38.497", "Score": "2", "Body": "

Here is a decent blog. It has been some time since I was in NYC, but, Brooklyn Brewery produces many good beers and i recommend visiting them. Here is their schedule

\n", "OwnerUserId": "410", "LastActivityDate": "2014-02-10T13:45:38.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"583"}} +{ "Id": "583", "PostTypeId": "1", "CreationDate": "2014-02-10T15:38:04.130", "Score": "14", "ViewCount": "1760", "Body": "

Isinglass is a fining - when added to beer it helps the beer clarify - and it's a form of collagen derived from fish swim bladders.

\n\n

Given that this is an animal-derived product, do breweries have to declare this on the packaging?

\n", "OwnerUserId": "112", "LastEditorUserId": "112", "LastEditDate": "2014-02-10T18:36:34.960", "LastActivityDate": "2014-02-11T00:20:18.107", "Title": "Does use of Isinglass require special mention on the beer?", "Tags": "finings", "AnswerCount": "4", "CommentCount": "8", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"585"}} +{ "Id": "585", "PostTypeId": "2", "ParentId": "583", "CreationDate": "2014-02-10T20:57:11.180", "Score": "5", "Body": "

At least in the United States, there is no requirement for ingredients to be listed on bottles/packaging. While foods are required to list ingredients, this is because they are regulated by the Food and Drug Administration (FDA). Beer and other alcohol, on the other hand, are regulated by the Treasury Department which has no such ingredient listing requirements. So, Isinglass would need no special ingredient listing.

\n\n

Some of the ingredients found in many American beers that might surprise you include:

\n\n
    \n
  1. Propylene Glycol (Also used in anti -freeze)
  2. \n
  3. GMO sugars/corn syrup
  4. \n
  5. Monosodium Glutamate
  6. \n
  7. Calcium Disodium EDTA
  8. \n
  9. Insect derived food dyes
  10. \n
\n\n

There was a law enacted in Germany in the 1400's concerning purity of beer, known as Reinheitsgebot. This has been adapted and changed slightly since then, and was adapted in the 1950's into a taxation law that also addressed purity (Biersteuergesetz). The taxation law was relaxed in the late 1980's, and allowed any ingredients allowed in food to be allowed in beer. This only applies to imported beers, however, as German breweries still have to abide by the purity restrictions.

\n", "OwnerUserId": "116", "LastActivityDate": "2014-02-10T20:57:11.180", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"586"}} +{ "Id": "586", "PostTypeId": "2", "ParentId": "583", "CreationDate": "2014-02-10T21:11:24.900", "Score": "8", "Body": "

NO.

\n\n

In 2003, the EC discussed requiring labeling for Isinglass as a potential food allergen.

\n\n

The brewers in the EC successfully argued that it was part of the processing and not an additive and thus did not require labeling.

\n\n
\n

Isinglass finings are a tried and tested method of clarifying beer and so it came as a great relief to traditional cask ale brewers when the EC, last year, introduced an amendment to the 2003 labelling directive. The brewing industry successfully argued that as a processing aid, not an ingredient that would be consumed, and with a long history of use with no recorded incidents of an allergic reaction, there was a good case for isinglass to be exempt from the directive.

\n
\n", "OwnerUserId": "39", "LastActivityDate": "2014-02-10T21:11:24.900", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"587"}} +{ "Id": "587", "PostTypeId": "2", "ParentId": "583", "CreationDate": "2014-02-10T21:57:19.090", "Score": "1", "Body": "

I think what you are trying to get at is should it be disclosed for people who might be ideologically or otherwise opposed to consuming or using animal products. If that is the case then I think you should disclose on your packaging.

\n\n

It does should like more of a filtering agent than an ingredient though, so like passing something through a charcoal filter. You don't see charcoal as an ingredient.

\n", "OwnerUserId": "453", "LastActivityDate": "2014-02-10T21:57:19.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"588"}} +{ "Id": "588", "PostTypeId": "2", "ParentId": "583", "CreationDate": "2014-02-11T00:20:18.107", "Score": "2", "Body": "

Food Standards Australia New Zealand approved an amendment to the code in March 2009, providing an exemption to mandatory labelling requirements for the use of isinglass in beer and wine.

\n\n

Clause 4 of Standard 1.2.3 deals with ingredients that trigger a mandatory declaration. The \"fish products\" line of the table of covered ingredients was amended to read

\n\n
\n

Fish and fish products, except for isinglass derived from swim bladders and used as a clarifying agent in beer and wine

\n
\n\n

The report from FSANZ also included a survey of international laws regarding isinglass. In addition to the USA and EU that have been covered by other questions, it mentions:

\n\n
    \n
  • Health Canada amended its food labelling requirements in September 2004 such that fining agents derived from fish, milk and egg, used during the manufacture of standardised alcoholic beverages, would be exempt from the allergen labelling requirements.

  • \n
  • In Japan, Fish is not included on the list of allergens requiring mandatory labelling, with only certain fish species being recommended for labelling. However, alcohol beverages and related products are not subject to the allergen labelling requirements, so wouldn't be covered anyway.

  • \n
  • The Codex Alimentarius General Standard for the Labelling of Pre-packaged Foods (Codex Stan 1-1985) requires the declaration of fish products used as ingredients or food additive, and makes no mention of an exemption for isinglass. In countries that have adopted this standard without making any modifications and apply it to alcoholic beverages, use of isinglass would presumably have to be declared.

  • \n
\n", "OwnerUserId": "170", "LastActivityDate": "2014-02-11T00:20:18.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"589"}} +{ "Id": "589", "PostTypeId": "1", "AcceptedAnswerId": "6439", "CreationDate": "2014-02-11T03:05:31.123", "Score": "21", "ViewCount": "1152", "Body": "

The \"Beer in Australia\" article on Wikipedia, includes a table listing the names for various size glasses in the different states. One peculiarity is that some South Australian glasses are one size down compared to the equivalents in other states.

\n\n

For example, it lists their pint glass as three quarters of an imperial pint (which would be called a schooner in other states that use that size), and their schooner glass as half a pint (which would be called a middy in a number of other states).

\n\n

So my question is how did this discrepancy occur? The Wikipedia page includes a number of references that indicate that these names have been used in SA, but doesn't indicate why.

\n", "OwnerUserId": "170", "LastEditorUserId": "5064", "LastEditDate": "2018-06-22T12:24:11.203", "LastActivityDate": "2018-06-22T12:24:11.203", "Title": "How did South Australia come to have smaller measures of beer?", "Tags": "history glassware australia", "AnswerCount": "2", "CommentCount": "6", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"590"}} +{ "Id": "590", "PostTypeId": "1", "AcceptedAnswerId": "591", "CreationDate": "2014-02-11T03:15:05.570", "Score": "22", "ViewCount": "5128", "Body": "

What defines beer? Specifically, what's a definition of beer that allows this to be classed as one:

\n\n
\n

Snake Venom is the world’s strongest beer as of 24 October 2013, coming in at 67.5%. It is dark amber in colour with no carbonation due to the high ABV. Unlike the previous Armageddon, the alcohol is not masked in Snake Venom. It is highly present yet it still tastes like a beer with a good degree of hop profile. Each batch is tested by the brewery before bottling and random batches are tested externally.

\n
\n\n

An alcohol content of 67.5% is not something I would associate with beer. So, why is this considered one and not a spirit?

\n\n

Dictionary.com defines beer as

\n\n
\n

an alcoholic beverage made by brewing and fermentation from cereals, usually malted barley, and flavored with hops and the like for a slightly bitter taste.

\n
\n\n

This is not a very restrictive definition and would seem to also apply to whisky if you add some hops to it. So, is there a better one?

\n", "OwnerUserId": "457", "LastEditorUserId": "457", "LastEditDate": "2014-02-11T03:59:04.117", "LastActivityDate": "2020-11-01T18:44:39.727", "Title": "What's the definition of beer?", "Tags": "classification", "AnswerCount": "5", "CommentCount": "1", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"591"}} +{ "Id": "591", "PostTypeId": "2", "ParentId": "590", "CreationDate": "2014-02-11T04:07:45.380", "Score": "21", "Body": "

Snake Venom is beer not a spirit because spirits are distilled. Beer is technically not distilled.

\n\n

As the definition you cited says, beer is the product of fermenting sugar derived from cereal grain which is dissolved in water. So water + grain + yeast = beer. The grain has to undergo a saccharification process where the carbohydrate chains (starches) in the grain are transformed into sugar (glucose, fructose, sucrose, maltose...) which is then converted into alcohol by yeast. Fermentable sugar is extracted from barley through malting and mashing. The yeast is generally added to the wort (unfermented sugary water) manually by the brewer or wild yeast can fall into the beer from the air.

\n\n

Other processes may be involved with fermenting other grains. For example, in sake brewing, koji (a type of mold) is grown on rice (and soybeans) before fermentation in order to convert starches into fermentable sugars, as rice does not contain the enzymes needed to convert its starches into sugars (note: sake is generally not consider beer, but there are beers made with significant quantities of rice, up to 100% rice beer is possible).

\n\n

Hops is not a necessary ingredient in beer, and beer was made for thousands of years before people started adding hops to it.

\n\n

These strong beers like Snake Venom are generally brewed to this high ABV level through freeze \"distillation.\" This isn't really distillation, because no heat is involved, so people still call them beers. But this is a concentration process similar to distillation. Alcohol has a lower freezing point than water, so when you freeze beer, you can remove the ice and you're left with a more concentrated beer. This is the process used in the German eisbock style. The brewers also start with a high ABV beer, using special ingredients (sugar sources other than malt, like table sugar) along with strains of yeast that can tolerate high levels of alcohol and still continue to live and ferment. This process can be somewhat difficult and expensive, so it gets attention. In my opinion it's a novelty, but I guess people like it, because they sell a lot of it.

\n", "OwnerUserId": "94", "LastEditorUserId": "94", "LastEditDate": "2014-03-30T18:49:31.573", "LastActivityDate": "2014-03-30T18:49:31.573", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"592"}} +{ "Id": "592", "PostTypeId": "5", "CreationDate": "2014-02-11T08:17:57.623", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-02-11T08:17:57.623", "LastActivityDate": "2014-02-11T08:17:57.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"593"}} +{ "Id": "593", "PostTypeId": "4", "CreationDate": "2014-02-11T08:17:57.623", "Score": "0", "Body": "Finings are substances used towards the end of the brewing process to clarify beer or wine. They bind to unwanted compounds such as yeast, allowing them to be removed from the liquid.", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-02-11T18:34:39.477", "LastActivityDate": "2014-02-11T18:34:39.477", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"594"}} +{ "Id": "594", "PostTypeId": "2", "ParentId": "590", "CreationDate": "2014-02-11T17:31:03.497", "Score": "6", "Body": "

Some key attributes that make a beer a beer:

\n\n
    \n
  • the primary process to make it typically involves brewing, i.e. steeping something in water. For beer it's cereals or grains to extract something, that something is usually mainly carbohydrates, but also color, flavor and aroma.

  • \n
  • fermentation is used to convert the brew liquor (wort) into beer. There are unfermented \"beers\" such as the Norwegian \"vørterøl\" (wort-Ale) but these aren't strictly beers. Fermentation is usually by yeast, Saccaromyces cerevisiae (ales) or S. uvarum (lagers) but other yeasts (S. Brettanomyces) or bacteria (such as lactobacillus) may be used.

  • \n
\n", "OwnerUserId": "112", "LastActivityDate": "2014-02-11T17:31:03.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"595"}} +{ "Id": "595", "PostTypeId": "2", "ParentId": "579", "CreationDate": "2014-02-12T02:15:18.327", "Score": "5", "Body": "

Brew York (which is one of the foremost local news sites for Beer Enthusiasts in NYC) wrote up a really great guide to NYC's Beer Culture for Super Bowl visitors last week.

\n\n

The strongest picks, if I had to rattle them off myself, would be Brooklyn Brewery for someplace with some serious scale, Singlecut's taproom in Astoria for some great hoppy lagers and the best in-brewery drinking experience in town, and Peekskill Brewery and Barrier Brewery if you're willing to spend 30 minutes on a commuter rail line (Metro North or LIRR respectively), for two of the most daring and inventive brewers in the region.

\n\n

Really though, even though NYC has a number of local breweries, it isn't a great place for drinking at the source - beer culture in the city, while heavily local, is largely centered around a number of fantastic bars; Check out Torst, Barcade, Spuyten Duyvil, Alewife, The Pony Bar, Blind Tiger, the Ginger Man, Burp Castle, or any of the tons and tons of other great venues.

\n\n

The Craft Beer New York app for both major smartphone platforms is also excellent, with up to date listings on new bar and brewery openings, local events, limited releases, and more. Easily worth a few bucks for any serious enthusiast.

\n", "OwnerUserId": "8", "LastEditorUserId": "8", "LastEditDate": "2014-04-20T15:04:14.627", "LastActivityDate": "2014-04-20T15:04:14.627", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"596"}} +{ "Id": "596", "PostTypeId": "1", "AcceptedAnswerId": "599", "CreationDate": "2014-02-13T02:26:43.410", "Score": "19", "ViewCount": "5626", "Body": "

I know from this question that doubles and triples are stronger than the \"single\" version. And from what I've seen, Belgian triple are often closer to be blond and golden while doubles are often darker.

\n\n

My question though is what should I expect from a triple? What are it's defining characteristics (meaning that I can recognize one when I drink it, or recognize an off-style one)?

\n", "OwnerUserId": "215", "LastEditorUserId": "4962", "LastEditDate": "2018-06-25T16:03:39.450", "LastActivityDate": "2018-06-25T16:03:39.450", "Title": "What should I expect from a Belgian triple (tripel)?", "Tags": "taste style tripel", "AnswerCount": "5", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"597"}} +{ "Id": "597", "PostTypeId": "1", "AcceptedAnswerId": "600", "CreationDate": "2014-02-13T03:32:24.363", "Score": "11", "ViewCount": "2410", "Body": "

I'm well aware that beer is commonly enjoyed warm in Europe. However, mulled beer aside, are there any beer styles that fare well when enjoyed hot?

\n", "OwnerUserId": "31", "LastActivityDate": "2014-04-03T14:17:49.407", "Title": "Are there any beer styles that are best enjoyed hot?", "Tags": "taste style temperature", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"599"}} +{ "Id": "599", "PostTypeId": "2", "ParentId": "596", "CreationDate": "2014-02-13T14:53:58.103", "Score": "10", "Body": "

I expect a high alcohol beer, with a lot of complex flavors. One that the alcohol content will \"sneak\" up on you because it isn't very obvious in the taste.

\n\n

Quoting from the Beer Judge Criteria:

\n\n
\n

Aroma: Complex with moderate to significant spiciness, moderate\n fruity esters and low alcohol and hop aromas. Generous spicy, peppery,\n sometimes clove-like phenols. Esters are often reminiscent of citrus\n fruits such as oranges, but may sometimes have a slight banana\n character. A low yet distinctive spicy, floral, sometimes perfumy hop\n character is usually found. Alcohols are soft, spicy and low in\n intensity. No hot alcohol or solventy aromas. The malt character is\n light. No diacetyl.

\n \n

Appearance: Deep yellow to deep gold in color. Good clarity.\n Effervescent. Long-lasting, creamy, rocky, white head resulting in\n characteristic “Belgian lace” on the glass as it fades.

\n \n

Flavor: Marriage of spicy, fruity and alcohol flavors supported by a\n soft malt character. Low to moderate phenols are peppery in character.\n Esters are reminiscent of citrus fruit such as orange or sometimes\n lemon. A low to moderate spicy hop character is usually found.\n Alcohols are soft, spicy, often a bit sweet and low in intensity.\n Bitterness is typically medium to high from a combination of hop\n bitterness and yeast-produced phenolics. Substantial carbonation and\n bitterness lends a dry finish with a moderately bitter aftertaste. No\n diacetyl.

\n \n

Mouthfeel: Medium-light to medium body, although lighter than the\n substantial gravity would suggest (thanks to sugar and high\n carbonation). High alcohol content adds a pleasant creaminess but\n little to no obvious warming sensation. No hot alcohol or solventy\n character. Always effervescent. Never astringent.

\n \n

Overall Impression: Strongly resembles a Strong Golden Ale but\n slightly darker and somewhat fuller-bodied. Usually has a more rounded\n malt flavor but should not be sweet.

\n \n

Comments: High in alcohol but does not taste strongly of alcohol. The\n best examples are sneaky, not obvious. High carbonation and\n attenuation helps to bring out the many flavors and to increase the\n perception of a dry finish. Most Trappist versions have at least 30\n IBUs and are very dry. Traditionally bottle-conditioned (“refermented\n in the bottle”).

\n \n

History: Originally popularized by the Trappist monastery at\n Westmalle.

\n \n

Ingredients: The light color and relatively light body for a beer of\n this strength are the result of using Pilsner malt and up to 20% white\n sugar. Noble hops or Styrian Goldings are commonly used. Belgian yeast\n strains are used – those that produce fruity esters, spicy phenolics\n and higher alcohols – often aided by slightly warmer fermentation\n temperatures. Spice additions are generally not traditional, and if\n used, should not be recognizable as such. Fairly soft water.

\n
\n", "OwnerUserId": "222", "LastActivityDate": "2014-02-13T14:53:58.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"600"}} +{ "Id": "600", "PostTypeId": "2", "ParentId": "597", "CreationDate": "2014-02-13T14:54:30.793", "Score": "11", "Body": "

First, to clear up the myth. European beer is not served warm. Some beers, such as real ale (or cask ale) are served at cellar temperature, which while certainly above the temperature of a beer fresh out a refrigerator, at 12-14 degrees celsius (53-57F) is still much colder than room temperature.

\n\n

To answer your question: Mulled beer is heated beer. As with wine, mulled beer is usually warmed over a low stove or in a crockpot with spices, often including cinnamon, nutmeg, citrus zest, and a sweetener like brown sugar, but it doesn't need to include any additional ingredients, particularly if it already has strong spice or fruit characteristics. So, any beer style that you heat is, in fact, mulled beer.

\n\n

As to styles of beer that would be suitable for mulling, Belgian Strong Dark ales would be good candidates, as would nice fruity lambics. Barleywine ales, milk stouts, chocolate stouts, and oatmeal stouts I would imagine might also be nice. The characteristics I'd look for would be a heavy body, more malty than hoppy, a bit of sweetness, and if present, dark fruit (plumbs, figs, raisins) or berries.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-02-13T14:54:30.793", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"601"}} +{ "Id": "601", "PostTypeId": "2", "ParentId": "596", "CreationDate": "2014-02-13T15:46:18.863", "Score": "8", "Body": "

I am a big fan of tripels and quadrupels. They are dark, and much smoother, I find, than blondes and other lower-alcohol beers (and yes, tripels are substantially more alcoholic). Contrary to the previous answer, I find they taste less bitter than typical beers, although perhaps it may be because the bitterness is masked by the other flavors perhaps? It may depend, though; Chimay yellow label has a note of bitterness that I don't find in, say, a Westmalle.

\n\n

Part of it depends on what you're used to. If you're used to mass-market beers you will find these very different. Heavier and more substantial. Richer, more luxurious. Very much not something you quaff down a few at a time to quench your thirst; these are savored.

\n\n

There are also quadrupels, such as the Roquefort 10 or Westvleteren XII, which are even better in my mind. These are very dark and pack an alcoholic punch.

\n", "OwnerUserId": "471", "LastActivityDate": "2014-02-13T15:46:18.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"602"}} +{ "Id": "602", "PostTypeId": "1", "AcceptedAnswerId": "604", "CreationDate": "2014-02-13T17:18:30.753", "Score": "26", "ViewCount": "9515", "Body": "

From a question about german beers, the difference between a doppelbock and triple bock seems to be simply about the abv and maltiness. Basically just a stronger version of the \"single\" bock.

\n\n

Is is the same difference for Belgian versions (dubbels and trippels)?

\n\n

From a comment I read, the difference seemed to be more complex, and I would like to get more information about it.

\n", "OwnerUserId": "215", "LastEditorUserId": "4962", "LastEditDate": "2018-06-25T16:03:27.440", "LastActivityDate": "2018-06-25T16:03:27.440", "Title": "What are the difference between a dubbel and a tripel?", "Tags": "style classification dubbel tripel", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"603"}} +{ "Id": "603", "PostTypeId": "2", "ParentId": "602", "CreationDate": "2014-02-14T01:02:24.700", "Score": "4", "Body": "

Dubbels and Tripels are vastly different beers. While dubbels are generally something akin to a brown ale, malt forward with some light hints of dark fruit and roastiness, Tripels are pale to golden, being a vehicle for both the yeast flavors (clove/bananna), fruity esters, and the whims of the brewer (Belgian candi sugar, coriander and other spices are common additions).

\n\n

The additional Trappist style ale the Quadripel (Quad) is much more like a bigger version of the dubbel, although they have their own distinct flavor profiles as well.

\n", "OwnerUserId": "476", "LastActivityDate": "2014-02-14T01:02:24.700", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"604"}} +{ "Id": "604", "PostTypeId": "2", "ParentId": "602", "CreationDate": "2014-02-14T07:26:43.513", "Score": "14", "Body": "

It's often a misconception that one comes forth from the other, this is incorrect. The name was used to indicate the strength of the Westmalle beers. Originally there was the Enkel, Dubbel and Tripel. It is said that they represent the holy trinity. Later quadruppels were added. Both Dubbel and Tripel as name were first used by the Trappist brewery of Westmalle.

\n\n

Westmalle produced the first dark beer in 1856 named \"Dubbel\" (the recipe was changed in 1926). Dubbels are dark in color, and tend to have malt flavors dominating over hops. Whereas the Quadrupels have more of a fruit presence, the Dubbels tend to be a bit spicier with strong caramel flavors. They tend to have an ABV of 6.5-9.0%.

\n\n

Some examples:

\n\n
    \n
  • Chimay Red
  • \n
  • La Trappe Dubbel
  • \n
  • Ommegang
  • \n
  • Westvleteren 8
  • \n
  • Rochefort 6
  • \n
  • Westmalle Dubbel
  • \n
\n\n

Tripels are lighter color, often blonde. They are generally a lot fruitier and lighter in flavor. The name Tripel originally was first used in 1956 by the Westmalle brewery to name their strongest beer (originally produced in 1930 and named Superbier, it was renamed to Tripel). The ABV is a lot higher than the double, 8.0-12.0%.

\n\n

Some examples:

\n\n
    \n
  • Tripel Karmeliet
  • \n
  • Westmalle Tripel
  • \n
  • St. Bernardus Tripel
  • \n
  • Leuvense Tripel
  • \n
  • Chimay Cinq Cents Tripel
  • \n
\n", "OwnerUserId": "138", "LastActivityDate": "2014-02-14T07:26:43.513", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"605"}} +{ "Id": "605", "PostTypeId": "1", "AcceptedAnswerId": "624", "CreationDate": "2014-02-15T00:09:29.893", "Score": "38", "ViewCount": "88080", "Body": "

I typically prefer my beer only a bit cold, so when I buy a 12-pack from a store's cooler I typically just leave it out. The excess I'll refrigerate at the end of the night, and sometimes repeat the process with the same beer on a different night.

\n\n

Does this affect the quality of the beer in some chemical way? I almost exclusively drink IPA's and personally never notice a difference, but many of my friends have commented on the habit of mine to let beer warm.

\n", "OwnerUserId": "479", "LastActivityDate": "2017-01-28T04:57:35.787", "Title": "Does beer suffer from being warmed and then rechilled?", "Tags": "temperature ipa", "AnswerCount": "5", "CommentCount": "3", "FavoriteCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"606"}} +{ "Id": "606", "PostTypeId": "1", "AcceptedAnswerId": "611", "CreationDate": "2014-02-15T00:32:23.547", "Score": "5", "ViewCount": "1352", "Body": "

I'm very familiar with Dogfishhead's series of 60/75/90/120 minute IPA's, Harpoon's Leviathan, and have recently found new favorites in Sixpoint Hi-Res and Resin.

\n\n

What are some similar high-ABV Double/Imperial IPA's in this area?

\n", "OwnerUserId": "479", "LastEditorUserId": "31", "LastEditDate": "2014-02-15T21:58:24.237", "LastActivityDate": "2014-02-16T05:06:51.113", "Title": "What are some high-ABV IPA's in the Northeast United States?", "Tags": "ipa abv united-states", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"607"}} +{ "Id": "607", "PostTypeId": "1", "AcceptedAnswerId": "610", "CreationDate": "2014-02-15T03:18:09.793", "Score": "22", "ViewCount": "14021", "Body": "

I thought of this question when I've read the one about mulled beer. I thought heating the beer would make it lose carbonation, but then I've read somewhere that you have to carbonate the mulled beer as well.

\n\n

So are there any beer styles that are served without carbonation or nitrogenation? I myself think that there are probably none, but I'm no beer expert (yet :D).

\n", "OwnerUserId": "127", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2018-01-31T14:44:38.887", "Title": "Are there any beer styles that are served flat?", "Tags": "taste gas", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"608"}} +{ "Id": "608", "PostTypeId": "2", "ParentId": "607", "CreationDate": "2014-02-15T13:59:34.440", "Score": "5", "Body": "

Cask beers have very low levels of carbonation, enough that one could almost consider them to be flat. This is due to the fact that they aren't served under any pressure.

\n", "OwnerUserId": "222", "LastActivityDate": "2014-02-15T13:59:34.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"609"}} +{ "Id": "609", "PostTypeId": "2", "ParentId": "607", "CreationDate": "2014-02-15T14:07:06.930", "Score": "8", "Body": "

What you're most likely to find everyday are not beers that are flat, exactly, but are very low in carbonation. Barleywine ale is one of these styles, and though it will typically have some carbonation, it will be very little. In the UK, real (or cask) ale is another style with very little carbonation.

\n\n

The only style I can think of off the top of my head that is really and truly uncarbonated are the super high alcohol beers like Boston Beer's Samuel Adams Utopias and some of the various high-alcohol freeze-distilled* varieties. To me, these styles have nearly as much in common with fortified wine or spirits as they do with beer, and they're not easy to find, so they're a bit of an outlier.

\n\n

*Distillation requires heat, so the process of freezing to concentrate alcohol in a beer isn't really technically distillation, but hey, that's what it's called, so when it Rome...

\n", "OwnerUserId": "37", "LastActivityDate": "2014-02-15T14:07:06.930", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"610"}} +{ "Id": "610", "PostTypeId": "2", "ParentId": "607", "CreationDate": "2014-02-15T21:41:12.107", "Score": "22", "Body": "

Historically beer was almost definitely still (flat) for thousands of years. Before the discovery/invention of force carbonation methods, all beer was carbonated naturally via bottle or cask conditioning. But people were brewing alcoholic beverages commonly referred to as beer in antiquity, and evidence from these cultures (ancient China, Neolithic culture, etc) suggests that they were doing this in big stone and earthenware pots and jugs, which may have had no lids or loose lids. Their vessels probably could not have withstood the pressure of carbonation even if they were using wax or cork to seal the vessels.

\n\n

So if you were to brew a historical style and you wanted to be truly accurate, then you would not carbonate it. But the modern historical interpretations usually are carbonated (like Dogfish Head's ancient ales), because they are selling them and Westerners generally prefer them :)

\n\n

There is one \"modern style\" (e.g. a style you'd find in the BJCP style guide), that can be served with no carbonation, namely straight (unblended) lambic. Several have little or low carbonation, (e.g. barleywine) mentioned in other answers. Sahti also has very little carbonation.

\n\n

But people do still drink flat/still beer all over the world, for example there's some uncarbonated corn beers that are popular, like chicha in Latin America (Dogfish Head made a Chicha inspired beer) and umqombothi in South Africa. There are other names for similar beers in other regions. These are typically homebrewed.

\n", "OwnerUserId": "94", "LastEditorUserId": "94", "LastEditDate": "2015-10-07T19:46:09.380", "LastActivityDate": "2015-10-07T19:46:09.380", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"611"}} +{ "Id": "611", "PostTypeId": "2", "ParentId": "606", "CreationDate": "2014-02-15T21:57:28.637", "Score": "3", "Body": "
    \n
  • Bluepoint Brewery of Long Island NY makes Old Howling Bastard at 10% ABV (though I won't buy their beer anymore as they just sold to InBev a few weeks ago)
  • \n
  • Dirtwolf from Victory Brewing Company of Pennsylvania at 8.7% ABV
  • \n
  • At 9% ABV, you've got Double Simcoe from Weyerbacher Brewing Co of Pennsylvania
  • \n
  • Out of NY, you have Unearthly from Southern Tier, rolling in at 9.5% ABV
  • \n
  • From NY, you've got He'Brew Bittersweet Lenny's R.I.P.A. by Shmaltz Brewing Company at 10 % ABV
  • \n
  • Dogfish Head makes other IPA's outside of the 60/90/120 Minutes. Give Robert Johnson's Hellhound On My Ale a try (10% ABV).
  • \n
  • At 9.7% ABV, Smuttynose of New Hampshire makes the Big A IPA at 9.7% ABV
  • \n
  • Stoudt's Double IPA from Stoudt's brewing Co. of PA rolls in at 9.43 ABV
  • \n
  • From Vermont, you've got Ephraim by Hill Farmstead Brewery rolling in at 10.5% ABV. I've never seen a beer with a 100 rating on Beer Advocate before...good luck finding this one.
  • \n
  • Out of Pennsylvania from Allentown Brew Works you've got Hop'solutely rolling in at 11.5% ABV
  • \n
  • Bluepoint also makes No Apologies Imperial IPA at 10% ABV. Again, my discretion about InBev still applies.
  • \n
  • Flying Dog out of Frederick Maryland makes Single Hop Imperial IPA at 10% ABV
  • \n
  • Brash Brewing Company of Taxachusetts makes The Bollocks at a whopping 12% ABV
  • \n
\n\n

I think that list will do for now. Again, It'd be best to rephrase your question as I was not sure if you meant beer brewed in the Northeast or beer available there. I went with the former (since it should satisfy both conditions anyway).

\n\n

What you want to keep an eye out for are so called Imperial IPA's; it is a category of high ABV IPA's

\n", "OwnerUserId": "31", "LastEditorUserId": "31", "LastEditDate": "2014-02-16T05:06:51.113", "LastActivityDate": "2014-02-16T05:06:51.113", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"612"}} +{ "Id": "612", "PostTypeId": "5", "CreationDate": "2014-02-16T00:14:51.000", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-02-16T00:14:51.000", "LastActivityDate": "2014-02-16T00:14:51.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"613"}} +{ "Id": "613", "PostTypeId": "4", "CreationDate": "2014-02-16T00:14:51.000", "Score": "0", "Body": "Alcohol by volume: the quantity of alcohol measured by volume, expressed as a percentage of the total volume of the beverage when it is at 20°C.", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-02-17T15:59:46.507", "LastActivityDate": "2014-02-17T15:59:46.507", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"614"}} +{ "Id": "614", "PostTypeId": "5", "CreationDate": "2014-02-16T01:06:49.587", "Score": "0", "Body": "

Questions related to the long or short-term storage of beer, wine, and spirits including the optimal facilities and conditions.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:43:34.437", "LastActivityDate": "2016-06-16T02:43:34.437", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"615"}} +{ "Id": "615", "PostTypeId": "4", "CreationDate": "2014-02-16T01:06:49.587", "Score": "0", "Body": "Questions related to the long or short-term storage of beer, wine, and spirits including the optimal facilities and conditions. ", "OwnerUserId": "80", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:43:55.813", "LastActivityDate": "2016-06-16T02:43:55.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"616"}} +{ "Id": "616", "PostTypeId": "5", "CreationDate": "2014-02-16T01:08:05.030", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-02-16T01:08:05.030", "LastActivityDate": "2014-02-16T01:08:05.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"617"}} +{ "Id": "617", "PostTypeId": "4", "CreationDate": "2014-02-16T01:08:05.030", "Score": "0", "Body": "Styles of beer such as Bock, Stout, Lager, or Lambic.", "OwnerUserId": "80", "LastEditorUserId": "80", "LastEditDate": "2014-02-17T15:59:50.290", "LastActivityDate": "2014-02-17T15:59:50.290", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"618"}} +{ "Id": "618", "PostTypeId": "5", "CreationDate": "2014-02-16T03:35:31.167", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-02-16T03:35:31.167", "LastActivityDate": "2014-02-16T03:35:31.167", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"619"}} +{ "Id": "619", "PostTypeId": "4", "CreationDate": "2014-02-16T03:35:31.167", "Score": "0", "Body": "India Pale Ale: a highly hopped ale variant. It was originally brewed in England for export to India.", "OwnerUserId": "170", "LastEditorUserId": "6255", "LastEditDate": "2018-11-07T11:17:26.993", "LastActivityDate": "2018-11-07T11:17:26.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"620"}} +{ "Id": "620", "PostTypeId": "1", "AcceptedAnswerId": "622", "CreationDate": "2014-02-16T06:41:56.590", "Score": "9", "ViewCount": "4927", "Body": "

We have this local beer in the Philippines called San Miguel Pale Pilsen. Looking at this style guide I don't see any mention of the word Pilsen, though there is the word Pilsner. Are they in any way related?

\n", "OwnerUserId": "127", "LastActivityDate": "2014-02-27T16:06:26.330", "Title": "What is pale pilsen?", "Tags": "style", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"621"}} +{ "Id": "621", "PostTypeId": "1", "AcceptedAnswerId": "623", "CreationDate": "2014-02-16T07:10:43.110", "Score": "12", "ViewCount": "1751", "Body": "

Here in Japan, draft beer is called nama (生) beer, or so my boss said. Referencing my previous question, one answer said that draft beer is \"pushed using gas, or drawn via a partial vacuum\". I get the concept of the widget being used to facilitate that. However, canned draft beers in Japan have no widget at all! They come in different can sizes from very small to a liter size, and all have no widget whatsoever. So I wonder how it is classified as draft without having the characteristic of draft beer. Or am I missing something? Is it possible the term draft means something different around here?

\n", "OwnerUserId": "127", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2019-07-13T01:16:47.193", "Title": "How can canned beer be draft without the widget? (Japan-specific)", "Tags": "terminology draught local", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"622"}} +{ "Id": "622", "PostTypeId": "2", "ParentId": "620", "CreationDate": "2014-02-16T17:54:58.080", "Score": "8", "Body": "

Yes, they are related. The pilsner beer style got its name from the city of Pilsen, in what is now the Czech Republic, where the beer was first brewed in 1842.

\n\n

Reference: Pilsner

\n", "OwnerUserId": "154", "LastActivityDate": "2014-02-16T17:54:58.080", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"623"}} +{ "Id": "623", "PostTypeId": "2", "ParentId": "621", "CreationDate": "2014-02-18T15:09:07.497", "Score": "10", "Body": "

Draft isn't a very regulated term but most often draws its meaning from context. At a bar, draft is usually placed opposite bottled, meaning like you said that the beer is pushed using gas from a keg or drawn via vacuum from a cask. This is the actual meaning of draft.

\n\n

But..

\n\n

On bottles and cans it most often means \"Like-Draft\", or the marketing department's way of telling you this beer tastes more like the version of our beer that you get when you go to bar and get off the tap, but in the comfort of your own home.

\n\n

For a beer like Guinness or Boddingtons, this means a widget to hold high pressure Nitrogen gas to simulate the effects of a \"Beer Gas\" pouring system which uses a high pressure mixture of Nitrogen and CO2. Guinness has actually replaced the widget in some of their \"draught\" packages as well, I believe the draught bottles.

\n\n

But for a beer like Miller Genuine Draft, or the other Japanese beers you're mentioning, it just means the beer is unpasteurized which gives it a flavor more like what you get from a fresh, unpasteurized keg rather than a pasteurized and/or filtered bottled beer. This is in line with the meaning of \"nama\" as you mentioned, as the beer is more \"fresh\" than traditional bottled beer.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-02-18T15:09:07.497", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"624"}} +{ "Id": "624", "PostTypeId": "2", "ParentId": "605", "CreationDate": "2014-02-18T18:05:14.537", "Score": "32", "Body": "

TL DR; No.

\n\n

Beer flavor changes over time (hops fade away, oxidation takes hold, etc.), and this process happens more quickly at warmer temperatures than colder ones. But there are no additional chemical reactions caused by temperature changes, so warming to room temperature and re-chilling multiple times is not going to have any added effects on the beer. Assuming you are drinking it within a few weeks, you won't notice the difference with bottled or canned beer.

\n\n

I think this myth took hold from left-over kegs after parties: A half-empty keg that was dispensed by pumping air into it will start to oxidize much more quickly since oxygen is being added to it. When it warms the oxidation speeds up and it tastes stale within a day or two. Keeping it cold slows that down a bit, but even cold it won't last very long. A keg being dispensed using CO2 is a different story: that will last as long as bottled beer and can be warmed and rechilled without ill effects.

\n\n

In all of this, I am referring to room temperature. Beer left in a car in the sun for hours will start to stale much more quickly, even if bottles are protected from the sunlight. You won't get the skunky flavor caused by the light, but it will taste stale.

\n", "OwnerUserId": "381", "LastActivityDate": "2014-02-18T18:05:14.537", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"625"}} +{ "Id": "625", "PostTypeId": "1", "CreationDate": "2014-02-19T04:21:35.967", "Score": "10", "ViewCount": "85", "Body": "

I've recently been tracking some of Founders's limited releases (like the Kentucky Breakfast Stout, coming out in March I believe). It's easy enough to check brewery-by-brewery, but are there any services or websites that consolidate information about USA-distributed limited releases?

\n", "OwnerUserId": "500", "LastEditorUserId": "170", "LastEditDate": "2014-02-19T08:27:14.203", "LastActivityDate": "2014-02-20T01:44:03.740", "Title": "How can I follow limited releases?", "Tags": "united-states", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"626"}} +{ "Id": "626", "PostTypeId": "1", "AcceptedAnswerId": "642", "CreationDate": "2014-02-19T13:29:58.683", "Score": "10", "ViewCount": "175", "Body": "

I visited the UK's oldest licensed brewery, the Three Tuns, in Shropshire, which has been licenced since 1642. One of its key features is that all transfers can be carried out using gravity:

\n
    \n
  • all raw materials are brought to the top of the tower, and then each movement of materials or fluids is carried out using gravity - not pumps
  • \n
\n

My question is: does this provide a difference in flavour, texture or other qualities to beers from those breweries that use pumps? I can imagine it might, as pumps cause agitation that won't exist in a simple pipe letting liquid flow downhill.

\n

(additional information: the Three Tuns is well worth a visit - all the beers on show that day were delicious)

\n", "OwnerUserId": "187", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-02-27T16:17:06.477", "Title": "Is there a taste or texture difference between gravity breweries and those that use pumps?", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"627"}} +{ "Id": "627", "PostTypeId": "2", "ParentId": "625", "CreationDate": "2014-02-20T01:44:03.740", "Score": "8", "Body": "

I'd say beermenus.com would be a good bet. My favorite local brewery updates their page every other day or so.

\n\n

It's funny that you mention this though. I just had an email exchange with the brewmaster regarding this very thing. I asked him to set up a webcam system which will update the list of beer offerings in realtime (similar to what the Dogfish Head Ale Houses do at the bottom of the page). He liked the idea and said he's game for it, so hopefully we'll start seeing these type of things pop up more and more.

\n\n

In the meantime, I think beermenus.com is your best bet (aside from calling the brewery probably). There's also a smartphone app called UnTapped that was pretty good at this as well, last time I checked (I'm happily a dumb phone user once again as part of a personal experiment of mine; so I haven't used it recently).

\n", "OwnerUserId": "31", "LastActivityDate": "2014-02-20T01:44:03.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"628"}} +{ "Id": "628", "PostTypeId": "2", "ParentId": "340", "CreationDate": "2014-02-20T15:22:03.473", "Score": "5", "Body": "

A Belgian Double is an amber/brown beer of usually 6-7.5% ABV (They can drift higher). The style was most likely originated at Westmalle in the mid 19th Century. While Trappist abbeys tend to be the origin and driver of the style, many secular Belgian breweries produce them as Abbey beers which may have actually been a brewing monastery at one point or simply as a Dubbel. They're not as popular amongst American brewers as triples though.

\n\n

As far as flavor profile, it's a malty but dry beer. The Belgian abbey yeast strains will ferment the beer fairly dry but will create a whole host of fruity esters and spicy phenols that will add to the mid range caramel malts. Many of the Trappist versions have attenuation of 80%-90%. Westmalle Dubbel, Chimay Red Label, New Belgium Abbey, St. Martin Brune are all good examples of the style.

\n\n

With regards to AudiFanatic's answer, In this case, Beer Advocate is wrong in their description of a Triple. Triples do NOT use 3x's the malt as a Single. No brewer will tell you that, nor is it true historically. Malt extraction is linear, meaning 3x's the malt will be 3x's the alcohol. The closest you get to that is historically when the single was the 3rd running (like a small beer). With this method, the 1st run had triple the fermentables extracted than the 3rd run.

\n\n

And while I may only be a blogger, with 13 years of industry experience, I spoke with highly trained brewmasters and read references written by authoritative experts. I'm pretty sure my answer article is more accurate than the Beer Advocate's, in this case. Also, the flavor profile of a triple does not have \"flavors similar\" to a dubbel. Dark malt and light malt will give very different flavors. The only Triple that has similar flavor is Stift Engelzell's triple, which is a unique dark triple, as they're labeling it.

\n", "OwnerUserId": "510", "LastEditorUserId": "8", "LastEditDate": "2014-02-21T17:02:28.240", "LastActivityDate": "2014-02-21T17:02:28.240", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"629"}} +{ "Id": "629", "PostTypeId": "1", "AcceptedAnswerId": "631", "CreationDate": "2014-02-21T07:07:06.040", "Score": "8", "ViewCount": "451", "Body": "

When I've drunk high-IBU beers such as Mikkeller's Hop Burn High (labelled as 300 IBU) I've been able to taste and smell the hops, but I'd be hard pressed to say that it was e.g. 6 times as bitter as a 50 IBU beer.

\n\n

So I was wondering if there is something about the beer that I'm missing that would indicate that it was a 300 IBU beer? Or is this more of a marketing thing when breweries label beers with such high numbers?

\n", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-02-22T07:17:45.373", "LastActivityDate": "2014-02-22T07:17:45.373", "Title": "What sort of flavours distinguish ultra-high IBU beers from other high IBU beers?", "Tags": "style ibu", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"630"}} +{ "Id": "630", "PostTypeId": "2", "ParentId": "629", "CreationDate": "2014-02-21T07:45:56.187", "Score": "6", "Body": "

International Bittering Units (IBUs) are a measure of bitterness in a beer. As such, the distinguishing factor is bitterness. :)

\n\n

Since hops are the primary contributor to bitterness in beer, high IBU beers also tend to be hoppy (although that's not always the case, since hops added at certain points in the brewing process contribute mostly to bitterness, while hops added at other points contribute mostly to hop aroma and flavor).

\n\n

As an aside, heavier beers (specifically, those with lots of malt) will taste less bitter than a lighter beer with the same IBU. To elaborate:

\n\n
\n

there is still the complication that IBUs do not really correlate with perceived bitterness because other aspects of beer affect the perception of bitterness. For example, two beers containing 25 IBUs will be perceived very different with respect to bitterness if one beer had an O.G. of 10 °Plato and finished at 1.5 °Plato and the other beer had an O.G. of 12.5 °Plato and finished at 2.5 °Plato. Begin varying the malt bill by adding crystal malt, for example, and changing the content of various water salts and things become even muddier. This is the reason that measures like the IBU are extremely useful when used within a population of similar beers, but not so handy when looking at very different populations.\n - http://byo.com/light-ale/item/2084-measuring-ibus-mr-wizard

\n
\n", "OwnerUserId": "80", "LastEditorUserId": "80", "LastEditDate": "2014-02-21T17:22:57.353", "LastActivityDate": "2014-02-21T17:22:57.353", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"631"}} +{ "Id": "631", "PostTypeId": "2", "ParentId": "629", "CreationDate": "2014-02-21T09:11:36.490", "Score": "12", "Body": "

The brewery really needs to indicate how they get the 300 IBU measurement. Most just work it out from the hops they add using hop bitterness calculators, rather than it being an actual measurement of the bittering compounds in the beer. For highly hopped beers, the calculated IBUs can be far off compared to reality - above around 100 IBUs it becomes more and more difficult to increase the IBUs of the beer.

\n\n

The isomerized alpha acids that give the bitterness are only marginally soluble in wort (they are hydrophobic), and their solubility decreases as more is dissolved: solubility decreases with lower pH and dissolving the iso-acids lowers the pH, so solubility is self-limiting.

\n\n

Thus, labels with over 100 IBUs should not be considered accurate, unless the brewer has specifically measured the IBUs in the beer, rather than guessed them from the hop regime.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-02-21T09:11:36.490", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"632"}} +{ "Id": "632", "PostTypeId": "1", "CreationDate": "2014-02-24T19:47:51.087", "Score": "9", "ViewCount": "1992", "Body": "

I understand that a much weaker version of beer, called 'small beer', was historically drunk as a safe way to drink liquid. This was at a time when drinking plain water might well have made you sick, as it would not have been boiled. Do we have any idea what the ABV of 'small beer' drunk around 1800 would have been?

\n", "OwnerUserId": "98", "LastActivityDate": "2014-02-24T20:52:47.740", "Title": "ABV of small beer?", "Tags": "history abv", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"633"}} +{ "Id": "633", "PostTypeId": "1", "AcceptedAnswerId": "644", "CreationDate": "2014-02-24T19:49:24.950", "Score": "17", "ViewCount": "6794", "Body": "

From here, though they do not cite their source:

\n
\n

The origins of the yard of ale date back to the early 17th century, during the reign of King James I (1603-1625). Glass-making in England was then in its infancy; the first glass-making factory had only recently been established. Many of the first yard glasses have not survived due to their brittle nature, until George Ravenscroft (1674) introduced a new glass process known as the flint glass.

\n

The yard of ale was made and used not for normal drinking purposes, but for feast and manly displays of prowess. During Anglo-Saxon times through the Middle Ages, the English nation has always engaged in the traditions of heavy drinking. As put in Young’s quote “England’s Bane” written in 1617, “He is a man of no fashion that can not drink by the dozen, by the yard, so by measure we drink out of measure.”

\n

Legend suggests that the yard was also used in old England to serve the driver of a coach. Upon arriving at their destination and relieving its passengers, the coachman would stay and the length of the yard glass would allow him some refreshment.

\n
\n

Some of the same information is repeated in Wikipedia.

\n

I'm certain that most of the history of using this style of vessel comes from fellow drinkers trying to show each other up at parties, but aside from the sheer volume (and perhaps limitations of glass-making artisans), how did this length and volume of the glass first come about? Is there more definitive evidence for the year of birth of the yard, besides the milestone in their history of the introduction of flint glass?

\n

I'm also curious about whether the volume of the glass was satisfying to stagecoach drivers because of their need to wait long periods for their passenger, or whether it was just easier to hand them a tall glass as they remained in the seat.

\n", "OwnerUserId": "121", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-04-04T08:48:39.320", "Title": "What are the true origins of the yard of ale?", "Tags": "history glassware", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"634"}} +{ "Id": "634", "PostTypeId": "2", "ParentId": "632", "CreationDate": "2014-02-24T20:52:47.740", "Score": "8", "Body": "

Historically small beer is believed to be between 2 and 3.5% ABV, based on notes from Belgian monasteries which produced small beer from the 3rd runnings of the mash and original French Saison recipes. Those numbers are probably accurate for brewing between the middle ages and about the 1500s.

\n\n

Small beer got a little stronger a few hundred years later when it came to America. George Washington's famous 1757 Small Beer has been estimated as a little stronger, around 4-4.5% ABV by recreations. Another famous historic small beer recipe from 1820 has been estimated around 3.8% and included lemon peel, clove, ginger, and cream of tartar for acidity in addition to hops.

\n\n

Basically it runs the same gamut as session beer does today, maybe staying a bit towards the lower end of what we'd consider session.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-02-24T20:52:47.740", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"635"}} +{ "Id": "635", "PostTypeId": "2", "ParentId": "605", "CreationDate": "2014-02-24T21:30:14.930", "Score": "5", "Body": "

I did some experimentation at home to answer this question. My results indicated that room temperature and temperature fluctuation had no impact on flavour. Very high temperature (140° for 24 hours) seems to create a very slight hard to define harshness. Check out my results here:

\n\n

Beer Experiments: Sunlight Exposure and Temperature Regulation

\n\n

Beer Experiments: Temperature Regulation Part 2

\n", "OwnerUserId": "530", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T16:44:15.223", "LastActivityDate": "2016-10-05T16:44:15.223", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"636"}} +{ "Id": "636", "PostTypeId": "2", "ParentId": "596", "CreationDate": "2014-02-24T21:35:07.793", "Score": "2", "Body": "

As stated above, if you want to know about a certain style the BJCP guidelines are a great place to start.

\n\n

Not all styles are reflected in the BJCP guidelines though. For instance, the BJCP doesn't recognize Black IPAs, or American Wild Ales. The Beer Advocate style guidelines, and the guidelines from the Great American Beer Festival might also be useful to you.

\n\n

With regard to your specific question about Tripels, you can read my own thoughts about them on my blog (I'm trying to drink all the BJCP styles are write about them):

\n\n

The Beer Style Project

\n", "OwnerUserId": "530", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T19:00:47.963", "LastActivityDate": "2016-10-05T19:00:47.963", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"637"}} +{ "Id": "637", "PostTypeId": "1", "AcceptedAnswerId": "638", "CreationDate": "2014-02-25T12:15:47.883", "Score": "17", "ViewCount": "17703", "Body": "

One of my favorite stouts is Oesterstout by the Schelde Brewery.

\n\n

The website states:

\n\n
\n

During the brewing process, the wort of the beer is pumped across the oyster shells.

\n
\n\n

Is this what gives it it's distinct taste? In Denmark, another more easily available Oyster stout is Marston's Oyster Stout. Do all Oyster Stouts follow this particular process, or is it more of a sales pitch?

\n", "OwnerUserId": "541", "LastActivityDate": "2016-10-05T23:48:05.620", "Title": "Is Oyster Stout really made using oysters?", "Tags": "brewing stout", "AnswerCount": "6", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"638"}} +{ "Id": "638", "PostTypeId": "2", "ParentId": "637", "CreationDate": "2014-02-25T13:16:29.207", "Score": "19", "Body": "

Oyster stout traditionally uses oysters as part of the brewing process, and that is the flavour that differentiates them from other stouts. While it is traditional to use oysters, some modern breweries use artifical flavours in their oyster stouts, or simply say that they are intended to be eaten with seafood.

\n\n

You mention Marston's Oyster Stout, which is one example of an oyster stout that doesn't use actual oysters in the brew. From their website:

\n\n
\n

Marston’s Oyster Stout is a dark, creamy, smooth, clean tasting English stout. It doesn’t contain oysters, just called Oyster Stout as this style of ale is a great complement to shell fish dishes.

\n
\n", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-02-25T14:29:38.243", "LastActivityDate": "2014-02-25T14:29:38.243", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"639"}} +{ "Id": "639", "PostTypeId": "1", "CreationDate": "2014-02-26T15:41:45.833", "Score": "1", "ViewCount": "68", "Body": "

I think the title is self explanatory, but I would like to add: does it make any difference letting it aging in a can or in a bottle?

\n", "OwnerUserId": "554", "LastActivityDate": "2014-02-26T15:41:45.833", "Title": "Should I leave a beer age before drinking it?", "Tags": "aging", "AnswerCount": "0", "CommentCount": "4", "ClosedDate": "2014-02-26T20:26:07.263", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"641"}} +{ "Id": "641", "PostTypeId": "2", "ParentId": "620", "CreationDate": "2014-02-27T16:06:26.330", "Score": "2", "Body": "

Given that your question asked about a \"pale pilsen\" the answer would be that this is in a way a pleonasm since Pilsner/Pils/Pilsen is a lager beer brewed with pale malt and therefore pale by definition. The only not so super pale Pilsner I've seen so far is the Imperial Pilsner \"Draft Bear\" by Mikkeller which still is quite pale and also a very lose interpretation of the style.

\n", "OwnerUserId": "566", "LastActivityDate": "2014-02-27T16:06:26.330", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"642"}} +{ "Id": "642", "PostTypeId": "2", "ParentId": "626", "CreationDate": "2014-02-27T16:17:06.477", "Score": "3", "Body": "

Directly not. Agitation won't change the properties of the beer enough as such. BUT... when pumping, it is harder to avoid oxygen/air being mixed into the wort/beer. Oxygen is very bad for the beer in most stages of the brewing process. So if you have a pumping system, it needs to be a good one that doesn't wirl air into the wort/beer.

\n\n

The only stage in the brewing process where you actually want as much oxygen/air as possible is when pitching the yeast. At every other stage you will get oxidation which is one of the top reasons for off flavours, stuck fermentations, etc.

\n", "OwnerUserId": "566", "LastActivityDate": "2014-02-27T16:17:06.477", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"643"}} +{ "Id": "643", "PostTypeId": "1", "CreationDate": "2014-02-27T21:03:21.777", "Score": "15", "ViewCount": "619", "Body": "

Almost all beers, especially lager beers I've had in ex-soviet countries have a slight honey taste to them. I'm sure this is not intentional. It could be due to Pentanedione but why in this region?

\n\n

Let me specify that I do not think that honey is used in the brewing process. I see the sickly sweet honey taste as an off-taste and I wonder how this could be explained in the case of a whole region having it.

\n\n

It turns up in regular lager beers as well as darker things. It also turns up in former soviet EU countries that are not very russian and have their beer tradition rather from germany.

\n\n

Examples:

\n\n
    \n
  • Almost all Saku beers (Estonia)
  • \n
  • Almost all A. Le Coq beers (Estonia)
  • \n
  • Švyturys Ekstra (Lithuania)
  • \n
  • Baltika (Russia)
  • \n
\n\n

And more...

\n", "OwnerUserId": "566", "LastEditorUserId": "566", "LastEditDate": "2014-03-11T12:19:29.957", "LastActivityDate": "2016-10-07T23:01:37.447", "Title": "Why do most beers from ex-soviet countries have a honey note?", "Tags": "taste", "AnswerCount": "2", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"644"}} +{ "Id": "644", "PostTypeId": "2", "ParentId": "633", "CreationDate": "2014-02-28T05:41:31.690", "Score": "6", "Body": "

I found a blog post where the author has (most thoroughly, in my opinion) gone in search of some primary source of evidence for the origins of the yard glass. Unfortunately, they seem to have turned up nothing definitive.

\n\n

On one point, the post is quite consistent: there isn't any real evidence to suggest that the story of the stagecoach or mailcoach driver drinking from the yard-glass is true.

\n\n

It mentions sources on the history of glassmakers:

\n\n
\n

The same absence of evidence occurs in specialist books on drinking glasses. The history of the Worshipful Company of Glass Sellers, published in 1898, has a drawing of the Eton “long glass”, but no coach drivers.

\n
\n\n

And also the history of coaches:

\n\n
\n

Specialist books on coach travel also fail to supply references to coach drivers and ale-yards.

\n
\n\n

The coach explanation appears to be wholly made-up:

\n\n
\n

The earliest reference to the coach driver legend I have found is from 1952

\n
\n\n

And, inferring from previous evidence provided by the author, this is almost a century after coach travel has been superseded by steam trains.

\n\n

The author also makes an interesting point; a coach driver was almost certainly not handed a yard of ale from the alehouse window, because the risk of breaking the glass (which would have been expensive) was too great!

\n\n

Most of the evidence of the post tends to suggest that the yard of ale was originally intended as a bit of a joke, and attempting to drink the whole thing without spilling a drop was a fun game to play.

\n\n
\n

When air reaches the bulb it displaces the liquor with a splash, startling the toper, and compelling him involuntarily to withdraw his mouth by the rush of the cold liquid over his face and dress.

\n
\n\n

To summarise, in one final quote from the most-excellent article:

\n\n
\n

But with all that, I hope you’ll agree, we have found no evidence that\n the yard of ale was originally “designed to meet the needs of\n stagecoach drivers” in a hurry. In fact, there is no evidence that the\n yard of ale was ever used to refresh coach drivers at all (and if it\n had been, it certainly wouldn’t have been handed up to the driver\n through an inn window, which would be an excellent way to either spill\n the ale or smash the glass). Instead, I think, it seems clear that the\n yard of ale was (1) produced as something of a show-off, for the\n glassmaker and the owner, and (2) primarily or almost solely supplied\n and bought as a “forfeit glass”, for use in drinking games and\n contests of skill, just as it is today.

\n
\n", "OwnerUserId": "85", "LastEditorUserId": "85", "LastEditDate": "2014-02-28T07:06:33.410", "LastActivityDate": "2014-02-28T07:06:33.410", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"646"}} +{ "Id": "646", "PostTypeId": "2", "ParentId": "643", "CreationDate": "2014-03-01T03:42:01.743", "Score": "6", "Body": "

First, let me state that I'm a 4th generation Italian American; I know nothing about Russian customs other than what I learned in a Russian history class (humanities requirement) a few semesters ago. With that said, I could probably shoot an email to the professor who I took the class with if you want more info, but I think my answer will suffice (but please let me know, he is a pretty cool guy).

\n\n

Anyway, I would presume it has something to do with Russian culture and the importance of honey in that part of the world. I remember when I was a kid (like 2nd grade I think), we read a collection of short, non-fiction stories of a Russian girl and her grandfather, who was a beekeeper. I cannot remember what the name of the book was nor the author nor whether or not the stories took before or during the Soviet era; but I do remember that honey played a really important role in most of the stories.

\n\n

Of course there is other more concrete evidence other than my childhood reading material. For instance, just take a look at Russian cuisine. They have a mead-like beverage called Medovukha, which is made with honey and yeast. It's apparently a traditional drink at weddings over there. Also, you've got Russian honey cakes and other food based items. Finally, honey is also a good preservative as it's antibacterial, so it was often mixed in with jams back in the day to preserve them.

\n\n

So I'd be surprised if many of the ex-soviet brewers didn't use honey as an additive to their beer. Especially if the beers you have in mind are bottle conditioned, they would need to add a sweetener of sorts for proper carbonation. I've used honey in two of my home brews and I like it.

\n\n
\n\n

Perhaps some substantiating points:

\n\n
    \n
  • Baltika Medovoe Light seems to be a popular \"first Russian beer\" to try. It's a pale lager with natural honey added.
  • \n
  • Indeed honey does seem to have played a central role in Russian culture.

    \n\n
    \n

    Like the Assumption, the three \"Saviors\" (Spas), August 1, 6, and 16, were associated with the fruits of the earth. The first was called the \"Honey\" (medovyi) or \"Wet Savior\" (mokryi Spas), signifying either the gathering of honey or the religious procession and blessing of the waters traditional for this day.

    \n
    \n\n

    Ivanits, L. \"Russian Folk Belief.\" [http://books.google.com].

    \n\n
    \n

    According to Russian historian Vasili Kliuchevskii (1841–1911), we must learn about the Russian forest, river and steppe in order to understand the Russian people. [...] \"The forest provided the Russian with oak and pine to build his house, it warmed him with aspen and birch, it lit his hut with birchwood splinters, it shod him in birch bast sandals, it gave him plates and dishes, clothed him in hides and furs and fed him honey. The forest was the best shelter from his enemies.\"

    \n
    \n\n

    Riordan, J. \"Russian Fairy Tales and Their Collectors.\" [http://books.google.com]

    \n\n

    It's notable how closely intertwined honey and their ideals of paradise were, as found by a search for the term \"honey\" in \"The Paradise Myth in Eighteenth-century Russia: Utopian Patterns in Early Secular Russian Literature and Culture\" (Baehr, S. L.).

  • \n
\n\n

So, though still conjecture, it may be so that Russian culture has had a higher demand for honey notes in their foods and beverages, naturally selecting those tastes.

\n\n

Frankly, it may simply be the case that there's not an objective (\"provable\") answer to this question.

\n", "OwnerUserId": "31", "LastEditorUserId": "73", "LastEditDate": "2014-03-10T13:12:11.530", "LastActivityDate": "2014-03-10T13:12:11.530", "CommentCount": "13", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"647"}} +{ "Id": "647", "PostTypeId": "1", "CreationDate": "2014-03-02T23:41:38.690", "Score": "6", "ViewCount": "63", "Body": "

We tried the amazing Coriolis IPA by New England Brewery during a trip to the USA. However, upon our return to the UK, we have been unable to find it anywhere.

\n\n

Long shot, but has anyone ever seen/found this beer in the UK?

\n\n

Thank you for the help!

\n", "OwnerUserId": "595", "LastActivityDate": "2014-03-04T20:50:55.653", "Title": "Where can I find a Coriolis IPA in the UK?", "Tags": "ipa", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"648"}} +{ "Id": "648", "PostTypeId": "2", "ParentId": "647", "CreationDate": "2014-03-04T20:50:55.653", "Score": "4", "Body": "

From their website, it looks like they only distribute around Connecticut. If you are really interested in pursuing it, acheong87's recommendation of finding someone to trade with may be your best bet.

\n", "OwnerUserId": "27", "LastActivityDate": "2014-03-04T20:50:55.653", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"649"}} +{ "Id": "649", "PostTypeId": "1", "AcceptedAnswerId": "650", "CreationDate": "2014-03-07T20:13:34.293", "Score": "15", "ViewCount": "585", "Body": "

I had a most-delicious, cherry-red beer last night that tasted like raspberries. It was tart, a little low in alcoholic content (4%), and tasted like no other beer I've had. It was intriguing enough that I think I'll go back for a growler today.

\n\n

The chalkboard said it was a 'lambic'. What exactly is a lambic? What are typical characteristics of one?

\n\n

I quite enjoyed it, but it seemed a little sweet. Is there a variety of lambic I should keep an eye out for that is dry, but still tart?

\n", "OwnerUserId": "75", "LastActivityDate": "2014-03-07T22:39:12.840", "Title": "What the heck is a lambic?", "Tags": "lambic", "AnswerCount": "1", "CommentCount": "1", "ClosedDate": "2014-03-11T16:18:33.267", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"650"}} +{ "Id": "650", "PostTypeId": "2", "ParentId": "649", "CreationDate": "2014-03-07T22:39:12.840", "Score": "13", "Body": "

For how lambics are made and what distinguishes them from other beers, see this Wikipedia article. To summarize, lambics are exposed to wild yeast (rather than the usual cultivated yeasts) and tend to have a dry, tart taste. These are not heavy-bodied beers, nor are they bitter. (Hops are used for their preservative effect, but old, dry hops are used to minimize the flavor impact.)

\n\n

Frequently, lambics (like the one you had) have fruit added later in fermentation. Common fruits for this include raspberry, peach, and cherry, and I've also encountered apple. The sweetness you're tasting probably comes from the fruit (and some of these varieties taste sweeter to me than others). If you'd like to try a lambic that doesn't have the fruit, which is likely to be less sweet, look for \"gueuze\".

\n", "OwnerUserId": "43", "LastActivityDate": "2014-03-07T22:39:12.840", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"651"}} +{ "Id": "651", "PostTypeId": "2", "ParentId": "633", "CreationDate": "2014-03-08T13:42:26.437", "Score": "1", "Body": "

The 'stage-coach driver' explanation seems to be an ex post facto explanation, almost certainly affected by the fact that a post-horn (sounded by mail-coach drivers to warn tollkeepers to open the gate so as not to delay the mails) was frequently (and genuinely) called a 'yard of tin'.

\n\n
\n

The habit of calling the coach-horn the \"yard of tin\" arose from the fact that it really was a yard, or thirty-six inches, of tin, many of the old horns on the inferior coaches being made of tin, and not of copper or brass.

\n
\n\n

-- Highways and Horses by Athol Maudslay, cited on the excellent if somewhat obsessive [and now apparently deceased] site www.coachhorntootlers.com

\n", "OwnerUserId": "618", "LastEditorUserId": "8506", "LastEditDate": "2019-04-04T08:48:39.320", "LastActivityDate": "2019-04-04T08:48:39.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"652"}} +{ "Id": "652", "PostTypeId": "2", "ParentId": "57", "CreationDate": "2014-03-08T14:23:32.953", "Score": "2", "Body": "

It's important enough that many British brewers modify the composition of their water to more closely mimic the mineral content of water drawn from wells near Burton upon Trent, where traditional styles are considered to originate from. This process is called Burtonisation. I've noticed for my part that some traditional bitters I've drunk have had a noticeable and not entirely pleasant aroma somewhat like old eggs, which I would guess is the sulphur content that is added in this process. I don't particularly care for beers that taste like this, but each to their own.

\n", "OwnerUserId": "157", "LastActivityDate": "2014-03-08T14:23:32.953", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"653"}} +{ "Id": "653", "PostTypeId": "2", "ParentId": "5", "CreationDate": "2014-03-08T14:30:01.790", "Score": "3", "Body": "

Personally as a rule of thumb I would allow my choice to be dictated by the level of carbonation in the beer. Temperature affects how rapidly carbon dioxide dissipates from the beer, so the more carbon dioxide it starts with, the colder I would serve it, in order to preserve it in its intended state for as long as possible.

\n\n

My personal taste would also entail a slightly cooler temperature for pale ale styles (lighter in colour and body and hoppier) and slightly warmer for brown ales, bitters, stouts and so on.

\n\n

I would also like to register my objection to the term 'warm' used for beer. I don't know of any drinking culture that really does encourage the warm serving of beer in any normal understanding of the word. 'Warm' really refers to cellar temperature rather than refrigerator or just-above-zero temperature. A similar temperature to that you'd expect in red wine would be appropriate for the 'warm' beers.

\n", "OwnerUserId": "157", "LastActivityDate": "2014-03-08T14:30:01.790", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"654"}} +{ "Id": "654", "PostTypeId": "1", "CreationDate": "2014-03-08T18:42:21.577", "Score": "15", "ViewCount": "175", "Body": "

I recently picked up a bunch of bottles of what seemed like interesting brews from Hitachino, because I was interested in exploring some Japanese beers. Unfortunately, the first two bottles I've opened now seem to have both been severely overcarbonated.

\n\n

We're talking foam overflowing out of the bottle once I open it. These bottles have not been exposed to significant agitation recently. They've been sitting on a shelf, upright as is proper, for days. Worse still, they don't just explode and make a mess, but they also simply taste severely overcarbonated. It's like drinking shaken seltzer water mixed with my beer, and it's decidedly unpleasant. At this point, the only thing I've been able to do is pour a glass, leave it out for an hour or three, and then drink it.

\n\n

Which is... impractical at best, and is only going to become less so as the weather warms up. Is there anything else I can do to mitigate this?

\n", "OwnerUserId": "8", "LastActivityDate": "2014-03-10T01:30:22.140", "Title": "Is there anything I can do short of leaving a glass out on the counter to mitigate overcarbonation?", "Tags": "serving freshness bottles carbonation", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"655"}} +{ "Id": "655", "PostTypeId": "1", "CreationDate": "2014-03-08T18:47:58.113", "Score": "10", "ViewCount": "129", "Body": "

I recently picked up a bunch of bottles of what seemed like interesting brews from Hitachino, because I was interested in exploring some Japanese beers. However, more than anything, I've found both to be severely overcarbonated. To the point of both making a mess, and being unpleasant to drink.

\n\n

Is this sort of over-the-top carbonation characteristic of Hitachino's beer (or Japanese beer in general)? Or is it more likely that the bottles (which I purchased all at once from a single retailer) were somehow compromised or spoiled in the process of being imported to the US? Or just spoiled by sitting on the shelf too long? None of the bottles are marked with any sort of freshness or sell-by date, so is this possibly some sort of spoilage I've just never encountered before?

\n", "OwnerUserId": "8", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2016-04-22T00:56:26.073", "Title": "Are Hitachino's beers characteristically really heavily carbonated?", "Tags": "freshness bottles carbonation", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"656"}} +{ "Id": "656", "PostTypeId": "2", "ParentId": "596", "CreationDate": "2014-03-09T01:38:12.700", "Score": "4", "Body": "

Depends what you mean with Belgian Triple. As I understand in the US it is used as a style name and it is base on the Westmalle Triple. You can see the style discription in the answer of Schleis. But if you want to know what to expect, try Westmalle Triple, it's a good (my preferred) benchmark.

\n\n

In Belgium it's not a style. It's merely a label to mark that more ingredient were used, comparatively with the other beers within the same brewery.\nA little history:\nThe ingredients to make beer were expensive in the middle ages, so the brewers tried to use as little as possible for there beer. There was however also an market for more tasteful, more expensive, beer. To differentiate between the brewed barrels they used X for the cheap bear, XX for the expensive one. Not saying that there were double the ingredients in it, just more. Later came also XXX. You can still find these X's on some labels these days.\nThe name Triple is a more recent appellation (1930's), but it is based on the same idea.\nA classic trio you find in Belgium, but with a lot of exceptions, is a blond(X), a brown (XX, double) and a strong blond ale (XXX, triple). These are relative references, within the brewery and like already mentioned, more ingredients, not doubling or tripling the amount of ingredients. Making the beers stronger in alcohol and taste.

\n\n

I guess you now also know what to expect with a quadruple...

\n", "OwnerUserId": "621", "LastActivityDate": "2014-03-09T01:38:12.700", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"657"}} +{ "Id": "657", "PostTypeId": "2", "ParentId": "654", "CreationDate": "2014-03-09T19:06:40.057", "Score": "10", "Body": "

You can decant the beer between two large glasses or pitchers - the agitation will cause the CO2 to come out of solution quickly and also not raise the temperature too much.

\n\n

Sample after 4-5 decants to see how much the carbonation has dropped, and repeat as necessary. You will end up with quite a bit of foam, hence the need for larger glasses or a pitcher.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-03-09T19:06:40.057", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"658"}} +{ "Id": "658", "PostTypeId": "1", "AcceptedAnswerId": "660", "CreationDate": "2014-03-10T01:18:59.313", "Score": "7", "ViewCount": "963", "Body": "

Is there a difference between Black Lager and Dark Lager, or is it just the name?

\n\n

Since the recipes for Dark/Black Lagers seem to be quite varied, it is hard to tell if there are any majorly different components.

\n", "OwnerUserId": "443", "LastActivityDate": "2014-03-10T01:51:23.220", "Title": "Difference between Dark Lager and Black Lager", "Tags": "style terminology lager", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"659"}} +{ "Id": "659", "PostTypeId": "2", "ParentId": "654", "CreationDate": "2014-03-10T01:30:22.140", "Score": "9", "Body": "

How long do you leave them in the fridge before you open them? Making sure they've had a good several hours to chill may mitigate the explosion. You could also try a homebrewer's trick, which is to chill them really cold, pop the caps all off then put new caps on. You would need a bottle capper to do this. They're fairly cheap but you probably wouldn't have them unless you were or knew a homebrewer.

\n\n

That said, your best course of action may actually be to contact Hitachino. Gushing bottles are often a sign of a wild yeast infection, so it's possible you may have just gotten some bad beer that got mishandled in shipping or something messed up on the bottling line and they missed it. They may replace the pack or at least give you some other cool stuff to make up for the mistake.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-03-10T01:30:22.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"660"}} +{ "Id": "660", "PostTypeId": "2", "ParentId": "658", "CreationDate": "2014-03-10T01:51:23.220", "Score": "6", "Body": "

It's likely just naming differences. Though the BJCP has distinct categories for \"Dark American Lager\" and \"Schwarzbier (Black Beer)\". The main difference seems to be that Dark lager is sweeter and more towards caramel malt than Black which is more dry and slightly roasty.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-03-10T01:51:23.220", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"661"}} +{ "Id": "661", "PostTypeId": "1", "AcceptedAnswerId": "663", "CreationDate": "2014-03-10T03:28:10.593", "Score": "14", "ViewCount": "211", "Body": "

In researching beer as it relates to the Jewish dietary laws, I came across this page, which states that most unflavoured beers are OK. Even imported beers are given a wary thumbs up, however the page repeats a curious warning that

\n\n
\n

Beer from New Zealand must be presumed Dairy unless stated otherwise.

\n
\n\n

What's special about New Zealand beer that we would assume that it contained dairy or dairy by-products by default, but imports from other countries do not?

\n", "OwnerUserId": "85", "LastEditorUserId": "5078", "LastEditDate": "2016-05-27T13:44:33.280", "LastActivityDate": "2016-05-27T13:44:33.280", "Title": "Why would we presume a New Zealand beer contains dairy?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"663"}} +{ "Id": "663", "PostTypeId": "2", "ParentId": "661", "CreationDate": "2014-03-11T14:02:53.417", "Score": "13", "Body": "

I asked a rabbi at the KAA and he said that the ruling was because in NZ ethanol is produced from whey and there was concern about that ethanol being used to fortify beers. However, they have now determined that no major NZ breweries fortify their beer in that way, so they now consider NZ beer to be pareve (neutral, neither dairy nor meat). See more here.

\n\n

The KAA page notes that major import brands (but not boutique breweries) that contain no additives are kosher/pareve even without certification (other than NZ, as previously discussed). This must mean that NZ is unique in either using whey to produce ethanol or using ethanol to fortify beer, but I don't know which and didn't pursue that question with KAA.

\n", "OwnerUserId": "43", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:42:08.313", "LastActivityDate": "2014-03-11T14:02:53.417", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"664"}} +{ "Id": "664", "PostTypeId": "2", "ParentId": "57", "CreationDate": "2014-03-14T01:20:09.540", "Score": "-1", "Body": "

Water is the primary ingredient in beer. In my opinion, the water quality is more important than anything else. I believe in drinking beer for health, and as I don't drink dirty municipal water, why would I drink beer from it?

\n\n

Just think about city water from a second. Much of it comes from the same river that the sewage is dumped in. Just because the stink has been taken out of it with carbon filters, does that make it tasty to you?

\n\n

Also, I don't believe in drinking sodium fluoride. No rat poison in my beer, thank you. I don't care how many people say that it's in there for your smile.

\n\n

When I buy commercial beer, my primary criteria is the water. If it is fluoridated, no thanks. If it is spring water, super thanks! Spring water is natural and it has natural minerals built in. Also, you will notice that the finest beers have spring water. See BFM of Switzerland and Samuel Smith of England.

\n", "OwnerUserId": "642", "LastActivityDate": "2014-03-14T01:20:09.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"665"}} +{ "Id": "665", "PostTypeId": "1", "CreationDate": "2014-03-15T03:07:13.767", "Score": "11", "ViewCount": "1967", "Body": "

I'm headed up to Boston next weekend for an event, and was planning to take up a few empty (or maybe full!) growlers to fill with interesting and delicious things from some of the local breweries up in the area. However, I've heard that MA has some fairly restrictive laws regarding fills (i.e., that breweries are not able to fill growlers other than those with their own logo/which they themselves distribute). This is baffling and monstrous to me coming from NY, where just about anyplace that's willing to can fill just about any appropriately sized bottle I bring up to the tap with me.

\n\n

What exactly are the rules regarding growler refills in Massachusetts? Do they differ if I am looking to get a fill at a bar or retail store, rather than direct from a brewery? Are there size restrictions?

\n", "OwnerUserId": "8", "LastActivityDate": "2014-03-18T14:44:45.550", "Title": "What are the specific laws regarding growler fills in Massachusetts?", "Tags": "laws growlers", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"666"}} +{ "Id": "666", "PostTypeId": "1", "AcceptedAnswerId": "667", "CreationDate": "2014-03-16T16:26:34.573", "Score": "44", "ViewCount": "21571", "Body": "

Not sure if this is on topic! Could be interesting though. Feel free to flag/VTC if you disagree.

\n\n

I'm looking to build an app that has to do with beer. It occurred to me that ratings/information/any beer-related API could be useful. Both BeerAdvocate and RateBeer seem to have no officially available API.

\n\n

Are there any beer-related sites or resources with an open API?

\n", "OwnerUserId": "75", "LastActivityDate": "2017-08-21T20:44:02.697", "Title": "Where can I find open APIs about beer?", "Tags": "breweries", "AnswerCount": "3", "CommentCount": "2", "FavoriteCount": "18", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"667"}} +{ "Id": "667", "PostTypeId": "2", "ParentId": "666", "CreationDate": "2014-03-16T22:45:45.853", "Score": "39", "Body": "

There are a number of beer-related APIs available. RateBeer does have a JSON API, but it's apparently currently unavailable and I don't know if they intend on making it available again or not.

\n\n

Here are several that I've found:

\n\n
    \n
  1. Brewery DB has an API that can return JSON, XML, or PHP, and from their API documentation, it appear that they have quite a bit of info available about both breweries and beers.

  2. \n
  3. Open Beer Database is a beer API, but it appears that it's still under development and may be unstable, so YMMV.

  4. \n
  5. The Beer Spot offers an API that includes some social aspects, such as what people are drinking, and ratings, but not as much in the way of rich data about the beers themselves.

  6. \n
  7. Untappd is another social/beer app that offers an API, but you need an account on the site to view the documentation and they seem to be a bit more strict in that they have to actually review and approve your app idea before they'll give you an API key.

  8. \n
  9. Open Food Facts while not limited to beers, has 1500 of them and an API with barcodes, nutrition, ingredients… It's fully opendata and collaborative, meaning you can upload new beers from their mobile apps.

  10. \n
\n\n

There are others, but those are a few of the most common and/or promising from what I've seen.

\n", "OwnerUserId": "37", "LastEditorUserId": "7038", "LastEditDate": "2017-08-21T20:44:02.697", "LastActivityDate": "2017-08-21T20:44:02.697", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"668"}} +{ "Id": "668", "PostTypeId": "1", "AcceptedAnswerId": "669", "CreationDate": "2014-03-17T21:26:22.267", "Score": "4", "ViewCount": "164", "Body": "

When walking through a brewery supply store, you will see a variety of yeasts.

\n\n

Likewise, you can find a variety of yeasts when walking through a grocery store.

\n\n

What \"happens\" if you use the 'wrong kind' of yeast when brewing? How much of a beer's flavor / texture / body / etc is derived from the yeast vs all other ingredients?

\n", "OwnerUserId": "49", "LastActivityDate": "2014-03-17T22:09:35.913", "Title": "What are the drawback of not using \"brewer's yeast\" when brewing beer?", "Tags": "brewing yeast", "AnswerCount": "1", "CommentCount": "6", "ClosedDate": "2014-03-18T08:42:38.440", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"669"}} +{ "Id": "669", "PostTypeId": "2", "ParentId": "668", "CreationDate": "2014-03-17T22:09:35.913", "Score": "3", "Body": "

Short answer; you get a lot of the flavour from the yeast, you can get a fairly big difference by varying the yeast in your recipe.

\n\n

For example, a Saison and a Pale ale have similar ingredients, but taste quite different, a Saison yeast imparts a considerable amount of flavour... likewise if you use a lager yeast, and properly lager your beer, you can get a different flavour again, without modifying any other part of your recipe.

\n\n

Lots of discussion on HomeBrewTalk forums, and other places. For a fun experiment, brew split batches and try two different yeasts to compare!

\n", "OwnerUserId": "647", "LastActivityDate": "2014-03-17T22:09:35.913", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"670"}} +{ "Id": "670", "PostTypeId": "2", "ParentId": "665", "CreationDate": "2014-03-17T23:14:03.750", "Score": "-5", "Body": "

This outlines the basic laws for all states. http://www.brewersassociation.org/pages/government-affairs/growler-laws

\n\n

Growlers permitted under manufacturer license: Yes
\nGrowlers permitted under brewpub license: Yes
\nGrowlers permitted under retailer license: Yes
\nSpecific \"growler\" language in statute: No

\n\n

There is a link to the actual laws in Massachusetts on the this page too

\n\n

And since some people can't follow links, I'll do the research for them so they have the answers to their questions. First when looking for answers to legal questions ask a lawyer not random people on the Internet.

\n\n

\"(i.e., that breweries are not able to fill growlers other than those with their own logo/which they themselves distribute)\"

\n\n

Reading the laws and talking to some people the answer is yes you have to purchase the growler from the brewery.

\n", "OwnerUserId": "529", "LastEditorUserId": "529", "LastEditDate": "2014-03-18T00:49:52.813", "LastActivityDate": "2014-03-18T00:49:52.813", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"671"}} +{ "Id": "671", "PostTypeId": "2", "ParentId": "665", "CreationDate": "2014-03-18T14:44:45.550", "Score": "7", "Body": "

It appears that there may be several laws in play here, but perhaps the interpretation of those laws by the Massachusetts Alcoholic Beverages Control Commission, the brewers, and the Mass Brewers Guild that determine how growler fills work in practice.

\n\n

The first law in question is the regulation on labeling. Nothing in there appears to prevent brewers from filling any growler, but the standard interpretation from both the ABCC and the brewers is that they believe it makes it illegal for them to fill any growlers other than their own, and that is the policy by which they seem to all operate.

\n\n

As for retail establishments, there do seem to be some non-brewery bars that offer growlers, (see Ducali Pizzeria and Bar on this list) but those may be for on-premise use. There was a proposal for a bill to allow on-premise / off-premise licensees to do growler fills but as far as I can tell, it died in committee, primarily due to strong opposition from craft brewers who were worried it would cut into their bottle profits.

\n\n
\n

Beyond issues of distribution, the joint legislative committee also heard from industry members interested in allowing both on- and off-premise retailers to fill beer containers up to 64 ounces for take-away and off-site consumption. The bill, sponsored by Representative William Pignatelli, has caused some division in the industry between retailers and small brewers. “We think it would be a disaster for our business by cannibalizing our bottle sales, our only real income source,” says one small Massachusetts brewer. “We for one couldn't thrive in a situation where the profit on bottled beer transfers from brewery to store or bar.”

\n
\n\n

Source: http://www.beveragebusiness.com/archives/article.php?cid=1&eid=88&aid=2031

\n", "OwnerUserId": "37", "LastActivityDate": "2014-03-18T14:44:45.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"672"}} +{ "Id": "672", "PostTypeId": "1", "AcceptedAnswerId": "673", "CreationDate": "2014-03-18T15:06:14.583", "Score": "9", "ViewCount": "295", "Body": "

Is this practiced commercially? I'm not sure if it would scale very well, because I understand that the technique takes a long time even for a home brew batch.

\n\n

If so, what beers are brewed using this technique and why? Is it specific types of beer, or specific brewers, perhaps going for the \"organic\" angle?

\n", "OwnerUserId": "85", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2015-07-20T14:23:33.030", "Title": "What Beers are Brewed with Wild Yeast?", "Tags": "brewing yeast", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"673"}} +{ "Id": "673", "PostTypeId": "2", "ParentId": "672", "CreationDate": "2014-03-18T17:49:49.470", "Score": "10", "Body": "

Belgian Lambics are probably the most notable beers brewed with wild yeast. They are fermented in open vats, and wild yeast strains specific to the area contribute a very distinctive flavor to these beers. Lindeman's is probably the best known commerical example in the US, although these beers are sweetened and are not usually considered a true example of the style.

\n\n

There are strains of wild yeast that have been cultivated for commercial use such as Brettanomyces. Breweries use this yeast to produce sour flavors via lactic acid production. Brewers will use it both in primary fermentation, and by aging their beer in barrels that have been \"infected\" with it.

\n", "OwnerUserId": "656", "LastActivityDate": "2014-03-18T17:49:49.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"674"}} +{ "Id": "674", "PostTypeId": "2", "ParentId": "596", "CreationDate": "2014-03-19T14:11:13.747", "Score": "4", "Body": "

As a Belgian chap, I obviously love our beer :). More specific, my favorite beers are always tripel beers.\nThe thing about tripel beers is that the fermentation is achieved further in the bottle.

\n\n

In general I can tell you all tripel beers are always pretty blonde looking (maybe slightly darker) and doubles are always darker (like really brown!).\nIn Belgium, we would call a double beer a dark beer (Double Leffe we would call: Donkere Leffe or Dark Leffe in English).

\n\n

The taste of double beers will always be sweeter while tripel beers are far more bitter.\nI don't like those sweet drinks so I very much prefer tripel beers.\nHowever, all tripel beers are different from each other so there is not a real way of describing them. In general bitter, but there are sweeter tripels as well...

\n\n

The difference in taste between blonde and tripel beers in general is that tripel beers have far more flavors (= more expensive) than blonde beers. The sad thing is that blonde beers are very popular and I don't even know why... Tripel beers have way more flavors :).

\n\n

As a side note, my favorite beers are: Tripel Karmeliet and Tripel Kasteelbier.\nThe more poular (blonde) beers are Duvel and Leffe for example. Both in my opinion hugely overrated beers.

\n", "OwnerUserId": "662", "LastEditorUserId": "73", "LastEditDate": "2014-03-20T06:05:20.847", "LastActivityDate": "2014-03-20T06:05:20.847", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"675"}} +{ "Id": "675", "PostTypeId": "1", "AcceptedAnswerId": "676", "CreationDate": "2014-03-19T15:30:22.927", "Score": "12", "ViewCount": "3321", "Body": "

I remember the first hefeweizen I had. It was made by Widmer, and I didn't like it. The second time I tried it, I noticed there were pouring instructions on the box/bottle.

\n\n

The instructions said to pour two thirds of the beer in to a glass, swirl, then pour the remainder. They even have an official YouTube video on it. I gave it a try, and maybe it was my imagination, but it tasted surprisingly different. I liked it.

\n\n

What does rolling/swirling a hefeweizen actually do?

\n", "OwnerUserId": "75", "LastActivityDate": "2014-03-19T15:41:25.937", "Title": "What does rolling/swirling a hefeweizen actually do?", "Tags": "pouring yeast hefeweizen", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"676"}} +{ "Id": "676", "PostTypeId": "2", "ParentId": "675", "CreationDate": "2014-03-19T15:41:25.937", "Score": "9", "Body": "

A proper hefeweizen is an unfiltered beer. The yeast and other sediment that would be filtered out for other brews is left in. These particles tend to accumulate on the bottom of the bottle during storage.

\n\n

By swirling the the beer in the bottle you're suspending that yeast and sediment so it can be poured into your glass. This is what gives hefeweizens their fruity (banana?) flavor.

\n", "OwnerUserId": "39", "LastActivityDate": "2014-03-19T15:41:25.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"680"}} +{ "Id": "680", "PostTypeId": "1", "AcceptedAnswerId": "682", "CreationDate": "2014-03-21T10:27:52.430", "Score": "25", "ViewCount": "6005", "Body": "

I've always wondered what the strongest beer in the world is and how would taste.

\n\n

Are there reliable historical records of a very strong beer? What would be the highest % alcohol that's Brewable for a beer? And also of course it would be great to know where to get such a beer from.

\n", "OwnerUserId": "669", "LastActivityDate": "2016-10-05T18:53:37.933", "Title": "What is the strongest beer?", "Tags": "brewing taste history alcohol-level", "AnswerCount": "7", "CommentCount": "5", "FavoriteCount": "9", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"681"}} +{ "Id": "681", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-21T11:35:15.813", "Score": "2", "Body": "

This might be a duplicate question, but since as far as I know beer uses fermentation and no distillation, I expect the maximum alcohol level to be around the same maximum as for wine, which I believe is somewhere around the 13% to 15% level (by volume) as this is the level around which micro organisms seem to die.

\n\n

I know some beers in the 10% to 12% range, like the Dutch het Kanon (\"the canon\") by Grolsch at 11.6% and Grand Prestige by Hertog Jan at 10%, both of which I like. They have a bit of a sweet caramel-like flavour, but I'm not sure if that related to the amount of alcohol in any way.

\n", "OwnerUserId": "672", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-03-21T11:35:15.813", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"682"}} +{ "Id": "682", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-21T11:46:02.637", "Score": "22", "Body": "

There are strains of Saccharomyces Cerevisiae (brewer's yeast) such as WLP099 - Super High Gravity Ale Yeast that reportedly can tolerate up to 25% alcohol by volume.

\n\n

The world's strongest beer is Snake Venom coming in at a colossal 67.5% abv. Sources cite it as freeze-distilled, where the beer is frozen and the ice (pure water) is drawn off, leaving a more concentrated beer behind. Although, comments in the same link cast doubt upon if the beer is truly the abv claimed.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-03-21T11:46:02.637", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"683"}} +{ "Id": "683", "PostTypeId": "2", "ParentId": "643", "CreationDate": "2014-03-21T11:57:04.920", "Score": "-2", "Body": "

There was a national drink called \"Medovukha\" (Med - honey).

\n\n

Nowadays it is very rare drink, meaning that few people consume it. The drink has almost same properties and is brewed just like beer. So, I suppose, this drink has influenced Russian tastes. And during soviet times Russia have shared this tastes around all Soviet block. \nBy the way, I'm sure not all beers have honey flavour, however almost every brewery makes as well honey flavoured beer.

\n", "OwnerUserId": "673", "LastEditorUserId": "5064", "LastEditDate": "2016-10-07T23:01:37.447", "LastActivityDate": "2016-10-07T23:01:37.447", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"684"}} +{ "Id": "684", "PostTypeId": "1", "AcceptedAnswerId": "832", "CreationDate": "2014-03-21T12:21:51.350", "Score": "8", "ViewCount": "941", "Body": "

I know, that there are many threads on what you can cook with beer as an ingredient.

\n\n

But: I recognized that all of them include some sort of meat or fish and I eat neither.

\n\n

So what am I asking you:

\n\n

Do you have some ideas on how to use the possibly greatest liquid of all times to cook some awesome (vegetarian or vegan) dishes?

\n\n

To start I think I found a nice beer-pumpkin soup which ingredients are, besides the obvious beer and pumpkin, butter, onions, vinegar, cream and cress.

\n\n

EDIT :

\n\n

To be more clear. I ask you to name me something that you have tried and that you would recommend.

\n", "OwnerUserId": "141", "LastEditorUserId": "141", "LastEditDate": "2014-03-21T13:36:40.460", "LastActivityDate": "2016-10-08T15:02:49.947", "Title": "Cooking with beer for a vegetarian", "Tags": "cooking", "AnswerCount": "7", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"685"}} +{ "Id": "685", "PostTypeId": "1", "AcceptedAnswerId": "693", "CreationDate": "2014-03-21T12:22:27.213", "Score": "13", "ViewCount": "473", "Body": "

I'm pleasantly surprised to find a small selection of Trappist beers for sale at a venue in Inner City Brisbane, Australia.

\n\n

A quick look at the Chimay website (one of the beers available) shows a map explaining that you can get a Chimay pretty much anywhere. This map doesn't even include Australia, so I assume it's more widely available than they claim.

\n\n

Now, all the branding explains how the beer is brewed in a traditional Trappist abbey, under the supervision of the monks, which is congruent to my understanding of how Trappist brewers operate.

\n\n

So how does one Abbey produce enough beer to be able to sell it not only all over Europe, but on the other side of the world in seemingly mainstream quantities?

\n", "OwnerUserId": "85", "LastActivityDate": "2014-04-08T22:36:15.520", "Title": "How do Trappists Brew so much?", "Tags": "brewing trappist", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"686"}} +{ "Id": "686", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-21T12:27:55.857", "Score": "6", "Body": "

Brewdog's The End of History, at 55% is currently the world's strongest beer.

\n\n

Take a look at the Brewdog Blog.

\n\n

\"enter

\n", "OwnerUserId": "674", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T16:51:10.450", "LastActivityDate": "2016-10-05T16:51:10.450", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"687"}} +{ "Id": "687", "PostTypeId": "2", "ParentId": "685", "CreationDate": "2014-03-21T13:10:05.520", "Score": "4", "Body": "

I am not sure about this but as it occurs to me, through the years these abbey breweries got larger and get operated with more efficiency and more modern equipment (I guess!!).\nWhat I do know however: Chimay is one of the largest Trappist brewers so it's not that weird that it's widely available. With hundreds (thousands!) of beers in Belgium, Chimay is a popular beer, but far from the most popular. I think that's the reason why they can sell a lot abroad.\nAlso a fact, beers like Westvleteren (that won a lot of prizes) are even in Belgium (where it is brewed) pretty rare and hard to get. Basically you have to go to the Abbey yourself to get some beer. If you're there, you only get ONE crate (6 beers) per person. I was lucky enough to visit Westvleteren a while ago and found out that in the nearby cafe you also could buy one crate per person, however there were only about 100 crates available that day and only one type was available. You can drink all types though by ordering it to drink in the café (3 types).\nIf you would ever want to taste Westvleteren but cannot find it, Sint-Bernardus Abt 12 is a very similar beer. I've heard that it is brewn exactly the same way but with some slight differences.

\n", "OwnerUserId": "662", "LastActivityDate": "2014-03-21T13:10:05.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"688"}} +{ "Id": "688", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-21T13:10:58.293", "Score": "0", "Body": "

The strongest beer I know - made without distillation - is a Belgian beer called Bush Prestige, with 13%.\nSource and description of taste: Dubuisson

\n", "OwnerUserId": "676", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T16:47:35.377", "LastActivityDate": "2016-10-05T16:47:35.377", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"689"}} +{ "Id": "689", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-03-21T13:18:11.860", "Score": "2", "Body": "

Since I can't comment yet, I need to use this answer box...

\n\n

I guess you could just create the exact same dish and leave out the meat or replace it by those vegetarian replacements (quorn etc.).\nI can imagine a beer stew would be epic without the meat but with more vegetables.

\n\n

I quickly looked up one of our Belgian dishes in a vegetarian way, more specific: stoverij

\n\n

Stoverij translated would be \"stewed things\" or something like that.

\n\n

Here is the original recipe (in Dutch).\nTry to translate it through Google translate. If you have troubles, I could help I guess.

\n\n

The old tradition is to use a sandwich with mustard and high quality beer, you'll read that :).

\n", "OwnerUserId": "662", "LastActivityDate": "2014-03-21T13:18:11.860", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"690"}} +{ "Id": "690", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-21T13:26:08.803", "Score": "13", "Body": "

There has been a bit of a battle recently, with Brewdog and Schorschbräu constantly topping each other's efforts: BrewDog Blog.

\n\n

Currently it's a Schorschbräu Schorschbock 57% finis coronat opus, which comes in at 57.7%, beating Brewdog's latest effort: Schorschbräu Schorschbock 57% finis coronat opus.

\n\n

I'd say the strongest commercially viable option (these 50% beers only ever have a few bottles in the batch and cost a silly amount) in the UK anyway, is Watt Dickie, also by Brewdog, which comes in at 35.0%: BrewDog UK.

\n\n

EDIT:

\n\n

Oops, I didn't know about Snake Venom, 67.5%: Brewmeister Beer.

\n", "OwnerUserId": "608", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T18:53:37.933", "LastActivityDate": "2016-10-05T18:53:37.933", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"691"}} +{ "Id": "691", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-21T19:13:27.717", "Score": "4", "Body": "

I suppose it depends on how one defines beer. Following the German Reinheitsgebot, beer may contain only 4 ingredients:

\n\n
    \n
  1. Water
  2. \n
  3. Yeast
  4. \n
  5. Hops
  6. \n
  7. Barly malt
  8. \n
\n\n

Beverages which do not adhere to these restrictions may not be labeled as beer in Germany, and several other countries.

\n\n

To my knowlege, the strongest beer of kind is Schorschbock 57, an ice-distilled doppelbock with 57,5% alcohol content.

\n", "OwnerUserId": "685", "LastActivityDate": "2014-03-21T19:13:27.717", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"692"}} +{ "Id": "692", "PostTypeId": "2", "ParentId": "680", "CreationDate": "2014-03-22T07:01:40.240", "Score": "1", "Body": "

It depends on your definition, commercially available is Kwak, around the same as wine, if you go to the Grand Place it comes in those horse & cart designed bulbous glasses (like a mini yard of ale). Once you go above that the others are all pretty specialist.

\n", "OwnerUserId": "689", "LastActivityDate": "2014-03-22T07:01:40.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"693"}} +{ "Id": "693", "PostTypeId": "2", "ParentId": "685", "CreationDate": "2014-03-25T00:14:44.537", "Score": "8", "Body": "

Wikipedia's article leads to several sources that substantiate what @ValentinGregoire preempted. For example, Chimay put up a series of short video clips that take us through surprisingly up-to-date facilities capable of bottling up to 40,000 bottles a day! (Probably it's just my own prejudices—associating monks and monasteries with old times, thus old technologies—causing surprise in my case.) With many other competing beers, and demand checked by relatively higher prices, the abbey alone suffices.

\n\n

The volume produced, according to this 2012 article, is 120,000 hectoliters of beer annually, or 16,000,000 bottles (750 mL) of beer. To put this in some perspective, according to this 2008 article St. Bernardus at the time was exporting to 20 countries and producing 13,000 hectoliters (considerably lesser than Chimay) annually. And as @ValentinGregoire started saying, Westvleteren is difficult to find because the monks of the abbey of Saint Sixtus decided not to increase production despite the beer's popularity, and thus produce only 4,800 hectoliters according to a 2005 publication.

\n\n

For me, it's hard to grasp such large numbers in any meaningful way. I looked up Stella Artois' production figures (and not because it's Belgian—it was just the first popular, global beer to come to mind), and found that in 2012 they produced a little over 10,000,000 hectoliters that year. Divide that by Chimay's 120,000 hectoliters per annum. Can I believe that 83 units of Stella are being consumed for every 1 equivalent unit of Chimay? Meant only as a sanity check and not any rigorous argument, it checks out as believable to me—after all, Stella's on draught all over the U.S. (I can't speak for other countries but I'm sure everywhere else too).

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2014-03-25T16:51:07.600", "LastActivityDate": "2014-03-25T16:51:07.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"694"}} +{ "Id": "694", "PostTypeId": "1", "AcceptedAnswerId": "696", "CreationDate": "2014-03-26T03:03:24.633", "Score": "11", "ViewCount": "7559", "Body": "

I was recently at a local craft beer festival and I tried a few shandies (my favorite was Time Traveler) and now I'm starting to get into them as well. But I've heard mixed things about their history. Some people say it goes back hundreds of years and others say it's a much more recent phenomenon.

\n\n

With that said, why do they have such a bad reputation? They always seem to score low on beeradvocate and ratebeer. To me it seems as though people are rating them as beers rather than what they actually are, shandies.

\n", "OwnerUserId": "31", "LastEditorUserId": "187", "LastEditDate": "2014-03-26T23:42:29.427", "LastActivityDate": "2017-04-02T15:40:19.280", "Title": "When and where did shandies first become popular and why do they get such a bad reputation?", "Tags": "history shandy", "AnswerCount": "2", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"695"}} +{ "Id": "695", "PostTypeId": "2", "ParentId": "666", "CreationDate": "2014-03-26T03:13:19.363", "Score": "7", "Body": "

I would like to add the Beer Mapping API as well. I really don't know much about any of this but when I read the question I thought it was such a cool concept! Definitely worth looking around a litle bit.

\n", "OwnerUserId": "707", "LastActivityDate": "2014-03-26T03:13:19.363", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"696"}} +{ "Id": "696", "PostTypeId": "2", "ParentId": "694", "CreationDate": "2014-03-27T19:47:31.307", "Score": "6", "Body": "

From what I understand, Shandies as we see them now are more similar to the German Radler. Radler means cyclist in German. The way I understand the story is that a small pub owner was besieged one day by a slew of thirsty cyclists and knew that his beer supply wouldn't hold out, so he cut it by mixing it with some sort of lemon drink he had on hand. As far as I know this origin story isn't confirmed and Radler likely grew out of folk attempts to \"sessionize\" and extend the supply of leftover lager through the summer when lower alcohol and more refreshing drinks were wanted. According to wikipedia the first printed mention of Radler as a drink was in 1912: Lena Christ: Erinnerungen einer Überflüssigen - Kapitel 20. I believe contemporary Radlers use a lemon-soda sort of drink that's more like a carbonated lemonade than what we'd think of as soda.

\n\n

Shandy itself is short for Shandygaff which is a British English term from the mid-1800s referring to beer cut with ginger beer or ginger ale. In fact, the OED still defines it as such while Mariam-Webster has loosened it up and allows for any non-alcoholic drink to be used in place of ginger.

\n\n

As to their reputation, if you'll forgive me a little supposition, most commercial shandies are very pale duplications of mixing lemonade (or lemon soda) with a beer yourself. The first commercial example I saw was Lienenkugel's and it was abusively sweet. Sam Adams and The Traveler have fared a little better, but I think a major problem is that to commercially produce a shandy you need to heavily filter and pasteurize the beer and lemonade to make sure the sugar doesn't ferment or use a non-fermentable sugar, which would change the taste from fresh beer and fresh lemonade. At the scale a lot of breweries operate at, it possible some of them aren't even using real lemonade regardless of sugar type. Also, while continuously popular in Europe, beer cocktails never caught on or were lost in America and we tend to think of them now as marketing gimmicks by macro-brewers (Bud Light Lime, Bud Chelada, Miller Chill), though as they become more visible, I think they'll become more accepted.

\n\n

That said, fresh shandy is incredible, I like using wheat beer.

\n", "OwnerUserId": "268", "LastEditorUserId": "5064", "LastEditDate": "2017-04-02T15:40:19.280", "LastActivityDate": "2017-04-02T15:40:19.280", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"697"}} +{ "Id": "697", "PostTypeId": "1", "AcceptedAnswerId": "707", "CreationDate": "2014-03-29T14:57:04.520", "Score": "10", "ViewCount": "1190", "Body": "

White beer (\"witbier\" in Dutch) is a typical Dutch/Belgian thing, from research I found that it's wheat bear with flavours. This question is about the coriander flavour used in those beers.

\n\n

The question is about the wheat bear siblings of white beer: Hefeweizen. Are there any hefeweizen that also are coriander-flavoured? To add a more subjective bonus question: are any of those commercially available?

\n\n

I've tried Googling, this mainly seems to lead to brewing recipes or extremely localized experiments. I've assumed (perhaps incorrectly) most if not all German candidates would be bound by the Reinheitsgebot and as such will not contain coriander. Finally, I've checked some Dutch beers (e.g. \"Grolsch Weizen\") marketed as \"weizen\" and the listed ingredients, but so far no dice.

\n\n

To reiterate the question: are there any hefeweizen beers with coriander commercially available?

\n", "OwnerUserId": "412", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-04-09T05:36:17.313", "Title": "Are there Hefeweizen beers with coriander?", "Tags": "ingredients hefeweizen", "AnswerCount": "2", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"698"}} +{ "Id": "698", "PostTypeId": "1", "AcceptedAnswerId": "701", "CreationDate": "2014-03-30T23:59:03.780", "Score": "9", "ViewCount": "513", "Body": "

I had Sam Adams Infinium first back in the fall of 2011. It was promoted to beer club members by my local distributor as being a first-come first-serve limited batch with a restriction on the number of bottles sold per customer. It was, and still is to this date, the best beer I had ever had.\nSince then I have not seen it anywhere, and their site gives no information as to when it will be back.

\n\n

I'm curious if anyone knows anything about the availability changing, or when it will be out next.

\n", "OwnerUserId": "718", "LastActivityDate": "2021-03-17T20:03:48.067", "Title": "Why isn't Sam Adams Infinium being produced anymore?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"699"}} +{ "Id": "699", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2014-03-31T11:01:40.217", "Score": "3", "Body": "

There is whole style of beer, which is made with honey. It is made by adding honey to the wort during or before fermentation. Thanks to addition of honey in early stages you get balanced, homogeneous taste. Nothing to add that honey will ferment along with malt.

\n\n

Technically you can add anything to beer when it is ready (including honey), but then you get this aggressive flavor on top.

\n", "OwnerUserId": "720", "LastActivityDate": "2014-03-31T11:01:40.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"700"}} +{ "Id": "700", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-03-31T11:24:53.163", "Score": "1", "Body": "

In my country drink made of mulled beer (usually with some spices) mixed with egg yolks beaten with sugar is quite popular. It is kind of thing you prepare when you are ill. As dessert it is considered \"controversial\") But you can try, some people really like it.

\n\n

Maybe I should add that it is rather hard to make, because you need right temperature of a liquid, so that mixture thickens but yolks do not coagulate.

\n", "OwnerUserId": "720", "LastActivityDate": "2014-03-31T11:24:53.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"701"}} +{ "Id": "701", "PostTypeId": "2", "ParentId": "698", "CreationDate": "2014-03-31T14:28:28.143", "Score": "7", "Body": "

I got a response from the Samuel Adams Twitter account:

\n\n
\n

We brew around 60 different styles a year - sometimes we have to retire some brews to make room for new ones.

\n
\n\n

So it seems as if this beer is out of production. For good.

\n", "OwnerUserId": "85", "LastActivityDate": "2014-03-31T14:28:28.143", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"702"}} +{ "Id": "702", "PostTypeId": "1", "AcceptedAnswerId": "893", "CreationDate": "2014-04-01T09:51:29.510", "Score": "18", "ViewCount": "8978", "Body": "

It seems that Ginger Beer has no barley, no hops, no wort, no malted anything; so why is it a \"beer\"? Seems like it is closer to a cider.

\n", "OwnerUserId": "723", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:48:24.563", "LastActivityDate": "2016-07-28T14:48:24.563", "Title": "Why is it a Ginger \"Beer\" and not a Ginger \"Cider\"?", "Tags": "history flavor terminology additives", "AnswerCount": "4", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"703"}} +{ "Id": "703", "PostTypeId": "2", "ParentId": "5", "CreationDate": "2014-04-03T13:53:06.250", "Score": "4", "Body": "

As stated earlier, temperature is a matter of taste regarding beer. Necessity may also play a part (Given a choice between a warm beer vs no beer it depends how thirsty you are!).
\nGerman-style lagers are almost exclusively recommended to be served no lower than 6°C (43°F)no higher than 9°C (49°F), but I often find that the last (and warmest) mouthfuls from a glass actually have the most flavour - but I would always start with the lager cold when possible.

\n\n

Real ales are a different story. On the continent of Europe there still seems to be a myth that British drink their beer 'luke-warm', but if served at that temperature most Brits would complain (and maybe continue to drink it while complaining). I believe the phrase 'serve cool' rather than 'cold' applies. Some live, bottled beers actually suffer from being too cold. On of my favourites, Black Sheep Ale develops a 'chill haze' - going a little cloudy if left in the fridge too long. 13°C (55°F)is about right for such beers.\nReference the book Beer For Dummies!

\n", "OwnerUserId": "736", "LastEditorUserId": "5064", "LastEditDate": "2017-01-27T14:13:45.540", "LastActivityDate": "2017-01-27T14:13:45.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"704"}} +{ "Id": "704", "PostTypeId": "2", "ParentId": "597", "CreationDate": "2014-04-03T14:17:49.407", "Score": "-1", "Body": "

Similar to the new question, 'what temperature should I serve my beer', which I've just commented on - serving warm beer is largely a myth! The continental Europeans think British beer is served 'luke-warm'. No. Cool, not ice-cold is the preference, at a cellar temp around 13C (room temp being 20-22C). Not sure where the OP is from, but they appear to believe that all Europeans drink warm to hot beer

\n\n

I really thought the myth of warm or luke-warm beer had dissipated - obviously not.

\n", "OwnerUserId": "736", "LastActivityDate": "2014-04-03T14:17:49.407", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"705"}} +{ "Id": "705", "PostTypeId": "1", "AcceptedAnswerId": "706", "CreationDate": "2014-04-03T21:49:40.017", "Score": "11", "ViewCount": "633", "Body": "

Over the weekend, I decided to order something new from the menu: a Big Bad Baptist. I thoroughly enjoyed it (lots of coffee flavor and not nearly as much alcohol taste as I feared). But it came in what looked to be a brandy snifter.

\n\n

Is this the typical way to serve that type of beer? I assume the purpose has something to do with the aroma, but is there any other reason (either traditional or practical)?

\n", "OwnerUserId": "17", "LastActivityDate": "2014-04-03T22:09:07.270", "Title": "Why did my Big Bad Baptist come in a brandy snifter?", "Tags": "glassware imperal-stout", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"706"}} +{ "Id": "706", "PostTypeId": "2", "ParentId": "705", "CreationDate": "2014-04-03T22:09:07.270", "Score": "8", "Body": "

First, yes, this is quite typical. Snifters are widely used for beer and generally for two reasons, in my experience.

\n\n
    \n
  1. As you suspect, the bowl shaped glass helps to concentrate the aroma. However, this isn't unique to the snifter as many types of beer glasses incorporate a narrowing throat to provide this effect.
  2. \n
  3. Quantity. With a glass of beer that has a particularly high alcohol content, or particularly strong flavor, you'll often get much less than a standard 12-16 oz. pour. The beer you refer to for instance, the Big Bad Baptist, has an alcohol content of 11.8% ABV, which closer to wine than beer, (and wine has a standard 5oz serving size per glass, or thereabouts) so it calls for a smaller serving size. However, a 5oz or 6oz serving would look rather silly in a pint glass, so a snifter is more appropriate in proportion.
  4. \n
\n", "OwnerUserId": "37", "LastActivityDate": "2014-04-03T22:09:07.270", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"707"}} +{ "Id": "707", "PostTypeId": "2", "ParentId": "697", "CreationDate": "2014-04-03T23:45:03.990", "Score": "5", "Body": "

Generally you won't find coriander or other spices added to hefeweizen beers, due to the traditional beer purity law. However, one famous exception is Gose: http://www.germanbeerguide.co.uk/gose.html

\n", "OwnerUserId": "738", "LastActivityDate": "2014-04-03T23:45:03.990", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"708"}} +{ "Id": "708", "PostTypeId": "1", "CreationDate": "2014-04-04T15:58:04.643", "Score": "15", "ViewCount": "4910", "Body": "

Even if I managed to reserve some beer, it appears here that I need my own car, or at least one whose plate # I will know long in advance to pick up beer. Has anyone done this? What is the exact procedure?

\n", "OwnerUserId": "740", "LastEditorUserId": "8", "LastEditDate": "2014-04-04T18:13:45.390", "LastActivityDate": "2016-06-21T13:46:26.997", "Title": "How exactly does buying directly from Westvleteren work?", "Tags": "breweries", "AnswerCount": "4", "CommentCount": "2", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"709"}} +{ "Id": "709", "PostTypeId": "2", "ParentId": "708", "CreationDate": "2014-04-07T06:27:25.687", "Score": "11", "Body": "

I live in Amsterdam, and I have not personally been to Westvleteren but I have friends who have made the trip. It turns out that you have a few options:

\n\n
    \n
  1. You can call and make an appointment and IF you get an\nappointment then you must drive there at the appointed time to pick\nup your crate of bier. If you can't make it at the appointed time\nthen you lose out, and you must start the process all over again. I\nforget how much bier this is for, but I think it is 24-48 bottles. Indeed when you make the appointment then you must supply your license place number which they use to keep track of you. They will not allow you to make 2 appointments with the same license plate number in a 60 day period. Additionally, the phone number you must call to get an appointment is always busy, I have heard of people using automatic redial for hours before they finally get through.
  2. \n
  3. If you are in the area (again you will need a car, because there is no public transport, and biking there is unreasonable from most places.) You can pop in and there is a small shop next to the monastery where you can buy a 6 pack per person without appointment, and also with out a huge price markup. Of course while you are there you can also eat some good food, and buy other items that the monks make and sell. This is much less hassle, but you cannot get much bier, so it may not be worth trekking all the way out there specifically for this. However if you are in the area already and you have the time to take a small detour then you should certainly pop in for lunch or dinner and get some tasty brew.
  4. \n
  5. Finally if you are in the Benelux region you can sometimes find Westvleteren in local shops or cafes, however the prices range from 10-16 euros per bottle (in Amsterdam) which is a lot more than you will pay at the monastery. (However, beer bought at the monastery isn't meant for selling, it's meant for private consumption, it says so every time you buy some)
  6. \n
\n", "OwnerUserId": "743", "LastEditorUserId": "-1", "LastEditDate": "2014-04-28T10:24:26.520", "LastActivityDate": "2014-04-28T10:24:26.520", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"710"}} +{ "Id": "710", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-04-07T13:34:37.903", "Score": "3", "Body": "

I used this recipe for Black Bean Soup with Roasted Poblano Chiles. It doesn't include beer as an ingredient but I chose this recipe as part of the beer/food pairing menu I put together for my parents. I decided to pair it with Out of the Ashes (Smoked Marzen) from Fort Collins Brewery. I poured about 1 1/2 cups of it into the soup while it was cooking. You may not be a fan of smoked beers, but it went amazing with this soup. The smokiness blended with the soup and did not have a strong flavor.

\n", "OwnerUserId": "725", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T15:02:49.947", "LastActivityDate": "2016-10-08T15:02:49.947", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"711"}} +{ "Id": "711", "PostTypeId": "2", "ParentId": "708", "CreationDate": "2014-04-08T12:24:49.807", "Score": "8", "Body": "

In addition to what Chris has answered, here are some nice to knows:

\n\n

To see which beer is available at which time etc, look at this page: \nhttp://www.sintsixtus.be/bierverkoopactueel.htm

\n\n

In addition to the 60 days you need to wait for your license plate, also your phone number will be blocked once you made an order for the beer.\nCallers with an anonymous phone number will be blocked automatically.

\n\n

One crate of 24 bottles costs:

\n\n
    \n
  • Trappist Westvleteren Blond (5,8 vol.% alc.) 30,00 euro
  • \n
  • Trappist Westvleteren Acht (dark) (8 vol.% alc.) 35,00 euro
  • \n
  • Trappist Westvleteren Twaalf (dark) (10,2 vol.% alc.) 40,00 euro
  • \n
\n\n

The Trappist Westvleteren Twaalf is the dark beer that won several prizes and is world famous.\nIn my opinion, the Blond and the Acht are a bit overrated (opinion!!).

\n\n

You could in fact go by buss, but that would be really complicated and almost impossible to do, so indeed it's better to go by car/taxi.

\n\n

In the end, if you think it's not worth it, you could try the St. Bernardus Abt 12 beer. It's is brewed almost the exact same way and it tastes pretty much the same.\nThe Sint Bernardus Abt 12 is basically for sale throughout whole Belgium in every big grocery store (or beer/drink shop).

\n\n

In addition to the abbey, you can also buy the beer in the café/restaurant nearby. However, depending which beer is left over, that beer will be for sale and you can only buy 1 pack of 6 bottles per person (if there would be any left!).\nYou could also just go there and sit and enjoy a Westvleteren there because they sell them there :).\nYou could also buy glasses and some other souvenirs at the café. They have a little shop.

\n\n

If you have any questions in addition, please don't hesitate!

\n", "OwnerUserId": "662", "LastActivityDate": "2014-04-08T12:24:49.807", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"713"}} +{ "Id": "713", "PostTypeId": "2", "ParentId": "685", "CreationDate": "2014-04-08T22:36:15.520", "Score": "2", "Body": "

Stan Hieronymus, the author of \"Brew Like a Monk\" has some info on his website (from 2006) about production numbers from various Monasteries:

\n\n
Monastery    Production Brew staff      Monks   Monks in br’y\nAchel        2,000 HL   2               17      1\nChimay       120,000 HL 82              20      0  \nOrval        45,000 HL  32              16      0\nRochefort    18,000 HL  15              17      6\nWestmalle    120,000 HL 41              20      0\nWestvleteren 4,750 HL   10              28      7\n
\n\n

Stan also mentions in Ep 37 of Beersmith Radio that some of these Monasteries own their own bottling plants and production facilities. I can't remember which one, but one of the Abbey's facility that they operate out of is owned by Heineken, but operated by the monks.

\n", "OwnerUserId": "544", "LastActivityDate": "2014-04-08T22:36:15.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"714"}} +{ "Id": "714", "PostTypeId": "2", "ParentId": "697", "CreationDate": "2014-04-09T05:36:17.313", "Score": "0", "Body": "

I'm not sure whether by Hefeweizen, you mean German white beer? or any white beer?

\n\n

I am no beer expert, but in Belgium, the famous Hoegaarden does use coriander as a spice for the beer, it gives that imitation-hoppy flavor. http://en.wikipedia.org/wiki/Hoegaarden_Brewery

\n", "OwnerUserId": "123", "LastActivityDate": "2014-04-09T05:36:17.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"715"}} +{ "Id": "715", "PostTypeId": "1", "AcceptedAnswerId": "717", "CreationDate": "2014-04-09T05:44:53.950", "Score": "12", "ViewCount": "3726", "Body": "

Abbaye Bier (Abbey Beer) refer to monastic beer brewed by monks. And there is almost Trappist beer brewed by monks but specifically from Trappist monasteries.

\n\n

But what is the difference in terms of brewing process, resulting product and historically, why are they different?

\n", "OwnerUserId": "123", "LastActivityDate": "2014-04-11T19:01:27.650", "Title": "What is the difference between Trappist beer and Abbey Beer?", "Tags": "history trappist", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"716"}} +{ "Id": "716", "PostTypeId": "1", "AcceptedAnswerId": "726", "CreationDate": "2014-04-09T05:50:48.093", "Score": "4", "ViewCount": "2010", "Body": "

Why is Frankfurt famous for Apple Cider?

\n\n

And is Apple Cider considered a beer? Can any Cider be a beer?

\n", "OwnerUserId": "123", "LastEditorUserId": "609", "LastEditDate": "2014-04-09T09:04:23.610", "LastActivityDate": "2014-04-12T08:09:42.333", "Title": "Why is Frankfurt famous for Apple Cider?", "Tags": "german-beers", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"717"}} +{ "Id": "717", "PostTypeId": "2", "ParentId": "715", "CreationDate": "2014-04-09T07:31:43.980", "Score": "17", "Body": "

Trappist beer is a designation of the origin of the beer, rather than a designation for the style. That is, it must come from one of the ten Trappist monasteries recognised by the International Trappist Association. There are similarities between the styles produced by these monasteries, but if one decided to make something in a completely different style it could presumably still be called a Trappist beer.

\n\n

In contrast, the term abbey beer is used to refer to any beers produced in the style of the Trappist monasteries. It isn't necessarily produced by a monastery, and some beers produced by major breweries could be described as abbey beer.

\n\n

It is kind of like the difference between \"Champagne\" and \"sparkling white wine\".

\n", "OwnerUserId": "170", "LastEditorUserId": "170", "LastEditDate": "2014-04-09T08:01:00.843", "LastActivityDate": "2014-04-09T08:01:00.843", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"718"}} +{ "Id": "718", "PostTypeId": "1", "AcceptedAnswerId": "719", "CreationDate": "2014-04-09T13:07:27.133", "Score": "10", "ViewCount": "5439", "Body": "

I've read anecdotal evidence that says that real ale, though not as gassy as lager, makes you fart more.

\n\n

Is there any truth to this and does it apply to ales in general or just certain types?

\n", "OwnerUserId": "608", "LastActivityDate": "2014-04-09T15:41:12.777", "Title": "Does real ale make you fart more than lager?", "Tags": "ale gas", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"719"}} +{ "Id": "719", "PostTypeId": "2", "ParentId": "718", "CreationDate": "2014-04-09T15:41:12.777", "Score": "7", "Body": "

Technically, yes.

\n\n

The actual answer has more to do with yeast content than carbonation. Unfiltered beers like real ale have much more yeast in suspension, and yeast has a tendency to make you gassy when digested. Lager in general has very little yeast due to the long, cold, aging process. I believe commercial examples are filtered as well. In general most commercial beers are filtered, or at least have had the yeast killed off somehow, which mitigates the effect. Real ale's major selling points are that it's unpasteurized and unfiltered, and is refermented in the cask...so it's basically got way more yeast and way more active yeast than other kinds of beer. And then cask ales are served from a tap at the front near the bottom...near the yeast. Basically the perfect storm of fart-induction.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-04-09T15:41:12.777", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"720"}} +{ "Id": "720", "PostTypeId": "2", "ParentId": "716", "CreationDate": "2014-04-09T18:09:12.843", "Score": "1", "Body": "

I can't speak to the fame of Frankfurt, but Apple Cider is not a beer by most or all common definitions. It's probably closer to a fruit wine. The major characteristic that defines beer is that some conversion has taken place which converts starches from a grain of some sort into sugars, while wines are simply fermenting simple sugars already present in a fruit's juice.

\n\n

Ironically this makes Ginger Beer more like a wine and Sake, though commonly called Rice Wine, more like a beer.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-04-09T18:09:12.843", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"721"}} +{ "Id": "721", "PostTypeId": "2", "ParentId": "702", "CreationDate": "2014-04-10T14:04:46.120", "Score": "0", "Body": "

Ginger beer is not just water, sugar, crushed ginger and yeast. I make it with some spices boilled in water to flavour it, some of it to kill off the yeast if I want it to. KIlling off the yeast makes it an ale ; and cider must have apples or apple juice in it. That's my opinion.

\n", "OwnerUserId": "758", "LastActivityDate": "2014-04-10T14:04:46.120", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"722"}} +{ "Id": "722", "PostTypeId": "2", "ParentId": "181", "CreationDate": "2014-04-10T14:16:09.557", "Score": "-3", "Body": "

The wort in a trappist beer contains several kinds of malt and 'candy' (sugar) to increase the alcohol content.

\n", "OwnerUserId": "758", "LastActivityDate": "2014-04-10T14:16:09.557", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"724"}} +{ "Id": "724", "PostTypeId": "2", "ParentId": "708", "CreationDate": "2014-04-11T10:25:38.643", "Score": "2", "Body": "

Just returned from the abbey after collecting some westy 12\nBeing as I was going in friends car the monk takes your name and used that instead of car reg is on his paperwork \nThe monk also asked me if my car reg was still the same! Must put car reg numbers to phone numbers from the last time we managed to get a booking . Clever monks\nWhile there we collected another 12 bottles each from the inn they had all 3 for sale\nAnd yes it is worth seeking out\nWe drove over 700mile round trip from UK to collect

\n", "OwnerUserId": "761", "LastActivityDate": "2014-04-11T10:25:38.643", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"725"}} +{ "Id": "725", "PostTypeId": "1", "AcceptedAnswerId": "727", "CreationDate": "2014-04-11T21:15:28.410", "Score": "19", "ViewCount": "10405", "Body": "

After graduating from school, I served my two years of mandatory alternative civilian service with a hospital gardener in Swabia. In Winter, every morning we used to come in one hour early to drink hot beer.

\n\n

Warming beer – \"stauchen\" in German –, by placing the bottle in hot water, was common in the southwest of Germany, and althought the practice has fallen out of use in recent years you can still order your beer \"gestaucht\", i.e. warmed to about 50 to 60°C (122 to 140°F), in traditional restaurants (at no extra price, of course).

\n\n

Here is an image of one restaurant that uses old hot-water bottles to warm their beer as a gimmick (source):

\n\n

\"enter

\n\n

The old gardener and his younger colleague claimed that drinking warm beer would keep away any cold that working in the wet and cold outside would otherwise bring on them. We were certainly all very healthy those two winters (and got a lot of snow shovelled), so my question is:

\n\n

Does drinking hot beer prevent the common cold?

\n", "OwnerDisplayName": "user764", "LastActivityDate": "2019-12-05T12:58:59.440", "Title": "Does drinking hot beer prevent the common cold?", "Tags": "health", "AnswerCount": "6", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"726"}} +{ "Id": "726", "PostTypeId": "2", "ParentId": "716", "CreationDate": "2014-04-11T22:17:15.617", "Score": "3", "Body": "

Due to differing geographic and climatic conditions, different areas of Germany specialize on different kinds of agriculture. The area to the south and west of Frankfurt is one of the major fruit producing regions in Germany (red in the map below, source):

\n\n

\"enter

\n\n

In this area apple trees start to bloom much earlier in the year than elsewhere (source, visit link to see the progression of apple blooming over Germany):

\n\n

\"enter

\n\n

Since people like to turn everything they produce into alcoholic beverages, fruit wines – of which (grape) wine is a just a variety – are common and popular in fruit growing regions. Most popular with everyone I know is home-made strawberry wine, but plum wine is a favourite, too, and any berry or fruit is used, with every family that owns a garden making one or two bottles of these fruit wines each autumn.

\n\n

Apples are different because we grow so much more of them than strawberries or plums, and they are regularly pressed into apple juice in large quantities by the fruit grower cooperatives that sell it to the beverage industry. If you don't pasteurize the juice (for long term stability), it turns alcoholic after a couple of days, and after the apple harvest everyone gets large cannisters of freshly pressed juice from the cooperative presses, bakes onion tarts (\"Dinnele\"), and eats and drinks this seasonal speciality, with more or less alcohol, depending on taste.

\n\n

\"Most\" (must) or \"Süßmost\" (sweet must) is freshly pressed juice; once it has turned alcoholic (and sour) it has different names in different areas, such as \"Sauermost\" (sour must) and Apfelwein (apple wine).

\n\n

Within southern Germany and Austria, Frankfurt is not specifically famous for apple wine, the drink, because it is drunk elsewhere, too. What the region around Frankfurt is somewhat well-known for are the festivities surrounding the end of the apple harvest and the pressing of apple juice, which have been the background theme for a musical tv show, Zum Blauen Bock (The Blue Goat Buck), that ran from 1957 to 1987. The tv studio for that show was styled like a Hessian apple wine folk fair, and the moderator gave each of the folksy musicians and other guests one \"Bembel\", the stoneware jug traditionally used to serve the apple wine in that region, for them to take home.

\n\n

At that time there were only two national tv channels in Germany, and many kids grew up spending cosy weekend family tv evenings watching that show. I would guess that this is what makes Apple Wine \"famous\" (for us), but only in the special Hessian pronunciation \"Ebbelwoi\".

\n", "OwnerDisplayName": "user764", "LastEditorDisplayName": "user764", "LastEditDate": "2014-04-12T08:09:42.333", "LastActivityDate": "2014-04-12T08:09:42.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"727"}} +{ "Id": "727", "PostTypeId": "2", "ParentId": "725", "CreationDate": "2014-04-12T08:00:24.513", "Score": "29", "Body": "

No, drinking warm beer will not prevent the common cold.

\n\n

There was at least one study conducted revealing that humulone, an chemical found in hops, could help to fight a cold. This study seems to be both biased and exaggerated, as it was conducted by a beer company and the concentration in beer is so low that getting a therapeutic dose would create more problems than it would solve.\nGot a Cold? Have a Beer!

\n\n

I imagine that the rumor was based on either the above misleading story or a similar one based on a historical view of beer through \"rose colored glasses\".\nThis coupled with the commonly known (and scientifically supported) method of drinking hot fluids to treat cold symptoms creates a believable enough tale to increase sales.\nStudy finds hot drinks help colds.

\n", "OwnerUserId": "212", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T23:54:14.437", "LastActivityDate": "2016-10-05T23:54:14.437", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"728"}} +{ "Id": "728", "PostTypeId": "1", "AcceptedAnswerId": "729", "CreationDate": "2014-04-12T11:37:50.580", "Score": "12", "ViewCount": "3033", "Body": "

I love beer, but when I pour myself one, I try not to make it foam too much, I personally don't like the 'head' of a beer (Don't really know how to say it). My dad drinks beer religiously and demands a head when ever I pour one for him. A few (Most of my friends) aren't keen on having a head, but some love it.

\n\n

Obviously this is personal preference, but is beer normally supposed to have a head?

\n", "OwnerUserId": "765", "LastActivityDate": "2018-05-22T22:49:31.960", "Title": "Giving beer a decent head and why people like it?", "Tags": "head foam", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"729"}} +{ "Id": "729", "PostTypeId": "2", "ParentId": "728", "CreationDate": "2014-04-12T13:12:36.093", "Score": "12", "Body": "

Yes, beer is indeed generally supposed to have a head. The foam can add to both the flavor and the texture of your beer. It is preference for sure, and if you don't like it, then you don't like it, but I'd encourage you to try it from time to time with an open mind. The head of a beer is quite complex, consisting of proteins that are acted on by the hops, the yeast, and the carbonation. Because of the complexity, creating the perfect recipe for foam in a beer is something the brewers spend quite a lot of time and energy on, and it's a fairly integral part of a good beer.

\n\n

Note that there are exceptions. Truly non-carbonated beer, like Samuel Adams Utopias will not have a head. Hever, from what I've read, that specific example is probably more closely comparable to a fortified wine than a common beer in any case.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-04-12T13:12:36.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"731"}} +{ "Id": "731", "PostTypeId": "1", "CreationDate": "2014-04-15T03:43:14.867", "Score": "14", "ViewCount": "3928", "Body": "

I imagine it's probably just that the barley has been roasted darker, and that comes out.

\n", "OwnerUserId": "87", "LastActivityDate": "2018-09-03T21:41:00.517", "Title": "What gives a porter or a stout its dark colour?", "Tags": "colour", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"732"}} +{ "Id": "732", "PostTypeId": "2", "ParentId": "731", "CreationDate": "2014-04-15T13:09:40.270", "Score": "10", "Body": "

If you follow the information trail through Wikipedia's page about Stout beer, you find that what was known as Stout became a strong, dark beer in the 1800s:

\n\n
\n

In the 19th century, the beer gained its customary black colour through the use of black patent malt, and became stronger in flavour.

\n
\n\n

You can see from the article about mash ingredients that black patent malt is \"barley malt that has been kilned to the point of carbonizing, around 200 °C.\" It is apparently called \"patent\" malt because the inventor was awarded a patent for it.

\n\n

Sometimes, this malt is used to darken the colour of other beers.

\n", "OwnerUserId": "85", "LastActivityDate": "2014-04-15T13:09:40.270", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"733"}} +{ "Id": "733", "PostTypeId": "2", "ParentId": "731", "CreationDate": "2014-04-15T14:41:10.597", "Score": "5", "Body": "

You're right - is the high kilning temperatures used in the malt that give it a dark color.

\n\n

Note that not all Stouts use black patent malt - some use roasted unmalted barley, most famously, Guinness, which uses 18% roasted barley in the recipe (IIRC from my trip to the brewery.) If you look through a pint of Guinness, you'll see that it's not simply jet black, but in fact fairly clear, and the light will give ruby highlights to the beer.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-04-15T14:41:10.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"734"}} +{ "Id": "734", "PostTypeId": "1", "AcceptedAnswerId": "735", "CreationDate": "2014-04-15T17:56:54.030", "Score": "7", "ViewCount": "273", "Body": "

Is there a site that attempts to list new beers as they become available? I am always hearing about new beers from friends but I want to know when a brewery markets a new brew without having to go to everyone's site myself... Thanks!

\n\n

Edit: Originally, I was thinking just a list of the national/international 'major' brews but I suppose even a local list (that is accurate/updated) would be helpful if visiting a certain area. The scope of this question is really just a general list of major brews.

\n", "OwnerUserId": "778", "LastEditorUserId": "778", "LastEditDate": "2014-04-16T20:34:05.050", "LastActivityDate": "2014-05-05T21:05:21.993", "Title": "Master New Beer List", "Tags": "style pairing", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"735"}} +{ "Id": "735", "PostTypeId": "2", "ParentId": "734", "CreationDate": "2014-04-16T06:25:18.050", "Score": "8", "Body": "

I don't think there's a site dedicated to that purpose specifically. However, Untapped and Beermenus are probably your best bets. I've never used Untapped as I do not have a smartphone and I think they've just recently added desktop/laptop support, but I have used Beermenus. It's ok, not great though. Again, it's really up to the brewery/bar to update their menu and sometimes they just forget; they're human too, despite being able to brew some godly beers.

\n\n

But in general, this question is a bit too broad. in my opinion. You don't specify whether or not you're talking about local beers or just beers in general. There's a few thousand breweries worldwide; many of them coming out with new releases regularly. Keeping tabs on all of them would be somewhat of a challenge (especially the ones who don't update their sites regularly (ahem...if my local friends across the bay are on here, I'm looking at you). So in terms of local beers, Untapped and Beermenus should do what you're looking for. But At this point in time, I think a global list is infeasible until somebody develops an easy-to-use API which gets some traction in the industry.

\n", "OwnerUserId": "31", "LastActivityDate": "2014-04-16T06:25:18.050", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"737"}} +{ "Id": "737", "PostTypeId": "1", "AcceptedAnswerId": "916", "CreationDate": "2014-04-16T20:39:37.070", "Score": "6", "ViewCount": "132", "Body": "

A friend had a woodchuck cider with a picture of a fox on the bottle a while back and she keeps going on and on about how 'it was the best cider ever'. Anyone know which cider that is? I looked at their website, but the pictures do not show the labels themselves. Thanks!

\n\n

EDIT: Can anyone confirm that Woodchuck does not have foxes on their labels?

\n", "OwnerUserId": "778", "LastEditorUserId": "778", "LastEditDate": "2014-04-21T19:52:16.970", "LastActivityDate": "2014-07-09T23:11:42.670", "Title": "Woodchuck Cider w/Fox on bottle?", "Tags": "pairing specialty-beers", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"738"}} +{ "Id": "738", "PostTypeId": "2", "ParentId": "235", "CreationDate": "2014-04-19T06:59:41.323", "Score": "2", "Body": "

I disagree: boil time can affect ABV.

\n\n

Assuming you're not trapping the steam, most of what boils off is water, meaning your final wort will have a higher O.G. In general, that will result in a smaller quantity of a higher ABV beer. (Of course, there are many variables, such as your yeast, your fermentation time, your ratio of fermentable:unfermentable sugars, and so on.)

\n\n

Also, the starch->sugar conversion is generally terminated by your sparge (that being one of its purposes), so how fast you get to your boil doesn't have much of an impact.

\n", "OwnerUserId": "791", "LastActivityDate": "2014-04-19T06:59:41.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"739"}} +{ "Id": "739", "PostTypeId": "2", "ParentId": "215", "CreationDate": "2014-04-19T07:16:04.700", "Score": "7", "Body": "

Heat and light are the enemies of beer.

\n\n

If you have a \"bottle conditioned\" beer -- that is, one in which live yeast are still present -- then under warmer conditions, you potentially have active yeast. To some extent, this may just increase the carbonation and alcohol content. However, if most of the fermentable sugars have already been fermented (that is, converted to CO2 and alcohol), the yeast will start \"eating\" each other, which will result in some very \"off\" flavors (though nothing toxic). Under cooler conditions, the yeast will be only minimally active.

\n\n

Regardless of whether your beer is \"bottle conditioned\" or not, the hop acids present from the brewing process don't respond favorably to heat or light. In particular, light can cause them to turn \"skunky\", which is why Corona -- with their clear glass bottles -- often tastes \"skunky\". Don't trust a beer in a clear bottle ... seriously.

\n\n

Keep it cool; keep it dark; keep it upright (unlike wine).

\n", "OwnerUserId": "791", "LastActivityDate": "2014-04-19T07:16:04.700", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"740"}} +{ "Id": "740", "PostTypeId": "1", "CreationDate": "2014-04-19T16:56:02.880", "Score": "13", "ViewCount": "1347", "Body": "

I have read that when stored in a clear container, sunlight can cause beer to skunk in a matter of seconds or minutes. I have also read that brown bottles are \"better\" when it comes to preventing this.

\n\n

But how much better? Enough to \"not worry about it\" for short-term storage?

\n\n

My specific situation is this: I have a (clear) glass cupboard in the living room. I also have a rotating (every few weeks or so) selection of beers, some of which are in rather nice bottles. I would like to store the bottles in said cupboard.

\n\n

The bottles are brown, and the cupboard is not exposed to direct sunlight, but the room is generally well-lit. Would I be risking (or just waiting for) spoilage?

\n", "OwnerUserId": "793", "LastActivityDate": "2014-06-03T10:42:23.010", "Title": "Are brown bottles sufficient to protect beer from skunking?", "Tags": "storage bottles skunking", "AnswerCount": "5", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"741"}} +{ "Id": "741", "PostTypeId": "2", "ParentId": "728", "CreationDate": "2014-04-21T15:20:48.617", "Score": "4", "Body": "

Beer is typically supposed to have a head of about 1/2 inch. This enhances the flavor and gives off an aroma that will add to the experience. A good bartender should give you a nice head on your beer unless you ask for your beer sans head. You should not be getting a glass half full of foam.

\n\n

Some brewers (I know Guinness specifically, but I'm sure there are others) even have special glasses and pouring procedures to give their beer the perfect head.

\n\n

If you try a beer with a head, try not to look down into your beer, but instead look straight ahead and bring your glass to your mouth with your elbow out. This will keep you from getting a mouth full of foam, and is how you are supposed to drink most beers.

\n", "OwnerUserId": "798", "LastEditorUserId": "798", "LastEditDate": "2014-05-08T19:49:16.100", "LastActivityDate": "2014-05-08T19:49:16.100", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"742"}} +{ "Id": "742", "PostTypeId": "1", "CreationDate": "2014-04-22T02:10:26.793", "Score": "4", "ViewCount": "141", "Body": "

Does the presence of adjunct ingredients like rice or corn imply that these ingredients are always of the genetically modified variety?

\n\n

I mean, if you are going to add adjuncts to a beer, the main reason is usually to reduce production costs right? In that case, GMO rice and corn adjuncts are the cheapest, so it seems to me like any beers using adjuncts will be using GMO adjuncts.

\n", "OwnerUserId": "800", "LastActivityDate": "2014-05-08T12:11:31.057", "Title": "Are adjunct ingredients always GMO by default?", "Tags": "health ingredients", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"743"}} +{ "Id": "743", "PostTypeId": "2", "ParentId": "742", "CreationDate": "2014-04-22T04:04:58.007", "Score": "5", "Body": "

No. An adjunct is simply an ingredient that is not strictly necessary to brew the beer. In some cases the purpose of the adjunct is to reduce costs, while in others it is to achieve certain flavours (e.g. in honey beers, or various spiced beers).

\n\n

If cost is the primary concern, then GMO ingredients may be picked if they are cheapest.

\n\n

When adjuncts are used for flavour, cost is not going to be the primary concern so it would be incorrect to assume that a GMO source would be picked by default.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-04-22T04:04:58.007", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"744"}} +{ "Id": "744", "PostTypeId": "1", "CreationDate": "2014-04-22T04:33:55.403", "Score": "14", "ViewCount": "108169", "Body": "

Have a kegerator home built system for 1/2 barrel beer in the garage. Recently had a keg of beer that was foamy no matter what we tried to do. Served it low temp, 37 degrews, and almost no CO2 pressure. Tried serving warmer, with more pressure, still tons of foam.

\n", "OwnerUserId": "801", "LastActivityDate": "2015-11-04T08:58:02.763", "Title": "How do you tame a 'foamy' keg?", "Tags": "foam keg", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"745"}} +{ "Id": "745", "PostTypeId": "1", "CreationDate": "2014-04-23T04:11:46.830", "Score": "6", "ViewCount": "184", "Body": "

I have some homebrew that is really over-carbonated (before i learned about priming sugar calculators). Consequently, i have to pour it into two pint glasses to contain all the foam, and wait 5-10 minutes for the foam to settle out enough to actually drink it. The bottles are well-chilled first.

\n\n

Is there something i can do when pouring it to reduce the head? I know some amount of head is desirable, but this is over the top (literally).

\n\n

[Edit] I get this much foam despite pouring very slowly and carefully down the side of the glass.

\n", "OwnerUserId": "401", "LastEditorUserId": "401", "LastEditDate": "2014-04-24T13:16:50.103", "LastActivityDate": "2014-04-24T13:16:50.103", "Title": "Decreasing foam in over-carbonated beer", "Tags": "serving carbonation foam head", "AnswerCount": "2", "CommentCount": "1", "ClosedDate": "2014-04-26T04:45:23.780", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"746"}} +{ "Id": "746", "PostTypeId": "2", "ParentId": "745", "CreationDate": "2014-04-23T12:09:35.870", "Score": "-1", "Body": "

This isn't the \"best\" answer but a dab of soap (think back to grade school science) with help break up the bubbles and bring that head down real fast

\n", "OwnerUserId": "353", "LastActivityDate": "2014-04-23T12:09:35.870", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"748"}} +{ "Id": "748", "PostTypeId": "2", "ParentId": "742", "CreationDate": "2014-04-23T16:22:04.067", "Score": "6", "Body": "

The chances of corn being grown for industrial purposes, like making dextrose have a very high probability of being GMO. If you are buying specialty grains (like for steeping), the probability of those ingredients being genetically modified are much lower.

\n\n

That said, finding out whether or not your adjunct is made from GMO corn (or rice) is very difficult. You may be able to find companies that market things as GMO-free, in that case, they are probably GMO free. Otherwise, they may or may not contain GMOs.

\n\n

If you are concerned about the safety of genetic modification, you should know that GMOs are very safe and are tested for safety much more than the wild crops their genes are borrowed from.

\n", "OwnerUserId": "804", "LastActivityDate": "2014-04-23T16:22:04.067", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"749"}} +{ "Id": "749", "PostTypeId": "2", "ParentId": "745", "CreationDate": "2014-04-23T16:53:44.177", "Score": "4", "Body": "

Soap is absolutely the worst thing you could do I guess :P.\nSometimes I notice that badly dried glasses (with soap rests) produce more foam...\nIn general, make sure your glass is spotlessly clean. You could then either leave it dry or make it a little wet, works sometimes...\nKeep your glass diagonal to make sure the liquid touches the glass almost parallel to the glass' inner side.\nThen when pouring, make sure you have a slow and fluent ray of beer that doesn't splash out of your bottle.

\n", "OwnerUserId": "662", "LastActivityDate": "2014-04-23T16:53:44.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"750"}} +{ "Id": "750", "PostTypeId": "2", "ParentId": "740", "CreationDate": "2014-04-24T12:05:40.003", "Score": "5", "Body": "

Certain wavelengths of light are responsible for skunking beer. I believe these are mostly in the blue and ultraviolet parts of the spectrum. Brown bottles do the best at blocking out the UV rays. This is why you can get an occasional Rolling Rock that tastes off. I've never heard of a UV reflective coating before, but it makes sense.

\n\n

What follows is probably only relevant if you want to be nit-picky about this:

\n\n

If it is not in direct sunlight, I'd say your pretty ok. I don't know what your lighting situation is, but I know most incandescent bulbs mostly give off infrared light (I'm not sure if infrared light has been correlated to skunking) and the modern CFL bulbs mostly give off light in the visible spectrum. I'd say both however give off some sort of UV light.

\n\n

If you are really concerned, you could tint the cupboard glass. Vehicle window tint is designed to block out UV rays that can damage the interior of cars. Your level of protection depends on how dark you want your tint. If you want the highest protection though, I'd recommend a wooden cupboard.

\n", "OwnerUserId": "798", "LastActivityDate": "2014-04-24T12:05:40.003", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"754"}} +{ "Id": "754", "PostTypeId": "2", "ParentId": "655", "CreationDate": "2014-04-28T19:01:00.530", "Score": "4", "Body": "

Over-carbonation is typically a sign of infection, which is certainly a possibility. It's not a problem I've had with Hitachino, but at their price point I don't drink them often

\n", "OwnerUserId": "23", "LastActivityDate": "2014-04-28T19:01:00.530", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"755"}} +{ "Id": "755", "PostTypeId": "2", "ParentId": "744", "CreationDate": "2014-04-29T13:12:49.770", "Score": "4", "Body": "

You were right to lower the temperature. Beer (or any liquid for that matter) is better at retaining gasses at lower temperatures. Therefore: cold beer = less gas released = less foam produced.

\n\n

Occam's Razor says your keg is probably warm. I'd check if your temperature is correct. Make sure the temperature is being checked from the bottom of the keg, as this is where your beer is coming from.

\n\n

I'm assuming you're pouring properly, (this includes using a clean, unfrozen glass with a smooth interior).

\n\n

Aside from that, I'd make sure all the parts of your system are clean and in good working order.

\n", "OwnerUserId": "798", "LastActivityDate": "2014-04-29T13:12:49.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"756"}} +{ "Id": "756", "PostTypeId": "2", "ParentId": "702", "CreationDate": "2014-04-29T14:34:30.163", "Score": "3", "Body": "

According to google:

\n\n
\n

ci·der\n noun\n 1.\n an unfermented drink made by crushing fruit, typically apples.

\n
\n\n

No fruit in ginger beer.

\n", "OwnerUserId": "23", "LastActivityDate": "2014-04-29T14:34:30.163", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"757"}} +{ "Id": "757", "PostTypeId": "1", "CreationDate": "2014-04-30T01:08:37.720", "Score": "7", "ViewCount": "760", "Body": "

Hoppy beers appear to be fad at the moment.

\n\n

It seems that some brewers are aiming to produce beer with the sole aim to be as hoppy as possible, without consideration to other flavors or characteristics.

\n\n

Is it fair to say that some beers are simply 'too hoppy' by some objective measure? I would say the New Zealand's Boundry Road Mumbo Jumbo IPA fits this category.

\n", "OwnerUserId": "87", "LastActivityDate": "2014-06-04T18:17:03.723", "Title": "Are some beers 'too hoppy'?", "Tags": "hops flavor", "AnswerCount": "9", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"758"}} +{ "Id": "758", "PostTypeId": "1", "CreationDate": "2014-04-30T01:16:26.433", "Score": "8", "ViewCount": "4178", "Body": "

I had a Tui (cheap New Zealand pale lager) the other day, and it tasted sweet!

\n\n

Why is this? Is possible that sugar is added during the brewing? What else would make it taste sweet?

\n", "OwnerUserId": "87", "LastActivityDate": "2014-04-30T08:46:48.477", "Title": "Why do some cheap beers taste sweet?", "Tags": "flavor", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"759"}} +{ "Id": "759", "PostTypeId": "2", "ParentId": "758", "CreationDate": "2014-04-30T01:37:58.890", "Score": "4", "Body": "

The price and quality (or lack thereof) of the beer doesn't particularly come into play in whether it is sweet or not but rather how much residual sugar is left. All beer has sugar in some form, as fermentable sugars are is what the yeast eat to turn into alcohol. No sugar, no alcohol. No alcohol, no beer.

\n\n

The sugar in beer primarily comes from malted barley, though other grains are often used including rye, wheat, oats, and open in the case of cheap beer, rice and corn. In my experience, it's fairly rare to find a lager (particularly a cheap one, where they want to minimize the cost of the ingredients for a given batch) with enough residual sugar to taste sweet, but it could happen I suppose. Sweet beers are frequently heavier, like barleywine style ales, milk stouts, and chocolate stouts.

\n\n

You can also add non-traditional ingredients to boost the amount of residual sugar in beer, and sugar itself, in a number of forms (table sugar, brown sugar, corn syrup, maple syrup, etc.) is certainly one of those ingredients that is used from time to time. Fruit is another common ingredient used to manipulate the flavor and sweetness in beer, and you'll find virtually all kinds used in various brews. Some or the more fruits that can particularly add to the final sugar content are cherries, berries, grapes, peaches, apricots, and grapefruit.

\n", "OwnerUserId": "37", "LastEditorUserId": "37", "LastEditDate": "2014-04-30T02:27:48.233", "LastActivityDate": "2014-04-30T02:27:48.233", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"760"}} +{ "Id": "760", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-04-30T01:45:03.303", "Score": "2", "Body": "

As the old saying goes, \"There's no accounting for taste.\" So, objectively, no, there is no such thing as too hoppy as long as some enjoy them. There certainly are beers that are so bitter that they have very limited appeal and that can completely drown out other flavors rending not only the beer itself a one-note show, but eliminates the taste from anything else you eat or drink in close proximity. Stone's Ruination is an example of this.

\n\n

So, while many aren't drawn to the \"hop-bombs\" that seem to get bigger and bigger all the time, the fact that there's a market to support them would indicate that they are not, in fact, \"too hoppy.\"

\n", "OwnerUserId": "37", "LastActivityDate": "2014-04-30T01:45:03.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"761"}} +{ "Id": "761", "PostTypeId": "2", "ParentId": "758", "CreationDate": "2014-04-30T08:46:48.477", "Score": "5", "Body": "

The alcohol in beer is created as a byproduct of the yeast consuming the sugar in wort during the fermentation process. For a beer to taste sweet, there are two possibilities:

\n\n
    \n
  1. The yeast died before the fermentation process ran to completion. There are various chemicals that can do this.

  2. \n
  3. The wort contained some non-fermentable sugars. If the yeast can't feed on a particular type of sugar, then it is going to remain in the end product. Lactose is a traditional example of such a sugar but some artificial sweeteners have a similar effect.

  4. \n
\n\n

Assuming that the flavour was intended, I would guess that this was (2): using non-fermentable sugars allows the brewer to know exactly how much will end up in the final beer. It is also the only option if they do in-bottle carbonation, since that requires live yeast in the bottle.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-04-30T08:46:48.477", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"762"}} +{ "Id": "762", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-04-30T14:19:58.727", "Score": "6", "Body": "

International bittering units (IBU) measure the bitterness of different beer styles. IPAs have a wide range, and they're typically higher on the scale. If you can find the IBU of a beer you want to try (on Untappd, on the bottle, or some bars make this information available), you can compare it to other beers that you like to determine if it might be too bitter for your tastes.

\n\n

I've tasted some beers that are way off the IBU scale that I linked to, but it's still subjective to say that these beers are \"too hoppy.\" It's a matter of taste that I'd compare to saying that some foods are \"too spicy.\" Some people might just like to try these novelty beers once, and other people might really develop a taste for them.

\n", "OwnerUserId": "154", "LastActivityDate": "2014-04-30T14:19:58.727", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"763"}} +{ "Id": "763", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-04-30T19:03:19.247", "Score": "-1", "Body": "

I've had beers that were sub 100 IPU's that were too hoppy and 100+ IPU's that were very good. Question of taste to the drinker.

\n", "OwnerUserId": "529", "LastActivityDate": "2014-04-30T19:03:19.247", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"764"}} +{ "Id": "764", "PostTypeId": "2", "ParentId": "744", "CreationDate": "2014-05-01T12:40:35.717", "Score": "5", "Body": "

There are a few things you can check with you keg. You said it's a home built system, yes? So is this a mini-fridge conversion, chest freezer/keezer conversion, or some other kit?

\n\n

Anyway, what length are the beer lines? Generally you need to balance CO2 pressure against beer lines to avoid consistently foamy pours. If your system isn't properly balanced the beer will always be foamy, on every pour. I have 5-6 foot lines in my kegerator and it works pretty well for me, when I was having foamy pour problems everyone suggested replacing them with 10 foot lines just to make damn sure the pour wasn't too violent. Also making sure the lines are clean. Any beer stone or other sediment in the lines is going to cause foam.

\n\n

Serving warmer with lower CO2 would also be a better step. One frustrating thing about these sorts of adjustments is that it takes time for equilibrium to be hit. So if you lower the CO2 pressure, the headspace is still pressurize. You'll need to vent the keg via the pressure release valve. Same deal with raising the temperature. Once the beer actually comes up to the new temp, there will have been CO2 driven out of solution that you need to vent from the headspace via the pressure release valve. It's a pain. Regulators will also often have their own pressure valve, which you should poke and vent slightly when setting the pressure...especially when coming down since excess pressure in the system is going to mess with the reading. So vent, watch it rise to the actual pressure, then adjust, vent again, and watch. It takes some time but generally once you set it there's very little change required.

\n\n

It's hard to tell without seeing the speed of your pour.

\n\n

Definitely check the keg temperature itself. As a homebrewer I reuse kegs, so I have stickers on all my kegs that have a little temperature line. These liquid crystal thermometers, like this one, are pretty cheap.

\n\n

You can also check the ambient temperature using a regular thermometer and a small glass of water. You should check temperature at multiple spots inside the kegerator, so you could fill some tumblers or shot glasses with water and place them at the bottom of the kegerator, then maybe on top of the keg, and then maybe a back shelf if you have anything like that. This lets you know if you have any hot spots which you can reduce by reorganizing tubes or tossing a small computer case fan in there.

\n\n

Also, if you haven't disabled the dome light in the fridge, do so or find some way to make sure the switch stays down beyond a doubt. When I first built my kegerator I was getting incredibly foamy pours and a huge contributor wound up being the dome light kept coming on and heating up the tops of the kegs and the beer in my lines.

\n\n

Another final check is the temperature inside of the tower. If you have no way for the cold air to get from the body of the fridge into the tower the lines in the tower will get warm and cause foamy beer, though if the CO2 pressure is set correctly, this would likely only result in the first 1-2 pours being foamy, then it calms down until the lines warm back up. A lot of people will put fans or run copper tubes up the towers. I filled mine with insulation.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-05-01T12:40:35.717", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"765"}} +{ "Id": "765", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-05-01T13:37:07.153", "Score": "4", "Body": "

I feel like this is a pretty opinion based question, especially with IPAs being so \"in\" right now. Ignoring the taste of hoppiness, which is different from bitterness (dear Bob that myth needs to die), there's a limit to how much bitterness we humans can actually perceive. Past about 100 IBUs the tongue straight up can't tell that there are any more. Now we perceive the quality of bitterness differently.

\n\n

So bitterness in beer is provided primarily by adding hops and boiling them for a long time. The length of time and pH of the wort affects a chemical reaction called \"Isomerization\", which is the process by which Alpha Acids in hop oils become Iso-Alpha Acids which stay stably in solution and make beer taste bitter.

\n\n

Similarly, there are also Beta Acids. Generally these are in 1:1 ratio with the Alpha acids but sometimes there are more or less depending on the hop types.

\n\n

Beta Acids are chemically Lupulones and Alpha Acids are Humulones. We've identified 3 types of each as well: No prefix, Co-, and Ad-. Most homebrewing hop packets list total alpha acid %, then % of those acids that are Cohumulone. But straight IBUs don't take which acids were used to get to that number.

\n\n

Humulone is thought to give the best, smoothest, most pleasing bitterness. Cohumulone can be pretty abrasive, and the bitterness may seem rougher or more astringent...or just more bitter, even at the same IBUs. Beta acids are also thought of as a \"rough\" bitterness, but they primarily produce bitterness via oxidation and can help long term shelf-stability.

\n\n

I don't know what all this really helps to answer, but I guess the main points are that you can't taste past 100 IBUs, but there are qualities to bitterness that can make some beers more abusive than others. Also my final point is that hop flavor and aroma don't make a beer bitter. If the hops have been boiled enough to actually make a beer that bitter...you do not taste those hops. You can have hoppy beers that are smooth and not bitter at all by hop selection, yeast selection, dry hopping, and not boiling them hops very much. You can also make beer more bitter by yeast selection and certain grains. You can also make Ruination or Palate Wrecker, but the point is that hoppiness and bitterness are not the same thing.

\n", "OwnerUserId": "268", "LastEditorUserId": "268", "LastEditDate": "2014-05-01T13:42:42.137", "LastActivityDate": "2014-05-01T13:42:42.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"766"}} +{ "Id": "766", "PostTypeId": "2", "ParentId": "734", "CreationDate": "2014-05-02T19:33:06.587", "Score": "2", "Body": "

Using the BeerAdvocate web site could be very helpful. As a craft beer enthusiast, I've used it on my travels.

\n\n

Start your search at the following URL: http://www.beeradvocate.com/place/

\n\n

You can break down your search results by Continent, Country, City and State. You may be able to find some local breweries that fit your liking.

\n\n

Also, you can stay on top of all the latest beer release news by going to the following forum: http://www.beeradvocate.com/community/forums/beer-releases.38/

\n\n

If you're not sure what you like, be sure to check out the Top 250 beers section of the Web Site to learn about some highly reviewed beers.

\n", "OwnerUserId": "842", "LastEditorUserId": "842", "LastEditDate": "2014-05-05T21:05:21.993", "LastActivityDate": "2014-05-05T21:05:21.993", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"767"}} +{ "Id": "767", "PostTypeId": "2", "ParentId": "215", "CreationDate": "2014-05-02T21:58:27.923", "Score": "1", "Body": "

Every beer has a shelf life. Beer will certainly \"last\" longer if refrigerated. That is, the flavor will evolve more slowly over time at lower temperatures. Storage at higher than room temperature will invite a turning of the beer's flavor for the worse.

\n\n

In some cases, an aged beer might be considered to have an appealing taste, but still refrigeration will slow the aging process and allow the beer to be kept longer. Additionally, the flavor of highly hopped beers will degrade fairly quickly (within several months) at room temperature, and most people would agree that very hoppy beers in particular should be refrigerated because of this.

\n", "OwnerUserId": "843", "LastActivityDate": "2014-05-02T21:58:27.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"768"}} +{ "Id": "768", "PostTypeId": "1", "AcceptedAnswerId": "824", "CreationDate": "2014-05-05T19:32:49.003", "Score": "13", "ViewCount": "3239", "Body": "

What is a \"White IPA\" and can it actually be considered an IPA?

\n\n

I'm asking in general but specifically I'm having a Deschutes Chainbreaker White IPA.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-05-29T13:49:16.033", "Title": "What is a \"White IPA\" and is it actually an IPA?", "Tags": "ipa classification", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"769"}} +{ "Id": "769", "PostTypeId": "1", "AcceptedAnswerId": "776", "CreationDate": "2014-05-05T19:34:34.940", "Score": "6", "ViewCount": "188", "Body": "

So, I was in Toronto (Canada) a little while ago and absolutely fell in love with a couple of the beers from Bellwoods Brewery. Specifically:

\n\n
    \n
  • Witchshark; and
  • \n
  • Monogamy
  • \n
\n\n

I have been casually looking online to see if I could find their beers here in the London (England) or on the internet, but with no luck.

\n\n

Anyone know if I can find these beers somewhere?

\n", "OwnerUserId": "847", "LastActivityDate": "2014-05-09T19:01:53.327", "Title": "Bellwoods Brewery Beer in the UK", "Tags": "ipa local buying", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"770"}} +{ "Id": "770", "PostTypeId": "2", "ParentId": "768", "CreationDate": "2014-05-05T21:18:44.343", "Score": "11", "Body": "

WHITE IPA

\n\n

A basic definition would be:

\n\n
    \n
  1. strong hop character - similar to ipa
  2. \n
  3. wheat / wit grainbill-
  4. \n
  5. essentially a mashup (beer pun) of wit and ipa, lighter malts with strong hops
  6. \n
\n\n

As far as the is it an IPA question: as long as its fairly high alcohol, most of the ingredients would point to being almost the same as an IPA. but like noted above, there are different malts and probably a different yeast.

\n", "OwnerUserId": "467", "LastActivityDate": "2014-05-05T21:18:44.343", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"771"}} +{ "Id": "771", "PostTypeId": "1", "AcceptedAnswerId": "775", "CreationDate": "2014-05-06T02:23:36.477", "Score": "10", "ViewCount": "2201", "Body": "

The iconic mass-produced lager in Queensland, Australia, is XXXX (pronounced FourEx). On their label, they tell a story about how historically beers were marked with a number of Xs to indicate their quality, with three Xs being the best.

\n\n

According to XXXX, the original brewer found that his beer was so good that he added a fourth X.

\n\n

So what's the real story with the 'X' mark? I know there are other beers, such as Dos Equis, which incorporate an X in their name and branding. I have also heard of a number of Xs being used with whisky as a crude ABV indicator.

\n", "OwnerUserId": "85", "LastActivityDate": "2014-11-15T12:26:57.787", "Title": "'X' marks to indicate quality?", "Tags": "history", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"772"}} +{ "Id": "772", "PostTypeId": "2", "ParentId": "728", "CreationDate": "2014-05-06T19:31:05.273", "Score": "2", "Body": "

I had an opportunity to visit the Heineken Brewery on a trip to Amsterdam. During my tour, our bartender was able to give a succinct and general answer: to protect the beer, it's flavor and aroma. If you like, you can read more about foam physics and the importance of foam in this dated WSJ article: http://www.rpi.edu/dept/chem-eng/Biotech-Environ/FOAM/bcbeer.htm

\n", "OwnerUserId": "842", "LastActivityDate": "2014-05-06T19:31:05.273", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"773"}} +{ "Id": "773", "PostTypeId": "2", "ParentId": "742", "CreationDate": "2014-05-08T12:11:31.057", "Score": "1", "Body": "

First of all, GMO seem to be getting a bad reputation, as opposed to the hormones that are given to animals, like dairy cows. In general, GMOs are safe. In fact, modifying plants' properties and features to something that the farmer wants is been going on for thousands of years (it's how we got broccoli from a plant that looked more like kale).

\n\n

That said, many of the Light Lagers (BJCP Styles 1A, 1B and 1C) have adjuncts like corn and rice (as much as 40% of the total grain bill), both of which are notorious for having many varieties that are GMO. One of the reasons for this is that it allows the brewer to brew a high ABV beer and add water back to bring the ABV down to whatever the local laws say are the maximum without being labeled with the ABV. Large breweries will manufacture in one state and sell their product in many states.

\n\n

I have noticed that some beer labels list GMO free rather prominently, however, if a GMO free lifestyle is something you're interested in, I would stick to beers that have ONLY Barley, Hops, Water and Yeast as ingredients.

\n\n

According the Briess, a very large maltster, website:\n[B]ecause malt is made from whole grain and minimally processed, it is an all natural ingredient that helps achieve product claims like natural, healthy, Kosher and non-GMO.

\n", "OwnerUserId": "860", "LastActivityDate": "2014-05-08T12:11:31.057", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"774"}} +{ "Id": "774", "PostTypeId": "2", "ParentId": "771", "CreationDate": "2014-05-08T17:36:25.297", "Score": "2", "Body": "

There's a good explanation of the 'X' as it pertains to whiskey over at MoonshineHeritage. Essentially, the number of X's indicates the number of times the whiskey was run through the still back when very simple pot stills were commonly used. The correlation to quality is probably based on the notion that the purer the alcohol the better the quality of the whiskey.

\n", "OwnerUserId": "861", "LastActivityDate": "2014-05-08T17:36:25.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"775"}} +{ "Id": "775", "PostTypeId": "2", "ParentId": "771", "CreationDate": "2014-05-09T02:32:28.147", "Score": "4", "Body": "

X's and K's actually derive from turn of the last century British brewing practices where the letters and how often they were repeated denoted the basic style and relative strength of the beer. See more here.

\n\n

The more in depth answer is that back then malting and kilning practices weren't as good so you generally just ended up with \"Malt\", which was kindof brownish but varied wildly. So you just sort of made \"Beer\" out of it. X Ales were table beer, made to be consumed relatively fresh, and K Ales were keeping beer made to be kept. Hopping rates likely differed as well as starting strength.

\n\n

I think at some point later X came to denote \"mild\" ale, which referred to a lower hopping rate and K/AK/etc came to refer to \"bitter\", but the blogger I linked to above knows more about that progression than I ever will so I may be totally wrong.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-05-09T02:32:28.147", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"776"}} +{ "Id": "776", "PostTypeId": "2", "ParentId": "769", "CreationDate": "2014-05-09T17:20:34.990", "Score": "3", "Body": "

From the looks of it they sell their beers on rotation in their own bottle shop:

\n
\n

We are just a humble micro brewery producing small batches of beer. Often times people develop a love affair with one particular beer (Roman Candle fanatics tend to be the most assertive!), but we brew over 50 styles in a year! With only 9 fermentors this ultimately means that availability works in ebbs and flows. If your favourite beer isn’t on draft or in the bottle shop, this gives you a chance to experiment with something new. We promise, there are no wrong choices.

\n
\n

They are available in some restaurants and bars in Toronto (they don't have a list of which ones those are on their website), however this doesn't help you in the UK.

\n

They don't ship, and they don't seem to have any links to a proper distributor (from the sounds of it on their website, they sell everything they can make in house already). The relevant bit from their FAQ there:

\n
\n

Do you ship to other parts of Canada? The US? Jupiter?

\n

At this point no. There’s no legal way to ship beer to an individual. Stay tuned for an online retail store where you’ll be able to purchase merchandise. Aliens, be damned!

\n
\n

Looks like your best bet is to head back to Toronto and hit their bottle shop. That's not too far of a drive from the UK...right?

\n", "OwnerUserId": "39", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-05-09T19:01:53.327", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"777"}} +{ "Id": "777", "PostTypeId": "1", "CreationDate": "2014-05-10T17:06:45.270", "Score": "14", "ViewCount": "4687", "Body": "

I recently started getting interested in smoked beers. Quite a few years back, Shiner had a seasonal called Smokehouse. I didn't care for it. However, I've recently been intrigued by varieties of smoked saisons, ipas and marzenbiers. What makes a beer smoky? Is the flavor created by casking, adding flavor or part of the brewing process?

\n", "OwnerUserId": "842", "LastActivityDate": "2016-10-26T14:52:27.397", "Title": "What gives a \"smoky\" beer a smoked flavor?", "Tags": "brewing flavor saison", "AnswerCount": "6", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"778"}} +{ "Id": "778", "PostTypeId": "2", "ParentId": "777", "CreationDate": "2014-05-10T18:12:09.810", "Score": "5", "Body": "

It is certainly possible to make a smoked beer by using a smoked malt at the brewing stage. Excellent information here: Brewing Smoked Beers: Tips from the Pros.

\n", "OwnerUserId": "866", "LastEditorUserId": "5064", "LastEditDate": "2016-07-31T04:37:17.717", "LastActivityDate": "2016-07-31T04:37:17.717", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"779"}} +{ "Id": "779", "PostTypeId": "2", "ParentId": "777", "CreationDate": "2014-05-11T07:36:49.467", "Score": "9", "Body": "

Peated malt can provide a beer with subtle smokiness. Peated malt is malt that has been smoked over peat (decaying vegetation). This is common in Scotch & Whisky Ales. \nCheers

\n", "OwnerDisplayName": "user869", "LastActivityDate": "2014-05-11T07:36:49.467", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"780"}} +{ "Id": "780", "PostTypeId": "2", "ParentId": "777", "CreationDate": "2014-05-12T14:48:16.027", "Score": "11", "Body": "

To add a bit of detail to the existing answers, the primary method for adding a smoked flavor to beer is by using malts that have been dried over a smoky fire, rather than in a kiln which allows the malt to absorb compounds from the smoke that they then release into the beer during brewing. Some of the oldest smoked beers still produced are German (Rauchbiers) and the malt is dried over beechwood.

\n\n

Other woods can be used, and you can find malt smoked over oak, cherrywood, and any number of other species. As mentioned in another answer, peat can be used as well and in fact is for Stone's Smoked Porter.

\n\n

Another method for adding a smoky flavor is to use liquid smoke extract. This is made my cooling and condensing smoke with water, and can be used instead of smoked malt. I'm not aware of commercial brewers who use this method, but it's a way for home brewers who use malt extract instead of dried malt to add smokiness to their beers.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-05-12T14:48:16.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"781"}} +{ "Id": "781", "PostTypeId": "2", "ParentId": "777", "CreationDate": "2014-05-13T15:05:16.490", "Score": "3", "Body": "

Smoked malts. \nStart with a normal malt

\n\n
    \n
  • put malt in a large metal screen
  • \n
  • COLD smoke for a few hours (if you add heat it will also add color to the malt)
  • \n
  • Let sit for a day or so.
  • \n
  • brew beer with it
  • \n
  • enjoy something not many get to taste, yet alone the possibilities of different woods to use for the smoking make it an unused \"5th\" beer ingredient.
  • \n
\n\n

How to Smoke Malts

\n\n

Woods to use for smoking

\n\n
    \n
  • cherry
  • \n
  • apple
  • \n
  • maple
  • \n
  • mesquite
  • \n
  • pecan
  • \n
  • other fruitwoods
  • \n
  • alder (alaskan)
  • \n
  • beechwood (Rauchbeir)
  • \n
  • OAK is usually used raw, added as \"barrelling\" addition not normally used to smoke malts
  • \n
\n\n

NEVER USE EVERGREEN WOOD FOR SMOKING MALT. - PINEY (HOP TERRITORY)

\n\n

Smoke-Flavored/Wood-Aged Beer

\n\n

Peat malt is bad stuff- only used for scotch and whiskey mashes. DO NOT USE IT IN BEER unless you want to throw it out.

\n", "OwnerUserId": "467", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2016-07-31T04:33:54.390", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"782"}} +{ "Id": "782", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-05-14T11:40:12.483", "Score": "2", "Body": "

In terms of bitterness vs hoppiness, with the 3 stages in the process where hops are generally added, only the final stage gives distinct hoppiness (as opposed to bitterness) as the hops aren't in the mix long enough for heat to break down the oils and flavour.

\n\n

The reason why there are so many types of hops used, in varying concentrations, at various stages throughout beer making is because people are different.

\n\n
    \n
  • I love a hoppy beer. Hoppier the better (at least in the summer months)
  • \n
  • My wife hates them.
  • \n
\n\n

So really, the answer to your question is No - some beers aren't too hoppy; they are just too hoppy for you.

\n", "OwnerUserId": "187", "LastActivityDate": "2014-05-14T11:40:12.483", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"784"}} +{ "Id": "784", "PostTypeId": "1", "AcceptedAnswerId": "787", "CreationDate": "2014-05-15T00:16:55.693", "Score": "8", "ViewCount": "546", "Body": "

What sour beers would be a good starting point for someone that enjoys pale ales and too strong of a flavor profile may turn them off at first?

\n", "OwnerUserId": "529", "LastActivityDate": "2014-05-22T23:20:50.413", "Title": "Sour Beers for the beginner", "Tags": "taste", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"786"}} +{ "Id": "786", "PostTypeId": "2", "ParentId": "784", "CreationDate": "2014-05-15T10:08:41.097", "Score": "-2", "Body": "

In general, G(u)euze Beer is pretty sour.\nMore on that here.\nSince I don't like Geuze beer, I don't know much about it. However, I once tasted 7 different Geuze beers from a region in Belgium around Brussels and those were really sour. I wouldn't recommend those.

\n", "OwnerUserId": "662", "LastActivityDate": "2014-05-15T10:08:41.097", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"787"}} +{ "Id": "787", "PostTypeId": "2", "ParentId": "784", "CreationDate": "2014-05-16T03:15:04.047", "Score": "4", "Body": "

I'd start an introduction to sour, or wild ales with the more approachable Lambics, like Lindemans Framboise Lambic. With a beer like that, the sour notes from the wild yeast are offset by the sweetness of the fruit and the pleasant texture from the fizz of the carbonation, making it an approachable drink not only for one not used to sour ales, but for one not used to beer at all.

\n\n

Another option (for a North American) might be a beer categorized as an American Wild Ale, such as Russian River's Consecration, or Sierra Nevada Brux which will have the sour character but also be conscientious of the flavors favorable to the American palate.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-05-16T03:15:04.047", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"788"}} +{ "Id": "788", "PostTypeId": "1", "AcceptedAnswerId": "798", "CreationDate": "2014-05-18T04:34:12.567", "Score": "14", "ViewCount": "15857", "Body": "

I've seen Why did my Big Bad Baptist come in a brandy snifter? and understand from the answer there that there are two basic reasons to use a glass with a wider bowl for beer: to concentrate armoas, or to reduce quantity for stronger beers. (That question was about a stout.)

\n\n

I don't have a lot of experience with this, but until now when I've ordered lagers they've generally come in a tall glass (not curved). A few days ago I ordered a Stella Artois and it came in the following glass:1

\n\n

\"glass\"

\n\n

(The glass was full when delivered; I didn't think to take a picture for this question right away.)

\n\n

This glass does not concentrate aromas to the extent that a brandy snifter does; further, this beer did not seem to be particularly aromatic. (I've never had this one before, which is why I ordered it.) Nor is it a highly-alcoholic or expensive beer that they might want to serve in a smaller quantity. I'd guess this glass to have been in the 10-12oz range.

\n\n

Is there a benefit to the mildly curved shape of this glass for this type of beer? I note that it's a Stella Artois glass, so presumably it's not just a bartender's arbitrary choice.

\n\n

1 I was traveling, so I can't just go visit them again to see how they serve other beers.

\n", "OwnerUserId": "43", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2016-10-22T00:30:50.760", "Title": "Glassware for lagers: why did my Stella Artois come in this kind of glass?", "Tags": "glassware lager", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"789"}} +{ "Id": "789", "PostTypeId": "2", "ParentId": "784", "CreationDate": "2014-05-18T22:47:15.613", "Score": "1", "Body": "

You might also want to try a berliner weisse. They can be pretty sour, but are still very drinkable (at least in my opinion). Some breweries have these on tap, and offer a choice of flavored syrup as a sweetener (e.g., raspberry, strawberry, peach).

\n\n

In terms of bottled ones to look for, Dogfish head has Festina Peche. My current favorite is Cruiser, a recent release by the Ithaca Beer Co. available in 6 packs and pretty reasonably priced. Berliner Weisse are usually available this time of year, so check your local beer store for some other seasonals.

\n", "OwnerUserId": "896", "LastActivityDate": "2014-05-18T22:47:15.613", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"790"}} +{ "Id": "790", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-05-18T22:52:24.650", "Score": "1", "Body": "

In my opinion, there is no such thing as too hoppy. Beers like Heady Topper have an incredible amount of hops, yet are highly drinkable.

\n\n

However, some beers have a poor malt/hops balance, and as as result have an overbearing hope profile. These beers smell and taste like grass, and are not very drinkable.

\n", "OwnerUserId": "896", "LastActivityDate": "2014-05-18T22:52:24.650", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"791"}} +{ "Id": "791", "PostTypeId": "1", "AcceptedAnswerId": "792", "CreationDate": "2014-05-18T22:59:55.433", "Score": "21", "ViewCount": "2046", "Body": "

I have noticed a number of gluten free beers pop up on the shelf of my local beer store over the past few years. Are these drinkable? And does anyone have any recommendations of any to try?

\n", "OwnerUserId": "896", "LastActivityDate": "2022-02-16T10:28:45.083", "Title": "Gluten free beer recommendations?", "Tags": "specialty-beers", "AnswerCount": "16", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"792"}} +{ "Id": "792", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-05-18T23:08:46.120", "Score": "13", "Body": "

Omission isn't too bad. My wife is gluten free and she drinks this from time to time. I've tried it and is better (IMO) then most other GF beers.

\n\n

Omission Beer

\n\n

And from their FAQ

\n\n
\n

In 2013, Mass Spec research was conducted by an independent lab which\n validated that Omission Lager and Pale Ale are devoid of known barley\n toxic epitopes, the specific peptide sequences and reactive sites in\n gluten molecules that cause reactions in the human small intestine. \n These same beers were tested using the R5 Competitive ELISA and were\n found to lack any measureable gluten content. A growing body of peer\n reviewed scientific literature supports that our process is effective\n in breaking up and detoxifying gluten peptides.

\n
\n\n

Another option is Ghostfish, which is a pretty good IPA

\n\n

Ghostfish Brewing Company

\n", "OwnerUserId": "529", "LastEditorUserId": "5064", "LastEditDate": "2017-01-06T13:29:51.840", "LastActivityDate": "2017-01-06T13:29:51.840", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"793"}} +{ "Id": "793", "PostTypeId": "2", "ParentId": "788", "CreationDate": "2014-05-19T00:51:10.090", "Score": "5", "Body": "

According to Stella Artois

\n
\n

In order to perfectly enjoy the unique taste and beauty of Stella Artois, we created the Chalice, instead of merely a glass. The Chalice is designed so that every curve serves a discrete purpose to how Stella Artois should be enjoyed.

\n

The authentic shape of the body encourages the perfect balance of C02 and liquid, enhancing head retention and flavor. The angles at the bottom cause a wave that works in harmony with the liquid alchemy. The stem provides a means to hold the chalice so that the Stella Artois stays cold longer and it's embellished with a star to honor our history.

\n

All of these details, however small, make a big impact on the flavor and experience, giving everyone the opportunity to taste a proper Stella Artois.

\n
\n

Source

\n", "OwnerUserId": "529", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-12-06T22:34:48.623", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"794"}} +{ "Id": "794", "PostTypeId": "2", "ParentId": "740", "CreationDate": "2014-05-19T05:02:18.027", "Score": "1", "Body": "

Go to the store and get Bitburger german pilsner in a can, and in a bottle. Tell me if you taste a difference. I tried that and the canned stuff is a heck of a lot better tasting than the skunked stuff in the brown glass bottle.

\n", "OwnerUserId": "898", "LastActivityDate": "2014-05-19T05:02:18.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"795"}} +{ "Id": "795", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-05-19T05:05:23.200", "Score": "8", "Body": "

I've tried several different Gluten Free beers in the past few years. So far, the only brand that I've tasted that resembles normal beer almost 100%, is Omission Lager and Pale Ale. Their IPA doesn't really do it for me, but it's still the closest Gluten Free IPA I've tasted.

\n", "OwnerUserId": "898", "LastActivityDate": "2014-05-19T05:05:23.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"796"}} +{ "Id": "796", "PostTypeId": "1", "AcceptedAnswerId": "797", "CreationDate": "2014-05-20T13:54:05.953", "Score": "4", "ViewCount": "444", "Body": "

I was picked up by someone on another SE site (unrelated) when I used the phrase \"Some beers, like mead...(blah blah)\" - Apparently a mead isn't a beer. I'm good with that in the pedantic sense that it's correct, but I wasn't intending to be quite so specific, and was merely suggesting that I was not talking about spirits etc. It got me thinking about the definition of what could, or could not be called a beer, and whether a beer is an actual drink at all, or just the name of the group of drinks that we call beers, but which really have more specific names and definitions.

\n\n

The key phrase for me, in understanding it from a simple taxonomy point of view is that alcoholic drinks are essentially either Beers Wines or Spirits. That's my starting point, which may well be rudimentary at best and wrong at worst

\n\n

Using this definition, a Mead must clearly be a beer in the most basic definition; it's certainly not a win or spirit? Obviously under beer you then have ales, lagers, ciders, perrys, meads, stouts, bitters and probably a million others, and probably further sublevels (dry cider, sweet cider, sparkling cider....), but is there a second level \"beer\" also at this level?

\n\n

Really, is there actually a single specific drink that is a beer that is not further defined as, for example, an IPA, or a Stout?

\n", "OwnerUserId": "902", "LastActivityDate": "2014-06-04T18:25:44.907", "Title": "What is the definition of Beer or the Beer \"family\" of drinks", "Tags": "history terminology", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"797"}} +{ "Id": "797", "PostTypeId": "2", "ParentId": "796", "CreationDate": "2014-05-20T16:51:16.667", "Score": "7", "Body": "

IMHO, I would classify ciders, perrys, and meads to be more like wine than beer -- they are made by fermenting fruit or honey without substantial change to the base ingredients. Beer is made from malted grain, which must first be mashed to convert starch into fermentable sugars. Beer must contain 4 essential ingredients: Malt extract (from the grain), hops, water and yeast. It may contain others as well, but if any of these four are missing it is not beer.

\n\n

I think that your premise of \"that alcoholic drinks are essentially either Beers Wines or Spirits.\" is wrong because it oversimplifies and excludes some beverages. Besides mead and cider, there are also malt-based alcho-pop beverages (Mike's Hard Lemon, Twisted Tea, etc.) that I would not call beer either - they contain 3 of the four ingredients, but lack hops. There are other local indigenous alcoholic beverages around the world that don't fit any of these categories, like Japanese sake.

\n\n

There are many styles of beer -- so the word \"beer\" refers to all of them, and there is no style that is called just \"beer\". Here is a link that describes many styles of beer, mead and cider. Note that this is not a comprehensive list; brewers keep developing new styles all the time to create desirable products. For example, Black IPAs came into vogue a couple of years ago, now I am seeing White IPAs.

\n\n

BJCP Style Descriptions

\n", "OwnerUserId": "381", "LastEditorUserId": "381", "LastEditDate": "2014-05-20T18:22:05.753", "LastActivityDate": "2014-05-20T18:22:05.753", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"798"}} +{ "Id": "798", "PostTypeId": "2", "ParentId": "788", "CreationDate": "2014-05-21T01:20:03.927", "Score": "15", "Body": "

The first, and primary reason any beer comes in branded glassware is this: Marketing. Brewers, like any other businesses, like for the general public to know that the anonymous tapped beer you're drinking is theirs. That is why they provide branded glasses to bars, and request (or require) that their beer be served in their glasses.

\n\n
\n

Is there a benefit to the mildly curved shape of this glass for this type of beer?

\n
\n\n

In my observations, yes, there is. While the throat may not narrow as severely as a brandy snifter, the effect of concentrating the aroma is still achieved. Eyeballing it, I'd say that the curvature is somewhere in between that of my champagne flutes and my red wines glasses, which are presumed to have the same general effect. More generally I'd say that a glass with a narrowing or restricted throat does concentrate the aroma, and the degree of restriction doesn't seem to matter significantly, to my nose. (Assuming it isn't too great, that is. Beer in a bottle or can, for instance, is definitely at a disadvantage.)

\n\n

I'd like to also look at a few of the reasons they state in their marketing material as well.

\n\n
\n

The authentic shape of the body encourages the perfect balance of C02 and liquid, enhancing head retention and flavor.

\n
\n\n

I don't have any evidence to back this up, but I suspect that this is probably the most legitimate of the claims. This would have a significant effect on the experience of drinking the beer, it is going to be specific to their recipe, and it's a reason that's often given for custom beer glassware. (Boston Beer Company laser etches the bottom of their Sam Adams Boston Lager glass to enhance cavitation, for instance.)

\n\n
\n

The angles at the bottom cause a wave that works in harmony with the liquid alchemy.

\n
\n\n

I have no idea what this means. Alchemy is the term for pre-chemistry, and primarily deals with trying to turn ordinary substances into gold. I assume they're trying to insinuate that the glass magically turns Stella into better beer.

\n\n
\n

The stem provides a means to hold the chalice so that the Stella Artois stays cold longer

\n
\n\n

This is plausible, and perhaps unfortunate. This is why you are supposed to hold red wine glasses by the bowl (to warm the wine) and white wine glasses by the stem (to keep it cool.) However, with wine, a serving is generally five ounces or so, compared to twelve or more of lager. The effect certainly won't be the same given the significantly higher mass. The unfortunate bit is that colder is not generally what you want when you're talking about good beer. Colder is the realm of the cheap macro-brews like Coors Light. Cold subdues flavor compounds, which is useful when the flavor of the beer is nasty, and not so useful when it's pleasant. This certainly isn't a a requirement or general best practice for lagers as you won't find stemmed glassware used for Boston Beer's Samuel Adams Lager glass:

\n\n

\"Samuel

\n\n

or my classic Spiegelau Lager glass:

\n\n

\"Speieglau

\n\n

or any of the glasses you'll see used for the many fine Lagers of Germany. So, I have to suppose one of the following two reasons. First, they may simply be pandering to the general belief that colder beer is better. Second, it would be unfortunate if they were trying to hide a lack of quality by trying to ensure the beer was too cold to taste properly.

\n\n

Finally, and I've left this to last, because it's purely my opinion...I think they've chosen the chalice glass specifically because it's fancy, and that's the image they want to portray for their beer. When people see the Stella glass, they don't want their beer to be lumped in with the pint-glass styles, they want it to stand out as sophisticated, and the chalice specifically gives it that cachet.

\n\n

So, my top line and bottom line are down to marketing, with a bit of truth and a bit of fiction to all the bits in between.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-05-21T01:20:03.927", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"799"}} +{ "Id": "799", "PostTypeId": "2", "ParentId": "796", "CreationDate": "2014-05-21T09:11:44.310", "Score": "0", "Body": "

It is quite simple.\nBeer is made off starch (read: the alcohol)\nand Wines are made from fruit's sugar (fructose and glucose).

\n", "OwnerUserId": "905", "LastActivityDate": "2014-05-21T09:11:44.310", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"800"}} +{ "Id": "800", "PostTypeId": "2", "ParentId": "796", "CreationDate": "2014-05-22T00:00:55.647", "Score": "0", "Body": "

I think the main difference is that beer is brewed - you have to steep the grain in water. You don't do this for meads or wines.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-05-22T00:00:55.647", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"801"}} +{ "Id": "801", "PostTypeId": "2", "ParentId": "777", "CreationDate": "2014-05-22T18:34:16.753", "Score": "1", "Body": "

One other potential source of smoke flavors is actually the yeast. Some yeast produce phenolic compounds during fermentation that produce smoke flavors and aromas. Scottish yeast strains in particular are known for this.

\n", "OwnerUserId": "802", "LastActivityDate": "2014-05-22T18:34:16.753", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"802"}} +{ "Id": "802", "PostTypeId": "2", "ParentId": "784", "CreationDate": "2014-05-22T23:11:00.927", "Score": "3", "Body": "

I would highly recommend Rodenbach as a starting point. It is relatively inexpensive, surprisingly available for it's style, and damn tasty. It is a Flanders Red style, brewed with sour cherries, of which there are many similar brands ranging from candy-sweet to very sour. Rodenbach is the perfect balance of the two IMO. If you like the style, graduate to the Grand Cru, which adds more age, funk and sour.

\n\n

After these I'd check out Flanders Brown ales (similar though less cherry), and Geuzes, such as Almanac's Golden Gate Gose. If you're feeling adventurous and spendy, make your way through Almanac's unique \"Farm to Barrel\" series of wild fruit beers, as well as The Bruery's Oude Tarte and possibly Sour in the Rye (warning, this one will melt your tastebuds).

\n", "OwnerUserId": "911", "LastEditorUserId": "911", "LastEditDate": "2014-05-22T23:20:50.413", "LastActivityDate": "2014-05-22T23:20:50.413", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"803"}} +{ "Id": "803", "PostTypeId": "1", "AcceptedAnswerId": "804", "CreationDate": "2014-05-23T06:23:29.783", "Score": "6", "ViewCount": "211", "Body": "

What are abbey beers? How did they come about? Why did monks brew beer? Does the monks still brew beer or is it done by brewing companies now?

\n", "OwnerUserId": "123", "LastActivityDate": "2014-05-23T12:04:00.443", "Title": "What are abbey beers? How did they come about? Why do monks brew beer?", "Tags": "trappist", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"804"}} +{ "Id": "804", "PostTypeId": "2", "ParentId": "803", "CreationDate": "2014-05-23T12:04:00.443", "Score": "3", "Body": "

It is exactly as you would interpret it from the name. It is brewed in abbeys. Monks started brewing beer to gain money. Beer was very popular in the middle ages and water was mostly infected. The brewing process would cleanse the water from bacteria and other filthy stuff because of the boiling process. Some unofficial abbey beers are in fact not linked officially to an abbey but use the name to gain profit out of this. I am not sure whether the monks still brew it completely themselves, but I would strongly believe that they are still hugely involved.\nThe Trappist is a special and rare beer that is also an abbey beer. An abbey beer can only be called Trappist if it is brewed by monks that are Cisterciënzers. The only trappist beers in the world:

\n\n
Achel   Abdij van Achel (Belgium)\nChimay  Abdij Notre-Dame de Scourmont (Belgium)\nEngelszell  Stift Engelszell (Austria)\nLa Trappe   Abdij Koningshoeven (The Netherlands)\nOrval   Abdij Notre-Dame d'Orval (Belgium)\nRochefort   Abdij Notre-Dame de Saint-Rémy (Belgium)\nSpencer Saint Joseph's Abey (USA)\nWestmalle   Abdij van Onze-Lieve-Vrouw van het Heilig Hart (Belgium)\nWestvleteren    Sint-Sixtusabdij (Belgium)\nZundert Abdij Maria Toevlucht (The Netherlands)\n
\n", "OwnerUserId": "662", "LastActivityDate": "2014-05-23T12:04:00.443", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"805"}} +{ "Id": "805", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-05-23T17:29:50.807", "Score": "1", "Body": "

Stone Brewery serves a smokey cheddar garlic soup at their tasting room bistro which is cooked with their Ruination IPA. The bitterness balances the salt and richness of the cheddar. I would definitely use IPA cautiously in cooking though, as the beer and alcohol will partially evaporate, causing the hop bitterness to concentrate noticably.

\n", "OwnerUserId": "911", "LastActivityDate": "2014-05-23T17:29:50.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"806"}} +{ "Id": "806", "PostTypeId": "1", "AcceptedAnswerId": "808", "CreationDate": "2014-05-24T09:58:14.190", "Score": "8", "ViewCount": "217", "Body": "

Altbier is found in Dusseldorf.

\n\n

Is Altbier \"alt\" (i.e. \"old\" in german) because they are aged like wine?

\n\n

Can altbier be found outside of Dusseldorf?

\n", "OwnerUserId": "123", "LastActivityDate": "2016-06-26T03:00:59.973", "Title": "What is Altbier?", "Tags": "german-beers", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"807"}} +{ "Id": "807", "PostTypeId": "1", "AcceptedAnswerId": "825", "CreationDate": "2014-05-24T10:06:29.983", "Score": "4", "ViewCount": "2195", "Body": "

The common beers in Gran Canaria are Topical and Dorada.

\n\n
    \n
  • What other local beers are there on the Canary Island?

  • \n
  • Is there any microbrewery / local brewery in the Canary Island?

  • \n
  • Are there craft beers in the Las Palma de Gran Canaria?

  • \n
\n", "OwnerUserId": "123", "LastEditorUserId": "37", "LastEditDate": "2014-05-27T14:26:43.317", "LastActivityDate": "2020-06-28T11:16:03.720", "Title": "Looking for local beers on the Canary Islands?", "Tags": "breweries local", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"808"}} +{ "Id": "808", "PostTypeId": "2", "ParentId": "806", "CreationDate": "2014-05-25T15:15:31.460", "Score": "5", "Body": "

According to Beer Advocate, a longer than normal conditioning period is one possible reason for it being an \"altbier\". A second explanation is that it's tied to Latin and refers to the rising yeast.

\n\n

Quite a few breweries outside Dusseldorf make altbiers (or have made, at least). That BeerAdvocate page lists

\n", "OwnerUserId": "892", "LastEditorUserId": "5064", "LastEditDate": "2016-06-26T03:00:59.973", "LastActivityDate": "2016-06-26T03:00:59.973", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"809"}} +{ "Id": "809", "PostTypeId": "1", "AcceptedAnswerId": "831", "CreationDate": "2014-05-27T13:25:12.083", "Score": "3", "ViewCount": "152", "Body": "

I'm spending my summer in Florence, Italy. I've been here for a week already and I've since realized they much rather prefer wine, but I don't. I'm looking for some Italian craft beers because I don't know how much longer I can drink Heineken. So any ideas?

\n", "OwnerUserId": "920", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:57:12.743", "LastActivityDate": "2016-06-16T02:57:12.743", "Title": "Are there any Italian craft beers?", "Tags": "craft-beers", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "2", "ClosedDate": "2014-05-30T21:36:10.193", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"810"}} +{ "Id": "810", "PostTypeId": "2", "ParentId": "809", "CreationDate": "2014-05-27T16:31:43.973", "Score": "4", "Body": "

The question could be changed to \"craft Italian beer\" or \"Italian real ale\" instead of good. That would fix the question quality. \nTo answer the better question, there are about 360 micro-breweries in italy under the umbrella MoBI organization (http://www.movimentobirra.it/) which is similar to CAMRA and has an English translation to their website. I would recommend using that as an initial source of information as breweries change and I am not familiar with the Florence area. \nhttp://www.pintamedicea.com/birra/ based in Florence may also be helpful depending on your level of Italian language skills.

\n", "OwnerUserId": "909", "LastActivityDate": "2014-05-27T16:31:43.973", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"811"}} +{ "Id": "811", "PostTypeId": "1", "AcceptedAnswerId": "822", "CreationDate": "2014-05-27T16:31:59.870", "Score": "5", "ViewCount": "262", "Body": "

I visited Bavaria Germany once and had my first taste of beer ever. It was delicious! I have no idea what beer or even what type of beer it was.

\n\n

I've since \"sampled extensively\" many beers in my home area ( Minnesota, USA ) but whenever I look through a liquor store, I never see \"Bavarian Beer\" on any labels. I sometimes see \"Belgian\" and get that by mistake, but I usually don't like those ones, haha.

\n\n

Looking suggestions of beer type or specific brands or flavors.

\n", "OwnerUserId": "923", "LastActivityDate": "2016-10-08T21:35:05.373", "Title": "What kind or kinds of beer are common in Bavaria, Germany?", "Tags": "local german-beers", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"812"}} +{ "Id": "812", "PostTypeId": "2", "ParentId": "811", "CreationDate": "2014-05-27T16:39:22.663", "Score": "2", "Body": "

Was the beer that you tried pale yellow, slightly sour in flavour and cloudy? If so it was probably Weissbier which is Bavarian wheat based beer. Any Weissbier or wheat beer should be similar to it and these are widely available (some British and American breweries have started to make wheat beers recently). If you like Weissbier you will probably like the Saison (style) beers from France and Belguim.

\n\n

It the beer was dark coloured it was probably the highly seasonal and delicious Bockbier which is extremely difficult to get outside Bavaria and out of season.

\n", "OwnerUserId": "909", "LastActivityDate": "2014-05-27T16:39:22.663", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"813"}} +{ "Id": "813", "PostTypeId": "2", "ParentId": "806", "CreationDate": "2014-05-28T17:21:31.063", "Score": "2", "Body": "

Essentially it is an ale that ends up being lagered after the primary fermentation is completed.

\n\n

The malts used are primarily pilsen, which is normally used in lagers.\nNot a lot of hop flavor and aroma, some bitterness but a closer malt/hop balance.

\n\n
\n

Altbiers are light copper to light brown ales with white heads. The beer is very clear due to the lagering. The aroma is slightly malty, with almost no hop aroma. The flavor is bitter. Not an IPA bitter, but still a firm bitter flavor. Some of the altbiers have a light caramel flavor, which I like, and is followed by a dry finish. The beer could be compared to a hoppy Vienna style lager. The alcohol content of the beer is lower than average, usually between 4.5% to 5.2%. This makes altbiers a great session beer.\n quoted from link below.

\n
\n\n

German AltBier - Homebrew

\n", "OwnerUserId": "467", "LastActivityDate": "2014-05-28T17:21:31.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"814"}} +{ "Id": "814", "PostTypeId": "1", "CreationDate": "2014-05-29T08:35:34.430", "Score": "8", "ViewCount": "913", "Body": "

Like most of you here, I thoroughly enjoy beer.\nHow can I try a wide variety beers without buying them by the case/spending a lot of money?

\n\n

Aspiring beer enthusiast that is grows tired of the usual, and wants to branch out.\nAlso on a broke, paying for school out of pocket, college kid budget.

\n", "OwnerUserId": "928", "LastActivityDate": "2014-05-30T03:08:25.990", "Title": "How can I try a wide variety beers without buying them by the case/spending a lot of money?", "Tags": "taste style specialty-beers flavor united-states", "AnswerCount": "5", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"815"}} +{ "Id": "815", "PostTypeId": "2", "ParentId": "814", "CreationDate": "2014-05-29T08:57:42.207", "Score": "3", "Body": "

I will update this answer when I get more information from OP about region but I believe the following will be helpful: [edit]: reread the tags and spotted that it was US - think that my thoughts all still stand up but will check some specifics on US beer festivals.

\n\n

In the UK and a few other countries and regions organizations like CAMRA (the Campaign for Real Ale) run beer festivals which work out, on a pint for pint basis, cheaper when trying a wide variety of beers. Although there is usually an entry fee (at least as far as CAMRA events go) each drink tends to be cheaper and there is the option of trying more different beers by buying in half pint measures (recommended). The biggest benefit of going to festivals, however, is the range of beers available. A liquor store / off license / bar can only really stock a few different beers and these are usually ones that they can get consistently, in volume, and at either a suitable price or within their tie (don't get me started on the beer tie), whereas festivals are much freer to buy different beers from varying sources as they are one-off events and less restricted.

\n\n

A second idea would be to set up a tasting club so that you can share the costs and the beers. This runs the risk (!) of making new friends as well!

\n\n

source: I help to run a CAMRA beer festival and work at 2+ others dependent on my free time

\n", "OwnerUserId": "909", "LastEditorUserId": "909", "LastEditDate": "2014-05-29T09:04:09.567", "LastActivityDate": "2014-05-29T09:04:09.567", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"816"}} +{ "Id": "816", "PostTypeId": "1", "CreationDate": "2014-05-29T09:16:06.683", "Score": "-2", "ViewCount": "314", "Body": "

I am a Food & Beverage industry analyst from China and I'd like to know if other overseas consumers know Chinese Beer and how do you guys rate it? Also, which brands do you know of (Tsingtao)? And any other opinions.
\nPersonally I prefer German beer and don't like Chinese beer.

\n", "OwnerUserId": "929", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:56:05.190", "LastActivityDate": "2016-06-16T02:56:05.190", "Title": "Have you guys ever tried Chinese beer? How would you rate it?", "Tags": "recommendations", "AnswerCount": "3", "CommentCount": "4", "FavoriteCount": "1", "ClosedDate": "2014-06-09T20:57:57.787", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"817"}} +{ "Id": "817", "PostTypeId": "2", "ParentId": "74", "CreationDate": "2014-05-29T09:44:03.633", "Score": "3", "Body": "

Any beer is only as good as the brewer's skills. In London (UK) we have a brewery producing a 2.8% abv beer (Redemption brewery, beer name escapes me) which is packed with hops and of greater hop depth than many IPAs. Batches of a beer that are brewed to be low alcohol will necessarily be different to those brewed at full strength which is why I would hope (pray?) that any brewer whose product is worth drinking would make a different beer, brewed at low strength for these markets. These beers can be as flavoursome and exciting as, if not more so than, higher strength beers.\nThe process to make the beer lower ABV is simply reducing the amount of sugar that can be converted into alcohol by using a lower sugar content mash either using specific lower sugar malts, using less malt, or using a yeast that will not support higher alcohol concentrations (alcohol kills yeast...!). Using less yeast won't work as the given yeast will continue to multiply to make up the shortfall. If you are not making real beer halting the fermentation early by killing the yeast with heat (or similar) will produce a lower alcohol beer but it will be sweeter as there is more unfermented sugar. Fining and serving real ale before fermentation has produced a higher strength may have a similar effect for those types of beer.\nSince alcohol dissolves flavouring compounds better than water it is much harder to brew a highly flavoured weak beer but this may be offset by taste complexity.\nLarger breweries will reduce alcohol levels chemically post-production by boiling off alcohol or similar. this will reduce the flavouring compounds in the beer (see GCSE fractional distillation notes or similar for details) and so make the beer taste weaker. These are produced at mass market quantities and even the full strength product is pretty awful compared with crafted or real beers.

\n", "OwnerUserId": "909", "LastActivityDate": "2014-05-29T09:44:03.633", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"818"}} +{ "Id": "818", "PostTypeId": "2", "ParentId": "814", "CreationDate": "2014-05-29T13:24:13.727", "Score": "6", "Body": "

You can look for breweries in your areas that give tours. These often include free tastings. (Since you mentioned you're from the Chicago area, I know there's a bus tour that takes you to different breweries in Chicago and Milwaukee. There's a fee, but you'd get to try a lot of different beers.)

\n\n

Also, look for brewpubs and restaurants in your area that sell flights of beer. A flight is 4-5 samples of different beers served together. The cost is normally about the same as a full glass, and the total volume is usually the same or a little more. This allows you to try 4 or 5 different beers for about the same price as you'd normally pay for one.

\n", "OwnerUserId": "154", "LastActivityDate": "2014-05-29T13:24:13.727", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"819"}} +{ "Id": "819", "PostTypeId": "2", "ParentId": "816", "CreationDate": "2014-05-29T13:25:00.957", "Score": "2", "Body": "

Most Chinese Beers are pale lagers or pilsners - bland, tasteless, and topped with glycerin as a stabilizer which gives people a pounding headache.

\n\n

Many of my Chinese and foreigner friends would drink Carelsberg at the bar - a danish bland and tasteless beer.

\n\n

When we had the money for it, everyone bought German or Belgian beer, \neven my friends in the far western provinces of Sichuan and Yunnan.

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:25:00.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"820"}} +{ "Id": "820", "PostTypeId": "2", "ParentId": "777", "CreationDate": "2014-05-29T13:31:33.250", "Score": "1", "Body": "

One source of smokiness unmentioned as of yet is vinvyl-guaiacol production from bacteria metabolism.

\n\n

The answers already given are more relevant, however there is one important source that has been unmentioned. Although more common in distilling, lactobacillus and other strains of bacteria can attribute flavor to fermentation products. Different strains induce a different, possibly harmful, effect. Focusing on lactobacillus, which is your common bacteria used in cheese making, lactobacillus can introduce more lactic acid into the beer. This anaerobic bacteria is more active either before fermentation has started (either by contamination or inoculation) and after fermentation has ended. More so after fermentation this bacteria has metabolize the autolysis products of yeast. The acids from this bacteria later form into vinvyl-guaiacol, a flavor compound that lends a spicy and smokey note.

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:31:33.250", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"821"}} +{ "Id": "821", "PostTypeId": "2", "ParentId": "814", "CreationDate": "2014-05-29T13:37:11.343", "Score": "3", "Body": "

Most beer shops and some grocery stores (if that's legal in your state) allow you to do a \"Mixer-Sixer\" or \"Create your own six-pack\" where you can combine a variety of single bottles/cans for a variety six pack. You pay a little bit extra per bottle for the convenience but and you get to pick specifically which ones you try.

\n\n

To learn your preferences, I would suggest the following styles: (ordered from darkest to lightest with a recommended beer in parenthesis)

\n\n
    \n
  • Stout (Samuel Smith Oatmeal Stout)
  • \n
  • Double Bock/Doppelbock (Ayinger Doppelbock)
  • \n
  • IPA (Dogfish Head 60min or 90min IPA)
  • \n
  • Pale Ale (Sierra Nevada Pale Ale)
  • \n
  • Pilsner (Bell's Beer by Bells Brewery - this is a traditional Czech Pilsner)
  • \n
  • Hefeweizen (Paulaner Bavarian Hefeweizen)
  • \n
\n\n
\n\n

EDIT

\n\n

@Bill The Lizard's answer: Going on a brewery tour is definitely good advice. Additionally, you should consider getting beer on tap which tends to be fresher and in better condition while at restaurants or breweries. Furthermore, if you have the chance to visit a brewery, you should specifically try their seasonal, limited, and special releases.

\n\n

Answered by: The Gastrograph Team

\n", "OwnerUserId": "931", "LastEditorUserId": "931", "LastEditDate": "2014-05-29T13:44:50.180", "LastActivityDate": "2014-05-29T13:44:50.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"822"}} +{ "Id": "822", "PostTypeId": "2", "ParentId": "811", "CreationDate": "2014-05-29T13:41:23.050", "Score": "2", "Body": "

As was said before, a Weissbier is also called a Hefeweizen and is very common in Bavaria and the rest of Germany. If you want something similiar look for a Paulaner Hefeweizen which is sold in America. The yeast that is added gives it a strong Banana like flavor. It is typically served in a tall narrow glass.

\n\n

Other common beers in Bavaria are Oktoberfest, Pilsner, Doppelbock, and Dunkel. Out of those the Pilsner and Oktoberfest don't have a ton a flavor. The other two have sweeter flavors and are darker with the Doppelbock being available in the winter as a high alcohol beer.

\n\n

Very few labels will specify Bavaria, but all imported beers are required by law to specify their country of origin. Bavarian Beers(or Biers if you will) are the same as other German beers, so simply look for a German beer.

\n\n

Answered by: The Gastrograph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:41:23.050", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"823"}} +{ "Id": "823", "PostTypeId": "2", "ParentId": "708", "CreationDate": "2014-05-29T13:46:54.870", "Score": "0", "Body": "

Another thing to note is try and use a car if you are going for the simple six pack. If you don't you can rent bikes from Hotel Palace? I believe in the center market. The hotel isn't open on Sundays.

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:46:54.870", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"824"}} +{ "Id": "824", "PostTypeId": "2", "ParentId": "768", "CreationDate": "2014-05-29T13:49:16.033", "Score": "2", "Body": "

YES. Deschutes Chainbreaker White IPA is in fact made with ale yeast using pilsner, malted wheat, wheat, and a large quantity of hops. A pale ale is an ale (a beer made with ale yeast) and lightly malted barley and adjuncts. An IPA is a pale ale that has been hopped greatly. Your particular white IPA is light in color and has 55 IBUs, qualifying it for the IPA class of beer.

\n\n

In case you are curious:\nThe reason IPAs were established is because the English brewers receiving spices from India made a habit of sending the would be empty ship back loaded with beer. At the time pale ales were the staple beer. At first the beer developed a bad flavor during the long voyage. English brewers learned to cover the negative flavor of their pale ales with more bittering hops.

\n\n

IBUs stands for International Bitterness Units, it is an approximation of how much bitterness you will taste.

\n\n

Answered by: The GastroGraph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:49:16.033", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"825"}} +{ "Id": "825", "PostTypeId": "2", "ParentId": "807", "CreationDate": "2014-05-29T13:51:22.220", "Score": "2", "Body": "

Craft beer and beer tourism seems to have not yet hit the Canary Islands.

\n\n

The other notable beer local to the Canary Islands that we know of is Viva (http://www.cervezaviva.com/).

\n\n

We don't know of any craft beers in Las Palmas de Gran Canaria but Cerveza Gourmet (http://www.ratebeer.com/p/cerveza-gourmet-las-palmas-de-gran-canaria/34492/) \nappears to be a store to visit if you are looking for a wide selection to choose from.

\n\n

Answered by: The Gastrograph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:51:22.220", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"826"}} +{ "Id": "826", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-05-29T13:59:21.137", "Score": "0", "Body": "

The answer is subjective. A lot of people are referring to IBUs in their answers. IBUs are a weak approximation, they only give you an idea.

\n\n

Try the beer yourself! I for one love bitterness and believe brewers should always push the limit of any flavor in pursuit of exciting, tasty beer. Yet as with anything it is a matter of balance. Some flavors compliment each other, some do not. Learn what you like, share.

\n\n

Answered by: The GastroGraph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T13:59:21.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"827"}} +{ "Id": "827", "PostTypeId": "2", "ParentId": "655", "CreationDate": "2014-05-29T14:02:00.237", "Score": "1", "Body": "

The chances of contamination at a Japanese brewery are very low.

\n\n

The Japanese tend to drink their beer much colder than craft beer drinkers in the United States - Think Coors cold. We suggest placing the beer in the freezer for 3-5 minutes before opening the bottle, leaving it undisturbed and pouring it into an over-sized nonic glass.

\n\n

Hitachino's beers when stored and poured correctly are quite good, but buying them in the United States after a trans-pacific journey is both expensive and less tasty than on tap.

\n\n

Answered by: The Gastrograph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T14:02:00.237", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"828"}} +{ "Id": "828", "PostTypeId": "2", "ParentId": "814", "CreationDate": "2014-05-29T15:38:47.073", "Score": "0", "Body": "

If you venture west to Iowa most HyVee stores will let you do the mixer-sixer as Gastrograph describes. Two of Iowa's best breweries are on the eastern side of the state as well in Toppling Goliath and Backpocket.

\n", "OwnerUserId": "935", "LastActivityDate": "2014-05-29T15:38:47.073", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"829"}} +{ "Id": "829", "PostTypeId": "2", "ParentId": "740", "CreationDate": "2014-05-29T15:46:55.913", "Score": "1", "Body": "

I think for short term storage it shouldn't be a problem. It sounds like you're just keeping the bottles in the cupboard outside their cardboard carriers? You could always use the carriers or keep most in carriers in the back and single bottles in the front if you enjoy the appearance of the bottles.

Samuel Adams' carriers are taller for the exact reason of keeping out light, and they use brown bottles so obviously even with brown bottles light is still of some concern.\n

\nI've usually had a problem with beer tasting off if it goes from a refrigerated state to room temperature and then back in the fridge. I've noticed this happens to me more frequently than anything with light.

\n", "OwnerUserId": "935", "LastActivityDate": "2014-05-29T15:46:55.913", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"830"}} +{ "Id": "830", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-05-29T15:56:37.910", "Score": "1", "Body": "

As more and more companies/breweries enter the craft beer market I think this is one of the most obvious ways they see to differentiate themselves, therefore I believe the beers you see that are solely for the purpose of being very hoppy and/or bitter are for marketing purposes. It would be akin to different hot sauce companies attempting to gain fame by making the hottest sauce, not necessarily the one that best complements food. In either case the consumer will have a memorable experience and will remember the name and possibly tell a friend.

\n", "OwnerUserId": "935", "LastActivityDate": "2014-05-29T15:56:37.910", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"831"}} +{ "Id": "831", "PostTypeId": "2", "ParentId": "809", "CreationDate": "2014-05-29T16:04:04.657", "Score": "3", "Body": "

Some of the highest ranked breweries in Italy include:

\n\n
    \n
  • Le Baladin (Highly recommended but these might be harder to find)
  • \n
  • Panil Birra Artigianale
  • \n
  • Revelation Cat Craft Brewing
  • \n
  • Birra del Borgo
  • \n
  • Birrificio Toccalmatto
  • \n
  • Birrificio Lambrate
  • \n
  • Maltus Faber
  • \n
\n\n

Note that in Europe there aren't as many mega breweries so local craft brewing is much more popular. You should look for a local brewery for fresher and more easily accessible (in terms of cost and rarity).

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T16:04:04.657", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"832"}} +{ "Id": "832", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-05-29T16:27:31.127", "Score": "1", "Body": "

A great recipe that use lots of beer:

\n\n

Vegetarian Pot Pie:\n2 Bottles of Stout\nCarrots, celery, onion, garlic, oil or butter, potatos (pre-baked for 30min)\nsalt and pepper to taste\n2 pie shells \n1 bag of white flower

\n\n

Pre-heat oven to 400 degrees

\n\n

Brown the vegetables in a skillet over medium heat.\nAdd salt and sugar to get the caramelization going. \nPour in the beer and bring to a boil.\nSlowly pour in and stir the white flour, 1 cup at a time, until it becomes very gloopy.\nKeep at a low simmer / boil.

\n\n

Fill the pie shell with the gloopy stew, and cover the top with the 2nd pie shell.

\n\n

Bake in the oven for 50 minutes. Then take it out and let it cool for a few minutes before serving.

\n", "OwnerUserId": "931", "LastActivityDate": "2014-05-29T16:27:31.127", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"833"}} +{ "Id": "833", "PostTypeId": "2", "ParentId": "814", "CreationDate": "2014-05-30T03:08:25.990", "Score": "2", "Body": "

I live in a state that (mostly) requires that you buy beer by the case. I feel your pain. (\"Mostly\": there's still the bar option, and there are a very few places where you can buy mixed cases or six-packs of things other than the big mainstream beers.)

\n\n

The solution I'm partial to is the beer co-op. Mine started as a group of coworkers; we've scattered to a bunch of different companies by now, but the co-op remains. Every 4-6 weeks the organizer sends out email announcing a planned buy, with the goal of getting a multiple of 8 people (12 works, but we prefer 8). Participants get a case with variety of beers and divide the total cost. I've gotten to sample some beers I'd never have tried (or known about) otherwise. (Most people don't participate every time, but the organizer does because, hey, beer.)

\n\n

If you're doing a co-op anyway, then it's easy to add on the occasional \"side buy\" -- something that comes in 25oz bottles, or is particularly expensive, etc. So long as there's enough interest to get the case, people can then buy them individually.

\n\n

You can be very organized about this, requiring commitments in advance, or you can be flexible and deal with the occasional surplus. People interested enough to organize co-ops usually don't mind some surplus (assuming finances aren't too tight).

\n", "OwnerUserId": "43", "LastActivityDate": "2014-05-30T03:08:25.990", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"834"}} +{ "Id": "834", "PostTypeId": "2", "ParentId": "740", "CreationDate": "2014-05-30T19:30:08.447", "Score": "1", "Body": "

No. They are not sufficient, but are one of several necessary conditions to keep beer from going bad. In general, keep beer at a cool temperature (50-60 degrees), away from light, and stand the bottle up (do not lie them sideways like wine bottles are stored). Brown bottles help keep beer away from light, but as a rule of them, store your beer someplace dark.

\n", "OwnerUserId": "896", "LastActivityDate": "2014-05-30T19:30:08.447", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"835"}} +{ "Id": "835", "PostTypeId": "1", "AcceptedAnswerId": "1039", "CreationDate": "2014-05-31T15:08:58.247", "Score": "15", "ViewCount": "8858", "Body": "

Are there any microbreweries in Iceland? If so, are any of them in Reykjavik?

\n\n

What is the most distinct / unique beer from Iceland that one can get at the supermarket?

\n", "OwnerUserId": "123", "LastEditorUserId": "37", "LastEditDate": "2014-05-31T15:56:36.877", "LastActivityDate": "2016-10-08T14:20:42.950", "Title": "Are there microbreweries or craft breweries in Iceland?", "Tags": "breweries local", "AnswerCount": "6", "CommentCount": "0", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"836"}} +{ "Id": "836", "PostTypeId": "2", "ParentId": "835", "CreationDate": "2014-05-31T23:11:00.193", "Score": "3", "Body": "

I don't know which is the most distinct / unique beer, but did find this list of beer in Iceland.

\n", "OwnerUserId": "944", "LastActivityDate": "2014-05-31T23:11:00.193", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"838"}} +{ "Id": "838", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-06-02T21:12:36.363", "Score": "3", "Body": "

I am able to consume gluten with no ill effect, but have drunk Wold Top \"against the grain\" a couple of times, just because it's a decent beer :) different, but not at all in a bad way

\n\n

Against The Grain (World Top Yorkshire Brewery)

\n", "OwnerUserId": "952", "LastEditorUserId": "5064", "LastEditDate": "2017-01-06T13:22:29.737", "LastActivityDate": "2017-01-06T13:22:29.737", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"839"}} +{ "Id": "839", "PostTypeId": "1", "AcceptedAnswerId": "843", "CreationDate": "2014-06-03T02:57:10.127", "Score": "7", "ViewCount": "8856", "Body": "

Why does Beck's taste more bitter than Heineken? Is it due to the sugar content?

\n", "OwnerUserId": "953", "LastActivityDate": "2019-01-05T15:24:13.613", "Title": "Why does Beck's taste more bitter than Heineken?", "Tags": "taste", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"840"}} +{ "Id": "840", "PostTypeId": "1", "CreationDate": "2014-06-03T04:07:15.007", "Score": "7", "ViewCount": "15049", "Body": "

Do they get them from stores, or do they set up a distributor? Also, is it cheaper than getting the beer from a store?

\n", "OwnerUserId": "955", "LastActivityDate": "2014-08-16T09:42:57.900", "Title": "How do restaurants/businesses get their beer?", "Tags": "distribution", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"841"}} +{ "Id": "841", "PostTypeId": "2", "ParentId": "840", "CreationDate": "2014-06-03T10:03:45.183", "Score": "3", "Body": "

Some businesses (brew pubs and brewery taps for example) produce their own so don't have to buy it. Most businesses (pubs, bars, restuarants etc.) order from a wholesaler or cash-and-carry in the same way that they order pretty much everything else, or they may order direct from the brewery or an distributors. The prices are wholesale price so cheaper than they would be in a store so that they make a profit.\nI help to run a beer festival in the UK and we tend to order our beers from distributors or direct from the brewery (we know most of the 50+ breweries in London well enough that a few donate some barrels as well as we are a not for profit organization). A distributor works partially as a broker between breweries and buyers and partially as a wholesaler, the difference is that they tend to keep the beer at the brewery and only pick it up and transport it to fulfill an order. One of the distributors that we use is FlyingFirkin http://www.flyingfirkin.co.uk/ , just to give you some idea of how it works.\nAdditionally, in the UK, duty is paid at point of sale so VAT is paid on the beer when it is bought from the supplier but duty is only applied when it is sold to the end user, or \"drinker\", and so the price paid from the supplier will be significantly lower.

\n", "OwnerUserId": "909", "LastEditorUserId": "909", "LastEditDate": "2014-06-19T12:53:37.883", "LastActivityDate": "2014-06-19T12:53:37.883", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"842"}} +{ "Id": "842", "PostTypeId": "2", "ParentId": "740", "CreationDate": "2014-06-03T10:33:36.627", "Score": "-3", "Body": "

There is no way to prevent skunking! Except drink it fast and drink it cold;)\nThis is awesome!!

\n", "OwnerUserId": "957", "LastEditorUserId": "-1", "LastEditDate": "2017-05-23T12:41:55.693", "LastActivityDate": "2014-06-03T10:42:23.010", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"843"}} +{ "Id": "843", "PostTypeId": "2", "ParentId": "839", "CreationDate": "2014-06-03T13:23:29.053", "Score": "7", "Body": "

The answer to this question is going to depend largely on which specific beers you are referring to. Assuming you are referring to Becks Premium Lager (as opposed to one of their other offerings), Becks has an IBU (International Bitterness Units) of 20 where Heineken has 23 IBUs. Based on IBUs, Heineken should be more bitter but not by much. What you're tasting could be accounted for by batch to batch variation on behalf of the brewer or the conditions that the bottles were stored (length of storage, lighting, etc.)

\n\n

Furthermore, the bitterness in most of Becks' beers come from the use of darker malts, while the majority of the bitterness in Heineken comes from the use of (pellet) hops. \nThis makes the bitterness in Becks tend towards roastier flavors, and the bitterness in Heineken to tend to be more herbaceous or floral. It is possible that you are more personally sensitive to one set of those flavor compounds.

\n\n

Note that IBUs are an imperfect measurement of bitterness so only consider it as an approximation. Many people say that differences in bitterness beyond 100 IBUs are indiscernible but that is often conflicted.

\n\n

Answered by: the Gastrograph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-06-03T13:23:29.053", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"844"}} +{ "Id": "844", "PostTypeId": "2", "ParentId": "839", "CreationDate": "2014-06-03T16:20:41.837", "Score": "3", "Body": "

It's basically because of the ingredients - the two beers contain different amounts of sweet and bitter flavors which balance out to give you the perceived bitterness.

\n\n

Some will say that it's because of higher hop bitterness, measured in IBUs (International Bitterness Units), but this is really only part of the picture. You can have a beer with a larger number of IBUs but also a large amount of residual sweetness such as caramel malts) and this will generally taste sweeter than a beer that has a lower IBUs and almost no residual sweetness.

\n\n

Each brewer designs a beer with a taste profile in mind, and then seeks ingredients and sometimes process changes to arrive at this desired flavor profile. This often requires several iterations until the desired result is reached, and even then it may not be possible to reach it every time, so the brewer may also choose to blend beers from different batches to arrive close to the desired result. The same is true for Heineken - their Quality Assurance team will have been given clear guidelines on the spec for the beer, both as hard and fast measurable, objective facts (IBUs, Color, carbonation, diacetyl, fusel alcohols, esters etc...) and also as subjective - how it tastes.

\n\n

So the final answer about why one beer is more bitter than another is because their respective breweries have decided that's the flavor they want, and they have crafted a brew to produce their chosen flavor profile.

\n", "OwnerUserId": "112", "LastActivityDate": "2014-06-03T16:20:41.837", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"845"}} +{ "Id": "845", "PostTypeId": "1", "CreationDate": "2014-06-04T00:25:40.840", "Score": "9", "ViewCount": "977", "Body": "

Pretty much this. I'm storing/aging bottles. They've been in my fridge for 6+ months now. I want to leave them there at least another 6+ months and on. But I've read aging beers in fridge is a \"bad\" idea because the cork will dry up. (All my bottles have corks). Temperature in the fridge is just above 32F (0 celsius)

\n\n

I've talked to my father recently who's more into wine and told me I should get them out of the fridge and leave them somewhere else. That somewhere else is pitch black, pretty much on a cool floor and ambient temperature is about 65F(18 celsius), 85% humidity

\n\n

\"Temperature

\n\n

Is there a risk to change the ambient temperature while it is aging, am I better getting them out of the fridge or does it matter little. I have a few bottles I've left out of the fridge in that place already. Should they go into the fridge? I'm also a bit curious as to why as well how it would affect the beers.

\n", "OwnerUserId": "961", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T14:41:21.000", "LastActivityDate": "2016-10-08T14:41:21.000", "Title": "I'm aging a few bottles. They've been in the fridge for a while. Should I take them out now?", "Tags": "temperature aging age", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"846"}} +{ "Id": "846", "PostTypeId": "2", "ParentId": "835", "CreationDate": "2014-06-04T10:01:36.870", "Score": "2", "Body": "

I've had amazing beer from Iceland from a brewery called Einstök.\nHere is their website: The Einstök Brewery.

\n\n

The Winter Ale and Pale Ale are one of the best that I've ever had and one of the few that got 5 stars from me on the Untappd App.

\n\n

Cheers

\n", "OwnerUserId": "963", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T14:20:42.950", "LastActivityDate": "2016-10-08T14:20:42.950", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"847"}} +{ "Id": "847", "PostTypeId": "5", "CreationDate": "2014-06-04T15:21:04.287", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-06-04T15:21:04.287", "LastActivityDate": "2014-06-04T15:21:04.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"848"}} +{ "Id": "848", "PostTypeId": "4", "CreationDate": "2014-06-04T15:21:04.287", "Score": "0", "Body": "low gravity beers - below 3.2% ABV", "OwnerUserId": "909", "LastEditorUserId": "909", "LastEditDate": "2014-06-05T05:20:55.547", "LastActivityDate": "2014-06-05T05:20:55.547", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"849"}} +{ "Id": "849", "PostTypeId": "2", "ParentId": "796", "CreationDate": "2014-06-04T18:11:07.160", "Score": "3", "Body": "

Beer generally refers to the fermented product of malted grains, yeast, water, and hops. An incredible variety of beers are derived from only these key ingredients, though many brewers do add additional ingredients called adjuncts (fruit, spices, herbs, etc).

\n\n

Mead is the product of fermented honey, sometimes called \"honey wine\", and is more comparable to the wine family (including cider and fruit wines) than beer in terms of body, alcohol, bitterness, base sugars, and typically effervescence.

\n", "OwnerUserId": "911", "LastEditorUserId": "911", "LastEditDate": "2014-06-04T18:25:44.907", "LastActivityDate": "2014-06-04T18:25:44.907", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"850"}} +{ "Id": "850", "PostTypeId": "2", "ParentId": "757", "CreationDate": "2014-06-04T18:17:03.723", "Score": "1", "Body": "

The answer is no, there is not an objective measurement of \"too hoppy\". It is entirely preferential. You could however state that a beer is too hoppy to match a given style, for example a Berliner Weisse with a bitterness of 70 IBUs would be considered imbalanced for the style and would occupy it's own experimental category.

\n", "OwnerUserId": "911", "LastActivityDate": "2014-06-04T18:17:03.723", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"851"}} +{ "Id": "851", "PostTypeId": "2", "ParentId": "845", "CreationDate": "2014-06-04T18:32:14.367", "Score": "5", "Body": "

I believe the general principal is that lower temperatures will result in slower (or negligible) aging process than warmer temperatures. The results will certainly vary depending on the ABV and other qualities of the beer. Storing bottles horizontally should prevent the corks from drying.

\n", "OwnerUserId": "911", "LastActivityDate": "2014-06-04T18:32:14.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"852"}} +{ "Id": "852", "PostTypeId": "2", "ParentId": "845", "CreationDate": "2014-06-04T19:44:53.997", "Score": "2", "Body": "

Remember, that not all of the beers are suitable for aging. Mainly porter beer can be stored beyond expiration date (30 years!), but some others too. And i see no point for aging beer in a fridge.

\n", "OwnerUserId": "966", "LastActivityDate": "2014-06-04T19:44:53.997", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"854"}} +{ "Id": "854", "PostTypeId": "1", "AcceptedAnswerId": "857", "CreationDate": "2014-06-05T21:22:58.623", "Score": "8", "ViewCount": "16723", "Body": "

I recently purchased a Dogfish Head World Wide Stout. I bought it on a whim because 1. I was looking for a stout, and 2. I typically enjoy Dogfish Head. Only after I got home and looked it up did I realize it has an ABV of roughly 18%. Then I checked the bottle and realized that no where on it does it state the ABV. I found that quite strange especially considering \"liquor\", by law, must state such information.

\n\n

So are fermented drinks simply exempt from having to state this info? I've never come across another beer that did not state ABV on it -- let alone one with 18%.

\n\n

(P.S. It was a delicious beer.)

\n", "OwnerUserId": "803", "LastActivityDate": "2017-12-24T22:14:49.780", "Title": "In the United States, is a beer required to state ABV on the bottle/label?", "Tags": "laws stout abv", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"855"}} +{ "Id": "855", "PostTypeId": "2", "ParentId": "816", "CreationDate": "2014-06-05T21:24:08.287", "Score": "1", "Body": "

Not really a Chinese beer, but in what I assume is Chinese style... I've enjoyed a couple lucky buddha's. Maybe it's similar in that it's rice based. It was very light and easy drinking.

\n\n

I've heard of a Chinese beer called Snow and heard that it's extremely popular and well rated. I don't know how I can get any (probably can't) but would love to try it.

\n", "OwnerUserId": "935", "LastActivityDate": "2014-06-05T21:24:08.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"856"}} +{ "Id": "856", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-06-05T21:26:14.027", "Score": "2", "Body": "

I've had Budweiser's Red Bridge and have seen it at local bars thanks to the mass distribution possible. It wasn't too bad actually. I don't suffer from celiac disease and I would consider drinking it again.

\n", "OwnerUserId": "935", "LastActivityDate": "2014-06-05T21:26:14.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"857"}} +{ "Id": "857", "PostTypeId": "2", "ParentId": "854", "CreationDate": "2014-06-05T22:05:30.250", "Score": "6", "Body": "

No, federal malt beverage labeling laws make it optional (though they do describe standards the label must meet if brewers do choose to add the alcohol content label.)

\n\n

State laws, however, may require a brewer to add alcohol content to the label. Clearly Delaware law (where Dogfish Head is based) must not.

\n\n

In my experience, this is not terribly uncommon. It is true that most beers do have alcohol content disclosed on the label, but I've run across quite a number that do not.

\n\n

If you're interested in learning more about it straight from the source, it's available in the Electronic Code of Federal Regulations in Title 27, Chapter I, Subchapter A, Part 7—LABELING AND ADVERTISING OF MALT BEVERAGES.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-06-05T22:05:30.250", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"858"}} +{ "Id": "858", "PostTypeId": "2", "ParentId": "816", "CreationDate": "2014-06-06T03:14:46.367", "Score": "0", "Body": "

I visited China last year and tried some of the local beers, including Tsingtao. I was a bit surprised at the lack of variety (almost everything was a pilsner style larger) and that most beers were mid-strength at most.

\n\n

None of them tasted bad, but nothing really stood out.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-06-06T03:14:46.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"860"}} +{ "Id": "860", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-06-06T18:30:53.017", "Score": "6", "Body": "

Here is a review for Estrella Damm Daura

\n\n

Estrella Damm Daura – Gluten Free Lager

\n\n

It is one of, if not the first gluten free beers to be made. This is one of my favorites.

\n", "OwnerUserId": "974", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T19:52:51.153", "LastActivityDate": "2016-10-05T19:52:51.153", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"861"}} +{ "Id": "861", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-06-06T19:01:20.460", "Score": "5", "Body": "

I recently tried Schnitzer Brau Gluten Free. It tasted great so much so that if I was offered without knowing it was gluten free I wouldn't notice the difference. I think I'm ok with gluten but I'm cutting down. Either way I would definitely go for another one.

\n", "OwnerUserId": "975", "LastActivityDate": "2014-06-06T19:01:20.460", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"862"}} +{ "Id": "862", "PostTypeId": "1", "AcceptedAnswerId": "863", "CreationDate": "2014-06-07T02:57:33.137", "Score": "23", "ViewCount": "132767", "Body": "

Some of my favorite beers come in 22+oz bottles. Typically these are heavier beers and sometimes, I simply cannot finish the entire bottle in one sitting (maybe I had too much to eat previously. Who knows). Because they are nice beers, I want to enjoy them to their fullest extent, and so I will save the remainder for another night.

\n\n

How can I prevent these beers from losing any (at least a bare minimum) of their quality once they've been opened? And, does this being opened for a duration -- typically 1 to 2 days -- have a noticeable effect on their quality?

\n", "OwnerUserId": "803", "LastEditorUserId": "9887", "LastEditDate": "2020-04-17T12:58:56.350", "LastActivityDate": "2020-04-17T12:58:56.350", "Title": "How to store a bottle of beer once it has been opened?", "Tags": "taste storage", "AnswerCount": "6", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"863"}} +{ "Id": "863", "PostTypeId": "2", "ParentId": "862", "CreationDate": "2014-06-07T06:29:46.613", "Score": "22", "Body": "

The short answer is that the beer will not last long after opening, and in most cases you are best off resealing the bottle with an airtight cap/stopper that can withstand mild pressure.

\n\n

Two things you want to prevent in this situation are:

\n\n
    \n
  1. oxidation of the beer, which will change the taste of a beer.
  2. \n
  3. loss of carbonation.
  4. \n
\n\n

For non-carbonated drinks such as wine, a common method to combat oxidation in an opened bottle is to remove the air from the bottle using a vacuum pump. This is a bad idea for carbonated drinks, since the lower pressure will force carbon dioxide to out of solution causing it to go flat. One alternative would be to replace the air with an inert gas (perhaps with a product like Private Preserve).

\n\n

To minimise loss of carbonation, you really only need to reseal the bottle so it is airtight: carbon dioxide will stop coming out of solution once the pressure builds. The smaller the air gap in the bottle the faster the pressure will build, so if it is a large bottle with only a small amount of beer left it might make sense to transfer it to a smaller bottle first.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-06-07T06:29:46.613", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"864"}} +{ "Id": "864", "PostTypeId": "2", "ParentId": "862", "CreationDate": "2014-06-08T03:33:28.827", "Score": "4", "Body": "

If you have a sparkling water maker, you could theoretically use it to force-carbonate a flat beer. You should make sure to keep it cold and sealed however, as exposure to oxygen or sunlight will rapidly degrade the flavor.

\n", "OwnerUserId": "911", "LastActivityDate": "2014-06-08T03:33:28.827", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"865"}} +{ "Id": "865", "PostTypeId": "1", "AcceptedAnswerId": "884", "CreationDate": "2014-06-09T20:48:56.873", "Score": "3", "ViewCount": "146", "Body": "

Are there any microbreweries in Washington/Baltimore region?

\n\n

What are the specialty brew from that part of the states?

\n", "OwnerUserId": "123", "LastActivityDate": "2014-07-07T21:47:23.770", "Title": "Are there any craft beer or microbrewery in Washington and Baltimore?", "Tags": "breweries local", "AnswerCount": "5", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"866"}} +{ "Id": "866", "PostTypeId": "1", "CreationDate": "2014-06-10T04:02:17.410", "Score": "10", "ViewCount": "1237", "Body": "

I've read that raw hops can be bad for dogs, somehow causing hyperthermia. But once it's brewed, is beer bad also? What about very hoppy beers? Answers might include reports on what it is in hops (alpha acids?) that make hops bad for dogs.

\n\n

Please keep answers restricted to the effect of brewed hops. I already realize the fermented alcohol can be bad for smaller pets. I'm not looking for alcohol related answers, just answers on boiled and fermented hops.

\n\n

As an aside, it seems okay for cats. Mine decided to take a sip, seemed to like it, and came back for more.

\n", "OwnerUserId": "352", "LastEditorUserId": "352", "LastEditDate": "2014-08-01T05:33:36.040", "LastActivityDate": "2014-08-01T05:33:36.040", "Title": "Is beer bad for dogs", "Tags": "hops", "AnswerCount": "3", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"867"}} +{ "Id": "867", "PostTypeId": "2", "ParentId": "866", "CreationDate": "2014-06-10T13:16:37.017", "Score": "3", "Body": "

I haven't looked for a full toxicology report (not that I would be able to understand it), but this Wikipedia article mentions that hops causes hyperthermia and may cause death.

\n\n

I personally do not think that a sip of beer, especially of the standard lagers, will cause any major problems, but I prefer to err on the side of safety when it comes to my pets.

\n", "OwnerUserId": "984", "LastActivityDate": "2014-06-10T13:16:37.017", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"868"}} +{ "Id": "868", "PostTypeId": "1", "CreationDate": "2014-06-10T13:37:59.283", "Score": "9", "ViewCount": "304", "Body": "

I am editing an academic economics paper (I'm a grad student), and I ran across the following line:

\n\n
\n

Schlitz changed preservatives, which led to green flakes in the beer.

\n
\n\n

The paper references an article --- amusingly titled Why the Schlitz Hit the Fan --- which makes the following claim:

\n\n
\n

In 1976, new Food and Drug Administration regulations regarding which ingredients needed to be printed on the bottles prompted Schlitz to change the preservatives it used (it had been using silica gel). The company did not spend sufficient time testing the new process, and tiny green flakes appeared in the beer.

\n
\n\n

Internet sleuthing reveals this Beer Connoisseur article, which gives more info and claims that the flakes were, in fact, white:

\n\n
\n

Schlitz decided to use another beer stabilizer instead, one that would be filtered out of the final product and thus would not have to be listed as among the ingredients. Unfortunately, what Schlitz's brewing technicians did not know was that the new anti-haze agent, called Chill-garde, would react in the bottles and cans with the foam stabiliser they also used, to cause protein to settle out. At its best this protein looked liked tiny white flakes floating in the beer and at its worst it looked like mucus, or \"snot,\" as one observer bluntly called it.

\n
\n\n

After more research, I can't find any other references to Schlitz being [literally] green. As a beer lover and homebrewer, this inconsistency is driving me nuts. Does anyone know which color the flakes in Schlitz were in the mid-1970s? I have the following hypotheses:

\n\n
    \n
  • Beer Connoisseur also mentions that Schlitz switched from whole to pellet hops; coupled with inadequate filtration, this could have led to green flakes.

  • \n
  • Adults doing research thought of \"snot\" like kids, which meant that a \"snotlike\" substance in beer was probably green.

  • \n
  • This is a misunderstanding created by non-brewers reading that Schlitz was \"green\" (which does appear frequently in search results); combined with knowing that there were flakes, and that the liquid of beer is generally amber-ish, it must have been [to someone unfamiliar with \"green beer\" being beer which needs to be further aged] that the flakes were literally green.

  • \n
  • Beer Connoisseur is wrong, and the flakes were in fact green.

  • \n
\n\n

Does anyone have first-hand experience with this era of beer?

\n", "OwnerUserId": "985", "LastEditorUserId": "37", "LastEditDate": "2015-12-24T16:16:58.020", "LastActivityDate": "2016-03-28T12:37:38.773", "Title": "\"Green Schlitz\" myth: Was the beer green, or the flakes?", "Tags": "history colour filtering", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"869"}} +{ "Id": "869", "PostTypeId": "2", "ParentId": "866", "CreationDate": "2014-06-10T16:40:16.617", "Score": "3", "Body": "

Spent hops (hops dumped from a brew kettle) may cause hyperthermia in dogs in addition to raw hops, so you should never dump them as fertilizer in an area accessible to dogs. Source: Vet Learn web site

\n\n

Beer is bad for dogs (and cats!) due to the alcohol. I don't know about the hops, but I wouldn't risk it with my pets. It seems like someone sneaking booze into a punch bowl -- the animals that trust you aren't consenting to it.

\n", "OwnerUserId": "381", "LastEditorUserId": "381", "LastEditDate": "2014-06-12T16:30:36.337", "LastActivityDate": "2014-06-12T16:30:36.337", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"874"}} +{ "Id": "874", "PostTypeId": "2", "ParentId": "845", "CreationDate": "2014-06-11T10:30:36.163", "Score": "0", "Body": "

That sounds pretty much like an ideal place to store and age beer and wine. 65F is maybe a tad on the warm side, but nowhere near the temperatures that would actually cook the beer and be harmful to it.

\n\n

There is no harm in taking the bottles out from the fridge and in to your \"cellar\". And yes, leaving them in the fridge will not be good from an aging point of view and yes, the corks are likely to dry out in the fridge.

\n", "OwnerUserId": "991", "LastActivityDate": "2014-06-11T10:30:36.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"875"}} +{ "Id": "875", "PostTypeId": "2", "ParentId": "845", "CreationDate": "2014-06-11T18:18:57.567", "Score": "1", "Body": "

It won't hurt the beer to take it out of the fridge. Work done by Dr. Charles Bamforth has suggested that every extra 10 degrees Celcius of temperate cuts doubles the speed of beer deterioration. So, if you pull them out and store them at cellar temp (~55 F), they'll age about twice as fast. Dark is definitely good. Higher humidity vertical storage is preferential to horizontal storage in a bottle conditioned beer, as you'll want particulate settling in the bottom.

\n\n

You can see an interview with Charlie here.

\n", "OwnerUserId": "802", "LastActivityDate": "2014-06-11T18:18:57.567", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"877"}} +{ "Id": "877", "PostTypeId": "1", "AcceptedAnswerId": "881", "CreationDate": "2014-06-12T18:26:47.260", "Score": "4", "ViewCount": "177", "Body": "

so I am trying to find some pretty nice beers, beer like a Delirium Tremens, to try. Does anyone have any recommendations on some nice beer that isn't insanely hard to find. Money is not really the issue, it's just I do not want to go looking at several specialty alcohol stores for one type of beer.

\n\n

I live in North Carolina, near the triad area.

\n", "OwnerUserId": "995", "LastEditorUserId": "995", "LastEditDate": "2014-06-17T13:55:07.343", "LastActivityDate": "2014-07-22T08:00:56.837", "Title": "Specialty Beers at Local Markets", "Tags": "taste specialty-beers flavor", "AnswerCount": "4", "CommentCount": "1", "ClosedDate": "2014-07-22T08:06:54.643", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"878"}} +{ "Id": "878", "PostTypeId": "2", "ParentId": "877", "CreationDate": "2014-06-12T19:42:12.107", "Score": "1", "Body": "

This is really incomplete since you haven't given us your locale. But Tremens is a Belgian Golden Strong ale, so you could find similar flavors in anything with a description like \"Belgian Gold\", \"Belgian Strong\", \"Belgian Pale\", \"Tripel\", \"Blonde\" (Except American Blonde).

\n\n

For well-known brands you'd be looking for something like... Duvel, Piraat, Hades (Great Divide), St. Bernardus Tripel, Chimay, Westmalle, Leffe Blonde, La Trappe Blonde, a few of the beers by Unibroue...

\n", "OwnerUserId": "268", "LastActivityDate": "2014-06-12T19:42:12.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"879"}} +{ "Id": "879", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-06-13T16:59:41.823", "Score": "4", "Body": "

I'm not sure if you are looking for STRICTLY beer but, what about hard cider? I am pretty sure all ciders are GF. I personally like Original Sin and Ace Cider's.

\n", "OwnerUserId": "996", "LastActivityDate": "2014-06-13T16:59:41.823", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"880"}} +{ "Id": "880", "PostTypeId": "1", "CreationDate": "2014-06-14T22:56:20.270", "Score": "14", "ViewCount": "421", "Body": "

I recently moved to Germany and took Rothaus Pils here at the party. I opened the cap after tearing the crown/neck paper (Gold colored paper as shown below) partially.

\n\n

Reference Image :\"enter

\n\n

I was told that Germans really don't like to keep that crown/neck paper. I wanted to ask for reason, but felt it is too rude. Is there any specific reason behind removing the crown paper

\n", "OwnerUserId": "1000", "LastActivityDate": "2014-06-19T23:44:23.177", "Title": "Removing the Crown / Neck paper", "Tags": "style serving", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"881"}} +{ "Id": "881", "PostTypeId": "2", "ParentId": "877", "CreationDate": "2014-06-15T05:30:21.673", "Score": "1", "Body": "

This topic is very broad and subjective, but I would recommend anything by Allagash, especially Tiarna (outstanding), Mischief and Saison Rue by The Bruery, Inferno by Lost Abbey, as well as widely available Belgian classics like Chimay, Duvel, Rochefort, Leffe, Kwak.

\n", "OwnerUserId": "911", "LastEditorUserId": "911", "LastEditDate": "2014-06-15T06:18:20.573", "LastActivityDate": "2014-06-15T06:18:20.573", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"882"}} +{ "Id": "882", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-06-17T13:21:18.797", "Score": "5", "Body": "

Tweason'ale by Dogfish Head is a unique fruit and vegetable beer that is available in many places in the States.

\n\n

We like Omission Pale Ale, but apparently anything by Omission is quite good.

\n\n

Good luck and let us know what you find!

\n\n

Answered by: the Gastrograph Team

\n", "OwnerUserId": "931", "LastActivityDate": "2014-06-17T13:21:18.797", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"883"}} +{ "Id": "883", "PostTypeId": "2", "ParentId": "880", "CreationDate": "2014-06-17T17:45:17.323", "Score": "-2", "Body": "

I can imagine multiple reasons. I assume that Rothaus owns the patents to this kind of glueless neckpaper fixing what leds to a feeling belonging to the 1337 group of zäpfle-fans as the common germann biertrinker is always prowd of his local beer. First, this kind of wrapping the top makes sence from an hyenic point of view. Second, since they wrap their aluminium foil, which is thick compared to others, not just around the neck but also over the cab, you may have realised that the artifacts caused from opening the bottle feels uncomfortable on the lips. But most important, biertrinkers are way conservative on anything related to their local beer. Prost!

\n", "OwnerUserId": "1002", "LastActivityDate": "2014-06-17T17:45:17.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"884"}} +{ "Id": "884", "PostTypeId": "2", "ParentId": "865", "CreationDate": "2014-06-18T20:46:12.350", "Score": "3", "Body": "

Raven

\n\n

Dog

\n\n

DuClaw

\n\n

Monocacy

\n\n

And the list goes on...

\n", "OwnerDisplayName": "user869", "LastActivityDate": "2014-06-18T20:46:12.350", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"885"}} +{ "Id": "885", "PostTypeId": "2", "ParentId": "840", "CreationDate": "2014-06-18T21:12:52.703", "Score": "2", "Body": "

This depends on a few things (mostly the location & regulations associated with). Sometimes breweries will be able to sell directly to liquor stores, pubs and so on, they may also have to go through a liquor distribution board (LDB). (And as breweries expand it is most defiantly worth it to go through a LDB or other distributor, as you can't be making sales calls to the other side of a country to deliver a 20L keg.)

\n\n

From my experience, businesses will generally contact or be contacted by a sales rep who will take care of them. Somewhat surprisingly, a lot of new-ish pubs and bars will actually be provided with very low cost or even free beer (or other alcohol) on the condition that only that brand will be on tap for x amount of months/years. This generally happens with bigger breweries. Pubs also will sometimes sell taps to breweries.

\n\n

In terms of cost, no, it wouldn't be cheaper for a pub to go the the local liquor store and buy the beer there (might be 20%+ more expensive). When a brewery sells to a organization (pub, restaurant, liquor store etc.) it is generally at a 18-26% discount so that it can then be marked up by the pubs at a reasonable price.

\n\n

A lot of this is the same sort of way that pubs get their chicken wings, just more heavily regulated.

\n", "OwnerDisplayName": "user869", "LastActivityDate": "2014-06-18T21:12:52.703", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"886"}} +{ "Id": "886", "PostTypeId": "2", "ParentId": "880", "CreationDate": "2014-06-19T12:31:49.423", "Score": "9", "Body": "

I'm from Germany. Don't care too much about this. Just remove that part of it which would be disturbing when drinking, since some minor pieces might get into the glass or into your mouth directly if you are drinking out of the bottle, which is common in Germany, except in a restaurant or during a dinner.

\n\n

Also you wouldn't normally remove the gold paper before opening the bottle. Most of the parts will getting removed automatically when opening it. You just need to remove the remaining, disturbing parts, if there are any left. Try it! ;)

\n\n

That's all you need to know. Cheers!

\n", "OwnerUserId": "1008", "LastEditorUserId": "1008", "LastEditDate": "2014-06-19T23:44:23.177", "LastActivityDate": "2014-06-19T23:44:23.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"887"}} +{ "Id": "887", "PostTypeId": "1", "AcceptedAnswerId": "888", "CreationDate": "2014-06-25T06:14:58.510", "Score": "6", "ViewCount": "504", "Body": "

Is it merely high alcohol content or some change, alteration or addition to the brewing process, mandated by law or otherwise that requires the brew be called Barley Wine?

\n", "OwnerUserId": "1025", "LastEditorUserId": "73", "LastEditDate": "2014-07-01T10:21:25.530", "LastActivityDate": "2015-05-18T22:43:28.750", "Title": "What transforms a beer into a Barley Wine?", "Tags": "style alcohol-level", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"888"}} +{ "Id": "888", "PostTypeId": "2", "ParentId": "887", "CreationDate": "2014-06-25T10:38:03.043", "Score": "6", "Body": "

Barley wine is a style of beer: it isn't something that is made using beer as an ingredient (as you might describe whisky).

\n\n

There are a number of varieties of barley wine (some hoppy, and some with almost no hop characteristics), but they all have a relatively high alcohol content compared to most beers. The alcohol is produced via fermentation, the same as any other beer, and without distillation. Note that not all high alcohol beers are necessarily described as \"barley wine\" though.

\n\n

As for the legal aspects, I don't know of any regulations that specifically target barley wine. The law usually deals with alcoholic beverages based on the alcohol content, and from that point of view barley wines would usually be treated similar to normal wines due to the similar ABV.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-06-25T10:38:03.043", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"889"}} +{ "Id": "889", "PostTypeId": "1", "AcceptedAnswerId": "890", "CreationDate": "2014-06-27T03:18:40.390", "Score": "7", "ViewCount": "29375", "Body": "

I haven't been drinking for years. And over the last month, I've been trying a small variety of beers, but they all had a taste I can't put my finger on that I didn't like. I was starting to wonder if I had lost my taste for beer. However, I was lucky enough to have had a Becks the other day, because I remembered it was a beer I used to enjoy. Anyways, I really liked the Becks, so I'd like to know what I'm drinking and why I like it. Also what are other similar beers to Becks?

\n", "OwnerUserId": "1031", "LastActivityDate": "2019-03-02T08:03:25.000", "Title": "What characteristics does Becks have, and what are similar beers?", "Tags": "taste terminology german-beers", "AnswerCount": "3", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"890"}} +{ "Id": "890", "PostTypeId": "2", "ParentId": "889", "CreationDate": "2014-06-27T14:12:37.207", "Score": "16", "Body": "

Beck's is a pale German pilsner brewed by Beck's Brewery headquartered in Bremen. The actual beer you drank was likely brewed in St. Louis, however, as Beck's is wholly owned by AB InBev.

\n\n

Pale Lagers as a style are usually straw colored, up to a light gold with a white head. The flavor is very light and dry with only slight malty sweetness. A little crisp hop bitterness without too much hop aroma.

\n\n

Most \"macrobrews\" will be somewhat similar, though the stock \"American\" variant of Pale Lager like Budweiser or Miller will have a corn sugar flavor to them and likely be a bit lighter in body. Beck's claimed to adhere to the German Beer Purity Law which would prohibit the use of an adjunct like corn.

\n\n

St. Pauli Girl is a very similar beer, and I think is even brewed in the same town as the original Beck's.

\n\n

If you want to stick with imports just about any pale German lager is going to do it for you since it's a very traditional style. Anything by Spaten, Hacker-Pschorr, or Weihenstephan is solid and usually pretty easy to get ahold of. Pilsner-Urquell is also a great beer, but it's in the Pilsner style so while it's still a pale lager Pilsners can have a sulfur-y or buttery tinge due to the green bottles and slight diacetyl. Pilsners also have a strong hop character and bitterness.

\n\n

If you wanted to try local or American brewed versions just about anyone's Session Lager (Full Sail comes to mind, as does Notch if you're near MA at all) should be similar. According to this list on BeerAdvocate you should be near Berghoff and Baderbrau which will both make traditional German styles. Some breweries, Baderbrau included, will call their pale lager a \"Lawnmower beer\".

\n\n

Branching out, Sam Adams Boston Lager is a style called Vienna Lager which may also appeal you. Though it will be significantly maltier than Beck's. Anything with Dortmunder in the name will also be similar, though hoppier but not like an American Pale Ale or IPA or anything. You might also be interested in any brewery's Cream Ale, which is an Ale version of the Pale Lager style. Kolsch style beers may also appeal to you since they share the same light body and slight maltiness. Kolsch's are hybrid beers which are fermented warm like an Ale would be, but then cold conditioned like a Lager. Officially Kolsch can only be brewed in Cologne, Germany, but many American breweries will make a Kolsch style since it drinks really well in the summer and provides more flavor variety than pale lager or Cream Ale.

\n\n

Does that help?

\n", "OwnerUserId": "268", "LastEditorUserId": "1454", "LastEditDate": "2014-12-05T20:12:44.053", "LastActivityDate": "2014-12-05T20:12:44.053", "CommentCount": "9", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"892"}} +{ "Id": "892", "PostTypeId": "2", "ParentId": "865", "CreationDate": "2014-06-28T13:57:39.707", "Score": "2", "Body": "

I would suggest Heritage Brewing (Link) in Manassas, VA. Small brewery, great beers. Kings Mountain is pretty good.

\n\n

Lost Rhino (Link) is another good one in Ashburn, VA.

\n", "OwnerUserId": "1039", "LastActivityDate": "2014-06-28T13:57:39.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"893"}} +{ "Id": "893", "PostTypeId": "2", "ParentId": "702", "CreationDate": "2014-06-30T09:19:16.120", "Score": "9", "Body": "

The term \"cider\" is generally reserved for apples. There are 'pear ciders' such as Woodchuck that use the name, but as Wikipedia points out, \"A similar product made from pears is called perry but sometimes (incorrectly) called Pear Cider in the marketing of some producers' products\". I personally can forgive this, since pears are closely related to apples, and the result is quite tasty.

\n\n

The \"beer\" part of ginger beer is due to the fermentation process involved in its creation. In this way, it is more similar to \"root beer\", since ginger is a root, like the sassafras root used in root beer and birch roots used in birch beer. The website todayifoundout.com has a well referenced article for Why Root Beer is Called That covering the naming of root beer. If the ginger based version isn't fermented, but is instead ginger flavouring added to carbonated water, it would be \"ginger ale\"; I have no idea why, since an India Pale Ale is certainly fermented. Even with ginger products, the differentiation is not really all that terribly strict, as noted by this Huffington Post article. Initially, ginger beer, root beer, birch beer, etc, were frequently alcoholic, but Prohibition ruined that for the U.S.

\n\n

As a bit of a side note, the alcoholic versions are making a wonderful comeback (in my personal opinion) with Sprecher's and Small Town Brewery for root beer. I personally have not seen as much alcoholic ginger beer, but Crabbies from the U.K. is quite good. Although I personally do not like Kuchi's ginger beer, I have several friends who absolutely love it.

\n", "OwnerUserId": "1041", "LastActivityDate": "2014-06-30T09:19:16.120", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"894"}} +{ "Id": "894", "PostTypeId": "2", "ParentId": "181", "CreationDate": "2014-06-30T17:23:40.067", "Score": "3", "Body": "

Lucas Kauffman has given a lot of details about the question you asked. I want only to add that all Trappist beers have this logo

\n\n

\"Trappist

\n\n

on their label except Westvleteren beer which does not have any kind of label on the bottle.

\n", "OwnerUserId": "1043", "LastActivityDate": "2014-06-30T17:23:40.067", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"895"}} +{ "Id": "895", "PostTypeId": "2", "ParentId": "865", "CreationDate": "2014-06-30T20:02:09.123", "Score": "1", "Body": "

If you're in Northern Virginia, there are 3 that I would highly recommend (in no particular order):\n1. Port City, Alexandria, VA\n2. Wild Run, Stafford, VA\n3. Adventure Brewing, Stafford, VA

\n\n

All three produce excellent beers. If you're visiting the area, I would suggest that you start with Wild Run, since they are actually on a campground and next door to a hotel.

\n", "OwnerUserId": "860", "LastActivityDate": "2014-06-30T20:02:09.123", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"897"}} +{ "Id": "897", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-07-01T03:00:08.323", "Score": "1", "Body": "

Please take a step back and remember that beer may include isinglass as fining as per this wikipedia article: http://en.wikipedia.org/wiki/Vegetarianism_and_beer.

\n\n

Going back to your question of dishes with beer that I tried, adding some beer to a crepe is good to make it taste richer.

\n\n

Crepe recipe is really easy. Mix the following in a blender: 1 glass of milk, 1 egg, 1 glass of wheat flour, some oil, some beer, a bit of salt and a bit of sugar. Use a fry-pan to bake the crepes. Tomato, cheese and herbs are my favorite topping for crepes.

\n\n

Good luck.

\n", "OwnerUserId": "1047", "LastActivityDate": "2014-07-01T03:00:08.323", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"898"}} +{ "Id": "898", "PostTypeId": "1", "CreationDate": "2014-07-01T03:09:04.450", "Score": "5", "ViewCount": "264", "Body": "

In Japan, beer is classified in three types for taxation purposes: beer (66.6% of more of malt), happoshu ( under 66.6% malt and no added liqueur), third-type beer (contain some added liquerur)

\n\n

Would happoshu be considered beer in other countries?

\n", "OwnerUserId": "1047", "LastActivityDate": "2014-07-08T18:56:01.057", "Title": "Would Japanese happoshu or third-category beer be considered beer in other countries?", "Tags": "terminology", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"899"}} +{ "Id": "899", "PostTypeId": "1", "AcceptedAnswerId": "901", "CreationDate": "2014-07-01T11:08:55.620", "Score": "12", "ViewCount": "43381", "Body": "

I have seen the expression \"fl. oz\" accompanied by a number in a lot of labels of beers. For instance, I have seen \"9.4 fl. oz\", \"12 fl. oz\", \"11.2 fl. oz\"... What do these numbers mean?

\n", "OwnerUserId": "1043", "LastActivityDate": "2017-07-16T17:36:00.057", "Title": "What does \"fl. oz\" mean?", "Tags": "terminology", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"900"}} +{ "Id": "900", "PostTypeId": "2", "ParentId": "899", "CreationDate": "2014-07-01T12:59:16.420", "Score": "9", "Body": "

Fluid Ounces, even though it sounds like a measure of weight, is actually a measure of volume. Specifically, 1 fluid ounce is the volume of 1 ounce (by weight) of pure water. Similarly, in the metric system, 1 ml (or cubic centimeter) has 1 gram of mass, so often times (even in the US) you'll see ml listed as the volume as well.

\n", "OwnerUserId": "860", "LastEditorUserId": "1043", "LastEditDate": "2014-07-01T14:44:07.167", "LastActivityDate": "2014-07-01T14:44:07.167", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"901"}} +{ "Id": "901", "PostTypeId": "2", "ParentId": "899", "CreationDate": "2014-07-01T13:44:10.113", "Score": "14", "Body": "

It sounds like you live in a place that uses the metric system. A fluid ounce (fl. oz.) is a measure of volume in U.S. customary units: 1 fluid ounce = 29.5735 milliliters. A Fluid ounce in British Imperial Units is slightly smaller: 1 fluid ounce = 28.413 ml. However, you are unlikely to find any modern labeling that uses British Imperial units since the U.K. has fully adopted the metric system, so in all likelihood the labels you are seeing refer to U.S. customary units.

\n", "OwnerUserId": "381", "LastEditorUserId": "381", "LastEditDate": "2014-07-09T17:44:49.137", "LastActivityDate": "2014-07-09T17:44:49.137", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"902"}} +{ "Id": "902", "PostTypeId": "2", "ParentId": "55", "CreationDate": "2014-07-01T16:12:38.423", "Score": "4", "Body": "

Many large brewers, like AB InBev's famous Budweiser line, Miller-Coors' flagship brands and other Standard American Lagers (BJCP Style 1B) use adjunct grains in their grain bill.

\n\n
\n

Aroma: Little to no malt aroma, although it can be grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. Low levels of yeast character (green apples, DMS, or fruitiness) are optional but acceptable. No diacetyl.

\n \n

Appearance: Very pale straw to medium yellow color. White, frothy head\n seldom persists. Very clear.

\n \n

Flavor: Crisp and dry flavor with some low levels of grainy or\n corn-like sweetness. Hop flavor ranges from none to low levels. Hop\n bitterness at low to medium-low level. Balance may vary from slightly\n malty to slightly bitter, but is relatively close to even. High levels\n of carbonation may provide a slight acidity or dry \"sting.\" No\n diacetyl. No fruitiness.

\n \n

Mouthfeel: Light body from use of a high percentage of adjuncts such\n as rice or corn. Very highly carbonated with slight carbonic bite on\n the tongue.

\n \n

Overall Impression: Very refreshing and thirst quenching.

\n \n

Comments: Strong flavors are a fault. An international style including\n the standard mass-market lager from most countries.

\n \n

Ingredients: Two- or six-row barley with high percentage (up to 40%)\n of rice or corn as adjuncts.

\n
\n\n

Some beers bill themselves as a \"Pale Ale\", like Rolling Rock also use adjuncts, like rice. This notation is designed to set them apart from those other beers. It should be noted that the BJCP guidelines for a Pale Ale are:

\n\n
\n

Aroma: Usually moderate to strong hop aroma from dry hopping or late\n kettle additions of American hop varieties. A citrusy hop character is\n very common, but not required. Low to moderate maltiness supports the\n hop presentation, and may optionally show small amounts of specialty\n malt character (bready, toasty, biscuity). Fruity esters vary from\n moderate to none. No diacetyl. Dry hopping (if used) may add grassy\n notes, although this character should not be excessive.

\n \n

Appearance: Pale golden to deep amber. Moderately large white to\n off-white head with good retention. Generally quite clear, although\n dry-hopped versions may be slightly hazy.

\n \n

Flavor: Usually a moderate to high hop flavor, often showing a citrusy\n American hop character (although other hop varieties may be used). Low\n to moderately high clean malt character supports the hop presentation,\n and may optionally show small amounts of specialty malt character\n (bready, toasty, biscuity). The balance is typically towards the late\n hops and bitterness, but the malt presence can be substantial. Caramel\n flavors are usually restrained or absent. Fruity esters can be\n moderate to none. Moderate to high hop bitterness with a medium to dry\n finish. Hop flavor and bitterness often lingers into the finish. No\n diacetyl. Dry hopping (if used) may add grassy notes, although this\n character should not be excessive.

\n \n

Mouthfeel: Medium-light to medium body. Carbonation moderate to high.\n Overall smooth finish without astringency often associated with high\n hopping rates.

\n \n

Overall Impression: Refreshing and hoppy, yet with sufficient\n supporting malt.

\n \n

Comments: There is some overlap in color between American pale ale and\n American amber ale. The American pale ale will generally be cleaner,\n have a less caramelly malt profile, less body, and often more\n finishing hops.

\n \n

History: An American adaptation of English pale ale, reflecting\n indigenous ingredients (hops, malt, yeast, and water). Often lighter\n in color, cleaner in fermentation by-products, and having less caramel\n flavors than English counterparts.

\n \n

Ingredients: Pale ale malt, typically American two-row. American hops,\n often but not always ones with a citrusy character. American ale\n yeast. Water can vary in sulfate content, but carbonate content should\n be relatively low. Specialty grains may add character and complexity,\n but generally make up a relatively small portion of the grist. Grains\n that add malt flavor and richness, light sweetness, and toasty or\n bready notes are often used (along with late hops) to differentiate\n brands.

\n
\n", "OwnerUserId": "860", "LastActivityDate": "2014-07-01T16:12:38.423", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"903"}} +{ "Id": "903", "PostTypeId": "2", "ParentId": "55", "CreationDate": "2014-07-01T16:47:37.833", "Score": "0", "Body": "

The only fermentable sugars are from malt, 2 row North American barley and English crystal malt in the case of this beer. So as others have stated no adjuncts are added. This beer does add ginger for flavoring

\n", "OwnerUserId": "529", "LastActivityDate": "2014-07-01T16:47:37.833", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"904"}} +{ "Id": "904", "PostTypeId": "1", "AcceptedAnswerId": "3199", "CreationDate": "2014-07-02T17:51:59.133", "Score": "4", "ViewCount": "2129", "Body": "

Are there any microbrewery in Lisbon/Tomar in Portugal?

\n\n

What is the specialty brew in Portugal? Is there any special beer or beer-like alcohol from Portugal?

\n", "OwnerUserId": "123", "LastActivityDate": "2019-05-12T19:28:25.920", "Title": "Are there any microbrewery in Lisbon/Tomar in portugal?", "Tags": "breweries local", "AnswerCount": "6", "CommentCount": "0", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"906"}} +{ "Id": "906", "PostTypeId": "2", "ParentId": "877", "CreationDate": "2014-07-04T00:07:00.803", "Score": "2", "Body": "

I would suggest going with the beers that are brewed closest to you. Although transportation and supply chain storage has greatly improved, beer is always best when you are closest to the source.

\n\n

The North Carolina Brewers Guild will be a great resource for you to find beers in your area.

\n\n

http://www.ncbeer.org

\n\n

Belgian style beers, like the Delirium Tremens are growing in popularity very quickly. You should have no trouble finding some in your local area.

\n\n

This might be a good place to start.

\n\n

http://www.newbelgium.com/community/ashevillebrewery.aspx

\n", "OwnerDisplayName": "user1062", "LastActivityDate": "2014-07-04T00:07:00.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"907"}} +{ "Id": "907", "PostTypeId": "1", "AcceptedAnswerId": "909", "CreationDate": "2014-07-06T05:07:27.067", "Score": "3", "ViewCount": "1458", "Body": "

My friend ordered a Wells Banana Bread Beer and to all three of us the beer tasted flat (carbonation-wise). She brought the beer to the bartender, who replied that that's just how that beer is. Is it true that some beers are meant to be served flat? Why? (What does it do for the taste?)

\n", "OwnerUserId": "73", "LastActivityDate": "2014-07-06T14:41:37.977", "Title": "Are some beers meant to be served flat?", "Tags": "carbonation", "AnswerCount": "2", "CommentCount": "1", "ClosedDate": "2014-07-08T14:56:16.673", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"908"}} +{ "Id": "908", "PostTypeId": "2", "ParentId": "907", "CreationDate": "2014-07-06T12:35:42.170", "Score": "0", "Body": "

Yes, some beers have more carbonation than others. I've yet to drink one that is 100% flat but some are pretty close. I couldn't tell you exactly what it does for any beer - the brewer simply decided that it was a good fit for this beer.

\n", "OwnerUserId": "1066", "LastActivityDate": "2014-07-06T12:35:42.170", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"909"}} +{ "Id": "909", "PostTypeId": "2", "ParentId": "907", "CreationDate": "2014-07-06T14:41:37.977", "Score": "2", "Body": "

Traditional ale styles of beer were only carbonated by using natural yeast and remaining sugars post fermentation. The ale house would \"pull\" pints from huge wood tanks, generally located below their taps by using traditional cask systems. CO2 was not available to breweries for most of the worlds brewing history. This led to a ale that was cellar temperature and with little to no carbonation.

\n\n

Today breweries try to replicate this process by \"cask conditioning\" carbonating naturally their beers. So, there is no forced carbonation with CO2 and generally they do not refrigerate cask ales either.

\n", "OwnerDisplayName": "user1062", "LastActivityDate": "2014-07-06T14:41:37.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"910"}} +{ "Id": "910", "PostTypeId": "2", "ParentId": "865", "CreationDate": "2014-07-06T15:15:36.550", "Score": "1", "Body": "

Here is a list of all the breweries in Maryland.

\n\n

http://www.marylandbeer.org/default.asp?iId=LIILE

\n\n

Flying Dog has been around for a while and has a great reputation. We get it here in California.

\n", "OwnerDisplayName": "user1062", "LastActivityDate": "2014-07-06T15:15:36.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"911"}} +{ "Id": "911", "PostTypeId": "2", "ParentId": "865", "CreationDate": "2014-07-07T21:47:23.770", "Score": "1", "Body": "

Many restaurants in the area will have Flying Dog beer from Frederick, MD. Be sure to try some from Flying Dog, although it is somewhat widely distributed so that you may have some varieties where you are from. Try to find a variety that you can't get back home.

\n", "OwnerUserId": "1070", "LastActivityDate": "2014-07-07T21:47:23.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"912"}} +{ "Id": "912", "PostTypeId": "1", "CreationDate": "2014-07-07T22:38:06.673", "Score": "6", "ViewCount": "105", "Body": "

Suggestions on breweries that brew Belgian styles within Seattle city limits?

\n", "OwnerDisplayName": "user1062", "LastActivityDate": "2019-06-19T16:06:17.647", "Title": "Belgian Styles brewed in Seattle?", "Tags": "style trappist", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"913"}} +{ "Id": "913", "PostTypeId": "2", "ParentId": "898", "CreationDate": "2014-07-08T18:56:01.057", "Score": "1", "Body": "

Well in Germany these wouldn't be called beer because in Germany beer can contain only malt, hop, water and yeast. Since many Asian beers contain rice these aren't called beer in Germany.
\nI don't know if other countries even have regulations whether a drink is allowed to call itself beer.

\n", "OwnerUserId": "1072", "LastActivityDate": "2014-07-08T18:56:01.057", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"914"}} +{ "Id": "914", "PostTypeId": "2", "ParentId": "912", "CreationDate": "2014-07-09T16:52:00.737", "Score": "2", "Body": "

Lantern Brewing

\n\n
\n

Lantern Brewing is a family-owned microbrewery in the Greenwood neighborhood of Seattle, Washington. We focus on creating unhurried, honest beer following the brewing traditions of Belgium and Northern France.

\n
\n", "OwnerUserId": "529", "LastEditorUserId": "6874", "LastEditDate": "2019-06-19T16:06:17.647", "LastActivityDate": "2019-06-19T16:06:17.647", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"915"}} +{ "Id": "915", "PostTypeId": "2", "ParentId": "684", "CreationDate": "2014-07-09T22:54:25.157", "Score": "2", "Body": "

I made beer bagels several years ago, and the beer imparted a sort of sour dough flavor.

\n\n

Guinness ice cream was also delightful - http://www.foodnetwork.com/recipes/emeril-lagasse/guinness-ice-cream-with-dark-chocolate-honey-sauce-recipe.html

\n\n

Beer batter onion rings also come out nicely, but I've never really tasted the beer after frying. That being said, if you are up for frying, anything that asks for a seltzer in the batter for the bubbles could probably sub in a brew.

\n", "OwnerUserId": "1075", "LastActivityDate": "2014-07-09T22:54:25.157", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"916"}} +{ "Id": "916", "PostTypeId": "2", "ParentId": "737", "CreationDate": "2014-07-09T23:11:42.670", "Score": "1", "Body": "

It was likely a pear cider from the folks at Fox Barrel (http://www.foxbarrel.com/).

\n", "OwnerUserId": "1077", "LastActivityDate": "2014-07-09T23:11:42.670", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"917"}} +{ "Id": "917", "PostTypeId": "2", "ParentId": "862", "CreationDate": "2014-07-10T06:26:56.210", "Score": "6", "Body": "

I typically drink all of the beer in a sitting, or share it with someone.

\n\n

However, if you need to save it, a good cork will work. Pour the beer you want in a glass, cork it and return it to whatever cooling method you used before.

\n", "OwnerUserId": "1079", "LastActivityDate": "2014-07-10T06:26:56.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"918"}} +{ "Id": "918", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2014-07-10T09:46:15.410", "Score": "1", "Body": "

Yes it does! A beer belly is caused by excess calorie intake and reduced calorie expenditure because of a sedentary lifestyle. Read in detail: http://healthmeup.com/news-weight-loss/the-truth-about-beer-belly-fat/5947

\n", "OwnerUserId": "1080", "LastActivityDate": "2014-07-10T09:46:15.410", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"921"}} +{ "Id": "921", "PostTypeId": "1", "AcceptedAnswerId": "932", "CreationDate": "2014-07-13T16:21:23.767", "Score": "7", "ViewCount": "487", "Body": "

I live in Pennsylvania, where the folks in charge cling desperately to the last vestiges of Prohibition, with a protection racket on the side. What this means is that the state heavily regulates alcohol import and distribution. Wine and hard alcohol can only be bought from stores run by the state, and beer is largely sold through licensed distributors. (I'm not counting ordering single servings in bars/restaurants; that's a separate matter.)

\n\n

I recently learned that PLCB (PA Liquor Control Board) has opinions on which beers can be sold in the state. On a recent trip out of town I had a local beer that I liked, but it's not on the approved list so I can't buy it here. This led me to wonder how PLCB decides -- is there some sort of certification they depend on, or does it depend on breweries paying a fee to sell in Pennsylvania, or what? I could find nothing on their web site that explains how these decisions are made.

\n\n

How does the PLCB decide what beers I'm allowed to buy here?

\n", "OwnerUserId": "43", "LastEditorUserId": "909", "LastEditDate": "2014-07-14T12:39:05.053", "LastActivityDate": "2014-07-16T16:41:04.553", "Title": "How does the PA liquor control board decide which beers can be sold in the state?", "Tags": "laws united-states distribution pennsylvania", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"922"}} +{ "Id": "922", "PostTypeId": "5", "CreationDate": "2014-07-14T12:52:31.250", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-07-14T12:52:31.250", "LastActivityDate": "2014-07-14T12:52:31.250", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"923"}} +{ "Id": "923", "PostTypeId": "4", "CreationDate": "2014-07-14T12:52:31.250", "Score": "0", "Body": "For Pennsylvania Liquor Control Board approved list questions or other questions specific to that American state.", "OwnerUserId": "909", "LastEditorUserId": "909", "LastEditDate": "2014-07-14T14:10:22.550", "LastActivityDate": "2014-07-14T14:10:22.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"924"}} +{ "Id": "924", "PostTypeId": "1", "AcceptedAnswerId": "926", "CreationDate": "2014-07-14T16:42:58.703", "Score": "6", "ViewCount": "3174", "Body": "

I can only find (on their website, and on other nutrition websites) the macronutrients of Guinness.

\n\n

Can someone provide a specific breakdown of micronutrient information for Guinness, or another similar stout?

\n\n

By micronutrients I mean vitamins, minerals, amino acids, etc.

\n", "OwnerUserId": "1098", "LastActivityDate": "2014-07-14T23:46:21.707", "Title": "What is the micronutritional value of stouts such as Guinness?", "Tags": "stout porter nutrition", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"925"}} +{ "Id": "925", "PostTypeId": "2", "ParentId": "921", "CreationDate": "2014-07-14T18:10:50.260", "Score": "1", "Body": "

I also live in PA and am equally baffled by the PALCB regulations. If I had a dime for every time an out of stater asked me where they could buy alcohol, I could buy a brewery.

\n\n

My guess would be the local beer you tried just hasn't gotten to registering in PA.

\n\n

As far as opinions and rules on what beers can and can't be sold in PA, I'd think there are no official \"rules\", especially given the wide assortment of beer our supreme liquor overlords graciously allow us to consume. (I too could not find any set of standards for beer in PA)

\n\n

If there is a vetting process, it's probably a black-box (Request goes in, ruling comes out with no hows or whys).

\n\n

You can visit freemybeer.com to learn more about the restrictions in PA and learn how to contact your state representatives about changing the laws.

\n\n

EDIT: Don Russell asked Francesca Chapman (PLCB's Spokeswoman) in a Daily News article. Her response:\n\"the registration requirement helps the state assure payment of state beer taxes and helps prosecutors identify alcoholic beverages in drunk driving cases or any other types of prosecution.\"

\n\n

Article with some good points and source of quote here

\n", "OwnerUserId": "798", "LastEditorUserId": "798", "LastEditDate": "2014-07-14T18:33:33.110", "LastActivityDate": "2014-07-14T18:33:33.110", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"926"}} +{ "Id": "926", "PostTypeId": "2", "ParentId": "924", "CreationDate": "2014-07-14T23:46:21.707", "Score": "8", "Body": "

There is a table of amino acid composition in beers on page 105 of Beer: Health and Nutrition (C. W. Bamforth, 2004) (page 119 of the overall PDF):

\n\n

\"enter

\n\n

Other than that, I cannot find any nutritional breakdowns that include vitamins for stouts (and porters, in general). However, as far as micronutrients are concerned, there may not be as great a difference between stouts and other ales as one might think, since, despite the perceptibly large differences in color and taste, the ingredients and processes in brewing are largely the same. Here are some findings on beer in general:

\n\n

Querying alcohol on USDA's National Nutrient Database yields breakdowns for

\n\n
    \n
  • Alcoholic beverage, beer, light
  • \n
  • Alcoholic beverage, beer, regular, all
  • \n
  • Alcoholic beverage, beer, regular, BUDWEISER
  • \n
  • Alcoholic beverage, beer, light, BUDWEISER SELECT
  • \n
  • Alcoholic beverage, beer, light, BUD LIGHT
  • \n
  • Alcoholic beverage, beer, light, MICHELOB ULTRA
  • \n
\n\n

Here's a screenshot, because the host doesn't always resolve for me for some reason:

\n\n

\"Screenshot

\n\n

I'm willing to bet that The Irish Food Composition Database has a similar report on Guinness, but the document must be purchased for 15.00€ from EuroFIR. According to a table of contents viewable in the demo link, the document should contain compositions of 57 manufactured beverages.

\n\n

Perhaps you can infer some properties of Guinness by knowing its ingredients and process and also knowing how these ingredients and processes affect micronutrient levels.

\n\n

According to this paper1, as far as major B vitamins are concerned,

\n\n
    \n
  • beer contains very little thiamine (B1), of which malting the barley causes a slight loss, but otherwise stays intact through the rest of the brewing operations,

  • \n
  • riboflavin (B2) increases during the malting and brewing processes, resulting in nutritionally significant amounts (e.g. seven pints supplying total daily requirements),

  • \n
  • nicotinic acid (niacin, B3) fluctuates throughout the malting and brewing process, but also results in nutritionally significant amounts (e.g. three-and-a-half to four pints supplying total daily requirements).

  • \n
\n\n

This study2 measured phylloquinone (K1) composition of beers, specifically a \"bitter,\" a lager, and Guinness, and concluded only trace amounts in each.

\n\n

1 Stringer, W. J. Vitamins in Beer. Journal of the Institute of Brewing. 2013.

\n\n

2 Bolton-Smith, C. et al. Compilation of a provisional UK database for the phylloquinone (vitamin K1) content of foods. British Journal of Nutrition. 2000.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-07-14T23:46:21.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"927"}} +{ "Id": "927", "PostTypeId": "1", "AcceptedAnswerId": "929", "CreationDate": "2014-07-15T12:40:01.413", "Score": "7", "ViewCount": "42867", "Body": "

From my understanding, mead is primarily made from honey and may or may not have hops added.\nIs mead considered a style of beer, or more of a wine, or a completely separate kind of beverage?

\n\n

Are they brewed similarly? More specifically, would it be reasonable to think a brewery I like may make, or consider making mead as well?

\n", "OwnerUserId": "798", "LastActivityDate": "2019-05-09T22:33:09.820", "Title": "What are the differences between mead and beer? Where can I try one in the US?", "Tags": "brewing breweries united-states", "AnswerCount": "6", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"928"}} +{ "Id": "928", "PostTypeId": "2", "ParentId": "927", "CreationDate": "2014-07-15T13:14:07.670", "Score": "2", "Body": "

Mead is an entirely different product which tastes more like a wine than a beer but is quite distinct from either in terms of taste, designation and production. I have never come across a mead flavoured with hops but some are flavoured with other botanicals such as spices or orange peel so I cannot guarantee that none are.\nMost beer breweries undertake a more complex brewing process involving adding ingredients to the mash at different stages and as such, knowing a few hundred UK brewers as I do, they are all about getting the complex mixture correct and blending ingredients correctly they are disinterested in the simple mead making process. That said the mead making process; adding honey to water, adding yeast and letting it ferment may be boring to them it doesn't mean that none do, but I have never known any to be interested.\nOn the other hand some wineries in the UK have their own beehives to help pollinate their fruit and so they produce mead as a side product. This may also be true in the US.

\n\n

A quick search bears out my thoughts on wineries in the US: Where to buy Mead.

\n", "OwnerUserId": "909", "LastEditorUserId": "5064", "LastEditDate": "2018-05-19T12:54:39.307", "LastActivityDate": "2018-05-19T12:54:39.307", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"929"}} +{ "Id": "929", "PostTypeId": "2", "ParentId": "927", "CreationDate": "2014-07-15T13:14:35.893", "Score": "8", "Body": "

Mead is not considered a style of beer, since the sugars in mead come from honey, not from the starch of a grain. Hops are sometimes added to mead for flavor and as a preservative.

\n\n

The process for making mead is more similar to wine making than brewing beer. There's no brewing (boiling) stage necessary in making mead. All of the fermentable sugar comes from the honey in mead, so you just mix honey with water (and whatever spices you want) and go directly to the fermenting stage. Mead also has a higher alcohol content than most beers (8 - 20%, which is more similar to wine, or even brandy).

\n\n
\n

...would it be reasonable to think a brewery I like may make, or consider making mead as well?

\n
\n\n

Not really. At least not in the U.S. Beer is much more popular than mead, and the process for making mead is different, so relatively few brewers are going to make it. I tried mead once at a specialty beer & wine store, which is your best bet for finding it in the U.S. You may have to ask around to see if a store can order some for you.

\n", "OwnerUserId": "154", "LastActivityDate": "2014-07-15T13:14:35.893", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"930"}} +{ "Id": "930", "PostTypeId": "1", "AcceptedAnswerId": "931", "CreationDate": "2014-07-16T13:42:46.053", "Score": "7", "ViewCount": "2194", "Body": "

My local brewery fills growlers and just adds a twist-off cap to the top. They do not place any kind of seal or sticker on the cap to prove it hasn't been opened.

\n\n

So if I get pulled over for whatever reason and the cop sees the growler, in say, the backseat, is this considered a crime? Even if the growler hasn't been opened since it was filled and no beer was removed?

\n\n

What makes this different than a six pack with twist off caps?

\n\n

I live in Pennsylvania, so answers from a PA perspective will be most useful, but even just a general feel from law enforcement's view would be helpful.

\n", "OwnerUserId": "798", "LastActivityDate": "2014-07-30T23:06:58.487", "Title": "Are growlers considered open containers?", "Tags": "laws growlers pennsylvania", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"931"}} +{ "Id": "931", "PostTypeId": "2", "ParentId": "930", "CreationDate": "2014-07-16T16:20:46.697", "Score": "2", "Body": "

Here is what the PA Liquor Control Board has to say:\nPA LCB answer to legality of selling growlers

\n\n

In a nutshell, a growler is an open container, but it is up to the local police or state police to decide whether or not to enforce the law. My guess is that if the growler is full and out of your easy reach, you are probably OK unless you have given the cop some reason to hassle you. As I read the law, you are 100% legal if the growler is in the trunk of the car.

\n\n

If the growler is empty and clean (at least rinsed out), I think they would have a hard time pressing a case. If there is any beer or residue in it, then keep it in the trunk.

\n", "OwnerUserId": "381", "LastActivityDate": "2014-07-16T16:20:46.697", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"932"}} +{ "Id": "932", "PostTypeId": "2", "ParentId": "921", "CreationDate": "2014-07-16T16:41:04.553", "Score": "5", "Body": "

Here is a link to the application for for registering beer brands As you can see on the form, there is a fee of $75 for each \"beer brand\". They define a \"brand\" as an individual beer style. No big deal if you are Miller/Coors/Bud, but a real hassle if you are a micro with a couple of dozen seasonal beers. Note that you also must list the \"importing distributors with whom territorial agreements have been established\". So, I can see that getting a foot in the door would be a daunting task for a small brewery. And once a brewery is established, the process starts over every time they develop a new beer.

\n\n

You can thank Gifford Pichot for this mess. He was the prohibitionist governor of PA when prohibition ended, and he established the PA LCB and State Store system to \"discourage the purchase of alcoholic beverages by making it as inconvenient and expensive as possible.\" Recent efforts to reform the system keep failing because there are too many entrenched interests making money off of the status quo.

\n", "OwnerUserId": "381", "LastActivityDate": "2014-07-16T16:41:04.553", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"933"}} +{ "Id": "933", "PostTypeId": "2", "ParentId": "927", "CreationDate": "2014-07-16T17:52:10.267", "Score": "4", "Body": "

In addition to what was already said, there's a lot of legal gray area, as most if not all states have different laws governing breweries and wineries. Mead is really something different than both, but I believe most meaderies choose to identify as wineries, and many if not all states prohibit wineries from having malt on premises, and breweries MUST use malt in fermentation. You'd either need to find someone that has a license for both beer and wine, which probably isn't that common in commercial operations (brewpubs may be your best bet there), or look for someone who makes a braggot, which is generally a beer/mead blend. Dogfish Head makes Bitches' Brew, and Sprecher Brewery just released a braggot this year. If you're looking to buy, wine shops are generally a better bet - again, lots of people don't know exactly what to do with mead, but I've had good luck finding it, usually around the dessert wines, sherry, port type of wines.

\n", "OwnerUserId": "1103", "LastActivityDate": "2014-07-16T17:52:10.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"934"}} +{ "Id": "934", "PostTypeId": "1", "AcceptedAnswerId": "936", "CreationDate": "2014-07-16T19:18:37.623", "Score": "5", "ViewCount": "6796", "Body": "

I have heard a lot about Heady Topper, the Double IPA by The Alchemist brewery, and how it is a fantastic beer. Online reviews always rank it exceptionally high and everyone I have asked that has tried it has said it was good. However, I have also been told that it is fairly pricey; due to name, renown, and the exclusivity of it. Would it be worth trying to get or order some?

\n", "OwnerUserId": "1104", "LastActivityDate": "2015-10-25T18:23:18.643", "Title": "Is Heady Topper by The Alchemist worth it?", "Tags": "breweries ipa", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"935"}} +{ "Id": "935", "PostTypeId": "1", "CreationDate": "2014-07-17T11:33:58.517", "Score": "5", "ViewCount": "1588", "Body": "

Where can I order Puerto Rican brand \"Medalla\" (canned) from Germany/online ?

\n\n

May there is better German beer available, but I liked drinking frozen Medalla when I was visiting PR last summer - and right now it's hot in Germany and I really miss it...

\n", "OwnerUserId": "1108", "LastActivityDate": "2015-12-16T18:13:48.707", "Title": "Where to buy \"Medalla\"?", "Tags": "local buying cans", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"936"}} +{ "Id": "936", "PostTypeId": "2", "ParentId": "934", "CreationDate": "2014-07-17T21:13:15.003", "Score": "4", "Body": "

I've had it and I would say it's not really worth going out of your way for it. It's been overhyped, in my opinion, and while it's a good beer I don't think it's really as mind-breakingly good as many others seem to think.

\n\n

I believe this discrepancy arises from the fact that Heady Topper is a relatively well balanced IPA. It has the hops bitterness to it that IPAs do, and the high alcohol content of a double, however it also has more of a malty body to it that most people are unused to when drinking IPAs. So lots of people are shocked when drinking it that it actually has some balance between the body and the aftertaste, so that's part of what leads to the high reviews (in my opinion).

\n\n

So if the opportunity comes up to try it, sure, go for it. But I wouldn't really go out of my way to chase after it - there are other well balanced IPAs out there that are more readily available.

\n", "OwnerUserId": "960", "LastActivityDate": "2014-07-17T21:13:15.003", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"937"}} +{ "Id": "937", "PostTypeId": "2", "ParentId": "934", "CreationDate": "2014-07-18T13:38:41.773", "Score": "2", "Body": "

I live in Vermont and I've had quite a few cans of Heady Topper and some from cask. I really love Heady Topper and I haven't yet had another DIPA that tastes similar. First, it's not that expensive. It's $3.75 for a 16 oz can. $14 for a 4-pack. You can get it at local bars, pubs, and restaurants for $5/can. Around $78 for a case (24 x 16oz cans). Compared to other DIPA of similar quality, it's not that expensive (sure if you compared it to macro lagers...)

\n\n

It's produced by a small family owned brewery that's went through 2 expansions which doubled their brewery in size each time over the last 2 years (cannery has only existed for 2 years, before that they brewed it at a brewpub until the brewpub was destroyed by Hurricane Irene). They are currently getting their paperwork finalized for construction of a second brewery which will expand their production even more than before.

\n\n

For locals, it's not that difficult to acquire. If you visit Vermont and plan ahead, then you're sure to leave with a case or two.

\n\n

I think it's worth trading for, but just remember that there's no beer that's life changing. Just a lot of really good tasting beer.

\n", "OwnerUserId": "1112", "LastActivityDate": "2014-07-18T13:38:41.773", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"938"}} +{ "Id": "938", "PostTypeId": "2", "ParentId": "934", "CreationDate": "2014-07-20T09:19:55.377", "Score": "0", "Body": "

Being in California, I have only been able to get my hands on one can. I did enjoy it, however I found it to be very common. In California we are bombarded with IPAs of this same ilk. High alcohol, created by adding sugar to lighten the body, and huge amounts of hops. Call me old school but I prefer IPAs that have about 7 ABV. and about as much hops as the average Pale Ale these days. Lagunitas just put out a beer that is 4.75 ABV with a bunch of hops. Maybe I can have two!

\n", "OwnerDisplayName": "user1062", "LastActivityDate": "2014-07-20T09:19:55.377", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"939"}} +{ "Id": "939", "PostTypeId": "1", "AcceptedAnswerId": "940", "CreationDate": "2014-07-20T10:09:07.997", "Score": "8", "ViewCount": "286", "Body": "

Do you recommend any specific Android app to keep track of the different beers (and of course different kind of beers) that you have tasted?

\n\n

Someone recommended me Untappd but I may need something less social and more informative...

\n", "OwnerUserId": "1114", "LastActivityDate": "2014-08-05T17:23:13.847", "Title": "Recommended Android app", "Tags": "classification resources recommendations", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"940"}} +{ "Id": "940", "PostTypeId": "2", "ParentId": "939", "CreationDate": "2014-07-21T14:05:56.267", "Score": "4", "Body": "

Beeradvocate.com

\n\n

Beer Expert - from \"Rate Beer\" data

\n\n

Both of these are the largest rating/tasting databases for beer, I haven't used them but they would be the place to look for the information that untapped is lacking.

\n", "OwnerUserId": "467", "LastActivityDate": "2014-07-21T14:05:56.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"941"}} +{ "Id": "941", "PostTypeId": "2", "ParentId": "939", "CreationDate": "2014-07-21T19:41:00.357", "Score": "3", "Body": "

In terms of an Android app, I personally use Beer Citizen. It does not have every beer imaginable in its listing, but it has quite a large amount. I find the community to be pretty helpful. They helped me find a lot of different beers whenever and wherever I might travel.

\n\n

Jeff Wurz is also right to suggest Beer Advocate, which recently came out with a new app back in June of this year. I do frequently use Beer Advocate's website and am eager to try out their new app. If you end up not liking Beer Citizen I would recommend trying this app out; though I base this off the usefulness of the website, since I have no experience with the application.

\n\n

Hope I was able to help you out!

\n", "OwnerUserId": "1104", "LastActivityDate": "2014-07-21T19:41:00.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"942"}} +{ "Id": "942", "PostTypeId": "1", "AcceptedAnswerId": "6378", "CreationDate": "2014-07-21T22:00:29.673", "Score": "7", "ViewCount": "641", "Body": "

I'm looking for distributors/shops close to central Pennsylvania that sell Okocim beers such as Okocim Porter, Okocim Beer, or Okocim Mocne. I've seen O.K. Beer around here (another Okocim product), but the branded Okocim beers are what I'm really interested in. I don't mind driving a bit either, but hopefully something in or around the state...

\n", "OwnerUserId": "1120", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:55:12.107", "LastActivityDate": "2016-11-07T14:01:11.487", "Title": "Where to find Okocim beer in or around Pennsylvania", "Tags": "distribution pennsylvania", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"943"}} +{ "Id": "943", "PostTypeId": "2", "ParentId": "877", "CreationDate": "2014-07-22T08:00:56.837", "Score": "0", "Body": "

You should try the famous smoke beer \"Schlenkerla\". Maybe you can find it in North Carolina: http://www.schlenkerla.de/verkauf/haendlerint/retailer-us.html

\n", "OwnerUserId": "1122", "LastActivityDate": "2014-07-22T08:00:56.837", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"944"}} +{ "Id": "944", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2014-07-22T14:05:12.337", "Score": "7", "Body": "

Actually, there are still people who brew the same way people did before the discovery of yeast, so we have a pretty good idea how it worked. There are also data from early 20-th century ethnological surveys where brewers describe their methods. Some of the equipment used for yeast transfer is still in use, or in ethnological museums.

\n\n

People usually didn't brew that often, so they couldn't transfer the yeast cake itself. Instead, they would collect yeast from the previous brew and either keep it in a jar that they kept cool, for example in a well, or by drying it on a wooden log, piece of linen, straw ring, etc etc etc. There were lots of methods, but they basically boil down to either keeping wet or dry yeast. Odd Nordland's 1969 book is the only detailed source of information on this that I know; unfortunately it's near-impossible to get hold of.

\n\n

As far as I know, this type of yeast and yeast use only survives in two places: the Lithuanian province of Aukstatija, and western Norway (specfically, Hardanger, Voss, and Sunnmøre).

\n\n

I've written a summary of what's known of Norwegian practices, and earlier this year I was able to brew with a brewer who still uses his family's ancestral yeast strain. I've published an account of that brewing session.

\n\n

I hope people will forgive me for linking to my own stuff here. I don't know of any other detailed sources of information on the web anywhere.

\n", "OwnerUserId": "1125", "LastEditorUserId": "1125", "LastEditDate": "2014-07-23T07:01:48.923", "LastActivityDate": "2014-07-23T07:01:48.923", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"945"}} +{ "Id": "945", "PostTypeId": "1", "CreationDate": "2014-07-22T15:13:54.770", "Score": "5", "ViewCount": "1526", "Body": "

I'm looking for apps, as a beer aficionado, to record the different beers that I try. Is there a vivino for beer?

\n", "OwnerUserId": "1126", "LastEditorUserId": "69", "LastEditDate": "2014-07-23T03:04:23.643", "LastActivityDate": "2019-05-31T10:20:28.103", "Title": "Apps for recording variety of beers consumed", "Tags": "taste varieties", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"946"}} +{ "Id": "946", "PostTypeId": "2", "ParentId": "945", "CreationDate": "2014-07-23T00:48:52.967", "Score": "12", "Body": "

I would suggest the app Untappd. It gives you an opportunity to comment on beers and include pictures and locations. You can even earn badges that notate various \"beer achievements\".

\n", "OwnerUserId": "1128", "LastEditorUserId": "8580", "LastEditDate": "2019-05-31T10:20:28.103", "LastActivityDate": "2019-05-31T10:20:28.103", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"947"}} +{ "Id": "947", "PostTypeId": "2", "ParentId": "835", "CreationDate": "2014-07-23T07:10:54.407", "Score": "6", "Body": "

Yes, there are craft breweries in Iceland. There aren't that many, but with a population of only 300,000 people that's to be expected. The main ones are Einstök, Borg, Gædingur, and Ölvisholt. There's also Stedji and Kaldi, but these are less interesting. I felt Gædingur was a bit variable on quality. Note that none of these produce extreme beers. They focus more on drinkability.

\n\n

Only Borg is in Reykjavik. I don't know if you can visit the brewery.

\n\n

You can't buy interesting beer in Icelandic supermarkets, because the alcohol limit is 2.25%. As far as I could tell, only 4 beers were available in supermarkets, all of them pale lagers. You have to go to Vinbudin. There's a branch in the Austurstræti in the city centre, but the one out in the Kringlan shopping center has a bigger selection.

\n\n

Look for these bars in the Reykjavik city centre: Micro Bar, Cafe Laundromat, K-Bar, and 73. All of them on Austurstræti and Laugarvegur.

\n\n

Edit: I forgot to say what's the most unique/distinct beer. I'd say Borg Fenrir, which they describe \"tadreyktur IPA\", meaning IPA smoked in the traditional Icelandic way. That is, it's smoked by burning sheep dung. (Seriously.) The smoke aroma is really unusual, but actually quite nice.

\n", "OwnerUserId": "1125", "LastEditorUserId": "1125", "LastEditDate": "2014-07-30T07:31:03.377", "LastActivityDate": "2014-07-30T07:31:03.377", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"948"}} +{ "Id": "948", "PostTypeId": "2", "ParentId": "904", "CreationDate": "2014-07-23T14:03:13.353", "Score": "2", "Body": "

Portugal Beer History

\n\n

Lisbon Beer Museum

\n\n

Edit: Dois Corvos and Oitava Colina are both craft breweries in the area.

\n\n

Generally, Lisbon seems to be a wine destination, which means beer doesn't end up shining in any significant way in the region.

\n", "OwnerUserId": "467", "LastEditorUserId": "467", "LastEditDate": "2015-11-30T09:35:29.273", "LastActivityDate": "2015-11-30T09:35:29.273", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"949"}} +{ "Id": "949", "PostTypeId": "2", "ParentId": "945", "CreationDate": "2014-07-23T14:08:19.463", "Score": "1", "Body": "

I have personally used Pintley on iOS (but it's cross platform) and found it to be a pretty good app. The quality of the graphics isn't intensely refined, but the beer list is very comprehensive. I found that the beer list was one of the most important things in an app like this, since I was usually in quick situations when I wanted to record and rate a beer. I didn't want to be out with friends and browsing through a ton of pages to finally have to input all the details of a beer that was fairly common.

\n\n

A friend of mine just switched to Beer Citizen (also cross platform), which seems to have a more refined look. I've done some searching through the database though, and there seems to be quite a bit missing...

\n", "OwnerUserId": "1120", "LastActivityDate": "2014-07-23T14:08:19.463", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"950"}} +{ "Id": "950", "PostTypeId": "2", "ParentId": "945", "CreationDate": "2014-07-23T15:09:20.987", "Score": "2", "Body": "

In my opinion most of such apps are not what you really need and they often lack something. Therefore I simply use Google Drive Spreadsheet. As cheap as it sounds, it has everything that you want out of it.

\n", "OwnerUserId": "1129", "LastActivityDate": "2014-07-23T15:09:20.987", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"951"}} +{ "Id": "951", "PostTypeId": "2", "ParentId": "904", "CreationDate": "2014-07-23T19:26:19.770", "Score": "1", "Body": "

There is a chain restaurant over in Portugal called Cervejeira Lusitana; also known as the Lusitanian Brewery. This restaurant is a brewpub that sells beer and Portuguese food. There should be a few in Lisbon, but I am not quite sure about Tomar.

\n\n

Portugal is not really known for their beer that I know of. It seems like the beers they sell commonly aren't too much on the hoppy-side either. From what I found about the usual style of beer over there, it seems that lagers are very common. There are a few other styles it seems, but no real specialty brew. I would ask around and see if any of the locals know of any particular bars and brews to try.

\n\n

EDIT: Forgot to add the TripAdvisor link for them.

\n", "OwnerUserId": "1104", "LastEditorUserId": "1104", "LastEditDate": "2014-07-24T13:45:31.857", "LastActivityDate": "2014-07-24T13:45:31.857", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"952"}} +{ "Id": "952", "PostTypeId": "2", "ParentId": "945", "CreationDate": "2014-07-24T13:57:18.693", "Score": "1", "Body": "

Beer Buddy. Hands down best beer tracking, rating, and review app ever. It's associated with ratebeer.com so if you have an account with them you can sync your reviews.

\n", "OwnerUserId": "1118", "LastActivityDate": "2014-07-24T13:57:18.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"954"}} +{ "Id": "954", "PostTypeId": "1", "AcceptedAnswerId": "2152", "CreationDate": "2014-07-24T20:04:07.747", "Score": "5", "ViewCount": "354", "Body": "

So I enjoy spicy beers from time to time (when they're done well). Chili porters, jalapeno/habanero IPAs, etc. I have a friend who loves spicy things but also has Celiac's and so can't drink beer. Anyone know of any spicy hard ciders out there or spicy gluten-free beers that might work for someone who's gluten-free? One available in Southern California is preferable.

\n\n

A little internet searching turned up the following two, but at least one of the two isn't available in San Diego:

\n\n

Finn River (Washington state based, might be here),\nRate Beer page for Finn River

\n\n

McClure's (Indiana based), \nRate Beer for McClure's

\n", "OwnerUserId": "960", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:47:19.843", "LastActivityDate": "2016-07-28T14:47:19.843", "Title": "Spicy Hard Cider", "Tags": "cider", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"955"}} +{ "Id": "955", "PostTypeId": "5", "CreationDate": "2014-07-29T08:04:31.900", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2014-07-29T08:04:31.900", "LastActivityDate": "2014-07-29T08:04:31.900", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"956"}} +{ "Id": "956", "PostTypeId": "4", "CreationDate": "2014-07-29T08:04:31.900", "Score": "0", "Body": "Unicellular microbes that produce alcohol under the anaerobic or low-oxygen conditions in the brewing process and also have an effect on the flavour of beer. Over 1500 species exist.", "OwnerUserId": "909", "LastEditorUserId": "909", "LastEditDate": "2014-08-01T05:13:27.320", "LastActivityDate": "2014-08-01T05:13:27.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"958"}} +{ "Id": "958", "PostTypeId": "2", "ParentId": "666", "CreationDate": "2014-07-31T07:15:14.120", "Score": "8", "Body": "

I started an open beer n brewery data project, that is, beer.db - all data is public domain, that is, license-free, no rights reserved). You can also run your own HTTP JSON API service e.g GET /beer/brooklynlager or GET /brewery/guiness etc. Adding new beers and breweries works like a wiki - that is, anyone can update the plain text documents (datasets) in your browser or on your local machine with your text editor of choice and than upload the changes back to the repo (e.g. git push) Cheers. Prost.

\n", "OwnerUserId": "1160", "LastActivityDate": "2014-07-31T07:15:14.120", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"960"}} +{ "Id": "960", "PostTypeId": "1", "AcceptedAnswerId": "961", "CreationDate": "2014-07-31T14:40:48.293", "Score": "5", "ViewCount": "193", "Body": "

Is there a simple word for ordering a beer sans garnish? Say for instance I want a Hoegaarden... It's a great beer in it's own right, and I don't want it to come decorated with a slice of orange that I have to take responsibility for disposing of. How can I order the beer without it, quickly and easily? I've tried \"no decoration,\" but that sounds pretentious. For a scotch, I would say \"neat.\" Is there a way to do that for beer?

\n", "OwnerUserId": "1120", "LastActivityDate": "2014-07-31T15:31:54.137", "Title": "How to order a beer without garnish, simply?", "Tags": "garnish", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"961"}} +{ "Id": "961", "PostTypeId": "2", "ParentId": "960", "CreationDate": "2014-07-31T15:31:54.137", "Score": "3", "Body": "

For me, I usually just ask for \"no fruit\" or \"no orange/lime/garnish\" and it has always seemed to work. Sometimes I will say \"straight up\" though I do still get the garnish on occasion I've come to find. I am not sure if this was because the bartender was busy and forgot or if there was some other reason, but I just tend to not say this as much anymore. I've never felt pretentious when I ask, I feel like I am just asking for a beer as is because I just happen to not want the garnish in it. Just be polite about ordering it and I am sure you won't come across as pretentious.

\n", "OwnerUserId": "1104", "LastActivityDate": "2014-07-31T15:31:54.137", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"962"}} +{ "Id": "962", "PostTypeId": "1", "CreationDate": "2014-08-01T01:40:07.460", "Score": "7", "ViewCount": "699", "Body": "

Why is The Alchemist Heady Topper recommended to \"Drink from the can\"? Also, are there other beers that \"should\" also be drank from the can?

\n", "OwnerUserId": "1167", "LastEditorUserId": "1210", "LastEditDate": "2014-08-24T15:59:59.347", "LastActivityDate": "2014-08-24T15:59:59.347", "Title": "Drink from the can?", "Tags": "taste", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"963"}} +{ "Id": "963", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-08-01T04:24:48.393", "Score": "3", "Body": "

Estrella Damn Daura FTW!

\n\n

My friends from DC recommended me Omission, it also tastes good.

\n\n

I've tried New Planet but I didn't liked it.

\n", "OwnerUserId": "1168", "LastActivityDate": "2014-08-01T04:24:48.393", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"964"}} +{ "Id": "964", "PostTypeId": "2", "ParentId": "82", "CreationDate": "2014-08-01T04:47:30.997", "Score": "3", "Body": "

Some Gluten Free beers actually have gluten at the moment they are made, for example in the case of Omission the beer goes trough a proprietary \"gluten removal process\" and then they use a gluten test called the Competitive R5 ELISA, which is used to test foods that are \"hydrolyzed,\" or broken down. This test looks for a specific lengthy fragment of the gluten protein and returns a negative result if it doesn't finds it.

\n\n

If the test results are under 20 parts per million (as @LessPop_MoreFizz's answer says), then it can be called \"gluten free\" in the USA... and yes, I've heard people with serious celiac disease can still \"feel\" that concentrations and get sick.

\n\n

\"Estrella Damm Daura\" on the other hand has only 3 parts per million, they also have a proprietary process to remove gluten. Estrella Damm Daura is an European beer made in Spain, obviously in Europe health and food standards are way better than USA's. In Europe, food authorities will never allow a brewery to call a beer with 20 ppm \"gluten free\". Just don't confuse it with \"Estrella Damm\" which is their regular beer.

\n", "OwnerUserId": "1168", "LastEditorUserId": "1168", "LastEditDate": "2014-08-02T21:54:07.050", "LastActivityDate": "2014-08-02T21:54:07.050", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"965"}} +{ "Id": "965", "PostTypeId": "2", "ParentId": "866", "CreationDate": "2014-08-01T04:52:26.463", "Score": "1", "Body": "

Independently of any ingredients like hops and barley, beer and any other beverage or food containing alcohol is SUPER BAD for your dog.

\n\n

A few drops licked from the floor may not be a problem for a 70 pound dog (like mine) but in greater concentrations such as a cup or bowl it will cause your dog's liver to fail killing him/her in a short period of time.

\n\n

It also depends on how much the dog weights and his/her particular sensibility to alcohol.

\n", "OwnerUserId": "1168", "LastActivityDate": "2014-08-01T04:52:26.463", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"967"}} +{ "Id": "967", "PostTypeId": "2", "ParentId": "962", "CreationDate": "2014-08-04T15:25:00.667", "Score": "4", "Body": "

Here is what the founder has to say:
\nhttp://www.beerpulse.com/2013/04/why-to-drink-alchemist-heady-topper-out-of-the-can-and-other-questions-answered-video/

\n\n

Sounds like oxidation is a main reason, but he gives several other reasons.

\n", "OwnerUserId": "529", "LastActivityDate": "2014-08-04T15:25:00.667", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"968"}} +{ "Id": "968", "PostTypeId": "1", "CreationDate": "2014-08-05T14:41:30.660", "Score": "2", "ViewCount": "439", "Body": "

Looking for sources for beer n brewery statistics such as production in hl per year, consumption, consumption per capita, number of breweries (macro, regional, micro, brewpubs, and so on) etc. ideally for all countries in the world. Any insight and help appreciated.

\n\n

Disclaimer: I'm the project lead of the beer.csv project that collects (open, free) beer statistics in the CSV (comma-separated values) format.

\n", "OwnerUserId": "1160", "LastActivityDate": "2014-08-06T10:27:19.663", "Title": "Beer n Brewery Statistics - Any Sources for Production, Consumption, Number of Breweries, etc. per Country?", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"969"}} +{ "Id": "969", "PostTypeId": "1", "AcceptedAnswerId": "973", "CreationDate": "2014-08-05T16:24:41.480", "Score": "6", "ViewCount": "1038", "Body": "

I have a friend who never really got into beer. Something about it just doesn't taste right to her, I guess; regardless, she is still open to trying beer and wants to find some that she actually enjoys. I have been trying to find beers for her to try for a while now, but haven't had much luck. I know that she would not be a fan of any sour or overly bitter beer, so something sweeter would be more suited for her. It might also be worth mentioning that she isn't a huge fan of chocolate, but absolutely loves vanilla.

\n\n

I have tried giving her some beers like Wild Blue and those seem to be a step in the right direction, but she still wants to find less fruit flavored beer that she would enjoy. I have been looking for either something with a decent vanilla flavor, like Leinie's Snowdrift Vanilla Porter. However, everything I have tried to introduce her too doesn't seem to cut it. I really want to find a beer she'll drink, so if you have any more suggestions let me know!

\n", "OwnerUserId": "1104", "LastEditorUserId": "13851", "LastEditDate": "2021-09-02T17:12:55.923", "LastActivityDate": "2021-09-02T17:12:55.923", "Title": "Trying to Find a Good Beer for A Friend", "Tags": "taste recommendations flavor", "AnswerCount": "11", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"970"}} +{ "Id": "970", "PostTypeId": "2", "ParentId": "939", "CreationDate": "2014-08-05T17:23:13.847", "Score": "0", "Body": "

I like Untappd. It would be better if it automatically recognized the beer labels, but it is fine. You must type the beer name.

\n", "OwnerUserId": "1183", "LastActivityDate": "2014-08-05T17:23:13.847", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"971"}} +{ "Id": "971", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-08-06T08:00:48.257", "Score": "0", "Body": "

What about Desperados? The flavor goes in the direction of lemonade. Generally, you could try some beer mix drinks. Would that be an option?

\n", "OwnerUserId": "1184", "LastActivityDate": "2014-08-06T08:00:48.257", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"972"}} +{ "Id": "972", "PostTypeId": "2", "ParentId": "968", "CreationDate": "2014-08-06T10:27:19.663", "Score": "1", "Body": "

There is a bit of statistics on Norway here.

\n\n

In the US the Brewers' Association publishes statistics. Generally that's where you'll find statistics world-wide. Here is corresponding statistics for Norway.

\n\n

Trawling through the \"Beer_in_Xxx\" pages on Wikipedia may provide you with more pointers.

\n\n

For historical data, European Beer Guide is a great source.

\n", "OwnerUserId": "1125", "LastActivityDate": "2014-08-06T10:27:19.663", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"973"}} +{ "Id": "973", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-08-06T16:57:38.080", "Score": "6", "Body": "

When I try to pick beers for friends that don't tend to like \"regular beer\" in general, there are a few different styles I focus on. It's worth mentioning up front that there are certain taste aversions that people have to different beers. You mentioned getting her into a vanilla porter. I have a favorite from Mill Street in Canada; they make a great vanilla porter. The caveat though is that I like coffee a lot, and many people averse to beer tend to have trouble with the intense flavors of different varieties of beer, such as extreme hoppiness, heavily malted barley, or, darkly roasted barley that make up stouts and porters.

\n\n

You mentioned less fruity beers, but talked about \"Wild Blue\" when you mentioned that. Wild Blue is a Blueberry flavored lager; it's basically a \"regular beer,\" but is infused with blueberry flavor to change it up. I would look at other \"fruity\" styles that are still very authentic and internationally renowned, but pack less of a general beer flavor than a filtered rice/grain/barley beer would...

\n\n

A good starter would be a more heavily wheat based beer. Styles like Belgian wheats or German hefeweizens have less of that pronounced \"regular beer\" flavor, but are still in their own right, very prolific styles. I tend to find Belgian wheats/\"weisse/wittes(whites)\" to be a bit more \"chewy\" with more of a banana/coriander flavor than their full blown German counterparts. Good wheats that I would recommend would be Franziskaner or Hoegaarden. They're safe forays into that style of beer that I almost always tend to get for new drinkers. The cool thing is that if she likes them, you can really experiment with other varieties in that field. Belgian doubles and triples tend to generally fall into a similar category, and they're arguably some of the finest beers in the world...

\n", "OwnerUserId": "1120", "LastActivityDate": "2014-08-06T16:57:38.080", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"974"}} +{ "Id": "974", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-08-08T13:07:03.807", "Score": "2", "Body": "

In my country, girls commonly love sweet beers. An example is Kriek. It is cherry beer (kriek is Dutch for cherry).\nI guess any sweet fruity beer could do the trick?

\n", "OwnerUserId": "662", "LastActivityDate": "2014-08-08T13:07:03.807", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"975"}} +{ "Id": "975", "PostTypeId": "1", "AcceptedAnswerId": "990", "CreationDate": "2014-08-09T10:27:48.793", "Score": "7", "ViewCount": "2705", "Body": "

I would guess that a Porter pH is higher than for an IPA, because of alpha acids or other acids from the hops. I also heard that it can heavily depend on the acidity of the water used.

\n\n

But anyway, are those pH differences really significant in the final product ? For instance, if I have an ulcer, would it be worse to drink some type of beer rather than an other ?

\n", "OwnerUserId": "1195", "LastActivityDate": "2014-08-17T16:04:54.690", "Title": "Is there any meaningful difference in acidity level between beer styles?", "Tags": "style ingredients", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"976"}} +{ "Id": "976", "PostTypeId": "1", "CreationDate": "2014-08-10T17:04:34.340", "Score": "23", "ViewCount": "220643", "Body": "

I have a bud light in a friend's refrigerator that has a date of May 14 2007. I have heard of people drinking beer after the posted date, but does it turn harmful after all these years if I drink it?

\n", "OwnerUserId": "1197", "LastEditorUserId": "73", "LastEditDate": "2014-08-11T10:05:52.973", "LastActivityDate": "2017-01-06T13:07:00.840", "Title": "Is beer dangerous to drink past its \"sell by\" date?", "Tags": "taste", "AnswerCount": "13", "CommentCount": "6", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"977"}} +{ "Id": "977", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-08-10T18:16:48.700", "Score": "7", "Body": "

It won't be harmful, but neither will it taste any good. Pale low-alcohol beers don't age very well, and a beer that was low on flavour to start with is not going to improve with time. You'll get lots of wet cardboard flavours and a very thin body. I would pour it out.

\n", "OwnerUserId": "1125", "LastActivityDate": "2014-08-10T18:16:48.700", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"978"}} +{ "Id": "978", "PostTypeId": "2", "ParentId": "8", "CreationDate": "2014-08-10T23:05:22.343", "Score": "2", "Body": "

The main difference between the two is the different types of yeast that they both use. Lager yeasts are more tolerant to cold temperatures and so are fermented at a lower temperature. This is what gives the lager a crisp flavour. The ale yeasts ferment at higher temperatures and take less time to complete as the yeast is more active the higher the temperature.

\n\n

Both types also use very different hops and malts...

\n\n

Source: http://www.homebrew-zone.com

\n", "OwnerUserId": "1199", "LastActivityDate": "2014-08-10T23:05:22.343", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"979"}} +{ "Id": "979", "PostTypeId": "2", "ParentId": "975", "CreationDate": "2014-08-11T02:41:18.240", "Score": "2", "Body": "

Well, brewers typically control pH during the fermentation process top avoid unwanted bacterial growth, etc., fermentation actually doesn't even happen below ~4. So not a significant difference.

\n\n

Sources - I brew and web

\n", "OwnerUserId": "1200", "LastActivityDate": "2014-08-11T02:41:18.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"980"}} +{ "Id": "980", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-08-11T10:35:57.310", "Score": "-1", "Body": "

It is unlikely to be harmful (assuming it hasn't become infected), but the flavour may have changed compared to fresher bottles of the same brand. In particular, the aromatic oils from the hops will break down as the beer ages.

\n\n

Whether this makes the beer undrinkable will depend partly on the beer and partly on the tastes of the person drinking it. If you are curious you may as well try a mouthful or two.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-08-11T10:35:57.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"981"}} +{ "Id": "981", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-08-11T14:32:55.323", "Score": "25", "Body": "

The pH of beer is low enough that no known pathogens can survive in it. That's why you never hear about botulism problems with home-brewed beer like you do with home-canned foods, for example.

\n\n

Beer slowly changes over time. High gravity beers, like barley wines or imperial stouts benefit from this, and acquire richer flavors as they slowly oxydize. Belgian styles, like lambics do as well and the wild yeasts and bacteria continue to grow. However, even those have a limit -- eventually they will begin to taste very stale.

\n\n

Low gravity beers begin to taste stale much more quickly. If you are keeping them refrigerated, they may last for 6 months or more. Seven years is definitely way too long.

\n\n

So it won't make you sick or harm you if you want to taste it. But it is extremely unlikely that you will enjoy it.

\n", "OwnerUserId": "381", "LastActivityDate": "2014-08-11T14:32:55.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"983"}} +{ "Id": "983", "PostTypeId": "1", "CreationDate": "2014-08-13T10:40:56.017", "Score": "4", "ViewCount": "5544", "Body": "

I have noticed that when I spend a night drinking the usual lagers found on bar taps in the UK (Heineken, Carlsberg, etc.), I have a much worse hangover than when I spend a night drinking locally brewed real ales (or mass-produced real ales such as Spitfire, Wainwright, etc.).

\n\n

Is there any reason for this? Do lagers contain any ingredients that can cause worse hangovers than real ales?

\n", "OwnerUserId": "1209", "LastActivityDate": "2018-01-26T12:18:40.517", "Title": "Does drinking mainstream, mass-produced lagers give you a worse hangover than real ale?", "Tags": "ale lager hangover", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"984"}} +{ "Id": "984", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-08-14T06:30:09.853", "Score": "-1", "Body": "

No. The most important thing is, that you control if the beer lathers when you open it.

\n\n

If there is no foam, throw it away ;)

\n\n

best regards from austria

\n", "OwnerUserId": "1214", "LastActivityDate": "2014-08-14T06:30:09.853", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"985"}} +{ "Id": "985", "PostTypeId": "2", "ParentId": "983", "CreationDate": "2014-08-15T20:15:37.780", "Score": "2", "Body": "

Yes, they contain adjuncts which aren't malted barley to make them cheaper to produce.

\n\n

These adjuncts aren't the same type of sugar so are fermented differently than maltose.

\n", "OwnerUserId": "467", "LastActivityDate": "2014-08-15T20:15:37.780", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"986"}} +{ "Id": "986", "PostTypeId": "1", "AcceptedAnswerId": "1088", "CreationDate": "2014-08-15T21:20:31.147", "Score": "6", "ViewCount": "25907", "Body": "

I live in Denver, Colorado and I have noticed many grocery stores will have full a liquor selection and normal alcohol content beer, but others will only sell 3.2% beer and no liquor. This goes even for the same chain of stores. For example, Safeway will carry a full liquor selection at one location but only 3.2% beer at another.

\n\n

This seems to apply to every chain in town including: King Soopers, Safeway, Walmart, Target, etc. Therefore I am wondering if there is a law limiting this? If so, what are the details?

\n", "OwnerUserId": "1219", "LastActivityDate": "2021-05-14T18:21:26.677", "Title": "Why do some grocery stores in Colorado have regular beer and liquor but some only sell 3.2% beer?", "Tags": "laws 3.2-beer", "AnswerCount": "4", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"987"}} +{ "Id": "987", "PostTypeId": "2", "ParentId": "986", "CreationDate": "2014-08-15T23:05:51.253", "Score": "5", "Body": "

Retail stores in Colorado sell spirits, wine, and beer. Grocery and convenience stores sell 3.2 percent beer only, and then not between 2 a.m. and 6 a.m. Package stores are open 8 a.m. until midnight and are closed on Sundays. Bars stop selling alcohol between 2 a.m. and 7 a.m.
\nhttp://www.alcohollaws.org/coloradoalcohollaws.html

\n\n

I would guess those \"grocery stores\" selling spirits and such are probably classified as something other than a grocery store.

\n\n

This information may be a little out of date, Colorado does allow Sunday sales now. I found this on Wikipedia:

\n\n
\n

Spirituous, vinous & malt liquor available in liquor stores and\n liquor-licensed drug stores only. Liquor stores closed on Christmas\n Day. Sunday sales restriction lifted on July 1, 2008. Liquor stores\n and liquor-licensed drug stores may have only one location, while 3.2%\n beer may be sold in gas stations, supermarkets, and convenience\n stores. Appropriately licensed businesses may also sell 3.2% beer for\n both on and off-premise consumption. A small number of grocery stores\n are licensed as drug stores and sell full strength beer, wine, and\n spirits. As an example, a chain grocery store that has pharmacy\n services at most or all locations may elect a single location in the\n chain as the licensed establishment to sell beer, wine, and spirits.

\n
\n", "OwnerUserId": "529", "LastEditorUserId": "529", "LastEditDate": "2014-08-15T23:11:20.667", "LastActivityDate": "2014-08-15T23:11:20.667", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"988"}} +{ "Id": "988", "PostTypeId": "2", "ParentId": "840", "CreationDate": "2014-08-16T09:42:57.900", "Score": "1", "Body": "

In Belgium, you have the breweries itself that distribute their beer.\nThey have a large collection of different beers (and even soda, cola,..).\nWhen you open a pub, you can choose to buy directly from the brewery. You will have lower prices and you have to possibility to get parasols, cards, logo's, chairs, tables, ... with the logo of one of their beers.

\n\n

If you don't choose to buy from the brewery, you can buy from a local distributer and compose your own beer-list. But no perks this way and it is more expensive.

\n", "OwnerUserId": "1221", "LastActivityDate": "2014-08-16T09:42:57.900", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"989"}} +{ "Id": "989", "PostTypeId": "2", "ParentId": "983", "CreationDate": "2014-08-16T11:24:44.203", "Score": "3", "Body": "

That is possible to a level, but not proven, and probably does not make a huge difference, as there are many factors causing hangover, some stronger than others.

\n\n

Moreover, that would be saying that all commercial beers have the same effects and all local brewed ales have the same other (better) effect, which sounds to me very simple and convenient to conclude.

\n\n

That being said, adjuncts in mass-produced beers may still play a role, but I would tend to seek the explanation for the hangover difference in context first.

\n\n

But anyway, hangover mechanisms are not well understood, so I could be wrong !

\n", "OwnerUserId": "1195", "LastActivityDate": "2014-08-16T11:24:44.203", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"990"}} +{ "Id": "990", "PostTypeId": "2", "ParentId": "975", "CreationDate": "2014-08-17T16:04:54.690", "Score": "4", "Body": "

Sure, there are major differences in acidity. Unsurprisingly, the sour beer styles can have very low pH levels. Here's an example of someone measuring the pH of sour beers and finding that even within that category there are significant differences. Here's a short presentation showing that expected pH ranges from 3.2-3.4 for Berliner Weisse to 4.5-4.8 for pilsner and bock. So, yes, there are definitely major differences, and they do matter to the perception of the finished product. At the most obvious level, low-pH beers actually taste sour. There are also indications that smaller pH variations matter to how people perceive the flavour.

\n", "OwnerUserId": "1125", "LastActivityDate": "2014-08-17T16:04:54.690", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"991"}} +{ "Id": "991", "PostTypeId": "1", "CreationDate": "2014-08-17T16:27:52.560", "Score": "8", "ViewCount": "502", "Body": "

I've tried hundreds of beers in recent years. But it starts to get expensive buying some beers less accessible online. Is there any site about swapping beers between people of different countries?

\n", "OwnerUserId": "1222", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:54:31.767", "LastActivityDate": "2017-02-22T21:41:39.143", "Title": "Beer swapping online?", "Tags": "recommendations distribution", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"992"}} +{ "Id": "992", "PostTypeId": "1", "AcceptedAnswerId": "1001", "CreationDate": "2014-08-18T13:51:37.577", "Score": "8", "ViewCount": "523", "Body": "

We are used to seeing bubbles float up in a glass of beer, but bubbles in Guinness appear to break the rules.

\n\n

Do the bubbles really sink in Guinness, or is it just an illusion?

\n\n

If the bubbles go down, where do they go? Why do they all end up at the head?

\n\n

Links:

\n\n\n", "OwnerUserId": "1226", "LastActivityDate": "2014-08-25T14:49:06.853", "Title": "Do bubbles in Guinness go down?", "Tags": "serving", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"993"}} +{ "Id": "993", "PostTypeId": "1", "AcceptedAnswerId": "994", "CreationDate": "2014-08-18T14:01:32.500", "Score": "5", "ViewCount": "4014", "Body": "

It is known who invented the beer? And when was beer invented?

\n\n

Links:

\n\n\n", "OwnerUserId": "1226", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-10-22T15:24:20.277", "Title": "Who invented beer and when?", "Tags": "history", "AnswerCount": "3", "CommentCount": "1", "ClosedDate": "2014-10-24T19:46:42.580", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"994"}} +{ "Id": "994", "PostTypeId": "2", "ParentId": "993", "CreationDate": "2014-08-18T14:28:09.863", "Score": "6", "Body": "

As your link indicates there is evidence of beer going back to around 5000 BC, however, this is only the first time that it is known to have been recorded. Alcoholic drinks made by naturally fermenting fruit are drunk by monkeys and elephants and probably long pre-date the evolution of humans. Evidence of breads, which could result in a type of beer if allowed to ferment in the same way as the fruits if the mixture was left with yeast in too long, exists from 30,000 years and pre-dates the advent writing ( http://en.wikipedia.org/wiki/History_of_bread ). It is likely therefore that beers existed tens of thousands of years ago through accident at first and eventually design and were likely to be similar to traditional African beers such as the Kenyan busaa, which by coincidence is still made by my girlfriend's grandmother for the elder men of her tribe. I.e. these beers would be a form of thick, alcoholic liquid bread. In other words we cannot know who \"invented\" beer as

\n\n
    \n
  1. it probably pre-dates written language and
  2. \n
  3. it wasn't \"invented\" by anyone really it was made serendipitously at first.
  4. \n
\n\n

the date was probably some time over 20,000 years ago but that is unknowable for the same reasons.\nInterestingly, as it is a drink made from a cheap foodstuff that was widely consumed by the people rather than by nobility who could record such things, it is not known who invented lager either. It is likely that Lambics were the precursors of Lagers though.

\n", "OwnerUserId": "909", "LastActivityDate": "2014-08-18T14:28:09.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"995"}} +{ "Id": "995", "PostTypeId": "1", "CreationDate": "2014-08-19T03:53:45.563", "Score": "11", "ViewCount": "1542", "Body": "

Background: I was drinking a New Belgium \"Tour de Fall\" last week and thinking about the hops that I was tasting in the finish. For me, hops in general were a pretty slowly acquired taste, and I didn't start truly appreciating the hoppy West Coast style until I encountered Sierra Nevada \"Torpedo\" and fell in love.

\n\n

Now I finally find myself wanting to get to know specific varieties of hops by flavor and scent. Amarillo, Cascade, and so on - I know there are dozens and dozens of varieties, but how do I start training myself to recognize their differences (and identify the most common varieties) in the drink itself?

\n\n

Should I buy some hops from a supply store, and huff 'em like a soccer mom in a fabric softener commercial? Or would that be totally different from what comes through in a beer? Would it be better to find a stool at a local brewery/brewpub and ask for a lesson in liquid form?

\n", "OwnerUserId": "1228", "LastEditorUserId": "6042", "LastEditDate": "2016-10-25T16:57:33.977", "LastActivityDate": "2016-10-25T16:57:33.977", "Title": "How can I learn to recognize the flavor and aroma of different varieties of hops?", "Tags": "taste hops drinking", "AnswerCount": "5", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"996"}} +{ "Id": "996", "PostTypeId": "2", "ParentId": "995", "CreationDate": "2014-08-19T15:21:19.673", "Score": "5", "Body": "

Hop Union has an \"Aroma Wheel\" that can help with scent:

\n\n

Also look at the Hop Variety page to get a little more information.
\nThe thing to remember is scent doesn't always translate to taste, especially with hoppy beers such as IPA's after the beer has aged a bit. To get the taste you really need to try a beer made only with that hop (my opinion) to see what characteristics it imparts. Hop Union does have a Hop and Brew School every year for both craft (professional) brewers and home brewers.

\n", "OwnerUserId": "529", "LastActivityDate": "2014-08-19T15:21:19.673", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"997"}} +{ "Id": "997", "PostTypeId": "2", "ParentId": "811", "CreationDate": "2014-08-20T13:53:59.447", "Score": "1", "Body": "

If you're looking for brands, you find a List of Bavarian breweries on Wikipedia.

\n\n

The page is in German, but due to the fact that you are interested in the brand names, this should also work if you don't speak any German.

\n", "OwnerUserId": "1108", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T21:35:05.373", "LastActivityDate": "2016-10-08T21:35:05.373", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"998"}} +{ "Id": "998", "PostTypeId": "2", "ParentId": "995", "CreationDate": "2014-08-21T13:42:24.013", "Score": "4", "Body": "

You can buy a small selection of a few hops and a 6 or 12 pack of bud light or coors light. Pop the tops, toss in a few hops, re-cap and mark what hop is in each. Wait a day or two and then taste. This will highlight the aroma and some of the upfront flavors of the hop more than it's bitterness and will get you familiar with that hop variety. This does require having a bottle caper and some caps, but those can be bought either at a local homebrew store or online for less than 20 dollars when you purchase the small 1oz bags of hops.

\n\n

If you homebrew, try to brew small brew in a bag batches of 1 gallon to try different hop varieties. I don't do it too often but it's an easy 3 hour brew day and helps a lot with identifying hop profiles for bitterness, late addition, and dry hopping.

\n", "OwnerUserId": "1240", "LastActivityDate": "2014-08-21T13:42:24.013", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"999"}} +{ "Id": "999", "PostTypeId": "1", "CreationDate": "2014-08-24T17:21:26.650", "Score": "10", "ViewCount": "6391", "Body": "

There's a restaurant I've visited several times where the food is good, but the draught beer often tastes... off. It's hard to describe exactly how the taste is wrong, but the word \"musty\" comes to mind.

\n\n

I know it's not the natural taste of the beer because the effect applies to beers I'm familiar with the taste of, such as Sam Adams Boston Lager and Yuengling Lager. It's can't just be a single bad keg, either, because it happened with different beers and on different days (weeks if not months apart from each other).

\n\n

A friend suggested to me that the restaurant probably had dirty taps, but only based on my description of what happened (basically what I said above) and wasn't able to give me any more information than that. Is it possible to trace the cause of a bad-tasting beer to dirty taps just from drinking it, and if so, how?

\n", "OwnerUserId": "66", "LastActivityDate": "2014-08-24T18:27:14.653", "Title": "How can I diagnose dirty taps from drinking a beer?", "Tags": "draught", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1000"}} +{ "Id": "1000", "PostTypeId": "2", "ParentId": "999", "CreationDate": "2014-08-24T18:27:14.653", "Score": "8", "Body": "

Yes, tap lines that aren't cleaned regularly (every few weeks at least) are susceptible to infection, and you can detect these infections by taste or smell alone. Common bacteria involved are Pediococcus acidilactici and and Lactobacillus which Tasting Beer describes as having a buttery or \"goaty, sweat socks\" like aroma/flavor. I think that probably aligns pretty closely with your \"musty\" description.

\n\n

Is it serious? In the sense that it can cause illness, no, at least not these organisms. These are probiotic bacteria similar to what are advertised in some yogurt. However, given that it does speak poorly to the maintenance routines of this establishment, I wouldn't blame you for not wanting to continue to opt for the draft beer, if for no other reason than that it doesn't taste very good.

\n\n

Lastly, it might be worth a quick friendly word to management. They may not realize that they need to clean their tap lines more frequently, or not realize that it isn't being done. It's an easily fixable problem and if they do take steps to fix it, everyone will be better off.

\n", "OwnerUserId": "37", "LastActivityDate": "2014-08-24T18:27:14.653", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1001"}} +{ "Id": "1001", "PostTypeId": "2", "ParentId": "992", "CreationDate": "2014-08-25T14:49:06.853", "Score": "8", "Body": "

Yes, they do.

\n

A new experiment done jointly by Stanford University and the University of Edinburgh has finally proven that when beer is poured into a glass, the bubbles sometimes go down.

\n
\n

"Bubbles are lighter than beer, so they're supposed to rise upward,"

\n
\n

– Richard N. Zare, the Professor of Natural Sciences at Stanford.

\n
\n

"But countless drinkers have claimed that the bubbles actually go down the side of the glass. Could they be right, or would that defy the laws of physics?"

\n
\n

In 1999, Australian researchers announced that they had created a computer model showing it was possible for beer bubbles to flow downward.

\n

But Zare and former Stanford post doctoral fellow Andrew J. Alexander were unconvinced by the virtual Guinness model and decided to put it to the test by analysing it physically.

\n
\n

"Indeed, Andy and I first disbelieved this and wondered if the people had had maybe too much Guinness to drink," Zare recalled. "We tried our own experiments, which were fun but inconclusive. So Andy got hold of a camera that takes 750 frames a second and recorded some rather gorgeous video clips of what was happening."

\n
\n

A careful analysis of the video confirmed findings: Beer bubbles do sink.

\n
\n

"The answer turns out to be really very simple. It's based on the idea of what goes up has to come down. In this case, the bubbles go up more easily in the centre of the beer glass than on the sides because of drag from the walls. As they go up, they raise the beer, and the beer has to spill back, and it does. It runs down the sides of the glass carrying the bubbles -- particularly little bubbles -- with it, downward. After a while it stops, but it's really quite dramatic and it's easy to demonstrate."

\n
\n

The phenomenon also occurred in other beers, said Alexander

\n
\n

"The bubbles are small enough to be pushed down by the liquid. We've shown you can do this with any liquid, really -- water with a fizzing tablet in it, for example."

\n

"It's just paying attention to the world around you and trying to figure out why things happen the way they do..."

\n
\n

Source

\n", "OwnerUserId": "1251", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-08-25T14:49:06.853", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1005"}} +{ "Id": "1005", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-08-28T12:53:48.183", "Score": "1", "Body": "

You have different beer types.\nFor example, Kilkenny (Ginger Irish beer) is really tasty.\nGuinness, with an hard hops aroma.\nWhite beers from Germany are really tasty too, weight, but don't drink it too much...\nBelgium got blond et brunes, & are really famous.

\n\n

Or, for a sweety beer, you can drink some banana, cherry, strawberry, cherry, passions beer.

\n\n

Best beers comes from Eire, Germany & Belgium ;)

\n", "OwnerUserId": "1265", "LastActivityDate": "2014-08-28T12:53:48.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1007"}} +{ "Id": "1007", "PostTypeId": "2", "ParentId": "995", "CreationDate": "2014-08-30T23:17:44.490", "Score": "6", "Body": "

This is a great question, I'm still learning but here's what I've tried:

\n\n

Single hop beers.

\n\n

I'm in the UK but here's what I've managed to get in the past

\n\n
    \n
  • Mikkeller single hop series
  • \n
  • IPA is dead by BrewDog
  • \n
  • Arbor often do single hop beers
  • \n
\n\n

Your mileage may vary but if you keep your eye out, hopefully you'll find a local brewer doing this kind of thing.

\n\n

I've also had a couple of single yeast flights which were very enlightening.

\n\n

Tastings

\n\n

A couple of hops really stick in my mind because of when I had them. I remember going to a tasting of a local's brewers Galaxy IPA and he'd filled the shop with glasses of Galaxy hops and it smelled incredable.

\n\n

Another time was tasting a Sorachi Ace beer by Wiper and True. It was horrific, but hearing the descriptions my fellow drinkers came up with and having the brewer explaining the history of the hop really anchored it to me. It meant when I had Little Things that Kill by weird beard, I could pick it out straight away.

\n\n

Geography

\n\n

The other thing that I enjoy is learning where and when and why a hop has come about. European hops are so different from American which are different again from British. Not to mention New Zealand hops which have their own aromas. Obviously it's not always consistant but being able to say what kind of region a hop tastes like is a good start!

\n", "OwnerUserId": "1275", "LastEditorUserId": "5064", "LastEditDate": "2016-10-07T23:36:34.933", "LastActivityDate": "2016-10-07T23:36:34.933", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1008"}} +{ "Id": "1008", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-09-01T03:57:56.913", "Score": "3", "Body": "

I would also recommend she try a sour ale. They are a completely different kind of beer that doesn't taste like \"normal beer\". Since it's often the standard \"beer\" flavor that some don't like, going outside of the standard can't be a great way to find a favorable flavor.

\n\n

Flemish sours are excellent and would be a good place to start.

\n", "OwnerUserId": "1220", "LastActivityDate": "2014-09-01T03:57:56.913", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1009"}} +{ "Id": "1009", "PostTypeId": "1", "AcceptedAnswerId": "1016", "CreationDate": "2014-09-03T01:33:38.873", "Score": "10", "ViewCount": "615", "Body": "

It's about that time of year again, when pumpkin flavored beer (and everything else) starts making its way onto store shelves.

\n\n

I was wondering, what pumpkin flavored beers are out there, if any, are made with actual pumpkin and not just pumpkin pie spices?

\n\n

My personal favorite is Pumpkin Head by Shipyard, but I've been unable to find any evidence that would suggest it is made with real pumpkin. Are there readily available beers made with real pumpkin? I live in western PA, but any brand not specifically available here would be good to know.

\n", "OwnerUserId": "798", "LastActivityDate": "2016-10-13T14:13:40.373", "Title": "\"Pumpkin\" beers made with actual pumpkin?", "Tags": "brewing flavor pennsylvania retail-availiability", "AnswerCount": "8", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1010"}} +{ "Id": "1010", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-04T11:22:27.990", "Score": "2", "Body": "

At least some pumpkin ales are brewed with real pumpkin (for example polish Dyniamit brewed by PINTA). \nIf you are interested in recepies you can look for them from the examples found at Brewtoad.

\n", "OwnerUserId": "1281", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T16:35:59.670", "LastActivityDate": "2016-10-08T16:35:59.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1011"}} +{ "Id": "1011", "PostTypeId": "2", "ParentId": "991", "CreationDate": "2014-09-04T11:38:58.243", "Score": "0", "Body": "

You can try on BeerRate forum.

\n", "OwnerUserId": "1281", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T16:54:58.000", "LastActivityDate": "2016-10-08T16:54:58.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1012"}} +{ "Id": "1012", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-06T18:35:29.510", "Score": "3", "Body": "

I drank once Post Road Pumkin Ale from Brooklyn brewery that is brewed with, to quote them,

\n\n
\n

Hundreds of pounds of pumpkins [...] blended into the mash of each batch: Post Road Pumpkin Ale

\n
\n", "OwnerUserId": "1195", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T16:32:35.300", "LastActivityDate": "2016-10-08T16:32:35.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1013"}} +{ "Id": "1013", "PostTypeId": "2", "ParentId": "835", "CreationDate": "2014-09-10T17:56:28.490", "Score": "3", "Body": "

I was on a quest to find some hoppy beers in Iceland and here is what I found: Hollie's Hobbies which has a huge selection of Mikeller beers.

\n", "OwnerUserId": "1295", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T14:17:36.817", "LastActivityDate": "2016-10-08T14:17:36.817", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1014"}} +{ "Id": "1014", "PostTypeId": "1", "AcceptedAnswerId": "1036", "CreationDate": "2014-09-11T07:45:21.847", "Score": "5", "ViewCount": "286", "Body": "

Trento in Italy has a lot of German influence and especially when it comes to food and beer. They even serve their versions of German Weizenbier. See Wikipedia and TripAdvisor.

\n\n

Why is that so? Does anyone know whether there is a difference between Trento's German style beers and German German style beers?

\n", "OwnerUserId": "123", "LastEditorUserId": "8580", "LastEditDate": "2019-05-11T16:12:17.010", "LastActivityDate": "2019-05-11T16:12:17.010", "Title": "Why does Trento (Italy) have such a range of German beers?", "Tags": "german-beers hefeweizen", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"1015"}} +{ "Id": "1015", "PostTypeId": "2", "ParentId": "1014", "CreationDate": "2014-09-11T09:04:58.580", "Score": "-1", "Body": "

Is \"because local people want to buy it\" too glib? Where there's demand there is (or should be) supply. If the Italian versions of German style beers are anything like their British counterparts there will be a flavour difference (just as there is between the different beers that are produced within Germany) but the brewers will tend to (in their own unique fashion) try to be as true to the original style as possible. As this depends on the availability and quality of raw materials there will always be a difference, but that is true even within Germany.

\n\n

In total:\n1) because people like it.\n2) not consistently but probably slightly more variation than in Germany.

\n", "OwnerUserId": "909", "LastActivityDate": "2014-09-11T09:04:58.580", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1016"}} +{ "Id": "1016", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-12T16:52:12.233", "Score": "3", "Body": "

My favorite is Pumpking from Southern Tier. They claim it is brewed with real pumpkin.

\n\n

Schlafly also makes a popular pumpkin beer with real pumpkin.

\n", "OwnerUserId": "1303", "LastActivityDate": "2014-09-12T16:52:12.233", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1017"}} +{ "Id": "1017", "PostTypeId": "2", "ParentId": "353", "CreationDate": "2014-09-15T08:58:28.957", "Score": "3", "Body": "

I prefer DrinkGAS. It's a good solution for a party, I use it in my restaurants.

\n", "OwnerUserId": "1306", "LastActivityDate": "2014-09-15T08:58:28.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1018"}} +{ "Id": "1018", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-09-15T20:44:39.523", "Score": "1", "Body": "

I would drink it, if it wasn't Bud Light ;-)\nI had old beer before, probably 2 years after expiration. If the pressure is still there when you open it and if the can/bottle has no dents/rust/etc there shouldn't be an issue.\nThey found a WWII food can and it was still edible when they opened in 2013, tested by a lab. Obviously taste is a different issue. There may be some deterioration. If it smells like vinegar you'll know it's bad

\n", "OwnerUserId": "1309", "LastActivityDate": "2014-09-15T20:44:39.523", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1019"}} +{ "Id": "1019", "PostTypeId": "1", "CreationDate": "2014-09-15T20:49:10.687", "Score": "4", "ViewCount": "466", "Body": "

If I remember correctly, the website of Erdinger states their 'Dunkle Hefe' needs to be finished within just 3 days after opening. I know it isn't pasteurized but I wonder, can we stretch that a little? 3 days for a keg is kind of short....\nWhy is that anyways? Is it because the yeast settles?

\n", "OwnerUserId": "1309", "LastEditorUserId": "73", "LastEditDate": "2014-10-19T21:54:42.997", "LastActivityDate": "2014-10-20T18:34:43.200", "Title": "How fast do I need to finish a Hefe Weissbier Keg?", "Tags": "german-beers hefeweizen", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1020"}} +{ "Id": "1020", "PostTypeId": "2", "ParentId": "983", "CreationDate": "2014-09-15T20:55:07.593", "Score": "1", "Body": "

This does indeed happen to me, too. So I stopped drinking beer where the ingredients aren't listed or if I think the beer is likely to contain GMO. Call me a tree hugger I don't care;-)

\n\n

I remember reading the head aches may come from fusel oils, which are byproducts of fermentation. Depending on the ingredients there may be more or less of them. I remember reading a while back that mold and spoilage can cause a higher concentration of those fusel oils in the wine; hence, wine made from handpicked grapes is of higher quality. I wouldn't be surprised if it's similar in beer production

\n", "OwnerUserId": "1309", "LastActivityDate": "2014-09-15T20:55:07.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1021"}} +{ "Id": "1021", "PostTypeId": "2", "ParentId": "1019", "CreationDate": "2014-09-16T08:50:11.990", "Score": "2", "Body": "

Where did you read this? I am unfamiliar with Dunkle Hefe exactly, but this is true for wooden casks. \nTypically a wooden cask is served with gravity or with a hand pump to lift from a cellar. There is an opening in the top that draws air in to equalise the pressure. This air will reduce the shelf life to 3 days.\nA \"Donkey Pump\" on the common sankey keg is similar. The beer will spoil quite fast.

\n", "OwnerUserId": "1310", "LastActivityDate": "2014-09-16T08:50:11.990", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1022"}} +{ "Id": "1022", "PostTypeId": "2", "ParentId": "1014", "CreationDate": "2014-09-16T13:51:12.993", "Score": "1", "Body": "

It is probably because it is so close to Austria and Germany and because the cold climate is excellent for brewing such beers.

\n", "OwnerUserId": "1312", "LastActivityDate": "2014-09-16T13:51:12.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1024"}} +{ "Id": "1024", "PostTypeId": "1", "CreationDate": "2014-09-18T11:42:48.517", "Score": "8", "ViewCount": "194", "Body": "

I understand openings of a glass allow for aroma to add to the taste. However I recently had Kwak in its recommended glass, which is similar to a test tube. I have seen a number of other unique glasses. \nAre these really only for asthetics or are these meant to add to the flavour?

\n", "OwnerUserId": "1317", "LastActivityDate": "2015-09-17T23:12:01.467", "Title": "Unusal recepticles", "Tags": "serving flavor glassware", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1025"}} +{ "Id": "1025", "PostTypeId": "2", "ParentId": "1024", "CreationDate": "2014-09-19T16:42:04.587", "Score": "5", "Body": "

Some brewers design glasses to enhance the experience of the beer in various ways.

\n\n

IPAs in general benefit from a large opening to release as much aroma as possible, but there are other benefits.

\n\n

I know Guinness in particular has designed a very special glass for their beer. The special glass features their golden harp, which you are supposed to aim for when pouring. This and the special curvatures of the glass help give the beer a good head and keep it until you're done with the beer. Stouts especially benefit from a silky, creamy head, so Guinness designed a glass around that.

\n\n

I've never had Kwak, but from the looks of the glass it seems to be more of a branding effort than anything else. I can't imagine any potential benefits from a glass that shape.

\n\n

This wikipedia article is a good read. It tells you what beer goes in what glass and why.

\n\n

EDIT: Actually, the glass does serve a purpose. This site says the glass was invented for coachmen who weren't able to leave the horses and have some beer. The glass's peculiar shape allows it to be hung on the side of the coach for easy drinking.

\n", "OwnerUserId": "798", "LastEditorUserId": "798", "LastEditDate": "2014-09-29T15:01:08.407", "LastActivityDate": "2014-09-29T15:01:08.407", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1026"}} +{ "Id": "1026", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-22T07:43:08.300", "Score": "3", "Body": "

Along with Marty's reccommendation of Pumpking, Southern Tier also makes an Imperial Pumpkin Stout called Warlock. Best Pumpkin beers I've had so far ( Warlock > Pumpking imo ).

\n\n

I've also heard Griffin Claw makes a good one too: Screamin' Pumpkin

\n", "OwnerUserId": "1323", "LastActivityDate": "2014-09-22T07:43:08.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1027"}} +{ "Id": "1027", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-22T21:25:12.200", "Score": "1", "Body": "

Elysian Brewing in Seattle has a beer made with pumpkin festival every year. Their festival site has a great list of beers to try - http://www.elysianbrewing.com/great-pumpkin-beer-fest/

\n\n

My favorites are the ones which taste nothing like pumpkin pie and Black Raven's Harbinger is the top of that list - http://www.ratebeer.com/beer/black-raven-harbinger-strong-pumpkin-squash-stout/189456/

\n", "OwnerUserId": "497", "LastActivityDate": "2014-09-22T21:25:12.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1028"}} +{ "Id": "1028", "PostTypeId": "1", "AcceptedAnswerId": "1029", "CreationDate": "2014-09-24T09:50:00.590", "Score": "3", "ViewCount": "95840", "Body": "

Once I had couple of large beers. After that I've got acidity.\nSo Is it OK to take antacid tablet after drinking beer?

\n", "OwnerUserId": "1328", "LastActivityDate": "2015-04-16T22:51:24.557", "Title": "Is it ok to take antacid tablet after drinking beer?", "Tags": "health pairing drinking", "AnswerCount": "2", "CommentCount": "5", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1029"}} +{ "Id": "1029", "PostTypeId": "2", "ParentId": "1028", "CreationDate": "2014-09-24T15:13:10.643", "Score": "6", "Body": "

It depends... I don't see an issue with the standard Tums or Rolaids but there might be issues with ranitidine according to some studies.

\n\n

http://www.webmd.com/digestive-disorders/news/20000215/zantac-alcohol-dont-mix

\n\n
\n

\"The effect was striking,\" says author Charles Lieber, MD. In a\n three-hour test period, conducted under conditions similar to social\n drinking, the study showed that ranitidine can increase blood alcohol\n content by 38%. Levels reached in the study exceeded the legal\n drinking limit -- and the effects lasted up to two hours after\n drinking stopped.

\n
\n", "OwnerUserId": "529", "LastActivityDate": "2014-09-24T15:13:10.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1030"}} +{ "Id": "1030", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-25T02:05:28.840", "Score": "0", "Body": "

I saw today that my local Whole Foods had on display an island of Dogfish Head Punkin Ale which is brewed with real pumpkin, though I myself prefer Southern Tier's.

\n", "OwnerUserId": "73", "LastActivityDate": "2014-09-25T02:05:28.840", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1032"}} +{ "Id": "1032", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2014-09-25T18:45:00.703", "Score": "1", "Body": "

Pump Up The Volume by Hi-Fi Brewing is the best pumpkin beer I've had, but you'll only get it poured in Redmond, if you're lucky enough to find it.

\n\n
\n

\"Pump Up the Volume A blast of pumpkin pie aroma introduces you to this full-bodied and fairly malty beer. We brew it with fresh Washington pumpkin and add cinnamon, ginger, cloves, nutmeg, cardamom, and vanilla after fermentation. It finishes with a very subtle warmth. Alcohol: 6.8% ABV, Bitterness: 35 IBU.\"

\n
\n\n

Witch Hunt by Bridgeport Brewing was decent, but doesn't specify whether or not it's made with actual pumpkin flesh. I think we got a 22oz at Costco.

\n", "OwnerUserId": "241", "LastActivityDate": "2014-09-25T18:45:00.703", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1033"}} +{ "Id": "1033", "PostTypeId": "1", "CreationDate": "2014-09-27T01:18:49.873", "Score": "-7", "ViewCount": "1283", "Body": "

It makes no sense to me why breweries are against freezing pint glasses. I think that there's nothing better than ice cold beer, and it seems in most ways the breweries agree. They try and cool beer lines, beer in bottles is always served cold, and some beer is bottled with labels that let you know when the beer is cold. So why are they so against freezing pint glasses, particularly when there are some great inventions out there that can freeze pint glasses in seconds? I think they should promote instead of being against it, so why don't they?

\n", "OwnerUserId": "1338", "LastEditorUserId": "37", "LastEditDate": "2014-10-30T18:02:04.910", "LastActivityDate": "2018-07-22T23:13:20.353", "Title": "Why are breweries against freezing pint glasses?", "Tags": "temperature glassware", "AnswerCount": "4", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1035"}} +{ "Id": "1035", "PostTypeId": "2", "ParentId": "1033", "CreationDate": "2014-09-27T16:56:59.767", "Score": "12", "Body": "

It depends on the beer style. Craft beers in general were not designed to be served at a near freezing (for water) temperature. Drink an IPA at 35 degrees and 45 degrees and you'll probably find the hop notes more pronounced at the higher temperature.

\n\n

Here is a general guideline:

\n\n

Very Cold: 35-40 degrees\n•American Adjunct Lagers (“Macros”)\n•Malt Liquors\n•Light or low alcohol beers

\n\n

Cold: 40-45 degrees\n•Pilsner\n•Light-bodied lagers\n•Kolsch\n•Belgian Wit\n•Hefeweizen\n•Berliner weisse\n•American Wheat

\n\n

Cool: 45-50 degrees\n•American Pale Ales\n•Medium-bodied lagers\n•India Pale Ale (IPA)\n•Porters\n•Alt\n•Irish Stouts\n•Sweet Stout

\n\n

Cellar Temp: 50-55 degrees\n•Sour Ales\n•Lambic/Gueuze\n•English Bitter\n•Strong Ales\n•Baltic Porters\n•Bocks\n•Scotch Ales\n•Belgian Ales\n•Trappist Ales

\n\n

Warm: 55-60 degrees\n•Imperial Stouts\n•Belgian Quads\n•Belgian Strong Ales\n•Barley Wines\n•Old Ales\n•Dopplebock\n•Eisbock

\n\n

Serving Beer

\n", "OwnerUserId": "529", "LastEditorUserId": "5064", "LastEditDate": "2016-10-09T13:55:36.330", "LastActivityDate": "2016-10-09T13:55:36.330", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1036"}} +{ "Id": "1036", "PostTypeId": "2", "ParentId": "1014", "CreationDate": "2014-09-29T12:31:05.597", "Score": "4", "Body": "

To add to Leo's answer... Northern Italy is very much associated with Austro-Bavarian heritage. The province of South Tyrol is predominantly German speaking, and Trento is just south of that province. In addition, Weissbier is to Bavaria/Munich as Pretzels are to Philadelphia or Pizza is to New York.... Hmmm maybe that pretzels analogy was a bad idea since they are a German thing. Oh well, I think you get the point. You've got German people in Northern Italy making German beer. I would trust any Hefeweizen from Trentino over Blue Moon, that's for sure. Cheers!

\n", "OwnerUserId": "1346", "LastActivityDate": "2014-09-29T12:31:05.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1037"}} +{ "Id": "1037", "PostTypeId": "2", "ParentId": "983", "CreationDate": "2014-09-30T16:52:11.660", "Score": "0", "Body": "

A while back Jim Koch, the owner of Boston Beer Company, said in an interview that his secret to hangover avoidance was straight up eating live brewer's yeast. This is probably dubious at best, but if you had to stretch to make something sound plausible...yeast has a good amount of Vitamin B and Magnesium, which are essential nutrients. Anything marketed as Real Ale is likely unfiltered and will therefor have more live yeast in it than filtered ale or lager. So it could, in theory, maybe, sortof, a bit, if you squint at it, sideways, have something to do with buffering the hangover better vs filtered ale or lager.

\n\n

It may also be an adjunct fermentation or ABV related thing like others have mentioned. Or it may not?

\n", "OwnerUserId": "268", "LastActivityDate": "2014-09-30T16:52:11.660", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1038"}} +{ "Id": "1038", "PostTypeId": "1", "CreationDate": "2014-10-02T07:06:00.690", "Score": "11", "ViewCount": "350", "Body": "

I was under the impression that tripel beer is supposed to be fermented inside the bottle.

\n\n

From time to time I come across beers that are tripel but on tap. There is a substantial difference in taste I noticed. In my opinion, tripel beers that are served bottled are way better than the same tripel beer on tap. How and why do companies serve tripel beers on tap while they lack taste and they aren't really fermented further inside the bottle?

\n\n

Do they just bottle them and put them in kegs at the same time so the beer that is bottled actually ferments more or do they keep the beer for the kegs fermenting longer and then put it in kegs?

\n", "OwnerUserId": "662", "LastEditorUserId": "4962", "LastEditDate": "2018-10-29T15:54:43.937", "LastActivityDate": "2018-10-29T15:54:43.937", "Title": "Tripel beers on tap", "Tags": "specialty-beers tripel", "AnswerCount": "3", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"1039"}} +{ "Id": "1039", "PostTypeId": "2", "ParentId": "835", "CreationDate": "2014-10-02T18:36:19.843", "Score": "15", "Body": "

As of today (2016), there are several microbreweries operating in Iceland. The micro- and homebrewing scene has been budding nicely in the last few years, the latest player being Segull 67.

\n\n

The Breweries

\n\n

In a category of their own are Borg and Einstök. These two operate under the wing of the two \"large\" local breweries (Egils and Víking), serving as their respective experimental departments.

\n\n
    \n
  • Borg keeps up a steady stream of new beers each year, easily Iceland's most \"prolific publisher\". They have a steady production of the big-name styles (a lager, an IPA, a porter, etc.), and nearly always one or two beers on limited/temporary release.
  • \n
  • Einstök produces the country's most widely sold ales, and seasonal varieties.
  • \n
\n\n

Other microbreweries are:

\n\n
    \n
  • Bruggsmiðjan. Founded in 2006, they are the oldest microbrewery in Iceland (yup). They produce a line of Czech-style lagers, brand name Kaldi.
  • \n
  • Gæðingur. Their gig is essentially similar to Borg's - steady production of big name styles, interspersed with experiments.
  • \n
  • Steðji. Their lineup is a mix of very normal German-style lagers and some truly wacky stuff - for instance, their infamous whale beer, Hvalur.
  • \n
  • Ölvisholt Brugghús. ÖB is of the more established players, but their beers do not follow a particular trend that I have noticed. If anything, I could say they rely on beers \"with a twist\" more than the others, not many of their beers fall neatly into a common style.
  • \n
  • Segull 67. Segull 67 is the newest and by far the smallest operating brewery. They released one beer in 2015, a dark lager.
  • \n
\n\n

At the time of writing, this list is exhaustive for operational breweries. In addition, I know of three breweries which will be opening \"any day now\": Hún/Hann brugghús (in Reykjavík), Austri (in the eastern part of the country) and Hið austfirska bruggfélag (also in the eastern part of the country).

\n\n

Brewpubs

\n\n

In addition to the breweries that sell nation-wide, there are a few who focus on their own premises.

\n\n
    \n
  • Bryggjan Brugghús, in Reykjavík near the harbor area. The only brewpub in Reykjavík, and unlike most Icelandic \"pubs\", also operates an actual restaurant.
  • \n
  • Brothers Brewery, in Vestmannaeyjar (islands off the south coast). It's the place to get craft beer in Vestmannaeyjar, apparently! Don't know much about it, unfortunately.
  • \n
  • Bjórsetur Íslands, in Hólar (in the northern part of the country). This tiny establishment is the oldest brewpub by several years. It's basically run as a hobby - open on Fridays only. It is notable for its association with a beer festival (Bjórhátíð á Hólum), held annually at Hólar.
  • \n
\n\n

\"Breweries,

\n\n

Microbrews and Craft Beers on Tap

\n\n

Several bars pride themselves on selling Icelandic micro- and craft brews. These are:

\n\n
    \n
  • Microbar. There are two bars operating under this name, one in downtown Reykjavík, the other in Sauðárkrókur. The one in Reykjavík is the pioneer of the Icelandic craft bar scene. It is owned by the Gæðingur brewery, and appropriately, you can always find Gæðingur beers on tap here (among other local beers)
  • \n
  • Skúli Craft Bar, in downtown Reykjavík. It is notable for its diverse and rapidly rotating taps. At any given time, about half of them are likely to be connected to local beers. The bar is independent, but beers from Borg brewery are always prominent in their choices.
  • \n
  • Bjórgarðurinn, in Reykjavík. They have 22 taps, Icelandic craft beers always among them. They serve food other than bar snacks, mostly gourmet sausages that they recommend pairing with particular beers. It is a hotel bar, not associated with a brewery.
  • \n
  • Kaldi Bar, in downtown Reykjavík. It is not owned by Bruggsmiðjan, but it brands itself as a place where you can get local beer, in particular, Bruggsmiðjan's Kaldi. This is, however, not a place I would call a craft bar that prides itself on a varied selection.
  • \n
  • R5 Micro Bar, in Akureyri. I have not visited, but it's marketing itself as a craft beer bar. The locals seem impressed!
  • \n
\n\n

Micro/Craft beer fans will also want to know of Mikkeller & Friends Reykjavík. Large tap selection there, but no focus on local produce.

\n\n

Borg and Einstök taps can commonly be found interspersed with the common Egils and Víking taps. Steðji and Ölvisholt beers are only sporadically found on taps.

\n\n

Many other bars (but definitely not all) have some ambition when it comes to craft beer availability without making a particular deal of it. Hlemmur Square, a hostel/bar near the main bus station, is usually particularly well stocked. But always, ask your bartender!

\n\n

Selected products

\n\n

Off the top of my head, here are a few items I consider distinctive - or at least, I have not found anything quite like them abroad.

\n\n
    \n
  • Garún. Imperial stout, more heavy on the licorice than most.
  • \n
  • Lava. A smoked imperial stout.
  • \n
  • Snorri. An ale spiced with Icelandic thyme.
  • \n
\n\n

And always, keep an eye out for seasonal beers. The breweries usually allow themselves more creative freedom on those products. In 2014, we saw beers like the Einstök Arctic Berry Ale (beer flavored with Icelandic berries), Fenrir (an IPA smoked with sheep dung) and Hvalur (the whale beer mentioned earlier).

\n\n

General beer buying advisory

\n\n

You won't buy Icelandic beers in the supermarket. The things that look like beers in those shelves are low-alcohol versions. To buy beers, you must go to one of the state-operated \"Wine stores\" (Vínbúð). Beware of their opening hours - they are never open after 20:00, on Sundays, or on holidays.

\n\n

Source: Icelandic beer enthusiast.

\n", "OwnerUserId": "793", "LastEditorUserId": "793", "LastEditDate": "2016-05-04T15:02:49.840", "LastActivityDate": "2016-05-04T15:02:49.840", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1040"}} +{ "Id": "1040", "PostTypeId": "1", "CreationDate": "2014-10-02T23:33:26.663", "Score": "5", "ViewCount": "445", "Body": "

Are there local micro-breweries in Tokyo?

\n\n

Are they serving local Japanese craft beer?

\n\n

What are Japanese craft beer that one can find in Tokyo?

\n", "OwnerUserId": "123", "LastActivityDate": "2020-04-02T17:16:14.847", "Title": "Local microbreweries and craft beer in Tokyo", "Tags": "breweries local", "AnswerCount": "4", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1041"}} +{ "Id": "1041", "PostTypeId": "2", "ParentId": "1040", "CreationDate": "2014-10-03T00:00:12.847", "Score": "3", "Body": "

You can find a lot of different bars that sell micro-brews in Tokyo. most All of the micro-breweries I know of are located outside of Tokyo. However, I can't definitely say \"there are no micro-breweries in Tokyo\" as I am not omnipotent.

\n\n

Again, there are a ton of places to get micro-brews in Tokyo; here is a restaurant that I have frequented over the past years that serves Japanese micro-brews exclusively: BanKan.

\n\n

BanKan has 14 taps of Japanese micro-brews and they rotate their offering frequently; whenever a keg runs out it is replaced with a new brew. A pint runs between 900 to 1400 yen and the current offering is here. Notice that the prefecture the brew comes from is listed as well.

\n\n

Enjoy!

\n", "OwnerUserId": "1352", "LastEditorUserId": "8580", "LastEditDate": "2019-05-11T16:09:18.957", "LastActivityDate": "2019-05-11T16:09:18.957", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"1042"}} +{ "Id": "1042", "PostTypeId": "1", "AcceptedAnswerId": "1046", "CreationDate": "2014-10-03T09:25:48.747", "Score": "5", "ViewCount": "70", "Body": "

I will be visiting Moscow in short time and I would like to try out some domestic beers (home brewed if possible). Can anyone recommend a place in Moscow like that and what beer should I try out?

\n", "OwnerUserId": "1355", "LastEditorUserId": "793", "LastEditDate": "2014-10-06T10:52:53.257", "LastActivityDate": "2014-10-10T15:22:17.677", "Title": "Home made beer in Moscow", "Tags": "local", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1043"}} +{ "Id": "1043", "PostTypeId": "2", "ParentId": "361", "CreationDate": "2014-10-05T04:10:31.740", "Score": "2", "Body": "

Beer with hops will get skunky shortly after exposure to sun light. Exposure of about 15 seconds and you can smell the change start if you hold it to your nose in bright sun light. I have one and use it during outdoor barbecues.

\n", "OwnerUserId": "1358", "LastActivityDate": "2014-10-05T04:10:31.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1046"}} +{ "Id": "1046", "PostTypeId": "2", "ParentId": "1042", "CreationDate": "2014-10-10T15:22:17.677", "Score": "2", "Body": "

Ratebeer has a list of bars and brewpubs. In the brewpubs you can get beer produced in the pub (or at least for the pub), which I assume is what you mean by home brewed. I really liked Durdin, which had both good food, good music, and good beer. Try their kvass! GlavPivTorg is interesting for the historical associations, and also quite good. Their unfiltered pale lager was very good.

\n", "OwnerUserId": "1125", "LastActivityDate": "2014-10-10T15:22:17.677", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1047"}} +{ "Id": "1047", "PostTypeId": "2", "ParentId": "725", "CreationDate": "2014-10-14T14:27:45.723", "Score": "2", "Body": "

Although I don't have any medical data to back it up, I feel that the old remedy of drinking hot beer actually helps with cold. I live in Poland, and just like in Germany we do use this old world remedy of drinking warm/hot beer to keep the cold away.

\n\n

What's more is, that here in Poland serving warm beer with spices, sometimes with honey is really popular in the fall. And although my comment will probably get bashed by not having a medical back up -- it really feels like the warm beer helps the body fight off the bacteria/germs.

\n\n

Now that I think of it...The tradition of drinking warm beer is probably comparable to drinking mulled wine (in poland referred to as Grzaniec, and Glühwein in Germany).

\n", "OwnerUserId": "1385", "LastActivityDate": "2014-10-14T14:27:45.723", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1048"}} +{ "Id": "1048", "PostTypeId": "2", "ParentId": "835", "CreationDate": "2014-10-15T14:07:31.563", "Score": "3", "Body": "

The only thing I can add to the already given answers is for you to try out Ölvisholt's beer Jólabjór (or Lava if you find it).

\n\n

Here in Sweden we get the annual Jólabjór at the state-operated monopoly Systembolaget. It's a discrete smoked beer imho.

\n\n

Jólabjór at Ratebeer

\n", "OwnerUserId": "1388", "LastActivityDate": "2014-10-15T14:07:31.563", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1051"}} +{ "Id": "1051", "PostTypeId": "1", "AcceptedAnswerId": "1052", "CreationDate": "2014-10-17T09:19:30.727", "Score": "4", "ViewCount": "906", "Body": "

I've been following the craft beer scene in the UK for some time now, and much prefer true craft beers to real ales (and beers labeled \"craft\" when they have no business being represented in such a way). Comparatively, real ales I've tried have a bland, waxy taste to them, unlike craft beers such as Brewdog's Punk IPA, Dead Pony Club, and 5AM Saint.

\n\n

A friend expressed to me his view that the terms “craft beer” and “real ale” are synonymous, stating:

\n\n
\n

“You realise that most of the industrialised breweries started out making “craft beer,” however demand and greed caused them to skimp on ingredients, adding less and less to make more and more profit? Most of these new breweries will probably go the same way.”

\n
\n\n

Whilst I agree in principle regarding greed and industrialisation, I am skeptical of the claim that most industrialised breweries started out making “craft beer.” Nor do I believe that “real ale” breweries have changed their recipes to that degree over time.

\n\n

To put this into context, some beers I consider real ales are Youngs London Gold, Bombardier, Tribute, and Deuchars IPA, while some beers I consider craft beers are Brewdog IPA is Dead Citra, Kernel Black IPA, Lagunitas IPA, and Moor So’Hop.

\n\n
    \n
  • What distinguishes a “craft beer” from a “real ale”?
  • \n
  • Do “craft beers” change as breweries scale up for profits?
  • \n
  • Did “real ales” use to taste nicer than it does today?
  • \n
\n", "OwnerUserId": "1398", "LastEditorUserId": "73", "LastEditDate": "2014-10-21T14:48:52.450", "LastActivityDate": "2014-10-22T04:34:11.037", "Title": "Craft Beer vs Real Ale", "Tags": "flavor taste ale", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1052"}} +{ "Id": "1052", "PostTypeId": "2", "ParentId": "1051", "CreationDate": "2014-10-17T14:30:48.050", "Score": "9", "Body": "

First, a disclaimer: I'm American and most of my knowledge of craft beer comes from the American beer scene. I am somewhat aware of the evolution of the UK brewing industry, but nowhere near as knowledgeable as I am about America's.

\n\n

Now, definitions. Craft Beer commonly derives the Brewer's Association definition of a Craft Brewer. Which is Small, Independent, Traditional. Sparing the specifics it's a definition meant to exclude the world's largest brewing companies, and their \"crafty\" portfolios. \"Crafty\" is a pejorative used to describe brands or brewers which may or may not produce good tasting beer, but are owned by the larger brands in attempts to diversify their portfolios. While the BA is primarily focused on the American market, it seems most European writers defer to their terms.

\n\n

Real Ale, is a distinctly British term. Coined by CAMRA in the 70's it's more to do with the packaging and serving of the beer in the pub than the business scale of the brewer. All Real Ale has to do is be cask conditioned and served via a gravity tap or hand-pulled with a beer engine. This excludes a majority of what we in the US would consider craft beer, because it excludes anything kegged, filtered, force carbonated, or pushed with pressurized gas.

\n\n

This leads to an interesting overlap where an unfiltered beer, carbonated by natural fermentation, could NOT be a real ale because it was kegged and served on gas. Also, nothing prevents a large brand like Murphy's or Beamish (both owned by Heineken) from marketing a \"Real Ale\".

\n\n

These definitions aside: It sounds like you may just be an IPA fan. Your craft beer list is entirely IPAs. It's not really accurate to conflate Craft and IPAs because plenty of craft beers are stouts, rye beers, Scotch ales, English bitters, or totally non-traditional things.

\n\n

Another issue you might have with \"Real Ale\" is a technical note. Because it's exposed to oxygen as soon as the cask is tapped real ale tends to spoil if it's not drank quickly. The characteristic tastes of oxidized beer are cardboard, and the characteristic tastes of beer left on dead yeast for way too long is soapy. I can easily see that coming off as \"waxy\", especially if it's warmer than you're used to drinking and you've just downed some IPAs.

\n\n

Beer today is probably the best its ever tasted because of refinements in production techniques and farming. Consumers are becoming interested in what their beer is made of so the quality of ingredients and care on a whole is improving. But real ale is a niche, there are going to be great traditional brewers making phenomenal beer, but it's prone to spoilage if not treated well. There may also be those using it as a marketing gimmick.

\n\n

And finally a last point about industrialization: It has vastly improved the quality of ingredient and process that all brewers use. The huge brands we now have, all started off as craft at one point. But if they are no longer craft they either couldn't weather the market and faced the choice of no longer being a company or selling to a business and risk becoming more about business than beer. In the US we have large breweries proving you can still be pretty big and make good beer. Sam Adams, Stone Brewing, Dogfish Head, Yuengling, are HUGE by craft standards and haven't compromised the quality of their ingredients because brewers are still in charge. Industrialization will never prevent a brewery lead by a passionate brewer from making interesting beer, but leaving brewing decisions up to a business man will always making boring beer.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-10-17T14:30:48.050", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1053"}} +{ "Id": "1053", "PostTypeId": "1", "CreationDate": "2014-10-19T18:34:00.357", "Score": "5", "ViewCount": "410", "Body": "

Is there a ranking of beers (maybe by country) you can actually find in a supermarket?

\n\n

I know the BeerAdvocate one, but it seems I would need to sell my soul to get any beer in the top 250.

\n", "OwnerUserId": "1404", "LastEditorUserId": "73", "LastEditDate": "2014-10-19T21:41:08.193", "LastActivityDate": "2015-01-11T19:44:52.183", "Title": "Is there a BeerAdvocate-like ranking of beers commonly found in supermarkets?", "Tags": "buying", "AnswerCount": "5", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1054"}} +{ "Id": "1054", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2014-10-20T08:45:49.993", "Score": "2", "Body": "

Drinking beer alone does not cause you to get a big belly, it's the amount food that goes along with it. People usually drink beer in the evening, and tend to eat a lot of food at the same time. And this is great and dandy, but what people forget about is that they eat late (here combined with drinking beer so even more calories), and then go straight to bed. The body does not have a chance to break down all of these calories, and instead all of this excess fat is being stored.

\n\n

In short, the beer alone does not cause the fat, it's the food that goes along with it.

\n", "OwnerUserId": "1385", "LastActivityDate": "2014-10-20T08:45:49.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1055"}} +{ "Id": "1055", "PostTypeId": "2", "ParentId": "1019", "CreationDate": "2014-10-20T18:34:43.200", "Score": "0", "Body": "

This gels with what I've heard of Hefe's in general. The recommendation to store the keg upside down is definitely yeast-centric, when you flip the keg to tap it it'll stir the yeast up again... which you want.

\n\n

The 3 day thing is a little more puzzling. Wheat beers in general are a style that should be had as fresh as possible, but 3 days is definitely pushing it. Most bars will try to finish a keg of a fresh wheat beer in 2 weeks or less, if memory serves.

\n\n

From reading the Google automated translation of that PDF you're referencing, that sounds like a sales/marketing document. The way I'm taking the information is that the document is selection criteria for starting accounts with Erdinger to sell the beer at your bar. A lot of the document seems like quality control steps like making sure the draft system is setup correctly and properly balanced, making sure the lines get cleaned at appropriate intervals, and the 3 day thing for assuring max freshness.

\n\n

From a consumer standpoint: It'll last more than 3 days, you can take however long you want if it's on CO2, but for best flavor for a wheat beer you probably want to drink it within a month or 2...probably a bit longer if it's been refrigerated.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-10-20T18:34:43.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1056"}} +{ "Id": "1056", "PostTypeId": "2", "ParentId": "993", "CreationDate": "2014-10-22T04:26:11.657", "Score": "2", "Body": "

As MD-Tech mentioned, beer wasn't exactly invented. However, the answer of when seems to be that it followed the production of wine.

\n\n

Here's a clip from a paper I had written a while back.

\n\n
\n

Based on available evidence, it is likely that S. cerevisiae was first used in the production of wine. DNA evidence dates winemaking to 3150 BC, and the earliest molecular evidence available indicates winemaking having taken place at least as early as 7000 BC in China. (Fay J. C. and Benavides J. A. 2005)

\n
\n\n

One issue with production of alcohol is that it takes away precious food supplies and so is a lot easier to produce when agriculture is in place than when it is not.

\n", "OwnerUserId": "1410", "LastActivityDate": "2014-10-22T04:26:11.657", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1057"}} +{ "Id": "1057", "PostTypeId": "2", "ParentId": "1051", "CreationDate": "2014-10-22T04:34:11.037", "Score": "0", "Body": "

From what I have researched, the term \"real ale\" derives from the original distinction between beer, which was brewed with hops, and ale, which was not.

\n\n

The term real ale also relates to whether or not the drink was artificially carbonated or cask conditions. Craft beer is generally brewed with hops, although some craft brewers are trying to use other bittering agents. Likewise, there are craft brewers who use cask conditioning and even more so, bottle conditioning.

\n\n

I would say that \"craft\" beer is a rather vague term. The best way that I could distinguish between \"craft\" brewers and other brewers is through the use of \"craft\" or trade. Those who produce beer as a trade would be craft brewers rather as opposed to industrial producers.

\n", "OwnerUserId": "1410", "LastActivityDate": "2014-10-22T04:34:11.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1058"}} +{ "Id": "1058", "PostTypeId": "2", "ParentId": "993", "CreationDate": "2014-10-22T15:24:20.277", "Score": "0", "Body": "

Please also see this question

\n\n

When was the first beer ever brewed?

\n\n

Which has more information

\n", "OwnerUserId": "268", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2014-10-22T15:24:20.277", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1059"}} +{ "Id": "1059", "PostTypeId": "2", "ParentId": "788", "CreationDate": "2014-10-22T20:02:28.537", "Score": "3", "Body": "

I grew up in Belgium, near the town of Leuven where Stella was originally brewed.

\n\n

The classic Belgian beers all have their characteristic glass shapes, which are a part of the experience of the beer. Duvel, Kwak, Mort Subite and the rest come in glasses of various shapes and sizes.

\n\n

The traditional Stella Artois glass was a straight, narrow-ish glass, much like that of other basic lager-style beers like Jupiler or Maes Pils. They usually have a set of ridges towards the bottom for improved grip and to reduce heat transfer. The lager brand glasses are all very similar, reflecting their status as \"ordinary, everyday\" beers. Only the expensive specialty beers have really distinctive glasses.

\n\n

The glasses are usually small for Belgian lager (about 275ml), so the beer would still taste cold and fresh at the bottom. Larger half-litres are sold, but older Belgians would always drink a small beer as larger beers go \"off\".

\n\n

In my view the Chalice is pure marketing bullshit. Taking an ordinary beer and dressing it up as something more expensive and more special than it is. It makes me as angry as the UK positioning of the brand as French, when it is brewed in the very Flemish town of Leuven.

\n", "OwnerUserId": "1412", "LastActivityDate": "2014-10-22T20:02:28.537", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1060"}} +{ "Id": "1060", "PostTypeId": "2", "ParentId": "986", "CreationDate": "2014-10-22T20:04:02.517", "Score": "4", "Body": "

The above answer is correct. Just to expand a little, companies can only hold one Colorado retail liquor store license, which is the type of license that allows them to sell \"full strength\" beer, wine and spirits. It's the same class of liquor license held by the liquor stores found in most shopping centers. There is no limit to the number of 3.2% beer licenses a company can hold. For example, a Safeway store in Glendale holds their only retail liquor store license, while Target holds theirs at a store in Littleton. Their other Colorado stores all hold licenses to sell 3.2% beer.

\n", "OwnerUserId": "1413", "LastActivityDate": "2014-10-22T20:04:02.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1061"}} +{ "Id": "1061", "PostTypeId": "1", "CreationDate": "2014-10-26T09:45:56.910", "Score": "4", "ViewCount": "609", "Body": "

I have some opened and unopened beer bottles that are limited edition and is not produced anymore.

\n\n

I would like to ask if there is any online store like eBay where I could sell these beers, opened empty bottles is OK to sell anywhere, but full bottles with an alcohol cannot be sold depending on privacy policies.

\n\n

So does anyone knows some kind of place to make such deal?

\n", "OwnerUserId": "1426", "LastActivityDate": "2014-10-27T15:12:45.380", "Title": "Selling/buying limited edition beers online", "Tags": "laws", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1062"}} +{ "Id": "1062", "PostTypeId": "2", "ParentId": "1061", "CreationDate": "2014-10-27T15:12:45.380", "Score": "2", "Body": "

It is not legal to ship alcohol(beer, wine, or spirits) through the mail across state or national lines unless you have a license. This has to do with each state wanting to get it's tax revenue for the imported alcohol.

\n\n

That doesn't mean it's not done, it's just less likely for a site that wants to stay in business to allow transactions that would result in it.

\n\n

I have friends that are part of \"exchange programs\" that are on various forums. There is a \"beertrade\" sub Reddit for example.

\n", "OwnerUserId": "1429", "LastActivityDate": "2014-10-27T15:12:45.380", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1063"}} +{ "Id": "1063", "PostTypeId": "2", "ParentId": "637", "CreationDate": "2014-10-28T00:48:36.980", "Score": "6", "Body": "

Just had a bottle of Marston's Oyster Stout two days ago (10/25/14), the label states it is brewed with oyster shells.

\n", "OwnerUserId": "1431", "LastActivityDate": "2014-10-28T00:48:36.980", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1064"}} +{ "Id": "1064", "PostTypeId": "1", "AcceptedAnswerId": "6499", "CreationDate": "2014-11-01T00:54:53.033", "Score": "10", "ViewCount": "22738", "Body": "

Okay, because I have nothing better to do on a Friday night (i.e., my carboys are all currently fermenting), I've decided to fiddle a little bit with math.

\n\n

I know that 0% alcohol by weight (ABW) is also 0% alcohol by volume (ABV), and I know that 100% ABW is 100% ABV. I also know that, in between those two extremes, the relationship is not linear (e.g., 3.2% ABW is approximately 4.0% ABV). However, any web-site calculator that I see pretty much performs the calculation as linear.

\n\n

I've been fiddling with my TI-89 from high school, and I think that I have it figured out. Assuming ethyl alcohol has a density of .789 kg/l and water has a density of 1 kg/l and assuming that water and alcohol are the only substances in an alcoholic beverage (which I know isn't true), the formula is:

\n\n
ABV = ABW ÷ (.211 · ABW + .789)\n
\n\n

The problem is that I can't confirm my formula. I'm searching Google and can't find much on the topic. Well… I can find plenty of calculators, but they all seem to be using a linear formula.

\n\n

So… is this formula correct?

\n\n
\n\n

EDIT: So, I've done a little more tweaking on this (after I already got the accepted answer). I already made the assumption that the density of water is 1 kg/l. The density that I used for ethyl alcohol was for 20°C. At that same temperature, water has a density of approximately .99823 kg/l and not 1 kg/l. Using this, I arrived at a different formula that's probably more accurate (at 20°C, that is):

\n\n
ABV = (99823 · ABW) ÷ (20923 · ABW + 78945)\n
\n\n

EDIT: Please see AlkonMikko's comment.

\n", "OwnerUserId": "1445", "LastEditorUserId": "1445", "LastEditDate": "2015-08-20T14:47:39.657", "LastActivityDate": "2019-07-03T00:52:16.270", "Title": "by-volume/by-weight conversion formula", "Tags": "alcohol-level", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1065"}} +{ "Id": "1065", "PostTypeId": "2", "ParentId": "1064", "CreationDate": "2014-11-03T16:12:27.880", "Score": "3", "Body": "

It is easier to reason about how to derive the alcohol-by-weight value from the alcohol-by-volume rather than the reverse.

\n\n

If abv is the alcohol-by-volume value expressed as a number between 0 and 1, then for a unit volume of the liquid, the weight of the alcohol will be 0.789 * abv. Similarly, the weight of the non-alcohol component will be 1 - abv (assuming it has a density of 1). So the total weight of the liquid will be:

\n\n
  0.789 * abv + (1 - abv)\n= 1 - 0.211 * abv\n
\n\n

Using the weight of alcohol and the total weight, we can easily determine the alcohol-by-weight (also expressed as a number between 0 and 1):

\n\n
abw = 0.789 * abv / (1 - 0.211 * abv)\n
\n\n

So this is clearly not linear (it is hyperbolic), and maintains identity for the 0% and 100% cases as expected. We can invert the equation in a few steps:

\n\n
                    0.789 * abv = abw * (1 - 0.211 * abv)\n                    0.789 * abv = abw - 0.211 * abv * abw\n0.789 * abv + 0.211 * abv * abw = abw\n    (0.789 + 0.211 * abw) * abv = abw\n                            abv = abw / (0.789 + 0.211 * abw)\n
\n\n

So that confirms the formula you derived. Wolfram Alpha seems to agree.

\n", "OwnerUserId": "170", "LastActivityDate": "2014-11-03T16:12:27.880", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1067"}} +{ "Id": "1067", "PostTypeId": "1", "CreationDate": "2014-11-04T20:06:45.063", "Score": "5", "ViewCount": "1448", "Body": "

I want to drink beer because I feel stress of my life. However, I don't want to gain weight because I have been overweighted. Is there any diet beer in US?

\n", "OwnerUserId": "1452", "LastActivityDate": "2014-12-22T22:08:22.487", "Title": "Is there any diet beer?", "Tags": "specialty-beers", "AnswerCount": "6", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1068"}} +{ "Id": "1068", "PostTypeId": "2", "ParentId": "1067", "CreationDate": "2014-11-05T14:37:31.523", "Score": "5", "Body": "

This is what would be referred to as the \"Light Beer\" category. For the most part, this is mass-produced beer, done by the big commercial breweries in the USA (I don't know much about beer production outside North America).

\n\n

If you want some good light beers, I'd suggest taking a look at lists like BeerAdvocate's Best Light Lagers

\n", "OwnerUserId": "192", "LastActivityDate": "2014-11-05T14:37:31.523", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1070"}} +{ "Id": "1070", "PostTypeId": "1", "CreationDate": "2014-11-05T22:01:16.937", "Score": "8", "ViewCount": "569", "Body": "

I'm an east coast guy who loves east coast and mid-west beer. I'm about to head out on a west coast tour with a show band and am looking for \"must have\" west coast beers. We will be all over CA, OR and WA. I'm aware of the ones that are must tries like Russian River, Deschutes, etc. I'm wondering if there are some hidden gems out there of some beer stores/breweries that can't be missed. West coast beer aficionados, brag away!

\n", "OwnerUserId": "1457", "LastActivityDate": "2016-12-19T20:58:49.937", "Title": "West coast beer recommendations, please!", "Tags": "breweries", "AnswerCount": "13", "CommentCount": "3", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1071"}} +{ "Id": "1071", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-11-06T03:19:28.947", "Score": "2", "Body": "

Best advice I can give is to go to a Bevmo or Whole Foods to see what's available.

\n\n

My west coast staples: Ballast Point, Bear Republic, Drakes, Lagunitas, Russian River, Sierra Nevada, Stone.

\n\n

Russian River have a pub in Santa Rosa, Lagunitas in Petaluma, and Bear Republic in Healdsburg.

\n", "OwnerUserId": "1459", "LastActivityDate": "2014-11-06T03:19:28.947", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1072"}} +{ "Id": "1072", "PostTypeId": "2", "ParentId": "361", "CreationDate": "2014-11-06T13:37:22.563", "Score": "2", "Body": "

My Austrian father-in-law tells me that they're also handy for keeping ashes out of your beer. I don't smoke, so that had never really occurred to me until he mentioned it.

\n", "OwnerUserId": "1462", "LastActivityDate": "2014-11-06T13:37:22.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1073"}} +{ "Id": "1073", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-11-08T02:35:42.947", "Score": "4", "Body": "

Seattle: Black Raven, Elysian, Georgetown, and Naked City\nSpokane: Iron Goat and River City\nBellingham: Boundry Bay, Chuckanut, and Kulshan

\n\n

In Oregon, Hop Valley, Deschutes, Boneyard and Laurelwood would be on my list.

\n\n

If driving around Washington you will probably be going by Roslyn so stop by Wild Earth and check out the Brick Tavern.

\n", "OwnerUserId": "529", "LastActivityDate": "2014-11-08T02:35:42.947", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1074"}} +{ "Id": "1074", "PostTypeId": "2", "ParentId": "1033", "CreationDate": "2014-11-08T22:55:19.647", "Score": "3", "Body": "

Freezing pint glasses is like using subwoofers in your Mini. It's too much of a good thing that drowns out the subtlety that is supposed to sell the product over and over.

\n\n

Just because some beers taste better cold, such as lagers compared to ales, doesn't mean they taste better when they are nearly frozen at +1C. Our perception of flavour diminishes as something is cooled, and so beer tastes less sweet and wines taste more acidic as they get colder.

\n\n

Breweries know this and they spend significant dollars to invent a beverage that has the maximum taste profile for the least amount of ingredient spend. Bringing that product out of its intended temperature zone and into numbness makes a Coors or Bud have almost no character at all.

\n\n

I can also imagine that bars are going to be reluctant to cool their pint glasses and spend a lot of money on electricity when it makes the beers taste little better than ordinary ice water. The end result is a disappointing \"freezie\"-like experience that reduces the likelihood of someone ordering multiples of those over the course of an evening out, which is the ultimate benchmark for most bars.

\n", "OwnerUserId": "1092", "LastActivityDate": "2014-11-08T22:55:19.647", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1075"}} +{ "Id": "1075", "PostTypeId": "2", "ParentId": "1067", "CreationDate": "2014-11-09T03:38:53.637", "Score": "0", "Body": "

This beer may be the best of all the light beer.

\n\n

Bud Light (110 calories)

\n\n

\"BugLightPhoto\"

\n", "OwnerUserId": "1471", "LastActivityDate": "2014-11-09T03:38:53.637", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1076"}} +{ "Id": "1076", "PostTypeId": "2", "ParentId": "1067", "CreationDate": "2014-11-11T00:06:28.633", "Score": "1", "Body": "

In Canada you can get Molson 67, which comes in at 3% alcohol and 67 calories for 12 ounces. That's about as light as there is.

\n", "OwnerUserId": "1092", "LastActivityDate": "2014-11-11T00:06:28.633", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1077"}} +{ "Id": "1077", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2014-11-11T00:17:27.887", "Score": "3", "Body": "

Calories are calories. A typical middle-aged male needs about 2100 calories per day. Consuming more calories than this per day will increase your weight. If you drink four 12-ounce regular (5%) beers per day, you will add between 500-700 calories to your daily diet -- depending on the style of beer you consume, meaning its sugar content, which will vary with beer style. This calorie range translates into around 3500-5000 extra calories per week, which is equivalent to gaining about 1.0-1.4 lbs of weight per week if this calorie intake is above your body's minimum requirement (ie: 2100 x 7 days).

\n\n

After 3 months you will have gained anywhere from 13-18 lbs. It doesn't matter what you eat or don't eat along with your beer. If your beer drinking brings you over the 2100 calorie per-day threshold, those calories will show up as fat in your body.

\n\n

All of this assumes no exercise. If you are active and can burn off 300-500 calories a day through a combination of working out and regular body movement (general walking, going up and down stairs, prolonged upper-body activity), then you will cut into that calorie gain in proportion to your activity.

\n", "OwnerUserId": "1092", "LastEditorUserId": "1092", "LastEditDate": "2014-11-11T00:27:32.760", "LastActivityDate": "2014-11-11T00:27:32.760", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1078"}} +{ "Id": "1078", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-11-11T01:41:23.793", "Score": "3", "Body": "

No pathogens can survive in beer. But the beer may taste off. Remember that the Pilgrims survived the journey across the Atlantic because they had beer, not water, since beer stays drinkable much longer due to the alcohol and hops that act as preservatives. Nothing will happen to you if you drink that beer.

\n", "OwnerUserId": "1092", "LastActivityDate": "2014-11-11T01:41:23.793", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1079"}} +{ "Id": "1079", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-11-11T17:07:38.600", "Score": "1", "Body": "

When you are in Merced it will definately be worth the drive up to Turlock (about half an hour up Hwy 99).

\n\n

Dust Bowl Brewing has their tap room on Main Street. They have many popular beers and normally have about 20 of their own brews on tap. The food there is top notch as well. If you like big IPAs I would strongly suggest you check out their Therapist. They are poised to become the next major brewery in CA as they are just beginning to build out a $10M brewery west of town. Definitely worth a trip up from Merced.

\n", "OwnerUserId": "1475", "LastEditorUserId": "5064", "LastEditDate": "2016-12-19T00:59:59.000", "LastActivityDate": "2016-12-19T00:59:59.000", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1081"}} +{ "Id": "1081", "PostTypeId": "2", "ParentId": "991", "CreationDate": "2014-11-17T03:54:40.703", "Score": "3", "Body": "

BeerAdvocate has some swapping features including the ability to create a \"want\" and \"have\" list of beers.

\n", "OwnerUserId": "1491", "LastActivityDate": "2014-11-17T03:54:40.703", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1082"}} +{ "Id": "1082", "PostTypeId": "1", "AcceptedAnswerId": "1083", "CreationDate": "2014-11-17T08:17:32.420", "Score": "9", "ViewCount": "6689", "Body": "

In general, it is said that you should not mix antibiotics and alcoholic beverages and it seems prudent to do so, but the reasons behind it seems to be really fuzzy.

\n\n

Some people say that the worse that can happen is that the antibiotics will not have effect. But other say that it will make you sicker. Some other say that both of these are true but it depends on the antibiotic. Some other say: \"Just one won't hurt\".

\n\n

If someone could make this clear for us, it would be great.

\n", "OwnerUserId": "1493", "LastEditorUserId": "1493", "LastEditDate": "2014-11-17T21:26:22.253", "LastActivityDate": "2015-03-02T11:52:33.137", "Title": "Myths and truths about alcohol and antibiotics", "Tags": "health", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1083"}} +{ "Id": "1083", "PostTypeId": "2", "ParentId": "1082", "CreationDate": "2014-11-17T11:34:34.613", "Score": "8", "Body": "

QI provides the answer: with a few exceptions (where it will make you vomit) it is perfectly safe to drink alcohol whilst taking antibiotics.

\n\n
\n

Apart from some special circumstances, it is on the whole OK to drink while on antibiotics. The reason why people think that you should not is that when antibiotics was first being used it was to cure syphilis. The patients would still be infectious for the first week, so were told not to drink because they were more likely to have sex while drunk. This has since passed down and has become a \"tradition\" in a way. The main reason that people are told not to drink when on antibiotics is because doctors prefer people not to drink because it is better for them. However, the are some antibiotics like Flagyl which will make you vomit if you take them with alcohol.

\n
\n\n

ref: Transcript for QI episode 8.10: \"health and safety\"

\n", "OwnerUserId": "909", "LastActivityDate": "2014-11-17T11:34:34.613", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1084"}} +{ "Id": "1084", "PostTypeId": "1", "CreationDate": "2014-11-17T22:08:46.607", "Score": "1", "ViewCount": "568", "Body": "

Is it safe to drink while on Anxiolytics or Antidepressants?

\n\n

In general it is known that some drugs should not be mixed with alcohol. Some of this knowledge are myths and some other are true.

\n\n

As alcohol itself is a kind of anxiolytic it isn't clear if it really could cause\na side effect while on anxiliytics medication.

\n\n

On the other hand, it seems that alcohol tends to make depressions worse.

\n\n

If there are undesired side effects, is there a limit? \nis it safe to drink just a little or it is better to avoid it completely?

\n", "OwnerUserId": "1493", "LastActivityDate": "2016-10-09T21:29:30.063", "Title": "Anxiolytics, Antidepressants and Alcohol", "Tags": "health", "AnswerCount": "2", "CommentCount": "2", "ClosedDate": "2016-10-09T23:03:07.427", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1085"}} +{ "Id": "1085", "PostTypeId": "1", "CreationDate": "2014-11-19T00:29:39.327", "Score": "5", "ViewCount": "87", "Body": "

is \"Capilano Pale Ale\" still being produced and is it possible to get it in the States?I'm referring to the Vancouver, British Colombia, microbrew.

\n", "OwnerUserId": "1501", "LastActivityDate": "2017-02-21T00:02:07.973", "Title": "is \"Capilano Pale Ale\" still being produced and is it possible to get it in the States?", "Tags": "ale", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1086"}} +{ "Id": "1086", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-11-19T15:07:05.773", "Score": "11", "Body": "

Just to add to this topic, I think it's important that the correct terminology is used since the author asked for \"gluten free\" beer suggestions.

\n\n

In the beer world, \"gluten free\" can only be used if the ingredients used to brew the beer do not contain gluten. Sorghum appears to be the most popular ingredient for making GF beers, but there are a number of other options including buckwheat, millet, honey, even chestnuts. Redbridge is an example of a GF beer. IMO, sorghum gives off a cider-y flavor so I have not really enjoyed the sorghum-based beers. Only gluten free beers that I've enjoyed are made by a Canada-based brewery called Glutenberg. Their APA and IPA are fantastic. Unfortunately, they don't currently distribute everywhere so I have to drive to a neighboring state to buy it.

\n\n

There are also beers that are brewed with traditional ingredients that contain gluten, but an enzyme called Brewer's Clarex is added to primary fermentation. Clarex was originally used to clear beer and prevent chill haze, but it was discovered it also breaks down gluten such that, when tested with traditional gluten tests (ELISA), the beer is well within the \"gluten free\" threshold (<20 ppm). These beers cannot be called \"gluten free\", though, rather they can only be labeled \"crafted to remove gluten\". Omission brews \"gluten reduced\" beer (which are very good IMO), but apparently Yards also uses Clarex in some of their beers (even though they don't label their beer as \"crafted to reduce gluten\").

\n", "OwnerUserId": "1506", "LastEditorUserId": "1506", "LastEditDate": "2016-03-09T17:48:42.630", "LastActivityDate": "2016-03-09T17:48:42.630", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1087"}} +{ "Id": "1087", "PostTypeId": "2", "ParentId": "82", "CreationDate": "2014-11-19T15:11:32.090", "Score": "1", "Body": "

Just to add to this topic, I think it's important that the correct terminology is used since a number of answers contain false information.

\n\n

In the beer world, \"gluten free\" can only be used if the ingredients used to brew the beer do not contain gluten. Sorghum appears to be the most popular ingredient for making GF beers, but there are a number of other options including buckwheat, millet, honey, even chestnuts. Redbridge is an example of a GF beer. I have yet to taste a GF beer that I enjoyed as sorghum specifically gives off a cider-y flavor and all the beers end up thin.

\n\n

There are also beers that are brewed with traditional ingredients that contain gluten, but an enzyme called Brewer's Clarex is added to primary fermentation. Clarex was originally used to clear beer and prevent chill haze, but it was discovered it also breaks down gluten such that, when tested with traditional gluten tests (ELISA), the beer is well within the \"gluten free\" threshold (<20 ppm). These beers cannot be called \"gluten free\", though, rather they can only be labeled \"crafted to remove gluten\". Omission brews \"gluten reduced\" beer (which are very good IMO), but apparently Yards also uses Clarex in some of their beers (even though they don't label their beer as \"crafted to reduce gluten\").

\n", "OwnerUserId": "1506", "LastActivityDate": "2014-11-19T15:11:32.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1088"}} +{ "Id": "1088", "PostTypeId": "2", "ParentId": "986", "CreationDate": "2014-11-19T16:52:25.780", "Score": "5", "Body": "

In Colorado only 1 store in a chain is allowed to sell liquor, wine or full strength beer. These are known as 'State Stores'... So a chain like Target or King Soopers picks one location in the state that they want to have that license and that's the one that can sell it... All others are only allowed to sell 3.2 beer.

\n", "OwnerUserId": "1507", "LastActivityDate": "2014-11-19T16:52:25.780", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1089"}} +{ "Id": "1089", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-11-20T04:15:17.210", "Score": "1", "Body": "

When you get to Escondido you'll be knee deep in breweries.

\n\n

Some notable ones: Right next door in Poway is port brewing/ lost abbey and next door to that, in Vista, are some great ones. Belching Beaver is a favorite of mine but near it are Aztec and iron fist.

\n", "OwnerUserId": "1508", "LastActivityDate": "2014-11-20T04:15:17.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1090"}} +{ "Id": "1090", "PostTypeId": "2", "ParentId": "1084", "CreationDate": "2014-11-20T04:41:49.470", "Score": "0", "Body": "

Anxiolytics is too broad of a term to address. Alcohol is actually frequently considered an anxiolytic.

\n\n

Antidepressants, on the other hand, certainly can have adverse effects when mixed with alcohol. As far as drug interactions go, it will largely vary on the drug--without more information it is really impossible to say for sure what the answer is in your case.

\n\n

However, on a more broad note, the use of alcohol is generally perceived as counterproductive while on antidepressants. Alcohol can contribute to depression, so it is generally advised to be avoided while taking antidepressants. For more information, see this article: Can I drink alcohol if I'm taking antidepressants?

\n\n

Hope this helps!

\n", "OwnerUserId": "1509", "LastEditorUserId": "5064", "LastEditDate": "2016-10-09T21:29:30.063", "LastActivityDate": "2016-10-09T21:29:30.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1091"}} +{ "Id": "1091", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-11-21T18:15:28.993", "Score": "2", "Body": "

When you're in Escondido, you don't just have to do Stone. Very close by in Vista you could go to Port/Lost Abbey. The 78 freeway is known as the Hops Highway and there are a ton of breweries. You could cherry pick around here.

\n", "OwnerUserId": "1075", "LastEditorUserId": "887", "LastEditDate": "2014-12-08T10:09:35.213", "LastActivityDate": "2014-12-08T10:09:35.213", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1093"}} +{ "Id": "1093", "PostTypeId": "1", "AcceptedAnswerId": "1100", "CreationDate": "2014-11-23T18:07:19.770", "Score": "6", "ViewCount": "302", "Body": "

Which is the good brew for India? I generally prefer Budweiser and I am pretty much good with it.

\n", "OwnerUserId": "1519", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:46:25.080", "LastActivityDate": "2016-07-28T14:46:25.080", "Title": "Beer recommendations for India, please", "Tags": "recommendations", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1095"}} +{ "Id": "1095", "PostTypeId": "1", "AcceptedAnswerId": "1114", "CreationDate": "2014-11-26T06:21:42.833", "Score": "7", "ViewCount": "2538", "Body": "

I recently got a winter sampler pack by Sierra Nevada, which had 3 Coffee Stout beers. I've also brewed my own coffee stout for early next year. I was wondering, having tried both, they both have a decent coffee taste, but is there any home science way to find the caffeine content of a coffee beer.

\n\n

FWIW my homebrew was \"dry hopped\" with 6 ounces of coffee grounds for two weeks, in a 5gal batch. Not sure if that can help with any calculations.

\n\n

Let me know if this is off topic, and I can move it to the homebrew SE, or even maybe the chemistry or cooking stack.

\n", "OwnerUserId": "352", "LastEditorUserId": "1488", "LastEditDate": "2014-12-18T14:15:20.853", "LastActivityDate": "2014-12-18T14:15:20.853", "Title": "How to measure the caffeine content of a coffee beer at home?", "Tags": "specialty-beers stout", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1096"}} +{ "Id": "1096", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-11-26T13:13:28.267", "Score": "4", "Body": "

My girlfriend is coeliac and we live in Belgium - Brunehaut is very good. They have four different \"bio\" beers that are all gluten free. They cost like 1.5 EUR in the supermarket and they taste just like \"normal\" beer since they have a unique process to \"deglutenize\" beer.

\n\n

Brunehaut Brewery

\n\n

They list 2 distributors in the US: C2 Imports and Waterloo Beverages.

\n\n
\n\n

We were in NYC on vacation and got some gluten free \"beer\" which was made form rice or something else and it was god awful.

\n\n

There's something on Wikipedia about Corona having such low levels of gluten that it's on par with actual gluten free beer.

\n", "OwnerUserId": "1525", "LastEditorUserId": "8580", "LastEditDate": "2019-07-07T22:21:14.173", "LastActivityDate": "2019-07-07T22:21:14.173", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"1097"}} +{ "Id": "1097", "PostTypeId": "2", "ParentId": "1093", "CreationDate": "2014-11-27T18:03:36.873", "Score": "1", "Body": "

Different people have different tastes. For me, I like much hard beer, Budweiser is pretty much mild for me. In hot days, I look for chilled Cobra, if it's not available, I settle for Touborg strong

\n", "OwnerUserId": "1533", "LastActivityDate": "2014-11-27T18:03:36.873", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1098"}} +{ "Id": "1098", "PostTypeId": "1", "AcceptedAnswerId": "1119", "CreationDate": "2014-11-28T00:11:06.243", "Score": "3", "ViewCount": "1277", "Body": "

What type of beer would the pilgrims have had access to in the early 1600's, and if they did have beer, would it be a good pairing with turkey?

\n", "OwnerUserId": "303", "LastActivityDate": "2014-12-07T19:51:29.257", "Title": "What type of beer did the pilgrims have?", "Tags": "history pairing", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1099"}} +{ "Id": "1099", "PostTypeId": "2", "ParentId": "1093", "CreationDate": "2014-11-28T13:52:17.963", "Score": "6", "Body": "

As in every country exist brands most famous inside India too.

\n\n

The five brands are:

\n\n
    \n
  • Kingfisher (4.8% grade - strong 8%)
  • \n
  • Haywards (7%)
  • \n
  • Royal Challenge (5%)
  • \n
  • Kalyani Black Label (7.8%)
  • \n
  • Kings (4.8%)
  • \n
\n\n

Personally I've tried Kalyani Black Label and I think is very good (is important the personal taste when you drink a beer bottle).

\n\n

Unfortunately I haven't tried other four beer in upper list.

\n", "OwnerUserId": "125", "LastActivityDate": "2014-11-28T13:52:17.963", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1100"}} +{ "Id": "1100", "PostTypeId": "2", "ParentId": "1093", "CreationDate": "2014-11-29T06:24:01.977", "Score": "3", "Body": "

In India, We have many foreign brews available. Some of my favorites are in rank-wise order:
\n1. Hoegaarden(Belgian Brewed)
\n2. Stella Artois(Again Belgian Brewed)
\n3. Erdinger(German Brewed)

\n\n

Also I recommend you to try Ballantine Ale, American Brewed Beer..

\n\n

These Royal Lagers are worth giving a try!! Cheers!

\n", "OwnerUserId": "1531", "LastActivityDate": "2014-11-29T06:24:01.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1101"}} +{ "Id": "1101", "PostTypeId": "2", "ParentId": "1040", "CreationDate": "2014-11-29T08:11:52.813", "Score": "2", "Body": "

On my 2nd trip to Tokyo, I found Popeye pub in a quaint part of the city @ Ryogoku: Popeye Beer Club.

\n\n

They have 70 taps and mostly from Japanese breweries.

\n", "OwnerUserId": "123", "LastEditorUserId": "5064", "LastEditDate": "2019-05-11T10:59:22.780", "LastActivityDate": "2019-05-11T10:59:22.780", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"1103"}} +{ "Id": "1103", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-11-30T10:39:34.197", "Score": "0", "Body": "

When in Antioch CA drive at least to Concord and go the Hop Grenade; it's a beer bar that will have a great selection. Further east you'll have many great choices around Berkeley & SF, too many to list.

\n", "OwnerUserId": "1289", "LastActivityDate": "2014-11-30T10:39:34.197", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1104"}} +{ "Id": "1104", "PostTypeId": "2", "ParentId": "1084", "CreationDate": "2014-12-01T00:32:42.347", "Score": "1", "Body": "

Both alcohol and prescription drugs (anxiolytics and antidepressants) can have a variable effect on one's alertness and reactions. Some people can drink 5 litres of beer and feel nothing. Many will feel dizzy and some will get near a coma. Men tolerate alcohol better than women and some guys are very quick metabolizers, so they get alcohol out of their blood very quickly. The same reasoning aplies to drugs that act on the central nervous system. They have a sedating effect similar to alcohol and one may not feel one hundred percent alert while others may feel extremely sedated and unable to perform tasks that require attention and precision. For all this, there is always a warning about mixing alcohol with those drugs. However, effects vary a lot and you may get away with drinking and taking an SSRI such as Fluoxetine, Paroxetine or Sertraline. With a Benzodiazepine (Alprazolam, Clonazepam, Diazepam) you have to be more careful. These drugs are more sedating than antidepressants and you may feel nothing, you may feel dizzy, or you may fall sound asleep. One never knows for sure, so you gotta be careful. And do not drink and drive, even if you haven't taken any of these drugs.

\n", "OwnerUserId": "1539", "LastEditorUserId": "1539", "LastEditDate": "2014-12-01T00:38:19.733", "LastActivityDate": "2014-12-01T00:38:19.733", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1105"}} +{ "Id": "1105", "PostTypeId": "2", "ParentId": "889", "CreationDate": "2014-12-01T16:47:46.873", "Score": "0", "Body": "

Heineken is the closest. I only actually enjoy two brands of beer: Heineken used to be my favorite until I got bored with it and the store clerk recommended Beck's. They go hand in hand! Like peas in a pod!

\n", "OwnerUserId": "1541", "LastEditorUserId": "73", "LastEditDate": "2014-12-02T16:29:34.180", "LastActivityDate": "2014-12-02T16:29:34.180", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1106"}} +{ "Id": "1106", "PostTypeId": "2", "ParentId": "1093", "CreationDate": "2014-12-02T09:55:00.907", "Score": "2", "Body": "

My favoured beer is Erdinger but it is priced high due to import duties. Of the local fare, UB's London Pilsner & Kingfisher Blue are my favourites

\n", "OwnerUserId": "1545", "LastActivityDate": "2014-12-02T09:55:00.907", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1107"}} +{ "Id": "1107", "PostTypeId": "2", "ParentId": "637", "CreationDate": "2014-12-02T11:15:16.180", "Score": "1", "Body": "

If it is an Oyster stout then it probably should have contact with ACTUAL oysters. Using the shells is a cop out that is like stone soup.

\n\n

Checkout new brewery Hammertown in London who do it properly:\n\"In 1938 the original Hammerton Brewery was famous for being the first in the world to use Oysters as part of the brewing process. In this new recipe we’ve used a variety of flavoursome malts, including a good dose of oats. Fresh wild Maldon oysters are then added to the boil to add a subtle extra complexity to the taste of this stout.\"

\n", "OwnerUserId": "1546", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T23:48:05.620", "LastActivityDate": "2016-10-05T23:48:05.620", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1108"}} +{ "Id": "1108", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2014-12-02T14:40:51.333", "Score": "4", "Body": "

If you're not too sensitive, there is Wicked Weed Gluten FREEk, its brewed with the brewers clarex, my wife has celiacs and she does not get a reaction from drinking it. It is the best \"Gluten Reduced\" beer out there! Alpine brewing company is also brewing some beers with the clarex but have not gotten a chance to try them. if anyone from CA wants to set up a trade i would be more than happy to!

\n", "OwnerUserId": "1547", "LastActivityDate": "2014-12-02T14:40:51.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1111"}} +{ "Id": "1111", "PostTypeId": "2", "ParentId": "1098", "CreationDate": "2014-12-03T18:53:34.270", "Score": "0", "Body": "

The bulk of what they drank would have been small beer: very low alcohol content beer. It was often unfiltered. This was more or less consumed daily instead of water, since there was no sanitation at the time.

\n", "OwnerUserId": "1410", "LastActivityDate": "2014-12-03T18:53:34.270", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1112"}} +{ "Id": "1112", "PostTypeId": "2", "ParentId": "1082", "CreationDate": "2014-12-03T18:57:16.860", "Score": "0", "Body": "

MD-Tech provided a rather good answer. I suppose in theory you could also add to it the risk of infection if you are drinking an unpasteurized beer.

\n\n

Normally you would have gut bacteria which would prevent the yeasts from colonizing your gut, but if you have lost those bacteria due to antibiotics then in theory you could get an infection. Of course, if you're still on antibiotics, odds are they will kill the yeast.

\n", "OwnerUserId": "1410", "LastActivityDate": "2014-12-03T18:57:16.860", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1113"}} +{ "Id": "1113", "PostTypeId": "2", "ParentId": "889", "CreationDate": "2014-12-03T20:36:01.137", "Score": "4", "Body": "

Beck's is a German pilsner (a type of pale lager), sharp, crisp, flavorfull, and is not filling. Beck's uses roasted hops and has a more bitter earthy flavor with much less foam.

\n\n

The flavor of other \"light lagers\" (european pilsners) may be similar, however, a pilsner is much easier to drink because, unlike most other light lager beers, a true pilsner is much less filling and has much less foam. Pilsner beers are noted for \"drinkability\". Beck's can be consumed with a large meal and then consumed afterwards as well. I believe this is why many non beer drinkers prefer and enjoy Beck's and almost no other beer. Click here for a list of \"German style pilsners\" as well as a list of the other types of similar beers and what makes them different Light lagers such as Heinekin, Stella, Amstel, etc ... are \"European pilsner\" beers typically labeled as lager whereas a German pilsner beer is typically labeled \"pilsner\" or \"pils\".

\n\n

Heineken does produce a true pilsner variety but it is not officially distributed or available within the United States. Heineken lager is distributed and sold throughout North America and has much more body and is more filling as one would expect from a light lager or \"european pilsner\".

\n\n

Sam Adams Gold pilsner is described as having \"great body\". This is not a characteristic of most German pilsners that are sharp and light bodied. This beeradvocate post goes on to say that \"This is one of those beers to give to a Bud drinker\" . . . definitely not something most people would say of Beck's.

\n\n

Similar beers include:

\n\n

Baltika #7 Export has a clean crisp light hoppy flavor and is less filling than Heinekin.

\n\n

St Pauli Girl pilsner (not to be confused with St Pauli Girl lager) is brewed for export only at the Beck's brewery in Bremen Germany.

\n\n

Tsingtao, a Chinese brewed German pilsner. Tsingtao is a product of the German occupation of Qingdao from the late 1800s until 1914. Not quite a flavorful as Beck's because the original recipe has changed but still a German pilsner in many aspects. Tsingtao is widely available at many Asian restaurants throughout North America and is a much better alternative or substitute for Beck's than Heinekin or Stella.

\n\n

Löwenbräu produces Beck's under licence for southern Germany and other parts of europe and is known for similar flavor (but then again, so is Heineken).

\n\n

Also, here is another list of German Pilsners.

\n\n
\n\n

Update:

\n\n

If you're going to go the way of sam adams, at least get the right kind of beer and not some awful american lager. Sam Adams makes a Noble Pils.

\n\n

Noble hops are the type of hops German pilsners are distinct for, strong hops flavor.

\n\n

Even better is Sixpoint crisp. Strong hops flavor, easy to drink, and almost no hint of barley. More fruty than Beck's.

\n\n

Finally, Pilsner Urquell has a bit more foam than I would like from a German beer (probably because it's not German) but still did not weigh heavy on my stomach and easy to drink as well. Not quite as much flavor but I did not try the bottle. This one is a traditional pils.

\n\n

EDIT:

\n\n

I tried another German beer at the bar recently \"Weihenstephaner original\", brewed at the world's oldest brewery in Germany and brewed according to the German purity law of 1516. Sure enough, I didn't have to burp once. Drank a full pint glass and wasn't bloated one bit.

\n\n

Finally, the taste was the same familiar strong, pungent, and bitter hoppy taste I've grown so fond of from drinking German Beck's over the years and yes it comes in a very dark brown bottle. The bitterness is ranked at 21. They also make a pils with a bitterness of 32.

\n\n

I feel it should be added that beer brewed in Germany often conforms to the Reinheitsgebot or the German purity law of 1516. This gives German beer the crisp fresh taste and this is also why the foam doesn't linger and make you feel bloated. In all other countries, including the united states, beer manufacturers are known to include many other ingredients. Notably, chemicals are added for \"head retention\" that are not included in German beer.

\n", "OwnerUserId": "1454", "LastEditorUserId": "1454", "LastEditDate": "2019-03-02T08:03:25.000", "LastActivityDate": "2019-03-02T08:03:25.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"1114"}} +{ "Id": "1114", "PostTypeId": "2", "ParentId": "1095", "CreationDate": "2014-12-03T20:59:51.070", "Score": "4", "Body": "

There was a similar question on the Cooking SE site. Perhaps you can try the approach suggested by Adam Shiemke in the accepted answer. He recommended using ethyl acetate and performing a little home science experiment as detailed here.

\n", "OwnerUserId": "887", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:33:38.297", "LastActivityDate": "2014-12-03T20:59:51.070", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1115"}} +{ "Id": "1115", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-12-04T13:45:05.607", "Score": "-1", "Body": "

3 ingredients help beer stay good,\nalcohol, hop and Yeast.

\n\n

so beers above 5% or really bitter beers.\nOr beers with yeast in the bottle.

\n\n

for example geuzes are at their best after 7 to 15 years, and stay drinkable for more than 30 years.

\n\n

The taste changes over the period.

\n", "OwnerUserId": "1553", "LastActivityDate": "2014-12-04T13:45:05.607", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1116"}} +{ "Id": "1116", "PostTypeId": "2", "ParentId": "1053", "CreationDate": "2014-12-04T19:35:15.207", "Score": "2", "Body": "

You can check out the top rated beers at the user ratings site Untappd.

\n\n

You can filter by style and country, and the app is very easy to use. I'll bring it up on my phone when I'm at a restaurant or grocery store and I want more info about a beer I haven't seen before or to check out the ratings.

\n", "OwnerUserId": "1558", "LastEditorUserId": "73", "LastEditDate": "2014-12-08T10:08:47.103", "LastActivityDate": "2014-12-08T10:08:47.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1117"}} +{ "Id": "1117", "PostTypeId": "2", "ParentId": "1053", "CreationDate": "2014-12-05T11:07:53.233", "Score": "0", "Body": "

you can find a rank-list country by country.

\n\n

Italy

\n\n

you can find a list with score of italian beers.

\n\n

England

\n\n

you can find a list with score of english beers.

\n\n

Germany

\n\n

you can find a list with score of german beers.

\n", "OwnerUserId": "125", "LastActivityDate": "2014-12-05T11:07:53.233", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1118"}} +{ "Id": "1118", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-12-05T17:58:37.347", "Score": "-1", "Body": "

Here's a video of someone attempting to drink a beer from 1988 - it didn't go over very well for him.

\n\n

How to FAIL at Chugging A 25 Year Old Beer (YouTube)

\n", "OwnerUserId": "1563", "LastEditorUserId": "5064", "LastEditDate": "2017-01-06T13:07:00.840", "LastActivityDate": "2017-01-06T13:07:00.840", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1119"}} +{ "Id": "1119", "PostTypeId": "2", "ParentId": "1098", "CreationDate": "2014-12-05T20:05:55.367", "Score": "1", "Body": "

Also bear in mind that beers back then were made out of lots of ingredients that we'd think of as odd. Cock ale was obviously a thing, which was beer that was fermented (or boiled) with a rooster in it. Lots of beers would also have been strained through spruce post-boil which would've given them some wood or pine quality. Lots of other flowers were often involved.

\n\n

Check out George Washington's small beer recipe here. Though this is a poor transcription and a lot of folks agree that it should read \"Bran, Hops to taste\", it's still clear that the grain is sort of a \"for taste, whatever you can spare\" thing while the molasses is the star of the show. A lot of early drinks were like that, involving some sort of concentrated or burnt sugar in addition to grains, which generally weren't barley at the time.

\n\n

However, in the most ideal case where you had access to the best beer you could find...it would be some form of brown ale or lighter porter. Maybe an amber ale if you could find one that wasn't very hoppy. The stable kilning process that enabled people to make pale malt wasn't really invented until the mid-1600's and wasn't very popular until the 1700s, so brewers in the 1600s would've used a sort of generic-y brown malt that might taste slightly burnt and premium beers may have been able to include some lighter malt that was much harder to make and find. And it'd probably still have some molasses in it.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-12-05T20:05:55.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1121"}} +{ "Id": "1121", "PostTypeId": "2", "ParentId": "1098", "CreationDate": "2014-12-07T03:14:41.637", "Score": "1", "Body": "

Beer was commonly drunk in the Elizabethan period in Europe, but what they drank is different from the beer we're used to today.

\n\n

Beer and ale, being grain-based, were important dietary staples -- it's said that beer is liquid bread, and that's not far off. For the common man (not nobility), in particular, grain made up a substantial part of the diet, with meat being fairly rare.

\n\n

Common beer was not aged for months or years like some beers today; rather, a batch might be produced in as little as half a week. These are \"small beers\" (or \"small ales\", for the unhopped variety), which are mildly alcoholic but drinkable in volume without unfortunate effects. These small beers/ales were produced in the home/manor; it was just one more task for the cooks. See, for example, Markham's The English Housewife, 1615. (I don't know of an online copy, sorry.)

\n\n

Note that this means that the pilgrims wouldn't have brought beer from Europe; it'd be consumed, or probably go bad, before they reached the new world. So they probably didn't have beer in their first year because they'd need to wait for a grain harvest. After that, if they brought hops with them then they could have made small beers like from the old country; if they didn't bring hops, they probably made ales instead.

\n\n

Turkey would have been new to their palates (it's a new-world bird), but beer was commonly drunk with meals where they came from, and those meals sometimes included other fowl. So, probably it pairs fine. However, they probably didn't care as much about the proper pairing as we might today, the same as we might not care about pairing the proper cola with the turkey sandwich we have for lunch.

\n\n

You may find the following helpful:

\n\n\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2014-12-07T19:51:29.257", "LastActivityDate": "2014-12-07T19:51:29.257", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1123"}} +{ "Id": "1123", "PostTypeId": "2", "ParentId": "53", "CreationDate": "2014-12-09T13:43:48.883", "Score": "4", "Body": "

That very much depends on the brewery. Some use cocoa nibs to add the chocolate flavor, but often they use what are called \"chocolate malt\", grain that is roasted until it's the color of chocolate. These happen to add a fair amount of chocolate and coffee characteristics to the final product.

\n", "OwnerUserId": "1569", "LastActivityDate": "2014-12-09T13:43:48.883", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1124"}} +{ "Id": "1124", "PostTypeId": "1", "AcceptedAnswerId": "1125", "CreationDate": "2014-12-09T16:34:54.077", "Score": "4", "ViewCount": "181", "Body": "

I bought a kit over the summer from Northern Brewer. This kit comes with the malt extract and the grains (for color mainly). I assume the grains would be stale, so I could probably buy some new grain, but I guess the extract would stay good for a long time, right. Should I just throw it out, or is it still good?

\n", "OwnerUserId": "840", "LastEditorUserId": "268", "LastEditDate": "2014-12-11T13:15:09.693", "LastActivityDate": "2014-12-11T13:15:09.693", "Title": "Beer Kit - How long is it good for", "Tags": "brewing", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1125"}} +{ "Id": "1125", "PostTypeId": "2", "ParentId": "1124", "CreationDate": "2014-12-09T19:50:48.043", "Score": "4", "Body": "

If everything has been sealed tightly, it should all be good still. The grain is probably fine, check that it's dry and still hard before using it, and inspect carefully for weevils or other small bugs.

\n\n

Dry extract is good for at least 6 months if sealed and dry. Sift it and see how clumpy it's gotten- if it's been good and dry, it won't have many clumps, and you can still use it.

\n\n

Liquid extract is fine for at least a year if it's sealed. Check the top of it for mold.

\n\n

There are many schools of thought on hops going bad- personally, I'd buy new ones. Also buy new yeast, or at least get it started a couple days ahead of time and make sure it's nice and alive.

\n", "OwnerUserId": "1569", "LastActivityDate": "2014-12-09T19:50:48.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1126"}} +{ "Id": "1126", "PostTypeId": "2", "ParentId": "1124", "CreationDate": "2014-12-10T04:02:09.400", "Score": "3", "Body": "

If everything is reasonably cool and dry, no problem, but it would be a better if the hops and yeast had been kept in a refrigerator. You might have lost a little hop flavor, or the ferment might take a bit longer

\n\n

Remember that barley and hops are only harvested in one season - does AB stop brewing every spring while waiting for the next harvest?

\n\n

A few bugs on the grain isn't so bad (been there, brewed that) but mold is bad news, will actually screw up your beer (apparently some of the mold's enzymes will survive the boil and keep digesting your beer).

\n\n

Dry yeast is supposed to be OK for 1 year at room temp, but it will stay viable for quite long time if sealed. That stuff is hard to kill completely.

\n\n

As far as the extracts go, I've never heard of them going bad, as long as dry is dry and liquid is not diluted.

\n\n

Best of luck!

\n", "OwnerUserId": "1289", "LastActivityDate": "2014-12-10T04:02:09.400", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"1127"}} +{ "Id": "1127", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2014-12-11T03:44:30.330", "Score": "3", "Body": "

Guinness isn't the only dark beer to layer with. Porters can be used to as a bottom layer to give you a dark-on-bottom drink. Check it all out at The Perfect Black and Tan.

\n", "OwnerUserId": "1572", "LastEditorUserId": "5064", "LastEditDate": "2016-10-06T13:26:25.727", "LastActivityDate": "2016-10-06T13:26:25.727", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2127"}} +{ "Id": "2127", "PostTypeId": "1", "CreationDate": "2014-12-11T08:41:37.863", "Score": "9", "ViewCount": "3752", "Body": "

I recently traveled to Prague where beer was extremely cheap, usually around $1-$2 USD in supermarkets for 16 oz. cans. Even brands like Heineken and Stella were this cheap. What are the main factors for this?

\n", "OwnerUserId": "2603", "LastActivityDate": "2017-07-02T15:46:05.403", "Title": "Why is beer in Czech Republic so cheap?", "Tags": "laws drinking", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2128"}} +{ "Id": "2128", "PostTypeId": "2", "ParentId": "2127", "CreationDate": "2014-12-11T14:12:55.170", "Score": "6", "Body": "

It is in my opinion mainly thanks to low excise duty on beer in the Czech republic.

\n\n

Another factor is the fact that there are lower prices of almost everything in the Czech republic (I am talking mainly about local food and beverages).

\n\n

And last but not least, Czech republic is I guess second or third in the whole world in beer consumption, which means there is high level of demand for traditional czech beer, which allows producers to produce beer in large quantities.

\n", "OwnerUserId": "2574", "LastEditorUserId": "170", "LastEditDate": "2014-12-18T03:32:18.180", "LastActivityDate": "2014-12-18T03:32:18.180", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2129"}} +{ "Id": "2129", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-12-16T13:23:53.587", "Score": "3", "Body": "

In my experience, blanche and saisons are always beers that are enjoyed, even from people who are not beer lovers. \nThe scent of spices and fruit make them interesting, and the flavor is much more \"traditional\" than trappist beers (which are awesome, but also different).\nFor a second try, I would go with IPA and APA (but they are much more bitter), and the aroma is more similar to tropical fruits.\nAs a third, I would go with Belgian beers (\"abbey\" style), like a Golden Ale. You could try Chouffe, for example (or Affligem blonde). Sweet, round beer that has a wonderful malt taste.

\n\n

PS: I'm not suggesting particular brands as I understand you are in US, I don't know common brands there.

\n", "OwnerUserId": "2585", "LastActivityDate": "2014-12-16T13:23:53.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2130"}} +{ "Id": "2130", "PostTypeId": "2", "ParentId": "152", "CreationDate": "2014-12-16T13:51:29.417", "Score": "3", "Body": "

Previous answers are good, I'd just add to pay attention to ABV, which is gonna be mid-high (around 6-7).\nAs suggested here, you'd want the alcohol and the (not too much) hop to cleanse your palate, and it is maybe "easier" than the acid of sour ales or Oud Bruins.

\n
\n

Such opulence (...) goes well with a well structured craft beer, but with sharp "weapons" to de-grease the palate. I would suggest an amber ale, or a darker amber: caramel malts, lightly toasted - excessive roasting may in fact have to battle with ingredients such as tomatoes.(...)

\n

Our beer, we said, must also have the ability to " clean up" the palate, perhaps with a touch of citrus fruit or herbal, with a pleasant feeling of hops. But absolutely shouldn't be too sweet. So we'd prefer a product that is dry, bitter and strong with good carbonation, since bubbles help the drinkability. As for the alcohol, it would be preferable not to exceed 6 and 7 percent

\n
\n", "OwnerUserId": "2585", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2014-12-16T21:21:06.920", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2131"}} +{ "Id": "2131", "PostTypeId": "5", "CreationDate": "2014-12-16T21:22:41.667", "Score": "0", "Body": "

The International Bittering Units scale, or simply IBU scale, is measured through the use of a spectrophotometer and solvent extraction a calculation is performed on this absorbance to give a result in IBU. (from Wikipedia)

\n", "OwnerUserId": "2585", "LastEditorUserId": "2585", "LastEditDate": "2014-12-17T13:28:00.860", "LastActivityDate": "2014-12-17T13:28:00.860", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2132"}} +{ "Id": "2132", "PostTypeId": "4", "CreationDate": "2014-12-16T21:22:41.667", "Score": "0", "Body": "IBU indicates the International Bitterness Unit scale, a perceived relative bitterness measurement. ", "OwnerUserId": "2585", "LastEditorUserId": "2585", "LastEditDate": "2014-12-17T13:28:21.980", "LastActivityDate": "2014-12-17T13:28:21.980", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2133"}} +{ "Id": "2133", "PostTypeId": "1", "CreationDate": "2014-12-17T10:05:46.727", "Score": "9", "ViewCount": "590", "Body": "

I'm looking for free online beer-a-day calendars highlighting a different beer every day. Anything available for the United States, Germany, Bavaria, for example? Ideally the calendars also include a web feed for subscription. Any insight welcome. Cheers. Prost.

\n\n

Disclaimer: As examples I've put together a free online beer-a-day calendar for Austria - (Feed) and for Belgium - (Feed). All example code and data public domain (that is, free, open source).

\n", "OwnerUserId": "1160", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:45:09.983", "LastActivityDate": "2016-07-28T14:45:09.983", "Title": "Beer-A-Day (Free Online) Calendars", "Tags": "breweries specialty-beers", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2136"}} +{ "Id": "2136", "PostTypeId": "2", "ParentId": "2133", "CreationDate": "2014-12-17T16:03:02.620", "Score": "1", "Body": "

I don't know of anything, but if you already have code to do one and just need data you may be able to leverage BreweryDB's API and scrape beers that way. It's a pretty extensive database.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-12-17T16:03:02.620", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2137"}} +{ "Id": "2137", "PostTypeId": "2", "ParentId": "1053", "CreationDate": "2014-12-17T17:50:42.437", "Score": "0", "Body": "

I think a lot depends on where you live and what is currently distributed in your local supermarkets. This reflects the local \"beer culture\". it is, as always, a matter of supply and demand. \nIndustrial beer is very often just bad beer (because it is pasteurized, thus it kills all the bacteria and such that make craft beer so good and different). \nIt is very difficult for a heavily distributed (thus cheap) beer to be good enough to compete with really good, local craft beers.\nVery good beer is expensive to make, and often made in small or mid-size breweries.

\n\n

In Italy in the last years we have seen a huge leap in beer culture (a \"Beernaissance\", if you will). We have hundreds of microbreweries, a lot of good breweries, a handful of excellent and internationally praised ones.\nPeople is drinking much more good beer (meaning, craft), so now you can find a lot of craft beer in bars, restaurants and finally supermarket.

\n\n

Until few years ago, supermarkets had just industrial beer, and the occasional Leffe Blonde bottle. Now you can find a lot more.

\n\n

At the end of the day, I think it is much better that you reverse your approach: find some non trivial beers in your local supermarkets, and query them on apps or http://ratebeer.com.

\n", "OwnerUserId": "2585", "LastActivityDate": "2014-12-17T17:50:42.437", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2138"}} +{ "Id": "2138", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2014-12-17T20:03:05.253", "Score": "1", "Body": "

In my experience, different women have quite different tastes, but there are a few beers that seem to appeal to women much more than they do to men, so I'll try recommending those.

\n\n

Innis & Gunn (original) is an obvious candidate. It's a very bland beer that's stored on American bourbon casks for a while. This gives it a strong, perfumy vanilla aroma. Some people think it feels artificial, but it's really not. It's the aroma of the American oak. Given that your friend loves vanilla it seems the obvious place to start.

\n\n

Duchesse du Bourgogne is technically a Flemish red. It's a sweetish beer that's been stored in wooden barrels so that it turns a little acidic, too. Kind of fruity, kind of vinous, little bitterness. It's really a classic beer, and while many men love it (me among them), even more women seem to like it. Really worth trying.

\n\n

German weissbier is sweetish, not sour, not at all bitter, and has a gentle banana flavour that comes from the yeast. Again it's something that many men like, and more women. Good examples are Weihenstephaner, Paulaner, and Erdinger (in that order). US wheat ale might work, too, but they generally use normal ale yeast and thus turn deathly boring.

\n\n

Belgian witbier is similar to the weissbier, even though it uses a more neutral yeast, but then makes up for it with orange peel and coriander. Hoegaarden is the original, but there are many more examples you could try.

\n\n

Belgian beer in general is sweet and low on bitterness. Some good ones to try: Westmalle Trippel, Barbar, Chimay White, La Trappe (legally Dutch), Rochefort, St Bernardus. All of these are fantastic beers that sound like they should appeal to your friend.

\n", "OwnerUserId": "1125", "LastActivityDate": "2014-12-17T20:03:05.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2139"}} +{ "Id": "2139", "PostTypeId": "1", "AcceptedAnswerId": "2140", "CreationDate": "2014-12-18T04:18:37.103", "Score": "10", "ViewCount": "396", "Body": "

Beer Advocate used to allow you to give an overall rating for a beer, rather than giving score breakdowns (appearance, smell, mouth feel, etc). They have recently changed this and you can only supply a rating if you rate all the factors. That makes sense if you're a site owner trying to gather better data, but it's not so great for the casual beer-drinker who just wants to keep track of what she's had and how she liked it.

\n\n

The value of a site like Beer Advocate, rather than just keeping a file on disk, is having access to the descriptions (including categories like \"winter warmer\" and \"amber ale\" and suchlike), other items from those breweries (useful when looking at a menu, or shopping), and, out of curiosity, the variance between my rating and the average for people who rated that beer. Also, I want to be able to see and add ratings from multiple locations, so if I just used a file it would have to live in the cloud somewhere. Alternatively, I'd be happy to use an app on my Android phone.

\n\n

What's the easiest way for me to track what I've had, with information about the beers (and breweries) and my own ratings? I don't care if my ratings are shared with the world; I'm happy to contribute them if that's helpful, but I'm looking for a way that I can track information about my own tastes.

\n", "OwnerUserId": "43", "LastActivityDate": "2015-07-20T17:12:55.070", "Title": "Is there a site (or app) like Beer Advocate that lets me give just an overall rating?", "Tags": "buying resources recommendations", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2140"}} +{ "Id": "2140", "PostTypeId": "2", "ParentId": "2139", "CreationDate": "2014-12-18T14:49:32.950", "Score": "7", "Body": "

RateBeer is the other big rating site. It also has a 5 point rating system but you can also just \"tick\" beers 1-5 stars, which may be helpful for you.

\n\n

There's also Untappd which is pretty popular. It operates more on a 4square-style check-in system and has a lot of social features as well as badges for various types of beer, origins, location, timing, etc. But their rating system is a simple 1-5 stars with an optional notes field and location tagging. They also include a recommendation system but it doesn't take locality into account making it largely useless since the majority of the beers they'll recommend are impossible to find in your area.

\n\n

There are a few smaller ones kicking around as well. A buddy of mine did littlebeerbook.com, which is fairly up your alley based on the description. However it's pretty rough on mobile, and even outside of that the User Experience isn't the best. Work is being done, but it's slow going with day jobs and families and all that. So if you don't mind the interface, it'll track what you want pretty well.

\n", "OwnerUserId": "268", "LastActivityDate": "2014-12-18T14:49:32.950", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2141"}} +{ "Id": "2141", "PostTypeId": "2", "ParentId": "268", "CreationDate": "2014-12-19T11:11:36.550", "Score": "3", "Body": "

Beer is fermented typically (but not exclusively) via yeast. When live beer yeast, actually a fungus, is present, it creates a hostile environment for (potentially harmful) bacteria reducing their prevalence. Therefore, fresh beer could be considered a safer alternative to say, river water.

\n", "OwnerUserId": "2600", "LastActivityDate": "2014-12-19T11:11:36.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2142"}} +{ "Id": "2142", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-12-19T21:35:53.603", "Score": "1", "Body": "

San Francisco Locations:

\n\n

Anchor Brewing Company, the oldest brewing company in San Francisco has tours and tastings at their facilities. Tip: you have to book about 2-3 months in advance to get a spot, since this experience is pretty popular among locals. The experience used to be completely free, though they just started charging $15 per person earlier this year.

\n\n

21st Amendment Brewery has great seasonal beers and their pub has a great atmosphere a few blocks from AT&T Park. One of my favorites is the Hell or High Watermelon Beer (usually distributed during the summer or early fall)

\n\n
\n\n

Specific beers:

\n\n

Highest rated local San Francisco beers

\n", "OwnerUserId": "2603", "LastEditorUserId": "5064", "LastEditDate": "2016-12-19T01:01:58.643", "LastActivityDate": "2016-12-19T01:01:58.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2143"}} +{ "Id": "2143", "PostTypeId": "2", "ParentId": "1038", "CreationDate": "2014-12-19T22:12:06.687", "Score": "2", "Body": "

The biggest difference between Singels, Dubbels, Trippels, and Quads is ABV.

\n\n

The (purported) origin of these come from the Trappist Monasteries of Belgium where illiteracy was high. Because a lot of people couldn't read the kind of beer that was being brought to them, the barrels were marked with Xs. One X meant, low ABV (think <=3% ABV like Miller or Bud) four Xs meant super strong (along the lines of >10% ABV).

\n\n

These are the BJCP Guidelines. They go into Belgian Doubles and Tripels on page 27 (actual pg 27 not e-page 27). Discerning between the styles is largely based on these kinds of guidelines, not on how they are fermented/conditioned/etcetera.

\n", "OwnerUserId": "22", "LastActivityDate": "2014-12-19T22:12:06.687", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2144"}} +{ "Id": "2144", "PostTypeId": "2", "ParentId": "1067", "CreationDate": "2014-12-21T11:49:02.200", "Score": "-2", "Body": "

if you use the Google translator - here's a description of one of these diets пивная диета

\n", "OwnerUserId": "2604", "LastActivityDate": "2014-12-21T11:49:02.200", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2145"}} +{ "Id": "2145", "PostTypeId": "2", "ParentId": "268", "CreationDate": "2014-12-21T21:22:17.403", "Score": "3", "Body": "

Yes, it's true. There's been big debates over to what degree they were aware that water caused diseases while beer did not, but a big factor was that beer was seen as nourishing (which it is) while water was not. In an age where getting enough to eat was a recurring challenge, this contributed to making people prefer beer/wine. In practice it seems people preferred alcoholic drinks for both reasons.

\n\n

Generally, people would drink small beer as an everyday drink against thirst (and that's what children got, too), and beer proper for celebrations. That's actually a Finnish saying: \"small beer for work, beer for celebration\" (\"Kaljalla työt tehdään, oluella pidot pidetään\").

\n\n

Small beer was generally made together with beer. That is, they'd do a mash, and the first wort that's run off has the most sugar. As you keep pouring water through, obviously more and more sugar is washed out of the malts, and the wort keeps getting waterier. Eventually they'd stop, and make beer from the wort. Then they'd continue, and run off a much weaker wort from the remaining sugar in the malts. This was the small beer. Many places they would even do a third beer, which was so weak it would barely ferment. There were also other grain-based drinks, made from flour or bread, and typically sour and just barely alcoholic. Kvass is the best-known example, but there were many others.

\n\n

Weak beer as an every-day drink continued for much longer than you might think. It was the introduction of tea/coffee that first started displacing it. Then, later, higher availability of milk, then juices and soft drinks continued the process. On Gotland, off the coast of Sweden, children were drinking weak beer as late as the 1960s. I lack data for exactly when this ended elsewhere, but it was long, long after the Middle Ages.

\n", "OwnerUserId": "1125", "LastActivityDate": "2014-12-21T21:22:17.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2146"}} +{ "Id": "2146", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2014-12-22T06:48:44.063", "Score": "0", "Body": "

Full Sail Brewery in Hood River, Oregon is excellent! There are actually several pubs I'm that area with awesome selections.

\n", "OwnerUserId": "2605", "LastActivityDate": "2014-12-22T06:48:44.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2147"}} +{ "Id": "2147", "PostTypeId": "2", "ParentId": "1067", "CreationDate": "2014-12-22T15:22:17.100", "Score": "1", "Body": "

Light beer is the closest thing to diet, but here's the catch: The majority of caloric content in beer is from alcohol. If you want really low calories you're going to be looking at really low alcohol beer.

\n\n

Not really a win. Best thing to do is try to cut calories elsewhere, because at that point you're drinking tasteless light beer and not even getting the proper buzz.

\n", "OwnerUserId": "2607", "LastActivityDate": "2014-12-22T15:22:17.100", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2148"}} +{ "Id": "2148", "PostTypeId": "2", "ParentId": "1038", "CreationDate": "2014-12-22T15:26:25.957", "Score": "2", "Body": "

Bottle fermentation is somewhat of a misnomer, as the term should really pertain to any fermentation done in the final packaging, in tap beer's case that's the keg. Pretty much any unfiltered beer (not just tripels) will have sugar added to continue to ferment in the bottle/keg.

\n\n

If you think the bottled beer tastes better there's a simple explanation that isn't exactly pretty. There's a good chance your bar is not cleaning its tap lines regularly enough. This messes with the taste and can add some funk.

\n\n

Edit: It could also simply be due to the beers age. If a bar regularly rotates out kegs it could be much fresher, versus a store where a bottle might sit in storage for a few extra months. In the case of a bottle-conditioned beer the older bottle will taste better than a newer keg.

\n", "OwnerUserId": "2607", "LastEditorUserId": "2607", "LastEditDate": "2014-12-22T17:18:02.117", "LastActivityDate": "2014-12-22T17:18:02.117", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2149"}} +{ "Id": "2149", "PostTypeId": "2", "ParentId": "1053", "CreationDate": "2014-12-22T17:32:36.533", "Score": "1", "Body": "

There actually are a lot of really high-quality beers that are extremely well-distributed. The Trappists aside from Westvleteren and the new ones from the past couple years are available all over the place as well as a lot of classics like Weihenstephaner or Schneider. You would be surprised at just how well you can do simply trying out anything you haven't seen a commercial for.

\n\n

You also need to keep in mind personal taste. The BeerAdvocate list is NOTORIOUSLY skewed towards IPAs, Stouts, Sours, Seasonals, Limited Releases and overall big beer. If you find yourself mostly enjoying things outside those categories then their list is certainly not for you. Furthermore there is certainly some inflation to a lot of the ratings, if there is a beer fewer people can get then there are fewer ratings and the law of averages loses some influence. Plus there's the beer hipster effect where people feel safer about having strong opinions on beers nobody else has had.

\n\n

My advice would be to simply get a couple of friends, buy a bunch of 6-packs and share the beer and try different styles from whatever is available locally. Figure out what style your favorite beers are and then go into some research about the best beers of that style and see what you can do from there. Even if you do find a top 100 beers available in the exact town you live in it won't be catered to your tastes.

\n", "OwnerUserId": "2607", "LastActivityDate": "2014-12-22T17:32:36.533", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2150"}} +{ "Id": "2150", "PostTypeId": "2", "ParentId": "1067", "CreationDate": "2014-12-22T22:08:22.487", "Score": "0", "Body": "

Something like Miller 64 is probably what you are looking for. But alcohol content is quite proportional to caloric content.

\n", "OwnerUserId": "2608", "LastActivityDate": "2014-12-22T22:08:22.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2151"}} +{ "Id": "2151", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-12-23T18:06:52.473", "Score": "0", "Body": "

Sell by dates tend to be very conservative to cover peoples asses, but in reality many beers will actually get better past their sell-by date, particularly unfiltered (cloudy) beers.

\n\n

Beers like any of the light lagers should be fine for a year or two and not taste significantly worse provided they are stored properly.

\n\n

Improper storage would be somewhere with warm or fluctuating temperature or where the beer is exposed to light. Light is what \"skunks\" beer, and can literally synthesize the same chemicals that makes skunks smell.

\n\n

The color of the bottle has a big effect on how rapidly this can occur. Clear glass provides no protection, I would not drink Corona that was left in the sun for even just one day (not that I wouldn't avoid it anyway). Green provides some, but is not much better (blocks somewhere around 40% of light). Brown is the best blocking around 90% of light, but completely opaque materials are the only things that are truly effective. Some breweries like Sam Adams even go the extra mile and have extra tall sides on their six packs to block light completely.

\n\n

In short, old beer is not dangerous.\nSome styles age well (belgian styles, german wheat, unfiltered styles).\nOthers do not (light lagers, pale ales, filtered beers).\nLight is the real enemy.

\n", "OwnerUserId": "2607", "LastActivityDate": "2014-12-23T18:06:52.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2152"}} +{ "Id": "2152", "PostTypeId": "2", "ParentId": "954", "CreationDate": "2014-12-23T19:19:26.217", "Score": "4", "Body": "

Wandering Aengus Ciderworks of Salem, OR has a chili cider, though it might be only available on tap. Their website does say that their bottles are now being distributed in So Cal.
\nhttp://anthemcider.com/?p=50

\n\n

https://untappd.com/b/wandering-aengus-ciderworks-anthem-chili/405571

\n", "OwnerUserId": "2608", "LastActivityDate": "2014-12-23T19:19:26.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2153"}} +{ "Id": "2153", "PostTypeId": "1", "AcceptedAnswerId": "3191", "CreationDate": "2014-12-24T14:21:48.403", "Score": "5", "ViewCount": "1118", "Body": "

I discovered craft beers some years ago, but I've been always been amazed by Belgian brewing culture, which is so different from German and Great Britain traditions.

\n\n

Why is it that beer has such important and diverse roots in Belgium? What are the historical reasons?

\n", "OwnerUserId": "2585", "LastEditorUserId": "3671", "LastEditDate": "2015-01-10T11:22:46.200", "LastActivityDate": "2015-03-07T23:23:51.417", "Title": "Why does Belgium have such a rich and profound brewing culture?", "Tags": "history", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2154"}} +{ "Id": "2154", "PostTypeId": "2", "ParentId": "2153", "CreationDate": "2014-12-24T15:14:04.927", "Score": "0", "Body": "

Trappist Monks sold beer to support the monasteries. There is no order for the monks to abstain from alcoholso they use the money raised to support the monks and the abbey in which they live. People really liked the unique flavors of the Belgium Trappist Monk's beer and it became its own style.

\n\n

Most of the time you will see home-brewers air-lock their fermentors so wild yeast cannot spoil the beer. The strains of yeast that have been cultivated for centuries inside the abbey walls have given the Belgian beers their unique flavors.

\n", "OwnerUserId": "22", "LastActivityDate": "2014-12-24T15:14:04.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2155"}} +{ "Id": "2155", "PostTypeId": "2", "ParentId": "2153", "CreationDate": "2014-12-24T15:31:08.920", "Score": "3", "Body": "

Brewing in monasteries did a lot to keep brewing more of a passion thing than big business. The monks of the Trappist monasteries were largely concerned with just keeping afloat and contributing to charitable works than expanding and making huge piles of cash so their brews don't need to worry about using using malts that are too expensive or things like that. It stopped adjunct malts from showing up in the brews and watering them down.

\n\n

By the time worldwide distribution became a thing their own styles had been engrained for so long that high quality beer had become a tradition that nobody was willing to leave behind. Sure there are some crappy beers like Stella Artois, but the vast majority of Belgian beer is awesome stuff like Chimay, Corsendonk or Rochefort now.

\n\n

There's also a pretty big culture there of pairing beer with food and even cooking with beer. Its just deeply engrained in every day life for them, not just as a way to get drunk and be merry but of simply enjoying your breakfast.

\n", "OwnerUserId": "2607", "LastActivityDate": "2014-12-24T15:31:08.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2156"}} +{ "Id": "2156", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2014-12-26T19:07:52.860", "Score": "4", "Body": "

I've drinked beers that were 2 years past the sell by date. They tasted normal (although i´m not a beer sommellier) and nothing bad happened to me, as other answers have pointed out.

\n\n

If i were you I would see this as a unique oportunity to test how 7 years of bottle aging change a Lite American Lager. Buy a brand new Bud Light, refrigerate it to the same temperature, open both bottles, pour into equal glasses and see. If they look similar (same color and foam) and the old one doesn´t smell bad, give it a small sip. If it tastes normal, there's no reason for you not to try it!\n In case you really compare them, can you share with us the differences in color, smell and taste between the new and the 7-years old Bud Light?

\n", "OwnerUserId": "2609", "LastActivityDate": "2014-12-26T19:07:52.860", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2157"}} +{ "Id": "2157", "PostTypeId": "2", "ParentId": "2153", "CreationDate": "2014-12-27T03:22:15.053", "Score": "1", "Body": "

A couple other things contribute to the Belgian beer culture:

\n\n
    \n
  • They didn't have to follow the (pointlessly restrictive) Reinheitsgebot, thus allowing the use of fruit, spices, Belgian 'candi' sugar (and probably other things).
  • \n
  • It is said that the wild yeasts in certain parts of Belgium make great beer.
  • \n
\n\n

Entschuldigung an Deutschland.

\n", "OwnerUserId": "1289", "LastActivityDate": "2014-12-27T03:22:15.053", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2158"}} +{ "Id": "2158", "PostTypeId": "1", "CreationDate": "2014-12-24T00:00:38.473", "Score": "11", "ViewCount": "25212", "Body": "

Some of my college friends like to tell me that refrigerating beer, then taking it out (allowing it to warm up), and re-refrigerating it causes the beer to lose its taste. I've even known some to throw out beer that has gone through this scenario.

\n\n

I've looked around on the internet a bit, and there doesn't seem to be any real evidence to the claim. I found an article on Beer Advocate, where people seem to agree that:

\n\n
    \n
  1. UV light exposure causes negative effects (only a real problem for bottled beer).
  2. \n
  3. Extreme fluctuations in temperature are generally not good for the beer.
  4. \n
  5. Bottled beers can sometimes re-ferment at higher temperatures, causing over-carbonation.
  6. \n
\n\n

Nothing conclusive.

\n\n

My question is: does refrigerating, unrefrigerating, and re-refrigerating beer negatively affect the taste of beer?

\n", "OwnerUserId": "2632", "OwnerDisplayName": "Chris Cirefice", "LastEditorUserId": "2639", "LastEditDate": "2015-01-04T14:58:29.780", "LastActivityDate": "2015-01-04T14:58:29.780", "Title": "Does re-refrigerating affect the taste of beer?", "Tags": "taste temperature", "AnswerCount": "2", "CommentCount": "7", "FavoriteCount": "1", "ClosedDate": "2015-01-04T15:00:23.657", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2159"}} +{ "Id": "2159", "PostTypeId": "2", "ParentId": "2158", "CreationDate": "2014-12-29T22:15:39.423", "Score": "3", "Body": "

Beer is meant to be stored in a cool, dark place. Light is indeed bad for it and causes \"skunking\" which produces literally the same chemical skunks produce.

\n\n

Lots of times re-refrigerating beer implies the beer was left out. Was it left out in a place exposed to light? Particularly sunlight? It may not be the fact that it was exposed to higher temperatures that was the culprit, but the light. Warmer temperatures certainly seem like the most obvious offenders for a sub-par beer, but light is far more dangerous.

\n\n

Temperature for the most part should not be an issue. Anything from like 32-75 F should not be an issue, although somewhere between 45-55 F is the ideal cellaring temperature. To break the upper limit of safe temperatures pretty much requires you to leave the beer outdoors during a hot summer where it will likely be joined by the bigger threat of light.

\n\n

Long story short: cellaring temperatures are for long-term (12 months+) storage and anything between freezing and high-end room temperature shouldn't have any adverse effects if stored someplace dark. The idea that beer needs to remain ice-cold from the moment the yeast is added is a bunch of BMC marketing BS.

\n", "OwnerUserId": "2607", "LastActivityDate": "2014-12-29T22:15:39.423", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2160"}} +{ "Id": "2160", "PostTypeId": "1", "CreationDate": "2014-12-31T00:17:05.770", "Score": "2", "ViewCount": "1124", "Body": "

I'm a beer keg newbie. I'm on my third keg and i am still having problems. I tapped the keg on Christmas Day after leaving it for 24 hours. Temp is 39, pressure is 12 running a 5ft line. It poured great for the first day, with the occasional foamy pull. The next day we noticed the keg was leaking from the coupler. I cleaned it up reconnected the coupler and had little pressure. I added an o ring and let it sit. The pressure came back and it doesn't leak, but every pull is 90% foam. I let it sit for another day, dropping the pressure to 10 and releasing the pressure value on the coupler. Still foam...what gives...it was working well.\nCan anyone give me some suggestions.

\n", "OwnerUserId": "2633", "LastActivityDate": "2014-12-31T21:14:11.187", "Title": "was working great, now all foam", "Tags": "foam", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2161"}} +{ "Id": "2161", "PostTypeId": "1", "AcceptedAnswerId": "2170", "CreationDate": "2014-12-31T19:19:57.697", "Score": "5", "ViewCount": "5486", "Body": "

I just saw a golden stout, I thought that stouts had to be dark and use roasted malts. What does a golden stout taste like? The same as a stout minus the color?

\n", "OwnerUserId": "1547", "LastEditorUserId": "2648", "LastEditDate": "2015-01-05T15:36:18.843", "LastActivityDate": "2015-01-22T00:29:09.657", "Title": "What exactly is a golden stout?", "Tags": "stout", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2162"}} +{ "Id": "2162", "PostTypeId": "2", "ParentId": "2158", "CreationDate": "2014-12-31T20:20:43.720", "Score": "1", "Body": "
\n
    \n
  1. UV light exposure causes negative effects (only a real problem for bottled beer).
  2. \n
\n
\n\n

UV light has a photochemical impact on hops. This causes it to have a flavor and aroma of a skunk. Brown bottles help lower the amount of UV light that can get to the beer, and with cans this is a non-issue.

\n\n
\n
    \n
  1. Extreme fluctuations in temperature are generally not good for the beer.
  2. \n
\n
\n\n

Extreme temperature fluctuations could impact the flavor of any drink, but most likely will be too subtle to notice.

\n\n
\n
    \n
  1. Bottled beers can sometimes re-ferment at higher temperatures, causing over-carbonation.
  2. \n
\n
\n\n

Yeast needs sugars to ferment, by the time the bottle is on the shelves, the fermentable sugars are completely fermented and the yeast is in a dormant stage. However, this doesn't mean yeast cannot still affect the flavor of the beer. If the beer is bottle conditioned, then it still has live yeast cultures and extra care should be taken to keep it below high temperatures (80+ F.) for long periods of time. You should not be concerned of it exploding (over carbonating), that only happens in homebrews where they added too much sugars or didn't sanitize everything properly.

\n\n

The majority of commercial beers are filtered to such a high degree that there is little to no live yeast to be concerned about. Some beers are even pasteurized to kill any remaining yeast, removing the possibility of it affecting flavor and extending its shelf life.

\n\n
\n\n

Bottom line is, avoid temperature fluctuations as much as you can, but its not something you should throw away perfectly good beer for. If you are a supertaster that can detect the subtle flavor changes, give it away to one of the 75% of us who are not.

\n\n
\n\n

For a full scientific study with facts and figures way over my head you can see: Stability profile of flavour-active ester compounds in\nale and lager beer during storage

\n", "OwnerUserId": "2639", "LastEditorUserId": "2639", "LastEditDate": "2014-12-31T21:38:10.567", "LastActivityDate": "2014-12-31T21:38:10.567", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2163"}} +{ "Id": "2163", "PostTypeId": "2", "ParentId": "2160", "CreationDate": "2014-12-31T21:14:11.187", "Score": "3", "Body": "

I was in a similar situation as you. I fixed it by venting the keg completely, then sealing everything up and attaching the gas line. I left the pressure off at first though. I slowly rolled it up to about two pounds and poured. I continued to increase the pressure very slowly and now keep it around 8 pounds. It sounds like you are over pressurized when serving.

\n", "OwnerUserId": "2640", "LastActivityDate": "2014-12-31T21:14:11.187", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2164"}} +{ "Id": "2164", "PostTypeId": "1", "CreationDate": "2014-12-31T23:17:53.783", "Score": "7", "ViewCount": "7650", "Body": "

I have a corny (5 gal) keg of homebrew, already carbonated, that's been aging at room temperature. I'd like to bottle it off soon, but in my experience that works best when the beer is in the 45-50 degree Fahrenheit range.

\n\n

Tonight the weather forecast for my area says it will get down to 29, and tomorrow it will be right around 45. I'm inclined to just stick the keg on the fire escape tonight and leave it until the afternoon. I'm not really worried about freezing, given the alcohol content I understand it should be able to go down to 28 or 29 without trouble (correct me if I'm wrong here).

\n\n

I can't seem to find any reliable resources about air cooling, just recommendations for folks trying to cool beer as fast as possible. Will the keg be cool enough tomorrow to bottle?

\n\n

EDIT: The forecast now says it could get as low as 24, so the freezing question may also be an issue. The keg is outside, so we'll see what happens.

\n", "OwnerUserId": "224", "LastEditorUserId": "224", "LastEditDate": "2015-01-01T02:48:02.473", "LastActivityDate": "2015-03-08T16:42:34.160", "Title": "How long does it take to cool a keg of beer?", "Tags": "keg cooling", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2165"}} +{ "Id": "2165", "PostTypeId": "2", "ParentId": "2139", "CreationDate": "2015-01-01T00:45:35.080", "Score": "1", "Body": "

Beer Citizen allows you to rate Appearance, scent, taste and mouthfeel. You can look at individual reviews or get an average rating from everyone who has reviewed the beer. Each beer has brew facts and show you similar beers to the one you are reviewing. \nGreat app

\n", "OwnerUserId": "2633", "LastActivityDate": "2015-01-01T00:45:35.080", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2167"}} +{ "Id": "2167", "PostTypeId": "1", "AcceptedAnswerId": "2169", "CreationDate": "2015-01-01T16:03:50.843", "Score": "2", "ViewCount": "97", "Body": "

Does Sam Adams sell its 'White Christmas' beer in six-packs?

\n\n

I've only seen it included as part of its holiday sampler 12-pack. Never as its own standalone six-pack.

\n\n

If not, why not?

\n", "OwnerUserId": "2644", "LastActivityDate": "2015-01-02T19:42:09.323", "Title": "Does Sam Adams sell its 'White Christmas' beer in six-packs?", "Tags": "distribution", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2169"}} +{ "Id": "2169", "PostTypeId": "2", "ParentId": "2167", "CreationDate": "2015-01-02T19:42:09.323", "Score": "1", "Body": "

Yup, they do!

\n\n

You can find it online at Binny's, for example ($9.99).

\n", "OwnerUserId": "2648", "LastActivityDate": "2015-01-02T19:42:09.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2170"}} +{ "Id": "2170", "PostTypeId": "2", "ParentId": "2161", "CreationDate": "2015-01-02T19:51:09.653", "Score": "6", "Body": "

Sort of.

\n\n

These stouts my also be known as \"Blonde\" or \"White\" in additional \"Golden\". Supposedly the idea first came about in 2007, when it was joked that Stone should brew a Golden Stout, it being a sort of oxymoron. However, it appears that now it exists. Stone Brewmaster Mitch Steele decided to create it, a light colored beer which had the flavors of a stout,

\n\n
\n

“To achieve the qualities of a stout, we relied on our prior experience brewing with coffee to pull flavors from the beans without affecting the hue of the beer,” explains Steele. “As the beer warms and opens up, the chocolate adds another level of complexity and helps build the traditional flavors typically associated with dark beers. It’s been really fun to see a prank with questionable viability become a reality.”

\n
\n\n

While this isn't the only example, it's one of the more notorious ones that serves well to explain the idea as well as how the flavoring is achieved.

\n", "OwnerUserId": "2648", "LastEditorUserId": "2648", "LastEditDate": "2015-01-02T20:05:01.747", "LastActivityDate": "2015-01-02T20:05:01.747", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2171"}} +{ "Id": "2171", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2015-01-03T00:48:15.627", "Score": "1", "Body": "

Stone Smoked Vanilla Porter would be fun to try. The recipe was from one of their female brewers, which might pique her interest, too. http://www.beeradvocate.com/beer/profile/147/38446/

\n\n

A friend of mine who doesn't really like beer (even chocolate stouts) tried the Framboise de Amorosa and really liked it. http://lostabbey.com/beer/framboise-de-amorosa

\n", "OwnerUserId": "2649", "LastActivityDate": "2015-01-03T00:48:15.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2172"}} +{ "Id": "2172", "PostTypeId": "1", "AcceptedAnswerId": "3186", "CreationDate": "2015-01-03T21:24:09.577", "Score": "4", "ViewCount": "173", "Body": "

I am brewing a batch of Amber Ale right now and I was wondering if it would be possible to put something in with the wort while it is fermenting in order to change it's flavor. Could I add in like orange extract or something along those lines in order to get a citrus flavor in the beer? Is there anything I can do or should that have happened when I was boiling the wort in the first place? On a different note, would it be possible to raise the alcohol percentage of the beer/ make it stronger in this stage?

\n", "OwnerUserId": "1104", "LastActivityDate": "2015-01-12T19:38:57.797", "Title": "Is it possible to change the outcome of a beer in the fermentation stages?", "Tags": "brewing", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2173"}} +{ "Id": "2173", "PostTypeId": "2", "ParentId": "2172", "CreationDate": "2015-01-04T08:33:22.127", "Score": "2", "Body": "

yes, not really and yes.

\n\n
    \n
  1. It's quite popular to add flavors, especially spices, after\nfermentation. The ideal method is to make extract of the spice, try\nit in a sample of the finished beer, and add the right amount to get\nthe flavor level you want. Adding it during fermentation makes the\nend result harder to predict (especially if the CO2 scrubs out\nvolatile flavor compounds) but it is not uncommon to dry hop while\nthe beer is near the end of fermentation.

  2. \n
  3. The only special thing to do on brew day is make sure the beer style is suitable for the spice that you want.

  4. \n
  5. For barleywine some people will continue to add fermentables over a long time, apparently it keeps the yeast happier.

  6. \n
\n", "OwnerUserId": "1289", "LastActivityDate": "2015-01-04T08:33:22.127", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2174"}} +{ "Id": "2174", "PostTypeId": "2", "ParentId": "2161", "CreationDate": "2015-01-05T15:40:21.957", "Score": "2", "Body": "

In addition to @john-m's answer about the modern white stouts which are paleish with coffee/chocolate flavors, there historically were pale stouts which predated our modern concept of stout as a dark beer with chocolate/coffee flavors.

\n\n

Check Zytophile for some historical context. He goes on for a bit but the main takeaway is that from the early 1700s to at least the 1850's there are ads, brewing records, mentions in manuals, etc of \"Pale Stout\". Basically because:

\n\n
\n

For 150 years or so after the word stout first began being applied to beer it was used simply as an adjective to mean “strong”.

\n
\n\n

Also a little bit worth reading at Shut up about Barclay Perkins, though in this case the comments section is a bit more interesting than the body of the post, specifically this comment by Ron Pattinson:

\n\n
\n

What makes it a Stout? The brewery called it one.

\n \n

What we think of today as Stout was originally called Brown Stout. A strong beer brewed from brown malt. Pale Stout is the same thing, just brewed from pale malt. It's a very 18th-century way of defining beers.

\n
\n", "OwnerUserId": "268", "LastActivityDate": "2015-01-05T15:40:21.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2175"}} +{ "Id": "2175", "PostTypeId": "2", "ParentId": "2164", "CreationDate": "2015-01-05T15:58:06.133", "Score": "2", "Body": "

I know I'm a few days late but the worry I'd have leaving a keg outside in cold weather is the pressure changes. CO2 absorbs more in colder conditions, but if anything freezes, even partially, CO2 gets driven out of solution. Normally when you refrigerate kegs indoors they're hooked up to gas, so as pressure in the headspace drops it's less likely the keg will unseal itself. Also, if the keg did freeze a bit the CO2 being forced into the headspace could conceivably go over the pressure limits of the keg, depending on how carbonated it was to begin with among other things.

\n\n

Think of leaving a bottle or can in the freezer to chill it quickly then forgetting about it. Odds are instead of a beersicle you got beer and glass sprayed all over the inside of your icebox. It's anecdotal, I'll admit, but I've seen it happen so I wouldn't risk a keg and either leave it outside uncarbonated or chill it in a temperature controlled fridge.

\n\n

Anyway, this is long since past so my fear mongering is moot. Let us know how it went for you. You should be able to leave and accept an answer to your own question and it would be good for the site.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-01-05T15:58:06.133", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2176"}} +{ "Id": "2176", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2015-01-05T16:08:43.753", "Score": "0", "Body": "

If you really want to get someone into beer you should avoid gimmicky fruit beers. At that point you aren't really appreciating the beer for the beer in my opinion, and there are plenty of options out there where fruity tastes play a role, but aren't artificial or dominating. But really what you want to do is get her exposed to some top-notch examples of the main styles and get an idea of what she likes and go from there. If we're skipping sours, pale ales and chocolate beer then here are some I always try to hit on with newbies:

\n\n

Witbier - Light, Belgian wheat beer with orange peel and coriander. Awesome summer beer and one of the most accessible styles. Fruity flavor is just an accent more than the point of the beer.\nGreat examples: Hacker Pschorr, Hoegaarden, St. Bernardus

\n\n

Dubbel - Dark, Belgian ales brewed with complex blends of malts resulting in deep, rich flavors and notes of dark fruits and spices despite lacking any of these ingredients.\nGreat Examples: Cordendonk Abbey Brown Ale, Chimay Red, Rochefort 8

\n\n

German Wheat - Lots of styles within this, but these tend to be a bit heavier than witbier with more of a spicy character and less citrus. These range from the extremely light weissbier to dunkleweizens to the heaviest weizenbocks.\nGreat Examples: Weihenstephaner Weiss/Dunkel/Vitus, Schneider Weiss

\n\n

Bock - Traditionally the heaviest of lagers, dark and complex but more mild than stouts. Little hop character with complex malts.\nGreat Examples - Weihenstephaner Korbinian, Ayinger Celebrator Dopplebock

\n\n

Others I might try are a good Coffee Stout Narragansett, a caramel porter like the Sam Adams Holiday Porter, and if you're really striking out with all these Abita's Purple Haze is probably the best fruit-added beer out there aside from sours.

\n", "OwnerUserId": "2607", "LastActivityDate": "2015-01-05T16:08:43.753", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2177"}} +{ "Id": "2177", "PostTypeId": "1", "AcceptedAnswerId": "2178", "CreationDate": "2015-01-06T15:06:53.320", "Score": "7", "ViewCount": "1237", "Body": "

Most commonly I see glass growlers, but on various sites and at specialty shops I occasionally see variations: ones made of stainless steel or plastic for example.

\n\n

One would hope that there aren't too many negatives associated with these, but are there proven differences? Is it the same as a bottle vs. can, or does the (usually) limited time in the container make the material...immaterial?

\n", "OwnerUserId": "2648", "LastActivityDate": "2015-01-09T17:41:57.453", "Title": "Do growlers of different materials have a tangible impact on flavor?", "Tags": "growlers", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2178"}} +{ "Id": "2178", "PostTypeId": "2", "ParentId": "2177", "CreationDate": "2015-01-06T15:20:25.203", "Score": "6", "Body": "

The biggest impact tends to be the color of the container. Green and clear bottles let in more of the harmful light that spoils the beer. The darker the container, the better.

\n\n

Plastic also lends itself to being scratched if re-used (which most growlers are). Even powdered cleaners with soft cloths can scratch the plastic (if the cleaner isn't disolved well enough) and make grooves where bacteria can sit and ruin future beers.

\n\n

While it isn't the only choice: Dark Colored, glass growlers that have an air-tight seal would be the best for longevity sake.

\n", "OwnerUserId": "22", "LastActivityDate": "2015-01-06T15:20:25.203", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2179"}} +{ "Id": "2179", "PostTypeId": "2", "ParentId": "2172", "CreationDate": "2015-01-06T15:58:50.810", "Score": "1", "Body": "

Ideally you'd want to add flavors in the secondary fermentation stage (aka placing your fermented beer in a brightening tank). After your primary fermentation happens, you'd rack the beer into another clean container and let it set for longer. This would allow any of the remaining sediment to fall out of solution and make your beer less cloudy.

\n\n

This is a very common time to do things like \"Dry hopping.\" Where, in addition to adding hops in the wort-making-stage... You take (as sterile as you can get them): hops; spices; fruit; or whatever you feel like adding - place them in a sterile cheese-cloth if they would get messy/float - and then let the new mixture set until you're ready to bottle/keg.

\n\n

@Pepi is correct. Since you cannot \"clean\" a cinnamon stick, it is common practice is to make a spice extract and place it into the beer, a little at a time, until you achieve the appropriate flavor.

\n\n

You probably can add something during the primary fermentation; but, the chances that it would cause issues with the fermentation become much greater.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2015-01-12T19:38:57.797", "LastActivityDate": "2015-01-12T19:38:57.797", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"2180"}} +{ "Id": "2180", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2015-01-06T16:25:19.383", "Score": "1", "Body": "

If you get to Bend, Oregon, they have an Ale Trail connecting 14 breweries. Probably takes more than a day, but almost all breweries can be reached on foot (for insensitive european feet anyway) and it's well worth it.

\n", "OwnerUserId": "2659", "LastActivityDate": "2015-01-06T16:25:19.383", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3183"}} +{ "Id": "3183", "PostTypeId": "2", "ParentId": "2177", "CreationDate": "2015-01-09T17:41:57.453", "Score": "6", "Body": "

I've had the best luck using brown or dark glass growlers. Glass is one of the most inert food-storage materials. The effect on taste of beer from different material containers is similar to the effect that drinking water from different material containers has.

\n\n

Using metal can sometimes impart a flavor to the beer, though medical-grade (316) stainless steel should be as inert as glass, which is why it's used in a lot of brewing equipment. Not all stainless steel is up to this task, though - make sure to check which alloy the containers are made from. Some will rust over time, despite the \"stainless\" designation! Passivation of the material's inside surface is also helpful - this creates a very thin layer of metal oxide material on metals that will not react with the liquid stored inside. (The growler you linked to is passivated, for example.)

\n\n

Plastics definitely can impart a flavor into beer or other drinks, and are difficult to keep sanitized / free of scratches and bacteria. I'd avoid this where possible, though you may find it is fine for taste if you drink the beer quickly enough.

\n", "OwnerUserId": "3671", "LastActivityDate": "2015-01-09T17:41:57.453", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3184"}} +{ "Id": "3184", "PostTypeId": "2", "ParentId": "1053", "CreationDate": "2015-01-11T19:44:52.183", "Score": "1", "Body": "

If you're looking on the fly, check out NextGlass. It's a craft beer (and wine) discovery app that works by scanning labels.

\n", "OwnerUserId": "3675", "LastActivityDate": "2015-01-11T19:44:52.183", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3186"}} +{ "Id": "3186", "PostTypeId": "2", "ParentId": "2172", "CreationDate": "2015-01-11T19:58:15.630", "Score": "4", "Body": "
\n

Could I add in like orange extract or something along those lines in order to get a citrus flavor in the beer?

\n
\n\n

Yes; search Google for \"secondary fermentation additions\".

\n\n
\n

Is there anything I can do or should that have happened when I was boiling the wort in the first place?

\n
\n\n

There are flavor additions you can throw in the kettle but you'll get the most bang for your buck with (SANITIZED!) additions during fermentation. Don't think twice about an amber ale, though; wait until you have some more experience before improvising with recipes.

\n\n
\n

would it be possible to raise the alcohol percentage of the beer/ make it stronger in this stage

\n
\n\n

Again, yes and no. In theory you can add more cane sugar, but in practice it only works with yeast that are highly alcohol tolerant. (Usually Belgian; highly alcohol tolerant yeast strains usually make no secret about their properties.) The yeast used for an amber ale is most likely not tolerant enough to go very far outside the recipe, and beer that is too alcoholic for the recipe generally tastes pretty bad.

\n", "OwnerUserId": "3675", "LastActivityDate": "2015-01-11T19:58:15.630", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3187"}} +{ "Id": "3187", "PostTypeId": "1", "AcceptedAnswerId": "3188", "CreationDate": "2015-01-12T13:30:34.120", "Score": "7", "ViewCount": "3350", "Body": "

Are IBU-testing kits generally available or do you require labs and lots of equipment? Is anything available for testing my homebrew? (I am thinking of something like litmus paper)

\n", "OwnerUserId": "3678", "LastActivityDate": "2015-01-13T15:58:06.360", "Title": "How exactly is IBU measured?", "Tags": "ibu", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3188"}} +{ "Id": "3188", "PostTypeId": "2", "ParentId": "3187", "CreationDate": "2015-01-12T14:49:04.667", "Score": "4", "Body": "

Unfortunately there's no easy way to test for this at home unless you're a chemist and happen to own a gas spectrometer. However, white labs sells a testing kit for < $40 that will run a full series of labs on a sample of your beer and give you exact alcohol, IBU, diacetyl, gluten content, etc. But it requires packing up a sample of your brew and shipping it to white labs in the provided box. I don't know how long it takes since I've never done it.

\n\n

As to the process I was able to find this description at homebrewtalk.com:

\n\n
\n

A 10 mL pipet is dipped into octanol and shaken so that most of the octanol is thrown off. 10 mL of chilled beer are drawn into the pipet and transferred to a 50 mL centrifuge tube. 1 mL of 3 N HCl is added followed by 20 mL of spectrographic grade iso-octane. The tube is shaken vigorously using a wrist action shaker (though I know one guy who does this determination professionally who shakes by hand) for 15 minutes. If there is a slush in the tube, centrifuge until the iso-octane phase is separate. Pipet a couple mL into a quartz 1 cm cuvet and read against another quartz cuvet filled with iso-octane and a \"minute\" amount of octanol. The IBUs are 50 times the absorbtion at 275 nm.

\n
\n\n

Best bet for your home brewing is to pick one of the estimation formulas and note it on all your beers, then you can rank them relatively based on your perception of the IBUs calculated and can better target the amount of bitterness you want in the future. Since a lot of it depends on your equipment and the alpha acid content of the particular crop of hops.

\n\n

You might also want to pop over to homebrew.SE and ask if they know of any other test kits or have advice.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-01-12T14:49:04.667", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3189"}} +{ "Id": "3189", "PostTypeId": "2", "ParentId": "991", "CreationDate": "2015-01-12T23:12:22.743", "Score": "4", "Body": "

Check out BeerTrade. It's not specifically limited to swapping between countries, but there is no reason you couldn't organize something there. There are about 10,000 people watching that subreddit currently.

\n", "OwnerUserId": "2608", "LastEditorUserId": "2608", "LastEditDate": "2017-02-22T17:49:25.807", "LastActivityDate": "2017-02-22T17:49:25.807", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3190"}} +{ "Id": "3190", "PostTypeId": "2", "ParentId": "3187", "CreationDate": "2015-01-13T15:58:06.360", "Score": "2", "Body": "

From Ray Daniels' Designing Great Beers:

\n\n
\n

To really know the level of bitterness present in a beer, you must have a laboratory analysis performed.

\n
\n\n

For home brewing purposes, the best you can usually do is to plug the alpha acid values of the hops you're going to use into an IBU calculator such as the one from Brewer's Friend or using Beersmith to calculate the bitterness. (The alpha acid values can be found on the hops' packaging.)

\n\n

It's worthwhile to not get too wrapped up in IBU. From Daniels:

\n\n
\n

Using all these techniques … the big guys only control their bitterness to within plus or minus 2 IBU! Given that the average level of bitterness might be something like 15 IBUs, that represents an allowable variation of 13 percent in the bitterness of the product. The reason [major producers] don't sweat over the IBU inside that range is because the human palate can't detect the difference. Studies have shown that the detection threshold for bitterness is about 5 IBU. And that is for beers in the 10 to 15 IBU range. Among home and craft brewers, the sensitivity is usually less because we are used to more bitter beers.

\n
\n", "OwnerUserId": "3675", "LastActivityDate": "2015-01-13T15:58:06.360", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3191"}} +{ "Id": "3191", "PostTypeId": "2", "ParentId": "2153", "CreationDate": "2015-01-13T16:29:00.240", "Score": "6", "Body": "

When one speaks of \"Belgian brewing\", one must distinguish between two major styles of beer: the famous abbey ales produced by Trappist orders in Belgium (and now one in America), and the the saisons and bières de garde produced as inexpensive nutritional supplements and dietary staples for farm life. An interest in the history and production of these beers is best served by Phil Markowski's Farmhouse Ales and Stan Hieronymus' Brew Like a Monk.

\n\n

To touch on a few of your questions:

\n\n
    \n
  • As previously alluded, beer served a utilitarian purpose as a dietary staple and nutritional supplement for an agrarian society. Beer was frequently brewed in large batches at regular intervals in support of farm life, and the result were table beers and saisons for work during the harvest and bières de garde (loosely translated: \"beers for keeping\") to survive the winters.

  • \n
  • Abbey ales are not as varied as they initially appear. Much of the variation in beers brewed in Trappist style come from fermenting different \"runnings\" of the same batches of wort (unfermented beer); to summarize very briefly, the strength is dependent upon the sugar content which is dependent on how many times the mashed malt has been \"rinsed\". See Wikipedia's page on lautering for more details.

  • \n
  • Belgian and English brewing are actually not very dissimilar from a historical perspective, and there was quite a bit of overlap in technique between English, Belgian, and Flandrian brewers. The differences in style we perceive now (e.g. IPAs vs Flemish sours) evolved by regional taste preferences from common roots: malt-forward beers (which were originally quite sour) using the low alpha acid noble hops which thrived on the continent. Consider the similarities in taste and composition between an ESB and a dubbel.

  • \n
\n\n

In addition to the above referenced works, a quick read through the history section of Jeff Sparrow's Wild Brews should answer any remaining questions you might have about the history of Franco-Belgian beer.

\n", "OwnerUserId": "3675", "LastEditorUserId": "3675", "LastEditDate": "2015-03-07T23:23:51.417", "LastActivityDate": "2015-03-07T23:23:51.417", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3192"}} +{ "Id": "3192", "PostTypeId": "2", "ParentId": "1038", "CreationDate": "2015-01-13T16:50:43.503", "Score": "0", "Body": "

The differences in taste of bottled versus kegged tripels are more likely psychological rather than practical, as Belgian bottles tend to be expensive, rare, and exotic.

\n\n

Because the primary purpose of conditioning is to carbonate the beer, the method (bottle vs keg) used to do so is a matter of personal preference or production constraints. At this point in the production cycle, the yeast have done all they're going to do with the wort (technically referred to as a yeast's \"attenuation\") and you're left with two options that yield virtually identical results: bottle the beer with some added sugar to motivate the remaining yeast to create more CO2, or force-carbonate the beer in a keg.

\n", "OwnerUserId": "3675", "LastActivityDate": "2015-01-13T16:50:43.503", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3193"}} +{ "Id": "3193", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2015-01-14T21:28:35.880", "Score": "1", "Body": "

If you happen to pass through Ventura at all, check out Surf Brewery. They're a small brewery, not a huge selection, but they do really good IPAs. Their Black IPA and Session IPA (sometimes they call it an XPA) in particular are terrific. Pretty good prices on growlers as well.

\n", "OwnerUserId": "3690", "LastActivityDate": "2015-01-14T21:28:35.880", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3195"}} +{ "Id": "3195", "PostTypeId": "1", "AcceptedAnswerId": "3196", "CreationDate": "2015-01-15T05:45:02.543", "Score": "7", "ViewCount": "15344", "Body": "

Corona Extra is a Mexican beer that is very popular (in Australia anyway). Most people seem to like it for it's drinkability, and suitability for enjoyment in hot weather.

\n\n

Is there a name for this style of lager? Eg; I don't think it's a pilsener or dark lager.

\n\n

And what other beers are in the same style?

\n", "OwnerUserId": "3676", "LastEditorUserId": "3676", "LastEditDate": "2015-01-15T07:52:30.377", "LastActivityDate": "2016-01-04T12:53:32.913", "Title": "What style of lager is Corona? And what other beers are similar?", "Tags": "style lager classification", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3196"}} +{ "Id": "3196", "PostTypeId": "2", "ParentId": "3195", "CreationDate": "2015-01-15T08:11:16.103", "Score": "10", "Body": "

The BJCP classifies Corona Extra as a Premium American Lager, being, clear, yellow, not hoppy but with a little more body than a light.

\n\n

Assuming 'dry' isn't some radically different beer, the category would probably still be correct. BJCP draft guidelines (not official) consider putting Asahi Super Dry and Corona Extra in 2A 'International Pale Lagers' which is 'Loosely derived from original Pilsner-type lagers....'

\n\n

1MB PDF if you want to read the draft.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-01-15T08:11:16.103", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3197"}} +{ "Id": "3197", "PostTypeId": "1", "AcceptedAnswerId": "3481", "CreationDate": "2015-01-15T20:10:14.827", "Score": "4", "ViewCount": "94", "Body": "

If you had two identical brewing processes set up and left them both out for open fermentation, what would be the distance needed to create a tangible difference between the two? 10 miles? 100 miles? Anywhere with different flora/fauna or wildlife nearby?

\n\n

I'm sure that a lot of the factors are \"it depends\", but can the amount of variety between the two environments required be summarized all? It'd be interesting to see a beer that was uniformly made, then divvied up and transported to a variety of areas for localized fermentation.

\n", "OwnerUserId": "2648", "LastActivityDate": "2015-07-19T17:37:54.280", "Title": "How much is open fermentation affected by the environment?", "Tags": "fermentation", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3199"}} +{ "Id": "3199", "PostTypeId": "2", "ParentId": "904", "CreationDate": "2015-01-17T21:00:05.497", "Score": "2", "Body": "

Oficina da Cerveja, shop

\n\n

Sant’Ana LX Brewery, cerveja artisanal

\n\n

Lisboa, rua Bernardim Ribeiro 53\noficina aberto ao público apenas Terças e Quintas das 14:30 às 19 h (sem necessitar de combinar antes) http://oficinadacerveja.pt/

\n\n

The shop provides some products to home brewers.\nThe microbrewery (quite micro indeed) makes some really good brews in today’s IPA trend. During a stay with friends in september (Belgians), we bought some American Pale Ale (4,9 %) and some Rye IPA (6,8 %). Very nice.

\n", "OwnerUserId": "3697", "LastActivityDate": "2015-01-17T21:00:05.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3200"}} +{ "Id": "3200", "PostTypeId": "1", "AcceptedAnswerId": "3205", "CreationDate": "2015-01-18T16:08:04.677", "Score": "6", "ViewCount": "288", "Body": "

Are there any microbreweries in Porto?

\n\n

Are there any Port-related beer breweries in Porto? (Such as Rodenbach beers in Belgium, that have a wine-like feel.)

\n\n

What local beers (micro-brewery or not) should one look out for in Porto?

\n\n

Is Port / Porto related to Porter?

\n", "OwnerUserId": "123", "LastEditorUserId": "3671", "LastEditDate": "2015-01-20T16:38:39.823", "LastActivityDate": "2020-04-02T17:29:16.983", "Title": "Microbrewery in Porto, Portugal? Port, Porter, Porto, Portugal?", "Tags": "breweries local porter", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3201"}} +{ "Id": "3201", "PostTypeId": "1", "AcceptedAnswerId": "3274", "CreationDate": "2015-01-18T16:12:41.027", "Score": "3", "ViewCount": "175", "Body": "

Are there local breweries / microbreweries in Montreal, Canada?

\n\n

What are the specialty brews in Montreal? Is there a must-drink beer in Montreal?

\n", "OwnerUserId": "123", "LastActivityDate": "2015-02-28T15:06:29.743", "Title": "Local breweries and specialty brew in Montreal?", "Tags": "breweries specialty-beers local", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3202"}} +{ "Id": "3202", "PostTypeId": "1", "AcceptedAnswerId": "3206", "CreationDate": "2015-01-18T16:23:59.890", "Score": "5", "ViewCount": "1238", "Body": "

The four grades of Trappist beer are Enkel, Dubbel, Triple and Quadrupel. Dubbel and triple are most common and occasionally, we see quadrupel.  

\n\n

Is there a history account of how the grades were called as they are?

\n\n

But why are Enkel not seen publicly? Is there a reason for the secrecy or is it that dubbel is too light be to call a trappist?

\n", "OwnerUserId": "123", "LastEditorUserId": "1043", "LastEditDate": "2015-03-12T19:35:25.813", "LastActivityDate": "2017-12-17T15:38:24.313", "Title": "Why are Enkel trappist beers not sold publicly?", "Tags": "trappist", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3203"}} +{ "Id": "3203", "PostTypeId": "2", "ParentId": "3202", "CreationDate": "2015-01-19T05:54:34.540", "Score": "1", "Body": "

The name 'Enkel' simply isn't used anymore. Enkel means 'single', meaning it is the strength of beer made by the abbey without doing anything extra to it.

\n\n

Several (most? all?) of the Trappist abbeys sell a beer the ~6% range, dubbel and tripel, are stronger, but not double or triple alcohol content. I can only speculate as to whether anything is doubled or tripled to get those styles. Double or triple amounts of grain should give quite a bit higher alcohol than they actually have. Any Trappists on this site to explain?

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-01-19T05:54:34.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3205"}} +{ "Id": "3205", "PostTypeId": "2", "ParentId": "3200", "CreationDate": "2015-01-19T07:25:15.763", "Score": "2", "Body": "

Last question: no.

\n\n

Porter is very malty beer originated in Britain, intended to give energy through it's high calorie content. Popular at the time of it's invention among people that carry stuff, also known as 'porters'.

\n\n

Port is a red wine that is stopped in it's fermentation by addition of brandy, resulting in a drink both sweeter and stronger than wine. Long aging in barrels is required to develop nice, smooth flavors, during which time the port will be oxidized (much like sherry). A tradition associated with port, and it's aging, is to make it when a daughter is born, then serve it at her wedding.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-01-19T07:25:15.763", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3206"}} +{ "Id": "3206", "PostTypeId": "2", "ParentId": "3202", "CreationDate": "2015-01-19T14:53:54.660", "Score": "9", "Body": "

The Dubbel/Triple/Quad designations are totally separate from the Trappist label.

\n\n

The Trappists are an official Catholic religious order that follow the rules of St. Benedict, one of which states \"for then are they monks in truth, if they live by the work of their hands\". The monasteries all make goods, most commonly beer and cheese, that they sell in order to fund themselves. Several of the monasteries form the International Trappist Association in order to prevent anyone who's not actually a part of the order from using the name Trappist on their products.

\n\n

But Trappist ale isn't really a style, it's a commercial seal like \"Organic\". Both Dubbel and Tripel originated as names of specific beers brewed by Trappists at the Westmalle abbey. Dubbel coming to use in the 1850s and Tripel (1950s) being a renamed and slightly hoppier version of what the monks used to call Superbier (1930s). Quadrupel is a brand of La Trappe made at the Koningshoeven abbey, which was probably introduced some time in the 1990's. Koningshoeven Also used to market a beer named Enkel, but stopped production in 2000.

\n\n

In all cases the popularity of the beers led to imitation by other brewers which sort of turned their brand names into loose stylistic designations. It'd be like if people started imitating Stone's Arrogant Bastard and started producing their own Arrogant ale.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-01-19T14:53:54.660", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3207"}} +{ "Id": "3207", "PostTypeId": "1", "CreationDate": "2015-01-19T23:12:56.160", "Score": "3", "ViewCount": "1123", "Body": "

Can someone suggest me a beer with similar taste like Grimbergen Blanche ?

\n\n

Grimbergen is the brand name of a variety of Belgian abbey beers. Originally made by Norbertine monks in the Belgian town of Grimbergen, it is now brewed by two different breweries in Belgium and France.

\n\n

Thanks

\n", "OwnerUserId": "3703", "LastEditorUserId": "7449", "LastEditDate": "2017-12-27T04:56:55.217", "LastActivityDate": "2017-12-27T04:56:55.217", "Title": "Beer like Grimbergen Blanche", "Tags": "style recommendations belgian-beers", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3209"}} +{ "Id": "3209", "PostTypeId": "2", "ParentId": "63", "CreationDate": "2015-01-20T15:34:34.440", "Score": "1", "Body": "

While, as object88 says, it is uncommon for draught beers to use nitrogen, it is becoming more prevalent, though certainly not dwarfing CO2 draught beers anytime soon! So, it is certainly possible to remain consistent from bottle to draught, though it is less common and more costly to do so.

\n\n

Both bottled and draught beers use nitrogen to add bubbles instead of CO2 on occasion. This is more common with malty beers, say stouts and porters, than it is for hoppy beers. The nitrogen makes smaller bubbles than CO2, and creates a thick head due to the lower solubility of nitrogen in water than CO2 at the same temperatures. This creates the thicker mouthfeel that Guinness (as well as other nitrogenated stouts) are known for.

\n\n

CO2 will likely continue to be used for most hop-forward beers, since it pushes more aroma out of the beer (including the delicious hop scent!) while nitro is more about the mouthfeel and well-rounded flavor.

\n\n

A few reasons why other beers don't use the small nitrogen ball devices (\"nitrogen widgets\"):

\n\n
\n

Alcohol laws (or FDA or something?) doesn’t allow craft brewers to add\n widgets/foreign objects to alcohol (cans). Imports exempt?

\n \n

Not cost effective for small brewers, who are only just able to start\n affording canning systems.

\n
\n\n

[Source]

\n", "OwnerUserId": "3671", "LastActivityDate": "2015-01-20T15:34:34.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3210"}} +{ "Id": "3210", "PostTypeId": "2", "ParentId": "3202", "CreationDate": "2015-01-20T22:36:38.940", "Score": "4", "Body": "

The dubbel/tripel classifications come from the process of parti-gyle brewing: tripels come from the extremely high gravity (~1.080 gravity) first runnings of the wort from the lauter tun to boil pot; dubbels come from the slightly lower (~1.060 gravity) second runnings. The term \"enkel\" does not figure into Stan Hieronymus's Brew Like a Monk, but according to the Wikipedia article on \"Trappist beer\":

\n\n
\n

Enkel, meaning \"single\", is a term formerly used by the Trappist breweries to describe the basic recipe of their beers.

\n
\n\n

This makes sense, considering the classifications \"dubbel\" and \"tripel\" simply refer to different stages of brewing one recipe. Also worth noting is that the \"quadrupel\" is not a traditional Trappist beer designation.

\n", "OwnerUserId": "3675", "LastEditorUserId": "3675", "LastEditDate": "2015-03-06T03:43:15.473", "LastActivityDate": "2015-03-06T03:43:15.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3212"}} +{ "Id": "3212", "PostTypeId": "1", "CreationDate": "2015-01-21T14:46:56.533", "Score": "3", "ViewCount": "589", "Body": "

Are there any local breweries and supply shops in Istanbul? How can I find supplies for home brewing in Turkey as I want to start home brewing but I dont know where to find supplies?

\n", "OwnerUserId": "1374", "LastEditorUserId": "5064", "LastEditDate": "2016-10-21T12:25:30.287", "LastActivityDate": "2018-11-20T10:30:37.577", "Title": "Local breweries and brewery supplies in Istanbul?", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3213"}} +{ "Id": "3213", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2015-01-22T00:18:21.040", "Score": "0", "Body": "

Most of my favorites have been mentioned already, but I'd just like to reinforce how fantastic Deschutes, Stone, and Sierra Nevada are.

\n\n

Another great Oregon one I haven't seen mention of yet is Rogue. Some of their beers are pretty different, but excellent all the same.

\n", "OwnerUserId": "3707", "LastActivityDate": "2015-01-22T00:18:21.040", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3214"}} +{ "Id": "3214", "PostTypeId": "2", "ParentId": "2161", "CreationDate": "2015-01-22T00:29:09.657", "Score": "0", "Body": "

Like John M said, it's sort of an oxymoron. It is to stouts what a black IPA is to IPAs. It has similar flavor and mouthfeel to a stout, but it's the wrong color. Just like a pale ale can't really be black, a Black IPA still has the same hoppiness and lighter body of an IPA.

\n\n

And like Sloloem mentioned, \"stout\" was originally a reference to the flavor, meaning a strong beer, but today is generally understood to mean a beer brewed with dark malts.

\n\n

If you are talking about the Stone Stochasticity Master of Disguise, I recommend you get it and try it for yourself. It's excellent. I've had a lot of coffee stouts, and a lot of chocolate stouts, and in my opinion that one is executed better than any of the ones I've had.

\n", "OwnerUserId": "3707", "LastActivityDate": "2015-01-22T00:29:09.657", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3216"}} +{ "Id": "3216", "PostTypeId": "1", "CreationDate": "2015-01-23T06:54:47.337", "Score": "3", "ViewCount": "167", "Body": "

Can anyone tell me if the USA market Becks adheres to the current definition of the Reinheitsgebot (aka German Purity Law) and what grains are used?

\n\n

I ask because I swear it tastes \"ricey\" like all the other American InBev beers, like Miller etc but friends swear \"Oh no, it's made to German spec\" and I note it's made in St. Louis where the devil makes gross Anheuser Busch products.

\n\n

Thanks in advance!

\n\n
    \n
  • Sincerely, \nSomeone Get Me a Growler of Dirt Wolf
  • \n
\n", "OwnerUserId": "3713", "LastActivityDate": "2015-01-23T15:13:02.473", "Title": "Becks USA AB InBev", "Tags": "brewing breweries german-beers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3217"}} +{ "Id": "3217", "PostTypeId": "2", "ParentId": "3216", "CreationDate": "2015-01-23T15:13:02.473", "Score": "3", "Body": "

AB claims it is. In reference to it being brewed in the US,

\n\n
\n

Chris Cools, the head of the German branch of the company, says he's confident that Becks will lose none of its German character. He believes the beer's taste will be enough to ensure success. Becks is brewed according to Germany's Beer Purity Law, the Reinheitsgebot, that dates back hundreds of years and is made in exactly the same way in 15 countries.

\n
\n\n

The classic, strict interpretation of the law would require only barley to be used as a grain. There are more lax standards currently, revised as the Provisional German Beer Law (in German), but by using the name of Reinheitsgebot, it's safe to assume they are intending to convey the original restrictions.

\n\n

Sources:

\n\n\n", "OwnerUserId": "2648", "LastActivityDate": "2015-01-23T15:13:02.473", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3220"}} +{ "Id": "3220", "PostTypeId": "1", "AcceptedAnswerId": "3518", "CreationDate": "2015-01-25T19:47:22.850", "Score": "5", "ViewCount": "1047", "Body": "

I've never been onto a bar, but on TV and in films, there is often a scene when the main character is a little sullen, or stressed, and he goes into a bar, and asks for \"a strong one\". I think this means something with a high alcohol content, but what type of alcohol are they referring to? Whiskey? Gin, Beer? Vodka?

\n", "OwnerUserId": "3717", "LastActivityDate": "2017-05-26T18:01:23.367", "Title": "What do people mean when they ask for \"A strong one\"?", "Tags": "alcohol-level", "AnswerCount": "3", "CommentCount": "4", "ClosedDate": "2015-08-10T15:52:11.897", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3221"}} +{ "Id": "3221", "PostTypeId": "2", "ParentId": "3220", "CreationDate": "2015-01-26T09:33:32.693", "Score": "10", "Body": "

Generally this means the customer wants more liquor and less soda/mixer/ice/whatever than is called for in the recipe.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-01-26T09:33:32.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3226"}} +{ "Id": "3226", "PostTypeId": "1", "CreationDate": "2015-01-27T14:06:57.713", "Score": "3", "ViewCount": "669", "Body": "

Was just curious about how the manufacturing of beer is done.\nCan it be made at home also?

\n", "OwnerUserId": "2647", "LastEditorUserId": "37", "LastEditDate": "2015-01-27T21:05:59.097", "LastActivityDate": "2015-02-05T19:01:01.143", "Title": "Can a beer like Tuborg or Budweiser be made at home?", "Tags": "brewing ingredients production", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3227"}} +{ "Id": "3227", "PostTypeId": "2", "ParentId": "3226", "CreationDate": "2015-01-27T20:51:22.550", "Score": "3", "Body": "

You can certainly brew beer at home that is similar to a commercial recipe, but unlikely one that will pass for exactly the same thing. First, the exact recipes are trade-secrets, and while you can guess at the quantities of ingredients, boil times, etc, you likely won't get them exactly the same. Additionally, the ingredients you use aren't going to be exactly the same, and by far the biggest difference is likely to be in the water. The mineral content in your water will be different from theirs, for instance, and this will have an effect on the flavor.

\n\n

That said, brewing beer shouldn't be able slavishly replicating something you find on the store shelves...It should be about experimenting until you find the recipe that is perfect for your particular tastes.

\n", "OwnerUserId": "37", "LastActivityDate": "2015-01-27T20:51:22.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3228"}} +{ "Id": "3228", "PostTypeId": "1", "CreationDate": "2015-01-28T04:22:03.467", "Score": "4", "ViewCount": "586", "Body": "

As of the time this question being asked, which is the most expensive beer in the world?

\n\n

Is it available now?

\n\n

Is/was it available for purchase for general public?

\n\n

What is/was its price?

\n", "OwnerUserId": "3726", "LastActivityDate": "2015-02-28T14:14:14.057", "Title": "Which is the most expensive beer as of now?", "Tags": "history", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3229"}} +{ "Id": "3229", "PostTypeId": "2", "ParentId": "3228", "CreationDate": "2015-01-28T09:12:51.807", "Score": "2", "Body": "

Vielle Bon Secours ale I think. It's a Belgian beer brewed by Caulier. I saw the bottle in London 6 years ago, and it'll cost you around US$1,165.

\n", "OwnerUserId": "3722", "LastEditorUserId": "37", "LastEditDate": "2015-01-28T14:16:58.650", "LastActivityDate": "2015-01-28T14:16:58.650", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3230"}} +{ "Id": "3230", "PostTypeId": "2", "ParentId": "3220", "CreationDate": "2015-01-28T09:31:29.977", "Score": "1", "Body": "

It means increasing ABV percentage. ABV stands for Alcohol By Volume.

\n\n

The product was claimed to be the strongest beer made Schorschbräu's 2011 Schorschbock 57. Also a 60% ABV (beer+whiskey) by a Dutch brewery Jan Nijboer.

\n", "OwnerUserId": "3722", "LastEditorUserId": "3722", "LastEditDate": "2017-05-26T18:01:23.367", "LastActivityDate": "2017-05-26T18:01:23.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3231"}} +{ "Id": "3231", "PostTypeId": "2", "ParentId": "3", "CreationDate": "2015-01-28T09:51:46.677", "Score": "1", "Body": "

Reduced alcoholic beer has been developed by using an advanced development of the process known as vacuum distillation at low temperature (which is the most traditional and is less aggressive of any alcohol extraction methods), by using this sophisticated process the beer doesn't suffer any temperature or pressure aggression.

\n", "OwnerUserId": "3722", "LastEditorUserId": "268", "LastEditDate": "2015-01-29T14:50:56.627", "LastActivityDate": "2015-01-29T14:50:56.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3232"}} +{ "Id": "3232", "PostTypeId": "1", "CreationDate": "2015-01-28T10:06:02.247", "Score": "-3", "ViewCount": "193", "Body": "

Certain beers tend to go better with certain foods.

\n\n

What beer & food do you like to enjoy together?

\n", "OwnerUserId": "3722", "LastEditorUserId": "37", "LastEditDate": "2015-01-29T21:46:22.637", "LastActivityDate": "2015-01-29T21:46:22.637", "Title": "What is your favorite beer & food pairing?", "Tags": "pairing", "AnswerCount": "3", "CommentCount": "0", "ClosedDate": "2015-02-10T16:04:48.063", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3233"}} +{ "Id": "3233", "PostTypeId": "2", "ParentId": "3232", "CreationDate": "2015-01-28T20:38:26.027", "Score": "0", "Body": "

Well in the Czech Republic, where I live, the favorite with-beer-food would be something that we call 'vepřo knedlo zelo'.

\n\n

That means like(our special type of) dumplings, pork and cabbage. It tastes wonderful... give it a look at google images.

\n\n

Well, the quality of the Czech main-stream beer went low, so the best might be 'Podkováň', which is very difficult to buy even here in CR.

\n", "OwnerUserId": "3731", "LastActivityDate": "2015-01-28T20:38:26.027", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3234"}} +{ "Id": "3234", "PostTypeId": "2", "ParentId": "3232", "CreationDate": "2015-01-28T23:35:29.013", "Score": "1", "Body": "

My two favorite pairings are nice IPA and some Indian food and pale ale + bbq pork (ribs or shoulder).

\n", "OwnerUserId": "2608", "LastActivityDate": "2015-01-28T23:35:29.013", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3235"}} +{ "Id": "3235", "PostTypeId": "2", "ParentId": "1033", "CreationDate": "2015-01-29T04:05:09.173", "Score": "0", "Body": "

You are creating an atmosphere where the liquid inside the glass is warmer than the glass itself = condensation = watered down, affecting the beer no matter what style you drink (Certified Sommelier)

\n", "OwnerUserId": "3735", "LastEditorUserId": "73", "LastEditDate": "2015-02-10T16:03:32.497", "LastActivityDate": "2015-02-10T16:03:32.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3236"}} +{ "Id": "3236", "PostTypeId": "2", "ParentId": "3232", "CreationDate": "2015-01-29T13:24:39.077", "Score": "1", "Body": "

A black malt goes well with the char of a good steak, and would also go well with a rich, chocolaty dessert.

\n\n

A malty red ale would pair nicely with any smokey BBQ or roasted meat.

\n\n

Wheat beers pair very well with more delicate dishes such as seafood, sushi, or shellfish.

\n\n

Lastly, I find IPA's that aren't incredibly hoppy emphasize the spiciness of Mexican dishes, jerk chicken, or sausage. An IPA that is punch-in-the-mouth-hoppy will overpower just about any dish though.

\n\n
\n\n

While technically not a pairing, if you've never experienced a beer milkshake, I highly recommend them.

\n", "OwnerUserId": "798", "LastActivityDate": "2015-01-29T13:24:39.077", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3237"}} +{ "Id": "3237", "PostTypeId": "2", "ParentId": "3202", "CreationDate": "2015-01-30T23:37:00.937", "Score": "0", "Body": "

Indeed to confirm what others have said above, it is my understanding that the enkel or single bier was consumed by the monks, to prevent them from getting drunk all the time because it was weak bier, but they sold the stronger biers (dubbel, tripel etc...) to make money. Which is also why you don't see enkel biers in stores today.

\n", "OwnerUserId": "743", "LastActivityDate": "2015-01-30T23:37:00.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3239"}} +{ "Id": "3239", "PostTypeId": "2", "ParentId": "3228", "CreationDate": "2015-02-04T11:56:56.340", "Score": "2", "Body": "

Brewdog The End of Hisory were only produced in a 12 bottle limited edition with a stuffed squirrel around the bottle costing £500 per bottle. Unfortunately, they're all sold out.

\n", "OwnerUserId": "3755", "LastActivityDate": "2015-02-04T11:56:56.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3241"}} +{ "Id": "3241", "PostTypeId": "2", "ParentId": "3226", "CreationDate": "2015-02-05T19:01:01.143", "Score": "4", "Body": "

It's possible to make almost any beer at home; this hobby is known as Home Brewing and even has a Stack Exchange Community around the topic.

\n\n

Most beer falls into two major categories: ales and lagers. Ales are easier to make at home because the beer can ferment at temperatures that do not require special equipment.

\n\n

Budweiser is a lager; lager beers require additional equipment to keep the beers fermenting at very specific low temperatures. So while it is certainly possible to make beers like Budweiser at home, few choose to do so because of the added expense and level of difficulty of doing so.

\n", "OwnerUserId": "3760", "LastActivityDate": "2015-02-05T19:01:01.143", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3242"}} +{ "Id": "3242", "PostTypeId": "2", "ParentId": "3207", "CreationDate": "2015-02-05T19:07:50.513", "Score": "3", "Body": "

Grimbergen Cuvee Blanche is in the style of a Belgian Witbeer aka \"White Beer\". There are are countless similar beers that are widely available.

\n\n

The archetype for the style is named Hoegaarden. The creator of Hoegaarden, Peter Celis, created another beer in the same style named Celis White. In the U.S., the most widely available example of this style is Blue Moon Belgian Wheat.

\n\n

Belgian Wit / Belgian Wheat style of beer has gained a lot of popularity in recent years and is an exceptionally easy style to find at any well-stocked bottle shop or craft beer bar in the US. Simply ask for that style and something similar to Grimbergen Blanche should be available.

\n", "OwnerUserId": "3760", "LastActivityDate": "2015-02-05T19:07:50.513", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3243"}} +{ "Id": "3243", "PostTypeId": "2", "ParentId": "3201", "CreationDate": "2015-02-05T19:10:10.810", "Score": "2", "Body": "

Dieu du Ceil is a brewery and pub in Montreal with several unique beers available that do not get packaged and distributed. Several beers made by Dieu du Ciel are distributed widely across the US, but are usually only available in specialty stores.

\n", "OwnerUserId": "3760", "LastActivityDate": "2015-02-05T19:10:10.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3247"}} +{ "Id": "3247", "PostTypeId": "2", "ParentId": "3207", "CreationDate": "2015-02-09T10:29:31.530", "Score": "0", "Body": "

Hoegaarden is indeed the typical white beer. They now have a \"Speciale\" and limited \"Grand Cru\" which is very nice. May be hard to find depending on your location.

\n", "OwnerUserId": "1525", "LastActivityDate": "2015-02-09T10:29:31.530", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3251"}} +{ "Id": "3251", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2015-02-11T22:33:15.700", "Score": "4", "Body": "

I'm surprised no one has mentioned Glutenberg, which I have heard very good things about, although I can't find it in my area. According to their website, they have won several awards at the \"World Beer Cup\".

\n\n

Glutenberg

\n", "OwnerUserId": "3780", "LastEditorUserId": "5064", "LastEditDate": "2016-10-05T19:54:15.887", "LastActivityDate": "2016-10-05T19:54:15.887", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3254"}} +{ "Id": "3254", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2015-02-14T11:58:08.173", "Score": "3", "Body": "

you have to try \"daas beer\" it's an organic&award-winning beer (best beer at freefrom food awards 2012) good for vegan

\n", "OwnerUserId": "3722", "LastActivityDate": "2015-02-14T11:58:08.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3257"}} +{ "Id": "3257", "PostTypeId": "1", "CreationDate": "2015-02-16T18:27:29.340", "Score": "5", "ViewCount": "700", "Body": "

A beer where you take a sip, and you think, \"Oh my, that is weird! But I'll have another sip because it tastes good now\", kind of beer?

\n", "OwnerUserId": "765", "LastActivityDate": "2015-05-12T11:48:08.830", "Title": "What beer is really bitter, but has a fantastic aftertaste?", "Tags": "taste", "AnswerCount": "6", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3259"}} +{ "Id": "3259", "PostTypeId": "2", "ParentId": "3257", "CreationDate": "2015-02-17T18:23:37.060", "Score": "1", "Body": "

There are examples of sour beers where the brewery will suggest taking several sips to get over the initial shock of sourness, so your palette can adjust, allowing you to taste the other flavors. Such beers may or not be bitter (from hops).

\n\n

In the case of bitterness from hops, I think it takes more than a few sips to desensitize yourself, but maybe that's just me.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-02-17T18:23:37.060", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3260"}} +{ "Id": "3260", "PostTypeId": "2", "ParentId": "3257", "CreationDate": "2015-02-18T04:16:39.633", "Score": "5", "Body": "

For really bitter, a double/imperial IPA is the way to go. For the big bitter hop flavors, check out some of these: Stone Ruination IPA, Port Mongo IPA, Russian River Pliny the Elder, Lagunitas (pretty much any of their hoppy beers), Southern Tier 2XIPA, Cigar City Jai Alai. Many more to choose from depending on your location. Maine Beer Company and Kane Brewing are two of my favorite small breweries on the east coast.

\n\n

As Pepi mentioned, sour beers are certainly very interesting. A great start into the world of sours would be the Oud Bruins -> Monks Flemish Sour Ale, Rodenbach Grand Cru, or Liefman's Goudenband. These will run your a little more $$ but are super refreshing and really great to sip on. They open up and change flavor that longer you leave them out.

\n\n

Cheers.

\n", "OwnerUserId": "1346", "LastActivityDate": "2015-02-18T04:16:39.633", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3261"}} +{ "Id": "3261", "PostTypeId": "1", "AcceptedAnswerId": "3263", "CreationDate": "2015-02-19T05:58:56.523", "Score": "4", "ViewCount": "173", "Body": "

I have been told that once chilled, you should never let a beer come back to room temperature; what is the truth behind this?

\n\n

If again chilled, will the flavor be the same? Or how might it change?

\n", "OwnerUserId": "3803", "LastActivityDate": "2015-02-20T20:21:34.180", "Title": "Rising a cold beer to room temperature", "Tags": "taste storage cooling", "AnswerCount": "1", "CommentCount": "1", "ClosedDate": "2015-02-19T20:51:09.083", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3263"}} +{ "Id": "3263", "PostTypeId": "2", "ParentId": "3261", "CreationDate": "2015-02-19T15:22:03.537", "Score": "4", "Body": "

Temperature changes aren't great for beers, especially hoppy beers, because temperature swings of greater than 20 degrees will degrade flavor. But it takes a LOT of that to produce a noticeable effect.

\n\n

Most beer probably went through a few cycles of heating and cooling before it gets to your fridge, especially in the summer. You know, maybe cold in the brewery but warmed in the truck before cooled in the warehouse then warm in the truck again before hitting a store's cooler.

\n\n

It'd be hard to notice anything. Hoppy beers might have their big aromas fade a bit or get a less smooth bitterness. Anecdotally, some of the smoother DIPA style beers with big floral or citrus hop smells/tastes might degrade into more biting bitter territory.

\n\n

Big beers made for aging will generally be forgiving but heating and cooling them a lot might make them taste flatter or cardboardy. But again, we're talking several upon several times before anything noticeable happens.

\n\n

Long story short...it's probably not going to do anything you're going to notice chilling unopened beers back down from room temperature.

\n", "OwnerUserId": "268", "LastEditorUserId": "477", "LastEditDate": "2015-02-20T20:21:34.180", "LastActivityDate": "2015-02-20T20:21:34.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3264"}} +{ "Id": "3264", "PostTypeId": "2", "ParentId": "11", "CreationDate": "2015-02-20T16:53:50.930", "Score": "2", "Body": "

I think there is probably some truth to the general responses here. I too am a big IPA fan and when I first started drinking them, I had no major issues with hang overs, outside of the fact that they have a much higher gravity.

\n\n

My own experience over the last year is that I've witnessed a peculiar tendency to get very clogged sinuses the morning after just a handful of IPAs (really any brand). This it to say that the reaction is due to something in the beer other than the alcohol, because less hoppy beers do not offend my sinuses as much.

\n", "OwnerUserId": "3813", "LastActivityDate": "2015-02-20T16:53:50.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3267"}} +{ "Id": "3267", "PostTypeId": "2", "ParentId": "3257", "CreationDate": "2015-02-23T19:37:51.597", "Score": "0", "Body": "

Try Lagunitas Hop Stupid. Great bitter beer.

\n", "OwnerUserId": "3827", "LastActivityDate": "2015-02-23T19:37:51.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3268"}} +{ "Id": "3268", "PostTypeId": "2", "ParentId": "3207", "CreationDate": "2015-02-26T15:10:22.480", "Score": "1", "Body": "

I really like the Grimbergen Blanche and find it quite similar to the \"Blanche de Namur\", one of my favourite white beer. So I suggest you to try this one ! ;-)

\n", "OwnerUserId": "3836", "LastActivityDate": "2015-02-26T15:10:22.480", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3270"}} +{ "Id": "3270", "PostTypeId": "5", "CreationDate": "2015-02-27T13:39:16.403", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2015-02-27T13:39:16.403", "LastActivityDate": "2015-02-27T13:39:16.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3271"}} +{ "Id": "3271", "PostTypeId": "4", "CreationDate": "2015-02-27T13:39:16.403", "Score": "0", "Body": "The sensory impression of food or other substances, and is determined primarily by the chemical senses of taste and smell.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:34.497", "LastActivityDate": "2019-12-11T16:23:34.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3272"}} +{ "Id": "3272", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2015-02-27T19:34:17.020", "Score": "2", "Body": "

I know i'm late to the party here but a good beer that is a sweeter beer but not fruity, is dark but not heavy, and has Chocolate and Vanilla flavors is Koko Brown from Kona Brewing. It's a toasted coconut ale. Very very good. Not overly flavored but you definitely notice the flavoring. One of my favorites.

\n", "OwnerUserId": "3825", "LastActivityDate": "2015-02-27T19:34:17.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3273"}} +{ "Id": "3273", "PostTypeId": "2", "ParentId": "3228", "CreationDate": "2015-02-28T14:14:14.057", "Score": "3", "Body": "

as mentioned above but with more details: the most expensive beer is a 12 liter bottle of Vieille Bon Secours which was stocked in a London restaurant for over 10 years. So it's the age and uniqueness of this one bottle that make it worth around 700£ / 832€.

\n", "OwnerUserId": "3844", "LastActivityDate": "2015-02-28T14:14:14.057", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3274"}} +{ "Id": "3274", "PostTypeId": "2", "ParentId": "3201", "CreationDate": "2015-02-28T15:06:29.743", "Score": "4", "Body": "

The province of Québec is very fertile in microbreweries. Montréal being the major city, has lots to offer. A lot of the beers are available throughout the province, however some are only available at the microbrewery itself, especially seasonal beers - a good reason to visit them! here's a list of the best microbreweries and some of their speciality beers:

\n\n

Dieu du Ciel! (29 Laurier ouest St.)

\n\n

Must try beer: La Fumisterie - edging on an English/German Ale, with a light caramelized taste. Brewed with biological hemp seeds.

\n\n
\n\n

Brasseurs de Montréal (1483 Ottawa St.)

\n\n

Must try beer: La Chi orientale - a white beer with light ginger and citronella aroma.

\n\n
\n\n

L’amère à boire (2049 Saint-Denis St.)

\n\n

Must try beer: La Odense - a Porter with a light smoked caramel perfume.

\n\n
\n\n

Benelux (245 Sherbrooke Ouest St.)

\n\n

Must try beer: La Moka - A Porter with a bitter chocolate taste with a touch of espresso.

\n\n
\n\n

Brutopia (1219 Crescent St.)

\n\n

Must try beer: La Raspberry Blonde - A blond beer with a touch of raspberry.

\n\n
\n\n

HELM Brasseur-gourmand (273 Bernard Ouest St.)

\n\n
\n\n

Le Réservoir (9 Duluth Est St.)

\n\n
\n\n

Le Cheval Blanc (809 Ontario est St.)

\n\n

Must try beer: the classic Cheval Blanc white beer with a slice of orange.

\n\n
\n\n

Les 3 brasseurs (4 breweries on Sainte-Catherine St., Crescent St., Saint-Denis St. and Saint-Paul St.)

\n\n

Must try beer: La Belle Province - with a touch of maple syrup.

\n\n
\n\n

Other breweries in Montréal:

\n\n
    \n
  • Brasserie Bierbrier
  • \n
  • Bistro-Brasserie Les Soeurs Grises
  • \n
  • Brasserie McAuslan
  • \n
  • Brasseurs sans gluten
  • \n
  • Broue pub brouhaha
  • \n
  • L'amère à boire
  • \n
  • La Succursale
  • \n
  • Le Réservoir
  • \n
  • Le Saint-Bock brasserie artisanale
  • \n
  • Les brasseurs RJ
  • \n
  • PolyBroue
  • \n
\n\n

Cheers!

\n", "OwnerUserId": "3844", "LastActivityDate": "2015-02-28T15:06:29.743", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3281"}} +{ "Id": "3281", "PostTypeId": "2", "ParentId": "1085", "CreationDate": "2015-03-06T02:31:45.167", "Score": "2", "Body": "

My research suggests that Capilano Pale Ale is no longer brewed.

\n\n

This Vancouver Archives article on beer in Vancouver suggests that the Capilano brewery was taken over by Molson in 1958. Searching the address given (1550 Burrard Street), I found that Molson still occupies the space. Very little else comes up when I search for Capilano Brewery or Capilano Pale Ale.

\n", "OwnerUserId": "3863", "LastActivityDate": "2015-03-06T02:31:45.167", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3282"}} +{ "Id": "3282", "PostTypeId": "2", "ParentId": "725", "CreationDate": "2015-03-06T05:52:23.243", "Score": "4", "Body": "

It certainly doesn't keep the cold away or reduce the duration, but I'll be damned if it doesn't make you feel better drinking it. Mulled beer is just nice when you're cold, and when you've got the cold, the last thing you want to feel is cold.

\n\n

Stews, casseroles, and chilis don't ward off the cold either. That doesn't stop people from eating ample amounts of them come autumn and winter. Neither do chicken soup nor porridge reduce the duration of a cold. That doesn't stop nearly every culture around the world from serving some variation thereof (or a mix of both, in the case of congee) to sick people.

\n\n

So, why stop there? Beer is nice too. All those things also help keep you hydrated, which can never be a bad thing if you're sick.

\n\n

Basically, if it makes you feel better, it may as well ward off disease. I mean, it's right there in the word. Dis - ease. A lack of ease. If it puts you at ease, it's a remedy in my book.

\n", "OwnerUserId": "3864", "LastActivityDate": "2015-03-06T05:52:23.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3283"}} +{ "Id": "3283", "PostTypeId": "2", "ParentId": "2164", "CreationDate": "2015-03-08T16:42:34.160", "Score": "2", "Body": "

If I want to cool something really quick and not using a fire extinguisher, I use the method I saw on Myth Busters: Find a container that will hold the item you want to chill, add ice, water, and salt. Even on a hot day you can chill things real fast using this method.

\n", "OwnerUserId": "529", "LastActivityDate": "2015-03-08T16:42:34.160", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3285"}} +{ "Id": "3285", "PostTypeId": "1", "AcceptedAnswerId": "3297", "CreationDate": "2015-03-10T19:30:43.253", "Score": "7", "ViewCount": "356", "Body": "

I am just mesmerized to see the microbrewery revolution take off and I have visited a couple of breweries here in San Diego. I really find that there is a distinct taste to the beers as opposed to walking into a store and buying. I know that brewery beers are distinctively better, but how do you theoretically prove that Beer A is better than Beer B. Is there any checklist to compare beers with each other?

\n\n

It may sound like a very basic question but there has to be a way to tell a good beer from a bad one, right?

\n", "OwnerUserId": "3872", "LastEditorUserId": "73", "LastEditDate": "2015-03-10T21:23:33.610", "LastActivityDate": "2015-03-28T01:12:48.007", "Title": "Is there a widely-accepted procedure for saying one beer is definitively \"better\" than another?", "Tags": "breweries specialty-beers", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3286"}} +{ "Id": "3286", "PostTypeId": "2", "ParentId": "3285", "CreationDate": "2015-03-10T20:34:13.073", "Score": "4", "Body": "

While there is no current objective assessment of beer other than IBU/abv you can take classes to become a subjective judge of the major traits: nose/head/appearance/taste/finish.

\n\n

Classes are available via a simple google search that will return results like this:\nhttp://www.bjcp.org/index.php

\n", "OwnerUserId": "3873", "LastEditorUserId": "73", "LastEditDate": "2015-03-10T21:24:19.713", "LastActivityDate": "2015-03-10T21:24:19.713", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3287"}} +{ "Id": "3287", "PostTypeId": "1", "AcceptedAnswerId": "3290", "CreationDate": "2015-03-10T20:54:25.763", "Score": "5", "ViewCount": "3298", "Body": "

I'm looking for new beers to try and have a great liking for a variety of Red Ales. Some of my favourite \"big\" brews are Yuengling and Dos Equis. I also really like a local brew Walkerville Honest Lager. Rickards Red is also decent, but not quite \"perfect\".

\n\n

Interested in any suggestions for other beers I could try with a similar taste!

\n\n

In addition, what is the characteristic taste, or, what are some words that describe the taste, that makes a lager a red lager?

\n", "OwnerUserId": "3874", "LastEditorUserId": "3874", "LastEditDate": "2015-03-10T21:56:50.063", "LastActivityDate": "2015-03-22T04:39:46.130", "Title": "Red Lager Recomendations and what flavours make a beer a \"Red Lager\"", "Tags": "taste style recommendations", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3288"}} +{ "Id": "3288", "PostTypeId": "2", "ParentId": "3287", "CreationDate": "2015-03-10T23:47:51.560", "Score": "1", "Body": "

From the Beer Judge Criteria for an Irish Red Ale which is what I would consider being the closest thing to a Red Lager (A couple of the examples are actually lagers). This fits the bill for Rickard's Red.

\n\n
\n

Aroma: Low to moderate malt aroma, generally caramel-like but\n occasionally toasty or toffee-like in nature. May have a light buttery\n character (although this is not required). Hop aroma is low to none\n (usually not present). Quite clean.

\n \n

Appearance: Amber to deep reddish copper color (most examples have a\n deep reddish hue). Clear. Low off-white to tan colored head.

\n \n

Flavor: Moderate caramel malt flavor and sweetness, occasionally with\n a buttered toast or toffee-like quality. Finishes with a light taste\n of roasted grain, which lends a characteristic dryness to the finish.\n Generally no flavor hops, although some examples may have a light\n English hop flavor. Medium-low hop bitterness, although light use of\n roasted grains may increase the perception of bitterness to the medium\n range. Medium-dry to dry finish. Clean and smooth (lager versions can\n be very smooth). No esters.

\n \n

Mouthfeel: Medium-light to medium body, although examples containing\n low levels of diacetyl may have a slightly slick mouthfeel. Moderate\n carbonation. Smooth. Moderately attenuated (more so than Scottish\n ales). May have a slight alcohol warmth in stronger versions.

\n \n

Overall Impression: An easy-drinking pint. Malt-focused with an\n initial sweetness and a roasted dryness in the finish.

\n \n

Comments: Sometimes brewed as a lager (if so, generally will not\n exhibit a diacetyl character). When served too cold, the roasted\n character and bitterness may seem more elevated.

\n
\n\n

The criteria also has some examples of beers that you would like if you like this:

\n\n
\n

Three Floyds Brian Boru Old Irish Ale, Great Lakes Conway’s Irish Ale (a bit strong at 6.5%), Kilkenny Irish Beer, O’Hara’s Irish Red Ale, Smithwick’s Irish Ale, Beamish Red Ale, Caffrey’s Irish Ale, Goose Island Kilgubbin Red Ale, Murphy’s Irish Red (lager), Boulevard Irish Ale, Harpoon Hibernian Ale

\n
\n", "OwnerUserId": "222", "LastActivityDate": "2015-03-10T23:47:51.560", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3289"}} +{ "Id": "3289", "PostTypeId": "1", "CreationDate": "2015-03-11T22:02:02.137", "Score": "8", "ViewCount": "3470", "Body": "

I've spent much time in Ottawa and Halifax, and have yet to find a consistent source of this nectar of the gods.\nLocations Found:

\n\n

Liquor Store in Whistler, BC

\n\n

LCBO in Trainyards, Ottawa

\n\n

Greek Restaurant in Downtown Ottawa

\n\n

Brussels.

\n\n

Anyone know where to find it?

\n", "OwnerUserId": "3876", "LastEditorUserId": "5064", "LastEditDate": "2017-04-13T21:32:33.880", "LastActivityDate": "2017-04-24T13:25:38.887", "Title": "Where to buy \"Grimbergen\" in Canada", "Tags": "specialty-beers canada", "AnswerCount": "5", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3290"}} +{ "Id": "3290", "PostTypeId": "2", "ParentId": "3287", "CreationDate": "2015-03-12T20:42:00.650", "Score": "6", "Body": "

The red color usually comes from certain kinds of caramel malt, which comes in a range of colors but is usually used to make a sweeter, fuller-bodied beer than everyday pale ales and lagers. In this way, they're very similar to amber ale/lagers, and the difference can be very subtle and is very subjective. If you like one, you'll 99% of the time enjoy the other. Most of what you mentioned- like Dos Equis and Yuengling- are marketed as ambers.

\n

That said, I looked up Honest Lager, and Walkerville markets it as Märzen (sometimes but not always the same as Oktoberfest) It's less hoppy and more full-bodied than a Pils or other pale lager, and tends to be reddish or amber in color. If you look a the German/import section of your local beer store or supermarket, you should be able to find an example of something similar, just look for the words "Märzen," "Oktoberfest," "Festbier," etc. A Munich-style Dunkel would also probably be right up your alley.

\n

Key words I would use: sweetish, medium-bodied, balanced, caramelly, toasty. But just think about different foods and aromas while you're drinking, and see what your impression is. Everybody's different.

\n

If you do want to use the BJCP guide, just remember that they're designed for judging homebrew competitions, and professional brewers don't have much reason to pay attention to them. So if you pick up a beer and it doesn't match up with its BJCP style, it's not a catastrophe, and the beer is still perfectly good!

\n", "OwnerUserId": "3879", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2015-03-12T20:42:00.650", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3291"}} +{ "Id": "3291", "PostTypeId": "2", "ParentId": "3287", "CreationDate": "2015-03-14T23:05:56.133", "Score": "3", "Body": "

As soon as I read \"Red Lager\" I thought to myself, this guy is probably looking for Vienna Lagers (aka Amber Lagers. For whatever reason beer marketers greatly prefer the term \"amber\" over \"red\" when referring to lagers, while using \"red\" over \"amber\" when referring to ales eg Red IPA). These are lagers with a slightly sweeter profile than the \"standard International pilsner\" style churned out by every macrobrewery, due to the addition of Vienna, crystal, and/or caramel malts. Indeed, when looking at the examples you gave on Rate Beer and Beer Advocate, RB considers both to be of the \"Amber Lager/Vienna\" style, while BA considers Dos Equis to be a Vienna Lager and Yuengling to be an \"American Amber/Red Lager\". What's the difference? Generally, the \"American\" prefix at the start of any beer style means that it's hoppier, due to our lovefest with hops (at least compared to the Old World). Also, RB doesn't break amber lagers into American and not varieties.

\n\n

You can use the category page on Ratebeer or Beer Advocate to browse through more examples of the style. Ratebeer's list is default sorted by rating, which isn't always helpful if you don't live somewhere with a great selection, but you can click on \"Count\" and it will sort by number of ratings; Beer Advocate's is default sorted by number of reviews.

\n\n

The two beers you mention are very widely available: On RB, Yuengling is #2 most reviewed and Dos Equis is #7; for rating though neither cracks the top 50. On BA, Dos Equis is the #3 Vienna Lager by reviews and #38 by rating, while Yuengling is the #1 American Amber/Red Lager by reviews and #21 by rating. For some great examples of Vienna/Amber Lagers you might be able to find, Sam Adams Boston Lager is rated #44 on RB and #3 on Beer Advocate (why the big discrepancy? RB users tend to be more heavily biased by the idea that certain breweries aren't \"cool\", while BA users tend to be more objective).

\n\n

There is always the BJCP guide, which makes the rules that guide most homebrewing and professional contests such as the GABF. The GABF can have real reputation and financial influence for a brewery, so it requires very precise definitions, but outside of competitions most of the brewing world takes the BJCP with a grain of salt (or is it a grain of barley?). Personally, I prefer the Ratebeer and Beer Advocate's style categorizations. Not that they are perfect either - part of the beauty of craft beer is that it is ever-evolving, and brewer creativity knows no category bounds - but it is more democratic and reflective of actual market tastes.

\n\n

If you are willing to go a little further afield, you might try a Scottish Ales, like Founders Dirty Bastard (www.ratebeer.com/beer/founders-dirty-bastard-scotch-ale/11498/); a Red IPA (not an official style) such as Troegs Nugget Nectar (www.ratebeer.com/beer/troegs-nugget-nectar-ale/30812/); or even a Bière de Garde, France's only indigenous beer style (these are harder to find, but I bet they have them in Montreal. try www.ratebeer.com/beerstyles/biere-de-garde/58/ or www.beeradvocate.com/beer/style/127/.

\n", "OwnerUserId": "3886", "LastEditorUserId": "3886", "LastEditDate": "2015-03-22T04:39:46.130", "LastActivityDate": "2015-03-22T04:39:46.130", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3292"}} +{ "Id": "3292", "PostTypeId": "1", "AcceptedAnswerId": "3293", "CreationDate": "2015-03-16T07:46:28.850", "Score": "3", "ViewCount": "162", "Body": "

I drink beer occasionally. So far I have only drank alcoholic ones. Now I need to know whether alcohol-free beers exist or not. If so, what are their brand names?

\n", "OwnerUserId": "1005", "LastEditorUserId": "268", "LastEditDate": "2015-03-16T12:24:41.110", "LastActivityDate": "2015-12-29T02:42:27.270", "Title": "What are the alcohol free beers?", "Tags": "non-alcoholic", "AnswerCount": "2", "CommentCount": "0", "ClosedDate": "2015-12-30T16:58:25.760", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3293"}} +{ "Id": "3293", "PostTypeId": "2", "ParentId": "3292", "CreationDate": "2015-03-16T12:22:18.650", "Score": "4", "Body": "

Common brands off the top of my head are:

\n\n
    \n
  • St Pauli N.A.
  • \n
  • O'Doul's
  • \n
  • Kalibur
  • \n
  • Clausthaler
  • \n
\n\n

There are actually plenty of others, a few of the major brewers like Miller and Coors also produce a non-alcoholic version and a few other German brands you might be able to find come in non-alcoholic.

\n\n

Be forewarned that none of them are generally regarded as \"good\" when compared to full-strength beer.

\n\n

If your interest is just to not get completely obliterated after drinking several beers, I'd investigate a category called \"Session\" beers, which are regular beers brewed without artificially removing any alcohol but are designed to be flavorful at 3-4% ABV rather than the common 5-6%+ that many craft beers tend to be. Full Sail session lager, Stone's Go To IPA, and Founder's All Day IPA should be pretty easy to find, but investigate more local and regional breweries to see if they make any.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-03-16T12:22:18.650", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3297"}} +{ "Id": "3297", "PostTypeId": "2", "ParentId": "3285", "CreationDate": "2015-03-17T13:52:42.823", "Score": "6", "Body": "

What it really sounds like you're getting at is that the beer you drink at a brewery is better than the beer you buy off the shelf at a store. I'd believe that. Beer from a brewery's tap is likely incredibly fresh, which most people would agree for most styles is better. Especially with how popular hoppy beers are in the San Diego scene, hops fade quickly...fresher will be way more aromatic. The beer you buy in the store may have been filtered or pasteurized, has been bottled and then sat in a warehouse for a while before being trucked around the county and then sitting on a shelf for a while before you hauled it back home.

\n\n

However, is there an objective way to express \"Fresher is better\"? Dunno, probably not. You could run lab analysis and try to point at alpha and beta acid numbers, volatile organic oils or something...but it almost seems like trying to cobble together a theory after having made the conclusions already.

\n\n

The BJCP was mentioned in another answer. What BJCP is, is an attempt to apply objective qualitative judgment to taste, which is inherently subjective, by asking folks to compare what they're sensing to an ideal example. Basically \"How closely does this beer I'm tasting now adhere to description of the style of beer it's supposed to be?\" They'll generally look at

\n\n
    \n
  • Head: color, density, how long it lasts.
  • \n
  • Aroma: malty? hoppy? spicy? grassy? sulphury?
  • \n
  • Visual: color, clarity
  • \n
  • Feel: thickness on the tongue, fizziness, acidity...
  • \n
  • Taste: malty, hoppy, spicy... balanced?
  • \n
\n\n

What you COULD theoretically do is drink the beer at the brewery, and then describe as if it was a BJCP description, then drink the beer from the store and grade it according to how close it resembles the brewery beer in those categories.

\n\n
\n\n

Outside of that, everything is subjective. What you feel like drinking, right now. The beer best suited to the weather will change with each season, beers best suited to the evening will change with what you're having for dinner. Hell, if you happen to be playing Skyrim maybe the beer with the dragon on the label will be better than anything else regardless what it tastes like.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-03-17T13:52:42.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3299"}} +{ "Id": "3299", "PostTypeId": "2", "ParentId": "195", "CreationDate": "2015-03-18T13:53:20.200", "Score": "3", "Body": "

It should still be safe, taste good is a personal opinion.

\n\n

Some beers age well, high alcohol, sours, and smoke beers. Others don't age as well (hoppy beers). Plus it all depends on how the beer was stored. Out in a hot garage? Sitting in your window sill?

\n", "OwnerUserId": "529", "LastActivityDate": "2015-03-18T13:53:20.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3302"}} +{ "Id": "3302", "PostTypeId": "2", "ParentId": "3257", "CreationDate": "2015-03-18T19:52:40.253", "Score": "0", "Body": "

Try Lagunitas Sucks! It's my favorite hoppy beer!

\n", "OwnerUserId": "1547", "LastActivityDate": "2015-03-18T19:52:40.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3303"}} +{ "Id": "3303", "PostTypeId": "2", "ParentId": "3257", "CreationDate": "2015-03-19T05:36:52.730", "Score": "0", "Body": "

In SriLanka lions lager is the most bitter beer

\n", "OwnerUserId": "1005", "LastActivityDate": "2015-03-19T05:36:52.730", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3307"}} +{ "Id": "3307", "PostTypeId": "1", "CreationDate": "2015-03-22T05:30:43.927", "Score": "4", "ViewCount": "2198", "Body": "

Whenever I've had Belgians, I've tasted something metallic, especially in the aftertaste. It was especially strong in Lost Abbey's Judgment Day, a quadrupel. I thought it was something unique to me because no one knew what I was talking about, but today a friend said the same thing (\"metallic\", without me suggesting anything). What in the brewing process causes this taste?

\n\n

In case it helps, I also taste it in Killian's Irish Red.

\n", "OwnerUserId": "73", "LastActivityDate": "2015-03-23T15:12:53.143", "Title": "What's responsible for the \"metallic\" taste in Belgian beers?", "Tags": "taste", "AnswerCount": "1", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3308"}} +{ "Id": "3308", "PostTypeId": "2", "ParentId": "3307", "CreationDate": "2015-03-23T15:12:53.143", "Score": "4", "Body": "

Common causes for a metallic taste are dissolved metals such as iron or copper, either from the water supply or brewing equipment, or due to the oxidation of fat molecules which can bind with metals.

\n\n

Personally though, I find that I can regularly taste metal in the finish of any of a variety of beers that are over-chilled. I don't recall Belgians being particularly an issue (but I love Belgians and am probably more likely to ensure they're properly temp'ed before drinking) but when served too cold, I can almost guarantee that I'm going to get a strong taste of cold steel right at the end of many brown ales, red ales, and stouts among others, and that it will generally disappear as the beer warms.

\n", "OwnerUserId": "37", "LastActivityDate": "2015-03-23T15:12:53.143", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3309"}} +{ "Id": "3309", "PostTypeId": "1", "CreationDate": "2015-03-23T20:48:19.587", "Score": "5", "ViewCount": "218", "Body": "

I'm having a party and I want to add flavors to my already-brewed beer. How can I do that and have it mix?

\n", "OwnerUserId": "3920", "LastEditorUserId": "73", "LastEditDate": "2015-03-24T03:26:01.147", "LastActivityDate": "2015-03-31T16:44:00.817", "Title": "How can I add post-flavoring to beer?", "Tags": "taste flavor ingredients", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3310"}} +{ "Id": "3310", "PostTypeId": "2", "ParentId": "3309", "CreationDate": "2015-03-24T05:04:46.110", "Score": "4", "Body": "

Any time you mix things into beer you'll lose some carbonation. Any powder would nucleate bubbles very quickly, so the flavoring should be in liquid form. The liquid should be as similar to beer possible: cold, equally carbonated, and not too much alcohol if it can be avoided. Stir gently in a cold glass and serve right away.

\n\n

Or, if you are brewing the beer yourself just add it at kegging or bottling time.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-03-24T05:04:46.110", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3311"}} +{ "Id": "3311", "PostTypeId": "1", "CreationDate": "2015-03-24T09:53:31.363", "Score": "1", "ViewCount": "9044", "Body": "

I left 2 beers in the fridge, Just found them and I'm sure they've been in there for like ... maybe 4 months

\n\n

Are they okay to consume?

\n", "OwnerUserId": "3921", "LastEditorUserId": "5078", "LastEditDate": "2017-04-18T07:10:26.750", "LastActivityDate": "2018-12-08T12:56:16.283", "Title": "What if beer (opened) was left in fridge for like... months", "Tags": "preservation", "AnswerCount": "1", "CommentCount": "8", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3312"}} +{ "Id": "3312", "PostTypeId": "2", "ParentId": "3311", "CreationDate": "2015-03-24T12:59:05.043", "Score": "2", "Body": "

Your question says they were opened? I'm going to venture probably not. You tagged this 3.2-beer, does that mean these are low alcohol session beers somewhere around 3.2% ABV?

\n\n

If the beers aren't moldy, best case scenario is you now have two bottles of home made malt vinegar. Make a balsamic, have some steaks with side salads.

\n\n

If they were closed or sealed in any way, they're probably fine, though depending on the style they probably won't taste great. Low alcohol and hoppy beers don't age gracefully. Higher alcohol or darker beers often do better with some time on them. But either way you have to keep them away from air, namely other microbes and oxygen or else things go downhill real fast.

\n", "OwnerUserId": "268", "LastEditorUserId": "268", "LastEditDate": "2017-04-18T22:34:52.150", "LastActivityDate": "2017-04-18T22:34:52.150", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3313"}} +{ "Id": "3313", "PostTypeId": "2", "ParentId": "446", "CreationDate": "2015-03-26T07:27:42.003", "Score": "4", "Body": "

Sorry for the late response, but as I look on the internet for discussions concerning this topic I ran across this question.

\n\n

In the mid 1800's in England, IPA's were created and produced for multiple reasons. Long story short, as Europe was going through a technology renaissance period, ingredients used for brewing changed and grains that were converted into malt became lighter. Therefore, dramatically changing the \"beer\", that was much darker at that time, now into and ale. As this changed the palettes of many at that time they also introduced a great amount of fresh hops to these new ales to make a strongly hopped ale. The term IPA was introduced as a well known brewer(s) started shipping this new type of beer to India, giving it the distinct name IPA-India Pale Ale.

\n\n

I am providing this back ground to make a point. As this product was fermented, it was very typical to age and IPA Beer for a minimum of 1 year. This was done to assure that the beer was completely fermented and safe to transport on ships to India. This trip would take even more time and put the produced under various environmental stresses. This beer or \"ale\", was hopped very strongly and even topping the very hoppiest beer on the market in the U.S. today. Using the freshest malt as well as the freshest hops.

\n\n

My final point or argument is, that as I recreate the IPA and use fresh ingredients typical to a real IPA, I find that my IPA's last over a year in the bottle. As I drink them 3 to 6 and even 9 and 12 months the hoppy flavors still remain and even develop.

\n\n

There are many variables that allow me to get to this end result. This including yeast and malt selection, and also multiple methods that help produce beneficial fermentation, allowing the taste of the final product to be clear of flaws that would be created by the yeast during primary as well as the bottling (carbonation) period.

\n\n

After 30 years of beer making many of these truths become evident as I continually taste the final product, take very good notes and adjust my recipe.

\n\n

Finally, I can say that with the correct procedure of beer making, an IPA can be enjoyed at various stages from 1 week and even up to one year and can still be enjoyed for its distinct hop flavor and aroma.

\n", "OwnerUserId": "3926", "LastActivityDate": "2015-03-26T07:27:42.003", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3318"}} +{ "Id": "3318", "PostTypeId": "2", "ParentId": "3285", "CreationDate": "2015-03-28T01:12:48.007", "Score": "3", "Body": "

The philosophy of beer. Heh. I'll give you two answers:

\n\n

1) There is no way to determine that a beer is objectively better than another beer. Why? Because taste in beer is subjective. What may be an awful beer for an aficionado, may be a great beer for someone else. So, is it really true that [x] is a better beer than [y] if person [c] can like [y] better than [x]?

\n\n

2) There is a way to determine beers that are subjectively better than another. Check out beeradvocate.com which has a mass of users rating beers in all walks of styles on different criteria. The result is an eerily accurate rating system which gives an incredibly good idea of how much you'll enjoy a beer in reference to another. In other words, they've done exactly what you're suggesting.

\n", "OwnerUserId": "938", "LastActivityDate": "2015-03-28T01:12:48.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3319"}} +{ "Id": "3319", "PostTypeId": "2", "ParentId": "3309", "CreationDate": "2015-03-31T16:44:00.817", "Score": "1", "Body": "

There are products called Randalizers that can allow you to infuse flavors into beer as it's served. Provided that the beer is 1) on draft, and 2) the flavoring is a solid (hops, peppercorns, citrus peel, etc). An expensive option is the Blichman Hoprocket. Another option I've seen, but I'm not sure how to construct it, was an inline water filter that had been modified. That modified filter also required significantly more CO2 to maintain pressure, I don't think that was true of the purpose built devices.

\n\n

These work well for fresh flavors, but would serve poorly if you were looking for anything else. I've had beers run through a couple different combinations of herbs, fruit, veggies, and hops, and it was always interesting and exciting. Even if it wasn't always that good.

\n", "OwnerUserId": "3954", "LastActivityDate": "2015-03-31T16:44:00.817", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3322"}} +{ "Id": "3322", "PostTypeId": "1", "CreationDate": "2015-04-03T17:03:17.223", "Score": "0", "ViewCount": "197", "Body": "

I recently made my second batch of beer. It's a pumpkin ale. I am finding that the bottles contain a large amount of sediment, almost like slush at the bottom the bottle. The beer is delicious, but I'm wondering how I can prevent this in the future. My first batch of beer was the White House Honey Ale and those were pretty much sediment free.

\n\n

What influences the amount of sediment? Should I be \"filtering\" at some point in the process?

\n", "OwnerUserId": "3972", "LastActivityDate": "2015-05-07T06:01:13.397", "Title": "How do I limit the amount of sediment in bottles?", "Tags": "brewing bottle-conditioning", "AnswerCount": "0", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3327"}} +{ "Id": "3327", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2015-04-08T14:07:54.007", "Score": "3", "Body": "

I would suggest reading \"Vintage Beer: A Taster's Guide to Brews That Improve over Time\" by Patrick Dawson. To summarize his findings on what types of beers improve with age they must contain at least one of these three characteristics:

\n\n
    \n
  1. High ABV (8% or more)
  2. \n
  3. Sour
  4. \n
  5. Smoke
  6. \n
\n\n

It goes without saying that if a beer has two or more of these characteristics the odds of it improving with cellaring go up. But even if it has all three characteristics it may not improve with age, or only aging to a certain point.

\n\n

Plus you must remember that proper aging is also required. Proper storage, temperature control, how the bottle is positioned while being stored, etc.

\n", "OwnerUserId": "529", "LastActivityDate": "2015-04-08T14:07:54.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3328"}} +{ "Id": "3328", "PostTypeId": "2", "ParentId": "702", "CreationDate": "2015-04-08T15:14:45.150", "Score": "0", "Body": "

Beer (malt, wheat and ginger etc.) is brewed and fermented, cider (apples) is pressed and fermented.

\n", "OwnerUserId": "3988", "LastActivityDate": "2015-04-08T15:14:45.150", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3330"}} +{ "Id": "3330", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2015-04-11T08:34:46.707", "Score": "5", "Body": "

Personally I was quite taken with 60, 90, and 120 minute IPAs (thank you DFH) when shelved in cool and dark places for as much as a year. My guess is it would have been good for longer, but tasty beer and curiosity got the best of my experiment. I think Wayne in Yak deserves an up vote I can't yet do thanks to my noob status. Well researched and void of conjectural inaccuracy. If hops were the only flavor in IPA then yes it could be decreasingly \"hoppy\" but that's assuming we're referring to the aroma hops. Your bittering hops would surely deepen with time. But with any beer there are more layers than one. High ABV beers will just broaden the chord change more as every flavor will carry different in the changing alcohol/water/sugar levels that time provides. Fruit in the beer no matter its place on the sweet/sour spectrum (notably normally high point as well) have similar success on the \"cool dark\" shelf. This is due to natural fermentation of organic matter stored over time. Ever noticed how fresh salsa gets effervescent in your fridge? Granted there are no chunks of fruit (or tomatoes luckily) in your beer so the effects are severely lessened. They weigh in on the scale equal to the alcohol changes mentioned above. A personal favorite of mine is a Scotch Ale stored for as long as you can wait. Hope this helps.

\n", "OwnerUserId": "3885", "LastActivityDate": "2015-04-11T08:34:46.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3331"}} +{ "Id": "3331", "PostTypeId": "2", "ParentId": "172", "CreationDate": "2015-04-12T22:33:08.717", "Score": "2", "Body": "

Given how much modern Polish beer has in common with mass-market German and Czech beer- combined with a small handful that I've tried here in Germany- they're what one would call \"European pale lagers\" or \"International pilsners,\" depending on what book or site's style names you're going off of.

\n\n

In response to a previous answer, color has nothing to do with ale v. lager, nor alcohol concentration (Guinness is an ale and 4.2% where Aventinus Eisbock is a lager and 12%), it only tells you how it was fermented. There are tons of dark lagers around: Schwarzbier, Munich dunkel, Rauchbier, Doppelbock, the aforementioned Baltic porter, and the Czech 14* and 18* dark lagers.

\n\n

I or someone will need to look more into this, but those terms might be bureaucratic in nature- up until the 90s, Germany had multiple beer categories based on the beer's original gravity that determined how it would be taxed and sold, sort of like how Texas used to label everything above a certain ABV% \"ale\". TABC Changes What it Means to Be a Beer.

\n", "OwnerUserId": "3879", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T19:46:38.193", "LastActivityDate": "2016-10-08T19:46:38.193", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3332"}} +{ "Id": "3332", "PostTypeId": "2", "ParentId": "11", "CreationDate": "2015-04-12T22:39:29.127", "Score": "1", "Body": "

Could this perhaps have do do with the way people tend to drink these particular styles? In the circles I run in, Belgian- and Trappist-style beers tend to get revered, pondered, and savored, and thus drunk more slowly and possibly in lower quantities than IPAs, which are more plentiful, generally cheaper, and tend to get pounded by the six-pack next to some hot wings or a cheeseburger.

\n", "OwnerUserId": "3879", "LastActivityDate": "2015-04-12T22:39:29.127", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3334"}} +{ "Id": "3334", "PostTypeId": "2", "ParentId": "11", "CreationDate": "2015-04-16T22:42:06.990", "Score": "3", "Body": "

As stated many times above, it's very personal on what affects you and how much or how little.

\n\n

Dry-hopped beers seem to give me worse hangovers.

\n\n

Also, 13 of the big bottles of Franziskaner in a night makes me want to die the next day.

\n", "OwnerUserId": "241", "LastActivityDate": "2015-04-16T22:42:06.990", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3335"}} +{ "Id": "3335", "PostTypeId": "2", "ParentId": "1028", "CreationDate": "2015-04-16T22:51:24.557", "Score": "0", "Body": "

(not enough rep to comment yet)

\n\n

I've been prescribed Ranitidine and it says \"AVOID ALCOHOL\" in all caps, so you know it's important.

\n", "OwnerUserId": "241", "LastActivityDate": "2015-04-16T22:51:24.557", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3340"}} +{ "Id": "3340", "PostTypeId": "2", "ParentId": "1064", "CreationDate": "2015-04-21T23:04:16.147", "Score": "2", "Body": "

According to Alcohol by volume (Wikipedia):

\n\n

ABV * 0.78924 = ABW * SpecificGravity(at 20°C in g/ml)

\n\n

Thus ABV = ABW * SpecificGravity / 0.78924

\n\n

This formula is only correct for a mixture of ethanol and pure water. You can't plug in the s.g. of your beer and have it work.

\n\n

I have found tables that relate ABW to specific gravity for ethanol/water solutions, one can be found here

\n\n

I dumped the table into a spreadsheet, and used the formula to create a conversion table for ABV and ABW.

\n\n

Please note that the formula is not completely accurate against the table, 100% ABW calculates to 100.01% ABV. 0.01% difference is not really significant for our purposes. Not sure if the table or formula is incorrect.

\n", "OwnerUserId": "4033", "LastEditorUserId": "5064", "LastEditDate": "2017-01-31T13:17:10.040", "LastActivityDate": "2017-01-31T13:17:10.040", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3341"}} +{ "Id": "3341", "PostTypeId": "1", "AcceptedAnswerId": "3343", "CreationDate": "2015-04-22T14:20:15.437", "Score": "2", "ViewCount": "31", "Body": "

I'll admin i got a bit excited. My first best of home brew fermented for 6 days, then transferred to barrel for the net 3 weeks - i used woodforde's real ale mix.

\n\n

BUT at the last seconds i forgot primer so i improvised wit 80g of caster sugar for 23 litres of beer.

\n\n

Does anyone have experience of using caster sugar as a primer in a barrell? And more importantly - have i just borked my first barrell?!

\n", "OwnerUserId": "4034", "LastActivityDate": "2015-04-23T13:14:11.893", "Title": "Using Caster Sugar as Primer in Barrell", "Tags": "ale", "AnswerCount": "1", "CommentCount": "5", "ClosedDate": "2015-05-07T05:50:58.440", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3343"}} +{ "Id": "3343", "PostTypeId": "2", "ParentId": "3341", "CreationDate": "2015-04-23T13:14:11.893", "Score": "2", "Body": "

Doing the math out, assuming my liters to US Gallons conversion by Google is accurate, that would come out to around 1.6-1.7 volumes of CO2 in the beer which is on the lower end of carbonation but probably appropriate for many European ale styles.

\n\n

Think of something like a Bitter or ESB, that's probably where you'll end up.

\n\n

Caster sugar is just very fine white sugar, so it's probably some form of sucrose...pretty much all of which are interchangeable. If this is under carbonated for the style you're going for, check out an online carbonation or priming sugar calculator next time and just pitch sugar according to that.

\n\n

I always liked Northern Brewer's. It takes beer in gallons since it's a US site but I like that they have a style drop down and list how much of many different types of sugar to use.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-04-23T13:14:11.893", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3344"}} +{ "Id": "3344", "PostTypeId": "1", "CreationDate": "2015-04-23T14:30:37.777", "Score": "2", "ViewCount": "153", "Body": "

I was wondering if there is any definitive history of beer. I know that the ancient Egyptians brewed beer and it has been consumed throughout the centuries but I'd like to know the times and cultures that made it. Also how it was made.

\n", "OwnerUserId": "4041", "LastActivityDate": "2015-05-05T18:25:54.823", "Title": "Is there a history of Beer?", "Tags": "history", "AnswerCount": "3", "CommentCount": "2", "FavoriteCount": "1", "ClosedDate": "2015-05-07T05:54:41.497", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3345"}} +{ "Id": "3345", "PostTypeId": "2", "ParentId": "3344", "CreationDate": "2015-04-23T22:00:05.827", "Score": "0", "Body": "

This is a very good starting point: History of beer. I know it's just Wikipedia, but I think it's really well done with many links and external references.

\n", "OwnerDisplayName": "user4043", "LastActivityDate": "2015-04-23T22:00:05.827", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3347"}} +{ "Id": "3347", "PostTypeId": "1", "CreationDate": "2015-04-24T00:55:35.417", "Score": "4", "ViewCount": "992", "Body": "

What made brewers in the 19th century decide to start using bottom-fermenting yeast and cooler fermenting temperatures? Were they trying to solve some specific problem, like making the best of available ingredients or dealing with cooler-than-ideal environments? Or were they just experimenting and trying to create something new?

\n", "OwnerUserId": "4045", "LastActivityDate": "2015-04-24T03:10:41.987", "Title": "Why were lagers invented?", "Tags": "history lager", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3348"}} +{ "Id": "3348", "PostTypeId": "2", "ParentId": "3347", "CreationDate": "2015-04-24T03:10:41.987", "Score": "5", "Body": "

I think it would be right to say that lagers were discovered rather than invented. Lager yeast is apparently the result of an unlikely mating of ale yeast and a wild yeast from South America. It's ability to ferment at lower temperatures probably led to its establishment in some brewery in some cold part of Bohemia centuries ago.

\n\n

According to Wikipedia, lagering became more commercially viable with the appearance of refrigeration systems. But White & Zainasheff describe why this was desired. After Pasteur showed that yeast are responsible for fermentation, the Carlsberg brewery isolated S. carlsbergensis, now known as S. pastorianus, for commercial use. This is a lager yeast, and since many ales were brewed with mixed (S cerevisiae plus wild yeasts, bacteria) cultures, it created the perception was that lager, as a style, was cleaner than ale, and the improved shelf life made it a more attractive product to produce. And so, lagers took over the beer world after that, despite so many small breweries that make high quality ales.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-04-24T03:10:41.987", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3350"}} +{ "Id": "3350", "PostTypeId": "1", "AcceptedAnswerId": "3351", "CreationDate": "2015-04-24T08:49:22.350", "Score": "4", "ViewCount": "1119", "Body": "

Lagers traditionally were made in the colder months and stored (lagered) in caves. As lager yeast prefers a colder fermentation and conditioning temperature than ales, why is lager regularly made in hot, tropical climates around the world instead of more temperature tolerant ales, or just imported?

\n\n

On a tour around the Tiger Brewery in Singapore where the average temperature is 30 deg C, the guide mentioned the brewery started in 1932 and used a \"tropical lagering process\". The guide wasn't sure of details, and I haven't found details elsewhere on this process.

\n\n

Is it a simple matter of economics, that it's cheaper to brew lager locally even with climate control than to import, or is there a way to successfully brew lagers at high temperatures?

\n", "OwnerUserId": "4024", "LastActivityDate": "2015-04-27T05:49:29.810", "Title": "Why do lagers get made in tropical climates?", "Tags": "brewing temperature lager", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3351"}} +{ "Id": "3351", "PostTypeId": "2", "ParentId": "3350", "CreationDate": "2015-04-24T17:05:42.567", "Score": "5", "Body": "

It's just marketing.

\n\n

Lager fermentations are very clean so it tends to be a beer you want to drink in a warm and humid climate. The breweries want to make beer that will sell very well locally, and that just happens to be lagers.

\n\n

At a commercial scale brewers are investing in temperature control regardless of ale or lager, so it's not a significant expense or savings one way or another. So since they're spending the money anyway, might as well brew what people will buy more of.

\n\n

From the consumer perspective, it's cheaper to buy from a local company than it is to buy an imported beer in most cases. So the local beer sells better than the import.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-04-24T17:05:42.567", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3354"}} +{ "Id": "3354", "PostTypeId": "2", "ParentId": "3350", "CreationDate": "2015-04-27T05:49:29.810", "Score": "2", "Body": "

Lagers tend to be more popular as they taste better colder, and are 'easier drinking' than heavier, more flavourful beers, and taste good very cold or with ice, so better for quenching thirst in the heat.

\n\n

That said, stouts and darker heavier beers are often popular in rural areas in tropical Asia where ice is unavailable - think ABC Extra Stout, Beer Laos Dark, Guinness Foreign Extra Stout, or Black Panther

\n", "OwnerUserId": "4056", "LastActivityDate": "2015-04-27T05:49:29.810", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3355"}} +{ "Id": "3355", "PostTypeId": "2", "ParentId": "3344", "CreationDate": "2015-04-28T19:26:58.347", "Score": "0", "Body": "

There is an article about beer in the ancient world on beeradvocate.com. I think it's worth reading.

\n\n

Here's a link: http://www.beeradvocate.com/articles/721/

\n", "OwnerUserId": "4062", "LastActivityDate": "2015-04-28T19:26:58.347", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3356"}} +{ "Id": "3356", "PostTypeId": "1", "AcceptedAnswerId": "3358", "CreationDate": "2015-05-01T18:20:43.050", "Score": "10", "ViewCount": "3081", "Body": "

I received a true beginner's homebrew kit from a relative as a Christmas gift, decided to attempt a brew and followed the directions as close to perfect as I could.

\n\n

After the entire process was completed I wound up with something that did not really pour, smell or look like beer. Obviously I have done something wrong and need to try again, but my question is:

\n\n

Assuming an enthusiast observes a respectable level of sanitation in the process of the brew, but perhaps severely deviates from the instructions at some point in the process, how can they tell if their brew is actually fit (or unfit) to drink? Are there tell-tale smells/colours/heads that indicate a \"spoiled\" beverage?

\n", "OwnerUserId": "4070", "LastActivityDate": "2015-05-03T03:26:09.303", "Title": "How do I know if home brews are safe to drink?", "Tags": "brewing", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3357"}} +{ "Id": "3357", "PostTypeId": "1", "AcceptedAnswerId": "3359", "CreationDate": "2015-05-02T03:29:09.723", "Score": "2", "ViewCount": "1426", "Body": "

This is something that has been on my mind and I am wondering if I just have a statistical bias here, but it seems to me that when I peruse the shelves of my local bottle shops that I usually see a larger selection of ales versus lagers, especially among craft circles. So I guess, in a roundabout way, my question is: are ales more popular/attractive to brew than lagers and why?

\n\n

Bonus points: numbers that demonstrate one way or another.

\n\n

The reason I ask is because I read something a couple months ago that said lagers are better sellers than ales and it doesn't see to align with what I observe. Also, please assume that I know the differences between the styles of beer. I just meant this to be overarching.

\n", "OwnerUserId": "4071", "LastActivityDate": "2015-05-03T03:48:43.150", "Title": "Popularity: Ale vs Lager", "Tags": "style united-states", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3358"}} +{ "Id": "3358", "PostTypeId": "2", "ParentId": "3356", "CreationDate": "2015-05-03T03:26:09.303", "Score": "6", "Body": "

I have personally drunk beer that was unintentionally sour, and smelled like a sewer, without a problem.*

\n\n

If it has alcohol, and a low-ish pH (was made from reasonable water, barley and hops) then it is, according to history, safe. Many contaminating bacteria will produce acetic or lactic acids under these conditions, but they are also safe to drink.

\n\n

If you really screw things up, (forget to add yeast, drop dead mouse in there) maybe its possible to grow some listeria or something, but you'd probably find the smell to be intolerable.

\n\n

Typical beer infections will produce various levels bad flavors along with some scum on top of the bottled beer (since yeast produce bubbles and foam when working, this scum might not be visible until the yeast are completely finished, usually after the beer has been bottled). Some kinds of bacteria will also give a ropey (snotty) texture to the beer, but even this is safe to drink. This page lists common beer off-flavors, note that danger isn't discussed, because there really isn't any.

\n\n

And if you contaminant is a wild yeast, the beer might turn out OK (or even great) after a long aging, despite initially smelling horrible.

\n\n

*Not a beer that I made

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-05-03T03:26:09.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3359"}} +{ "Id": "3359", "PostTypeId": "2", "ParentId": "3357", "CreationDate": "2015-05-03T03:48:43.150", "Score": "3", "Body": "

You have to think of the volume of beer that's actually made. The big 'non-craft' brewers produce huge amounts of lager because the tradition for last hundred years or so has been to make lighter, more 'drinkable' beers. That also happens to fit with the big business ideal of being cheap to produce (light & drinkable means corn & rice are OK!).

\n\n

Craft brewer tend to make ales for a few reasons.

\n\n
    \n
  • Prior to the explosion of lagers, most beer in the world was ale, and\nthere are many more styles & different kind of yeast to choose from\nif you make ale.
  • \n
  • Most ales can be produced faster than lagers, which is helpful when\nyour brewery is small.
  • \n
  • Ales are easier to make at home, so home brewers are quite familiar\nwith these styles (and sometimes become pros as well).
  • \n
\n\n

Numbers: as of last year, the thousands of craft breweries in the US still only had 11% of market share. Big breweries still crank out ~3/4 of US consumption, nearly all lager.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-05-03T03:48:43.150", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3360"}} +{ "Id": "3360", "PostTypeId": "2", "ParentId": "3289", "CreationDate": "2015-05-04T09:45:44.180", "Score": "0", "Body": "

God & Beer partnership gives abbey much needed cash,, they've brought their suds to Toronto Lads..

\n", "OwnerUserId": "3722", "LastEditorUserId": "5064", "LastEditDate": "2017-04-13T21:34:37.843", "LastActivityDate": "2017-04-13T21:34:37.843", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3361"}} +{ "Id": "3361", "PostTypeId": "2", "ParentId": "3212", "CreationDate": "2015-05-04T09:53:05.453", "Score": "3", "Body": "

Try Bosphorus Brewing Company (Esentepe Mah) in Gayrettepe, or Taps Brewery (Cevdet Pasa Caddesi) in Bebek.

\n", "OwnerUserId": "3722", "LastEditorUserId": "6255", "LastEditDate": "2018-11-20T10:30:37.577", "LastActivityDate": "2018-11-20T10:30:37.577", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3362"}} +{ "Id": "3362", "PostTypeId": "2", "ParentId": "415", "CreationDate": "2015-05-04T10:10:53.653", "Score": "1", "Body": "

The basic rule is that beers should be served at the temp they were fermented. Lagers should be served at about 40°F and ales around 50°F - 55°F. Having said this I usually like my beers a little colder on a warm summer day. Try this experiment:

\n\n
    \n
  • chill your beer to 35°F - 40°F and pour about 2/3 of it into the proper glass for that beer.
  • \n
  • Drink at least 4 or 5 sips, gulps, or however you typically consume it.
  • \n
  • Then put what is left in the microwave for about 20 seconds (time will vary with the output of the microwave). This will reduce the carbonation some so pour the other third right in the middle of the glass without tipping the glass to get some head, on the beer that is.
  • \n
\n\n

It makes a big difference on some beers. less on others. Also try different types of glasses and see what you like. Remember, everybody's palates are different and yours will vary depending on several factors such as, what you've been eating or drinking, how much beer you've already consumed, and how tired you are. It's a good idea to eat a bite or two of good bread like a baguette to cleanse your palate between samples. The above does not apply to mass produced lagers.

\n", "OwnerUserId": "4080", "LastEditorUserId": "5064", "LastEditDate": "2017-01-28T05:36:20.993", "LastActivityDate": "2017-01-28T05:36:20.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3363"}} +{ "Id": "3363", "PostTypeId": "2", "ParentId": "3344", "CreationDate": "2015-05-05T18:25:54.823", "Score": "0", "Body": "

There are a few. You can definitely start with the wikipedia and BeerAdvocate articles suggested by other posters, but for books, I'd recommend the following.

\n\n
    \n
  • Beer: A Global History by Gavin Smith gives a good overview and world perspective.
  • \n
\n\n

-A Brewer's Tale: A History of the World According to Beer by William Bostwick focuses more on the effect beer has had on civilization, rather than the other way around

\n\n

-The Audacity of Hops: The History of America's Craft Beer Revolution by Tom Acitelli is a great prohibition-to-now perspective on American beer.

\n", "OwnerUserId": "1569", "LastActivityDate": "2015-05-05T18:25:54.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3364"}} +{ "Id": "3364", "PostTypeId": "1", "AcceptedAnswerId": "3365", "CreationDate": "2015-05-06T09:28:43.677", "Score": "6", "ViewCount": "939", "Body": "

I've previously had success making a guinness cake (http://www.nigella.com/recipes/view/chocolate-guinness-cake-3086), and, whilst it was tasty, I figure there has to be a better stout to flavour it with. Any suggestions?

\n", "OwnerUserId": "4087", "LastEditorUserId": "268", "LastEditDate": "2015-05-06T12:55:20.820", "LastActivityDate": "2015-05-06T14:37:09.333", "Title": "Other stouts to use in a 'Guinness cake'", "Tags": "taste stout cooking", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3365"}} +{ "Id": "3365", "PostTypeId": "2", "ParentId": "3364", "CreationDate": "2015-05-06T12:54:35.987", "Score": "3", "Body": "

Guinness is in a style called \"Dry Irish Stout\", so anything on this list would probably substitute well.

\n\n

It sort of depends on what you felt was missing from the cake. We could work on narrowing it down to stouts that were stronger in those flavors.

\n\n

Oatmeal or milk stouts as styles would be sweeter than Guinness, some stouts might play up chocolate or coffee or roast/burnt. Porter is a really similar style that takes well to interesting spice combinations like vanilla and anise. Bourbon Barrel aged stouts will have a wood/vanilla/whiskey thing going on. You could make some interesting cakes.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-05-06T12:54:35.987", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3366"}} +{ "Id": "3366", "PostTypeId": "2", "ParentId": "3364", "CreationDate": "2015-05-06T14:37:09.333", "Score": "3", "Body": "

There are some stouts with cocoa in their recipes. Two that I like are Young's Double Chocolate Stout and Sadler's Mud City Stout, both available in bottles in the UK.

\n", "OwnerUserId": "4090", "LastActivityDate": "2015-05-06T14:37:09.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3367"}} +{ "Id": "3367", "PostTypeId": "1", "AcceptedAnswerId": "3368", "CreationDate": "2015-05-06T18:29:21.537", "Score": "6", "ViewCount": "503", "Body": "

When I attempted brewing beer in my home the set and instructions called for the carbonation being done by adding carbonation drops instead of priming sugar.

\n\n

How does the fundamental chemical makeup differ between the two and how does the actual chemical process differ in beers brewed with carbonation drops versus priming sugar (if at all)? Is taste affected?

\n", "OwnerUserId": "4070", "LastActivityDate": "2015-05-07T13:06:39.327", "Title": "What is the difference between carbonation drops and priming sugar?", "Tags": "carbonation", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3368"}} +{ "Id": "3368", "PostTypeId": "2", "ParentId": "3367", "CreationDate": "2015-05-07T13:06:39.327", "Score": "2", "Body": "

Carbonation drops are just premeasured doses of priming sugar. Sometimes they'll be a mix of glucose and sucrose, or just a single sugar depending on the brand. But otherwise they're exactly the same as priming sugar, so no chemical or taste difference.

\n\n

They're probably being recommended by the instructions since they're pretty much impossible to mess up, which is great for new brewers since it's one less thing to worry about.

\n\n

I had heard a rumor once that the drops that came with hopped extract kits like Coopers or Mr. Beer also had Maltodextrin, which increases body and head retention since extract kits often have deficiencies in those departments. However, I've never found any actual sources to back this up so it's probably just be overhearing the guy at a home-brew shop talking out of his butt.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-05-07T13:06:39.327", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3369"}} +{ "Id": "3369", "PostTypeId": "1", "CreationDate": "2015-05-08T18:22:31.777", "Score": "3", "ViewCount": "182", "Body": "

I have long entertained gossip from self-proclaimed \"beer connoisseurs\" that the Guiness I am drinking is not really brewed in Ireland, nor the Beck's from Germany.

\n\n

I would imagine that where you are in the world really does determine where your particular bottle of macro brand X was bottled, so my question is how can you determine the true origin of the bottle -- can you trust the location on the bottle next to \"brewed and bottled by...\"?

\n", "OwnerUserId": "4070", "LastActivityDate": "2015-06-03T22:36:58.473", "Title": "How to determine where your beer was really bottled?", "Tags": "brewing bottling", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3370"}} +{ "Id": "3370", "PostTypeId": "1", "AcceptedAnswerId": "3382", "CreationDate": "2015-05-08T21:07:27.047", "Score": "5", "ViewCount": "212", "Body": "

I had acquired a couple of Samuel Adams \"one-off\" beers, specifically \"The Vixen (stout)\", \"Merry Mischief (gingerbread stout)\", \"Griffin's Bow (barley wine)\" and \"Norse Legend (Sahti)\". These bottles are either first, second or third batch, according to the label mind you. I had these beers for 2 years in a cellar, almost no light touches them and at room temperature.

\n\n

I know that most of this types of beer gets better with time, except for the Sahti, hadn't explored much of that type, but I would like to know if it's safe for the beers to be kept and for how long, and at a given time, what's the best way to drink them (chill them, room temperature, etc.). Thanks.

\n", "OwnerUserId": "4101", "LastActivityDate": "2015-05-13T16:47:11.423", "Title": "When and how to drink cellared beer?", "Tags": "taste storage serving temperature flavor", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3372"}} +{ "Id": "3372", "PostTypeId": "1", "AcceptedAnswerId": "3376", "CreationDate": "2015-05-09T11:48:17.607", "Score": "5", "ViewCount": "241", "Body": "

I'm curious to try some beer that closely mimics more historic styles, although:

\n\n
    \n
  1. I'm not too familiar with all of the styles and brewing methods of centuries past
  2. \n
  3. I don't always trust modern brewers to offer an authentic representation of old styles
  4. \n
\n\n

So I wonder: what were the ancients up to the early modern people drinking, and who can I get similar beers from?

\n", "OwnerUserId": "938", "LastActivityDate": "2015-05-11T13:01:00.207", "Title": "Modern, commercial beers that closely mimic historic styles", "Tags": "breweries style", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3373"}} +{ "Id": "3373", "PostTypeId": "2", "ParentId": "3372", "CreationDate": "2015-05-09T14:08:21.490", "Score": "1", "Body": "

The first one that comes to mind is Saison Dupont. It's an exemplar of the Belgian saison style.

\n\n

Allagash uses some historical methods, but their primary goal is definitely making excellent beer and not historical accuracy.

\n\n

Take a look at the BJCP style guidelines if you find the style you're interested in they'll list a couple beers that are true to style. Those may or may not be historically accurate, but they will be definitive examples of a style.

\n", "OwnerUserId": "3954", "LastActivityDate": "2015-05-09T14:08:21.490", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3374"}} +{ "Id": "3374", "PostTypeId": "2", "ParentId": "158", "CreationDate": "2015-05-10T02:04:54.590", "Score": "1", "Body": "

I had a beer with caviar in a slow food restaurant in Poznan Poland. It was a strong Poznan craft ale, and I have to report it was absolutely sublime.

\n\n

I was not over hopped, it was a strong one 6% or more.... anything yeasty to generate synergistic umami

\n", "OwnerUserId": "4106", "LastEditorUserId": "268", "LastEditDate": "2015-05-28T14:09:55.540", "LastActivityDate": "2015-05-28T14:09:55.540", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3376"}} +{ "Id": "3376", "PostTypeId": "2", "ParentId": "3372", "CreationDate": "2015-05-11T12:55:57.860", "Score": "3", "Body": "

Depending on where you live you might be able to find a local brewery that's doing some sort of a recreation of an older style. In the Massachusetts area Pretty Things Beer & Ale Project does a series of 1800s English ales called Once Upon a Time. Beer historian Ron Pattinson helps them design all those recipes based on his research, so they should be fairly accurate. Dogfish Head has a similar series called Ancient Ales which are best-guess recreations of VERY ancient middle eastern and asian beers based on archeological evidence...studying the chemical residue left on beer containers.

\n\n

You might be able to find some recreations by Brouwerij de Molen who also tapped Ron Pattinson to consult.

\n\n

Traditional Belgian styles are unlikely to have changed significantly, so those are an option. The smaller niche styles don't evolve as quickly, though the methods will be updated so they won't be as accurate as deliberate recreations. Saison Dupont was mentioned. Fantome springs to mind as well. Certain sour beers like Faro or Gueuze Lambics should be close, but avoid the fruity ones. Gose and Berlinerweisse might fit as well. A lot of those European sour brewers have been doing things basically the same way for like 500 years.

\n\n

If you can find anyone brewing a Sahti that would be an interesting adventure. I've also heard rumor of a few recreations of styles like Gratzer/Grodziskie, I think New Belgium might make one...

\n\n

On the smaller scale, if you're really interested see if you can find Frank Clark or Bob Grossman at a conference you might be able to get them to let you try a historic recreation beer, they generally work in the 1600s-1700s. Frank Clark works as a food historian at Colonial Williamsburg so he should be easy to track down. But I warn you, you probably don't want to actually drink the majority of that stuff. Brewing was very different back in the day and a lot of their beers are pretty foul to modern tastes. Differently prepared sugars and odd herbs and spices. Stuff like boiling molasses until it literally lights on fire then fermenting it...kilning grains until some of the kernels straight explode and burn. And let's not even get into stuff like cock ale, which had a parboiled rooster added during secondary fermentation.

\n\n
\n\n

Sorry, that got ramble-y, but the gist was: Pretty Things Once Upon a Time if you can get it. Anything involving Ron Pattinson. Dogfish Head Ancient Ales. Traditional Belgian Saisons. Sour Beers: Lambic, Gueuze, Berlinerweisse, Gose, Gratzer, Flemish Red. Frank Clark might let you drink really gross-tasting things that were technically considered beer in Colonial-era America.

\n", "OwnerUserId": "268", "LastEditorUserId": "268", "LastEditDate": "2015-05-11T13:01:00.207", "LastActivityDate": "2015-05-11T13:01:00.207", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3377"}} +{ "Id": "3377", "PostTypeId": "2", "ParentId": "3257", "CreationDate": "2015-05-12T11:48:08.830", "Score": "0", "Body": "

How about a beer with German Tradition in it.

\n\n

IT is called \"Tannenzäpfe\" which translates to a small pinecone from a fir

\n", "OwnerUserId": "4109", "LastActivityDate": "2015-05-12T11:48:08.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3378"}} +{ "Id": "3378", "PostTypeId": "2", "ParentId": "887", "CreationDate": "2015-05-12T20:51:35.957", "Score": "2", "Body": "

There is no significant difference in preparation between barley wine and any other strong ale, some barley wines are made with OG's as low as 1.062 (Smithwick's) and the main characteristic is they have very strong kilned malt flavors.

\n\n

In my opinion Barley Wine is to Malt, what an IPA is to Hops.

\n", "OwnerUserId": "4111", "LastActivityDate": "2015-05-12T20:51:35.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3379"}} +{ "Id": "3379", "PostTypeId": "2", "ParentId": "3369", "CreationDate": "2015-05-12T23:46:46.083", "Score": "2", "Body": "

The can/bottle is required to have country of origin listed on it.

\n\n

Most US Guinness Extra Stout is brewed in either Toronto or New Brunswick, depending on the contract brewer. All of the Guinness Draught is brewed in their historic brewery in Dublin. However, debate abounds about whether the US recipe is different.

\n\n

\"Guinness

\n", "OwnerUserId": "1569", "LastActivityDate": "2015-05-12T23:46:46.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3382"}} +{ "Id": "3382", "PostTypeId": "2", "ParentId": "3370", "CreationDate": "2015-05-13T16:47:11.423", "Score": "4", "Body": "

Beers that are high in ABV, have been bottle-conditioned or have been barrel-aged are prime for aging and cellaring. Usually the brewer will say on the bottle or their website what the max amount of suggested aging time is. For instance, Goose Island Bourbon County Brand Stout state \"develops over 5 years in the bottle.\" I bought a case of 2012 and have one about every 6 months...and they get better and better.

\n\n

They should have been kept at about 50-55 degrees over the time of aging. What did you have them at?

\n", "OwnerUserId": "4116", "LastActivityDate": "2015-05-13T16:47:11.423", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3384"}} +{ "Id": "3384", "PostTypeId": "2", "ParentId": "887", "CreationDate": "2015-05-18T22:43:28.750", "Score": "1", "Body": "

A key distinction between barley wine and other strong ales is the presence of residual sugars. When made right, the yeast will be unable to finish fermentation due the high alcohol content. The remaining sugars should then provide the complex fruity/malty/toasty flavors mentioned in the bjcp guide.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-05-18T22:43:28.750", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3385"}} +{ "Id": "3385", "PostTypeId": "1", "CreationDate": "2015-05-19T20:52:00.167", "Score": "4", "ViewCount": "935", "Body": "

So I just recently got a growler and so far so great. The only problem I am having is finding places where I can fill up. Does anyone have any recommendations as to location in the San Francisco Bay area (South Bay would be great). There seems to be surprisingly little, easy to find information on the internet about this.

\n", "OwnerUserId": "4136", "LastActivityDate": "2016-06-23T07:03:35.337", "Title": "Growler fillups in San Jose/South Bay Area", "Tags": "growlers", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3386"}} +{ "Id": "3386", "PostTypeId": "1", "AcceptedAnswerId": "5037", "CreationDate": "2015-05-23T15:34:51.950", "Score": "6", "ViewCount": "211", "Body": "

Does anybody know the best place for brewed beer in Pune, Maharashtra, India?

\n\n

I have visited a few breweries in Mumbai recently, and I became a fan of the brewed beer, the flavours they offered there, mostly of the Belgian Ale.

\n\n

I would like to know if there is any similarly good brewery in Pune? I would like to visit.

\n", "OwnerUserId": "3917", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:52:41.217", "LastActivityDate": "2016-07-25T07:35:37.983", "Title": "Brewed Beer in Pune", "Tags": "breweries", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3387"}} +{ "Id": "3387", "PostTypeId": "1", "AcceptedAnswerId": "4616", "CreationDate": "2015-05-25T15:19:31.610", "Score": "3", "ViewCount": "83", "Body": "

In the past few years I've become more interested in Trappist beers (who wouldn't be?). Buying a Chimay or a Rochefort at the LCBO in Ontario is something I now do on the regular.

\n\n

However, I've heard recently that the shipping process from Europe to the shelves in an LCBO in Ontario takes a long time, and is not always friendly to the beer.

\n\n

So I wonder:

\n\n
    \n
  • what exactly is the process to get a Trappist from Europe to Ontario?
  • \n
  • does this process often take it's toll on the beer?
  • \n
\n", "OwnerUserId": "938", "LastActivityDate": "2015-10-01T11:05:05.020", "Title": "Does the process of shipping Trappists to Ontario, Canada damage the beer?", "Tags": "trappist", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3388"}} +{ "Id": "3388", "PostTypeId": "1", "AcceptedAnswerId": "3389", "CreationDate": "2015-05-27T20:25:58.560", "Score": "5", "ViewCount": "331", "Body": "

I read in a blog post a few months ago that Westvleteren 12 is considered one of the, if not the, best example of a Trappist. I had one shortly after and it was a very, very good beer, although I don't know if it was so different from other similar versions (i.e. Rochefort 10) that I'd feel comfortable calling it 'the best'.

\n\n

That said, I wonder if there's any particular Trappist that's normally considered the best of the style?

\n", "OwnerUserId": "938", "LastActivityDate": "2016-01-11T13:12:04.797", "Title": "Is there an example of the Trappist style that's considered the best of the style?", "Tags": "trappist", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3389"}} +{ "Id": "3389", "PostTypeId": "2", "ParentId": "3388", "CreationDate": "2015-05-28T13:42:57.833", "Score": "8", "Body": "

\"Trappist\" isn't so much a style as it is a commercial label. Something like \"Organic\" or \"Kosher\" that comes with a set of regulated conditions that product was produced under.

\n\n

Per wikipedia, to be able to be labelled a Trappist beer:

\n\n
    \n
  • The beer must be brewed within the walls of a Trappist monastery, either by the monks themselves or under their supervision.
  • \n
  • The brewery must be of secondary importance within the monastery and it should witness to the business practices proper to a monastic way of life
  • \n
  • The brewery is not intended to be a profit-making venture. The income covers the living expenses of the monks and the maintenance of the buildings and grounds. Whatever remains is donated to charity for social work and to help persons in need.
  • \n
  • Trappist breweries are constantly monitored to assure the irreproachable quality of their beers.
  • \n
\n\n

A lot of those monasteries also make lighter or hoppy beers. Engelszell even uses honey in their beers, so there's a pretty significant variety when it comes to what you can call \"Trappist\".

\n\n

But if we're talking the classic dark Belgian-y abbey ale. According to the Beer Advocate ratings, the top Trappist-produced beers are:

\n\n
    \n
  1. Westvleteren 12
  2. \n
  3. Rochefort 10
  4. \n
  5. Chimay Cinq Cents
  6. \n
  7. Achel Extra Blond
  8. \n
  9. Rochefort 8
  10. \n
\n\n

Through user rankings. The Brothers that run the site give Rochefort 8 a higher rank than 10, which I agree with, and give both Rochefort's a higher rating than Westy 12.

\n\n

So I guess the answer is that somewhere between Westvleteren 12, the Rochefort 8 and 10, and Chimay is the best Trappist beer. But even in the top 5 here there's some variation since Chimay and Achel are blondes, and Rochefort 8 is a fair lower ABV than the other 3.

\n\n

With the styles being so wide, the real answer is probably whichever one you like drinking the most.

\n\n

Though really, Rochefort 8 forever.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-05-28T13:42:57.833", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3391"}} +{ "Id": "3391", "PostTypeId": "1", "AcceptedAnswerId": "3392", "CreationDate": "2015-05-29T12:44:10.360", "Score": "8", "ViewCount": "3605", "Body": "

I have seen a lot of beers that have been corked and I can't really understand what the significance is. When I tried to look it up, most of what I found is just related to how to properly store corked beer and similar means, but nothing really answering my question.

\n\n

I am trying to figure out what corking a beer actually does to it and if there are any real benefits.
\nIs it simply a style choice or is it there for a reason like it is for wine bottles?
\nDoes it actually have an effect on the beer's taste, quality, etc?

\n", "OwnerUserId": "1104", "LastEditorUserId": "9887", "LastEditDate": "2020-01-07T22:06:23.267", "LastActivityDate": "2020-03-02T08:48:36.893", "Title": "Why cork a beer?", "Tags": "taste storage bottling quality", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3392"}} +{ "Id": "3392", "PostTypeId": "2", "ParentId": "3391", "CreationDate": "2015-05-29T16:41:26.840", "Score": "8", "Body": "

The likely answer is somewhere between carbonation pressure and marketing.

\n\n

It's hard to find numbers for how much caps can handle vs corks but you should notice that most corked beers also come in bottles with very thick glass, this is because the beer inside is at a higher pressure than most other styles.

\n\n

Most beer styles will fall pretty close to 2.0 or 2.5 volumes of CO2 (just the term, think of the number as a relative baseline), but a lot of Belgian strong beers like Bierre de Garde or Tripel will be carbonated with 3.3+ volumes. Lambics and other sour beers can go up to 4.5 volumes. This is a linear scale so that becomes possibly twice as much pressure as a normal bottle...so yeah, thicker glass.

\n\n

At such high pressure you might find corks will stay put more reliably than a cap since it has more surface area in contact with the bottle. It also might provide a more airtight seal than a cap for long-term aging.

\n\n

Those would be technical considerations.

\n\n

Corking also predated capping so there's also a very traditional feel about a bottle with a cork and a cage, which can fit into the traditional image a lot of breweries market themselves using. I say I'm not sure and it could just be marketing because a lot of Wheat styles like German Wheats, Belgian Wits, etc are fairly highly carbonated (near the 3.3 volumes range) but most of them have no problems being capped.

\n\n

As to the affect on taste? Nada, apart from hypothetical aging concerns...unless mistreated you should not taste the cork.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-05-29T16:41:26.840", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3393"}} +{ "Id": "3393", "PostTypeId": "1", "CreationDate": "2015-06-03T10:25:20.410", "Score": "2", "ViewCount": "193", "Body": "

Who was the person or company that made beer selling commercial .

\n", "OwnerUserId": "2647", "LastEditorUserId": "2647", "LastEditDate": "2015-06-03T12:21:29.467", "LastActivityDate": "2015-06-03T13:25:06.927", "Title": "Who made commercialization of beer possible", "Tags": "history specialty-beers laws local recommendations", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3394"}} +{ "Id": "3394", "PostTypeId": "2", "ParentId": "3393", "CreationDate": "2015-06-03T13:25:06.927", "Score": "2", "Body": "

The answer is probably the dawn of human civilization. Beer was probably one of the first consumables ever commercialized. We can find commercial receipts for the sale of beer dating back over 4,000 years (Alulu beer receipt, 2050 BC) and advertisements for beer from even further back (Ebla Tablets, 2500-2250 BC)

\n\n

Hammurabi's Code from ~1750 BC has several sections detailing punishments for bartenders who try to short-change their customers.

\n\n

Realistically, beer has probably been a commercial product for longer than it hasn't.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-06-03T13:25:06.927", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3395"}} +{ "Id": "3395", "PostTypeId": "1", "AcceptedAnswerId": "3398", "CreationDate": "2015-06-03T18:58:38.353", "Score": "3", "ViewCount": "402", "Body": "

I got my hand on a few bottles of Trappist Westvleteren (yay!) and of course I want to drink it at the right temperature. The \"right\" temperature is \"cellar\", but alas, I do not have a cellar.

\n\n

What is the best way to chill a 30cl bottle to \"celler\" temperature, using a fridge? Drinking it too cool or warm would be quite a pity for a 8 euro bottle.

\n", "OwnerUserId": "4167", "LastActivityDate": "2015-06-04T13:40:41.950", "Title": "How to chill a 30cl bottle to \"cellar\" temperature?", "Tags": "specialty-beers trappist cooling", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3397"}} +{ "Id": "3397", "PostTypeId": "2", "ParentId": "3369", "CreationDate": "2015-06-03T22:36:58.473", "Score": "1", "Body": "

You have to read the small print. In the UK there is a Japanese beer called Asahi and on the front it has Japanese kanji writing and \"IMPORTED\" in big letters. But reading the small print on the side it says it is brewed in the Czech republic.

\n", "OwnerUserId": "3775", "LastActivityDate": "2015-06-03T22:36:58.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3398"}} +{ "Id": "3398", "PostTypeId": "2", "ParentId": "3395", "CreationDate": "2015-06-04T13:40:41.950", "Score": "3", "Body": "

Cellar temperature is generally anywhere between 7-18 degrees Celsius (45-65F) though people don't often go above 13C (55F), so there's a decent range to be in.

\n\n

You can use your fridge. For comparison you can fill a glass with the same volume of liquid and set it next to the bottle, leaving a thermometer in it. As long as they start off near the same temperature, that'll give you a pretty close approximation of the current temperature of the beer. It might be easier to chill to the fridge temperature then let them warm back up. It's not going to damage the beer and most fridges are close to the bottom end of \"cellar\" anyway so it won't take too long to warm up to where you want it. Evaporation and glass thickness are going to create a difference, but given the range of temperatures, it should be close enough.

\n\n

If you wanted to get really fancy, water is a much better conductor of thermal energy than air. You could get a large jug and fill it with 13C water, then put one of the Westy bottles in it for maybe 10-20 minutes, stirring frequently.

\n\n

Though all that said, when trying expensive and multifaceted beers like this, I really enjoy chilling them to my fridge temperature then nursing the beer for a good while to compare the flavors as it warms up.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-06-04T13:40:41.950", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3399"}} +{ "Id": "3399", "PostTypeId": "2", "ParentId": "3289", "CreationDate": "2015-06-04T16:01:15.167", "Score": "0", "Body": "

Well there is some small convenient store in Montreal that you can buy some

\n\n

Here is the address of the one I go:

\n\n

Dépanneur Paul\n50 Avenue des Pins\nMontréal, QC H2W 1N5

\n", "OwnerUserId": "4170", "LastActivityDate": "2015-06-04T16:01:15.167", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3400"}} +{ "Id": "3400", "PostTypeId": "2", "ParentId": "2133", "CreationDate": "2015-06-04T18:02:27.190", "Score": "1", "Body": "

You could use flickr Beer Nation group.\nhttps://www.flickr.com/groups/beer_nation/

\n\n

Then subscribe to a feed.\nhttps://www.flickr.com/get_the_most.gne#rss

\n\n

This way you will get pictures of beer every day. If you want to use their photos for your own calendar you are allowed to do this according to flickr's rules. A quick Google of github.com, lists some open source repositories you can use.

\n", "OwnerUserId": "3775", "LastActivityDate": "2015-06-04T18:02:27.190", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3402"}} +{ "Id": "3402", "PostTypeId": "1", "AcceptedAnswerId": "3405", "CreationDate": "2015-06-06T03:30:57.737", "Score": "4", "ViewCount": "2585", "Body": "

These days I drink almost as much liquor as I do beer, and it seems like beer more commonly causes sleepiness and fatigue, where liquor gives a straight up 'drunken' effect.

\n\n

I wonder, though, is this actually the case or is my perception of the two drinks a self fulfilling prophecy?

\n", "OwnerUserId": "938", "LastActivityDate": "2015-06-08T15:36:45.077", "Title": "Does beer cause more fatigue than liquor?", "Tags": "liquor", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3403"}} +{ "Id": "3403", "PostTypeId": "1", "AcceptedAnswerId": "3406", "CreationDate": "2015-06-08T02:08:00.350", "Score": "5", "ViewCount": "111", "Body": "

A few years ago I moved to a bigger city where the craft beer selection got quite a bit broader from where I was living previously. For a while it was like being a kid in a candy store with so many different beers to choose from.

\n\n

Then as I got more experienced with beer I started getting more of an idea of the different styles that are out there, and what each of these styles tends to be like. What I noticed after a while was that if I tried 2-3 different examples of the same style, while I could quantitatively say that one was better than another, for the most part they would all taste similar.

\n\n

So this brought into question the 'craft beer obsession' that I had been riding for a while. I began to think that, maybe, at some point a chocolate stout is pretty much just a chocolate stout, an ipa is pretty much just an ipa, and whether you're drinking an ipa from here or there, you're basically getting the same experience.

\n\n

So with that said I wonder:

\n\n
    \n
  • is there any type of objective measure of the variation amongst specific styles?
  • \n
  • outside of esoteric beers that aren't commonly available, is 'trying as many as you can' really worth it?
  • \n
\n", "OwnerUserId": "938", "LastActivityDate": "2015-06-11T00:43:17.120", "Title": "Is there a wide variation amongst specific styles?", "Tags": "style", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3404"}} +{ "Id": "3404", "PostTypeId": "2", "ParentId": "3402", "CreationDate": "2015-06-08T09:03:14.997", "Score": "0", "Body": "

While this is merely anecdotal, I agree with you that beer makes me more sleepy than liquor. My theory is that perhaps it has to do with the carbohydrates (think thanksgiving dinner).

\n", "OwnerUserId": "4181", "LastActivityDate": "2015-06-08T09:03:14.997", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3405"}} +{ "Id": "3405", "PostTypeId": "2", "ParentId": "3402", "CreationDate": "2015-06-08T15:36:45.077", "Score": "4", "Body": "

It could definitely be a perception thing or any difference with the situation in which you consume beer vs liquor. (IE, if you're drinking a lot of Jack and Coke maybe that caffeine is helping keep you alert?)

\n\n

I think the most compelling answer is that there's actually a decent amount of research that shows hop compounds actually have a slightly sedative effect, especially in conjunction with alcohol. So...you know, beer.

\n\n

Some sources:

\n\n

National Institute of Health: The concentration of 2 mg of hop extract effectively decreased nocturnal activity in the circadian activity rhythm.

\n\n

WebMD (Look under \"Interactions\"): Alcohol can cause sleepiness and drowsiness. Hops might also cause sleepiness and drowsiness. Taking large amounts of hops along with alcohol might cause too much sleepiness.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-06-08T15:36:45.077", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3406"}} +{ "Id": "3406", "PostTypeId": "2", "ParentId": "3403", "CreationDate": "2015-06-08T18:21:49.190", "Score": "2", "Body": "

When you're designing a recipe in software like Beersmith or Brewtoad they give you ranges for each style, so when you select a style you can tailor your recipe to be in the \"acceptable range\" for that style. Obviously just hitting the numbers isn't going to make the correct beer, but these are quantitative numeric measures of variation over a style.

\n\n

These dimensions are:

\n\n
    \n
  • Original/Final Gravity (Sugar in the beer before and after fermentation)
  • \n
  • SRM (Measure of Color)
  • \n
  • ABV
  • \n
  • IBU (International Bitterness Units)
  • \n
\n\n

These don't describe a ton about the actual flavor of the beer, just things like color, strength, body/sweetness, bitterness. Note that while the ABV is tied to the difference between gravities, final gravity is and independent measure of the \"dryness\" of the beer. Color and Bitterness are also totally independent of the others so you can have beers at the light color and bitter end but sweet, or dry and dark.

\n\n

You can also check the BJCP guides which are for competitions to see what the \"ideal\" qualities of a given style are and then numerically grade a beer based on how well it meets those descriptions. But they do describe what's allowed as variance for being considered \"on style\".

\n\n

Of course plenty of brewers just don't care about that sort of thing and make beers how they like.

\n\n

It's obviously opinion at this point but I think there's value in trying many different beers even though they may be in a style you've had a ton of before. Each beer is different and those subtle differences may be the differences that really make you like one beer over another. Maybe not a ton of the same thing in the same session...

\n\n

According to untapp'd I've tried 85 IPAs, though the actual number is much higher than that. Some have tasted like feet and onions, some have tasted amazing. But as many as I've had if I see some IPAs on a menu and kind of want to drink an IPA, I've got nothing to lose by trying the one I've never had before...it might be really good.

\n", "OwnerUserId": "268", "LastEditorUserId": "268", "LastEditDate": "2015-06-09T14:59:49.180", "LastActivityDate": "2015-06-09T14:59:49.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3407"}} +{ "Id": "3407", "PostTypeId": "2", "ParentId": "3391", "CreationDate": "2015-06-09T13:53:00.133", "Score": "4", "Body": "

A cap is not going to fly off a bottle unless it is not properly seated, no matter the carbonation. It is crimped onto the bottle. The bottle will first explode. It is also incorrect that a cork is necessary for higher carbonated beers. Many of the styles identified at higher carbonation volumes also come in capped bottles (particularly 375ml bottles).

\n\n

Corks do provide a better seal that slows the flow of air into the beer so those bottles will age more slowly than bottles with caps. That is the primary technical difference between the two.

\n\n

The primary reasons for corking beer today is marketing. In some areas where corked bottles were traditionally used for bottling it was easier to get champagne bottles or similar bottles that could support carbonation and corking became a matter of convenience as it was cheaper to source bottles locally. However, now it is just a matter of marketing the product. All other corked bottles went into large format, corked bottles to make them look like a classier product than a six pack and legitimize higher prices in the customers' eyes. That is true for the beers you find on the market today in almost all cases. Very few beers go into corked bottles because the brewer truly believes it is necessary for the long term quality of the beer in a way that a cap or a cap plus wax would not provide.

\n", "OwnerUserId": "4188", "LastActivityDate": "2015-06-09T13:53:00.133", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3408"}} +{ "Id": "3408", "PostTypeId": "2", "ParentId": "415", "CreationDate": "2015-06-09T13:57:31.487", "Score": "1", "Body": "

It's always going to be a matter of preference. I prefer most beers around 55-60 but do not hesitate to drink beer at room temperature. Some styles are more enjoyable approaching room temperature.

\n\n

Historically, most beer was served at cellar temperature to room temperature, depending upon what was available. That isn't just an English tradition. Any beer can be consumed warm and drinking it ice cold as mass produced lagers are usually served tends to hide most of the flavor that you are paying for in a good beer. Give it a try and see what you like. Maybe you don't like your beer a little warmer. Enjoy what you like.

\n", "OwnerUserId": "4188", "LastActivityDate": "2015-06-09T13:57:31.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3409"}} +{ "Id": "3409", "PostTypeId": "2", "ParentId": "3385", "CreationDate": "2015-06-10T19:18:22.223", "Score": "1", "Body": "

Most places (generally everywhere and certainly in Bay Area) allow only their own growlers to be filled with their beer. Thus if you buy a Growler from ISO Beers, they will not fill it at Original Gravity 2 blocks away (both very decent places).

\n\n

It is just not good business - they want you to come in and pay premium on their single draft beers. So if you want to take some to go they want to at least win your loyalty by giving you discount on Growler fill, but make sure you come back to their brewery.

\n", "OwnerUserId": "4197", "LastActivityDate": "2015-06-10T19:18:22.223", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3410"}} +{ "Id": "3410", "PostTypeId": "2", "ParentId": "123", "CreationDate": "2015-06-10T19:33:35.797", "Score": "7", "Body": "

Just wanted to add to some of the already great answers…

\n\n

Although it has been mentioned what the characteristics of Nitro are, and why that might be good for the beer drinking experience, it hasn't really been said why to use it or rather why its used in lieu of CO2.

\n\n

History

\n\n

It was mentioned that the historical carbonation process was very different, but nobody has connected the two, so I figure I'll add a little input to hopefully color in a bit more. A lot of the reason for carbonation is to preserve the beer. By replacing the oxygen in the keg the beer will last longer. Now we associate the carbonation with beer but that was not always there traditionally. While it is true that older beer bottled from barrel storage was carbonated during bottling it wasn't mentioned that historically beer was poured from the cask and therefore not carbonated beyond natural carbonation.

\n\n

Cask

\n\n

In this string cask beer wasn't mentioned but it is literally from the barrel. It is the smoothest and creamiest way to \"tap\" beer. It's also considered the best by many purists. It however has a huge limitation in modern applications. The barrels don't last as long and thereby need to be smaller, swapped out more often, and potentially wasted if not used quick enough. For this reason most businesses opt for the larger, easier, cheaper carbonated kegs.

\n\n

Purists

\n\n

As stated before by Jeffrey Lin the Nitro is a newer solution but I have to take exception to his explanation of the unnatural side of Nitro. Really the purists are fine with nitro. They may not be particularly fond of the \"in-can\" nitro widget, but really the process just replaces a larger CO2 bubble with the smaller finer bubbles of dissolved nitrogen and thereby some dissolved C02 as well. Purists truly would be more likely to enjoy a cask pour but as Nitro, in a lot of ways, is closer to cask both in consistency and the \"creaminess\" described it goes without saying this would be enjoyed by the purists as well.

\n\n

Types of Beer for Nitro

\n\n

There are many types of beer where smooth finer bubbles are appropriate. Guinness being only one that comes to mind but really most British milds. Also English ales, pales and creams just to mention a few. The older styles from England were flat compared to American lagers and most modern beers. Another good example is a Boddingtons. Finer bubbles fit the mold with anything that traditionally would be served from the cask.

\n\n

Technology

\n\n

As with most new technology it serves a purpose and in this case the purpose is two-fold. Store without oxygen to prevent going bad, and keep with the original intended style of those types of beers. The discussion of flavor change is slightly off because flavor change would only be present if oxygen were allowed to be present in the beer when kegged. Texture change is more accurate and the nitro is an effort to more closely approximate that.

\n\n

Conclusion

\n\n

Hope that is helpful to fill in some details and thanks to Sloloem for helping, hopefully it is more easily digestable/readable? It may not be science but historically speaking it might be philosophy…

\n", "OwnerUserId": "3885", "LastEditorUserId": "3885", "LastEditDate": "2015-06-11T18:30:01.180", "LastActivityDate": "2015-06-11T18:30:01.180", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3411"}} +{ "Id": "3411", "PostTypeId": "2", "ParentId": "3403", "CreationDate": "2015-06-11T00:43:17.120", "Score": "1", "Body": "

Absolutely there is. It's an extraordinarily difficult task to even get a single recipe to taste the same when produced in different locations, such as when Sierra Nevada expanded and added an east coast brewery in North Carolina last year. Different recipes, different ingredients, different water all effect the end result in ways that you can taste. While some beers in a given style will absolutely end up tasting quite similarly, there will always be plenty of variation for you to pick up on and enjoy, particularly when tasting beers of a given style from different regions.

\n", "OwnerUserId": "37", "LastActivityDate": "2015-06-11T00:43:17.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3412"}} +{ "Id": "3412", "PostTypeId": "2", "ParentId": "312", "CreationDate": "2015-06-12T17:35:03.090", "Score": "3", "Body": "

A saison would be the closest if you want \"authenticity\". This soup was usually a breakfast dish made with very weak farmhouse style ale often served to farm workers. The beers were locally brewed often by the farmers themselves. It only had about 3-4% abv so even today's commercial saisons have a bit more (5-8% abv). Sometimes kvas was used. Kvas is a light brew made from fermenting stale/dried bread (1-3% abv).

\n", "OwnerUserId": "4204", "LastActivityDate": "2015-06-12T17:35:03.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3413"}} +{ "Id": "3413", "PostTypeId": "2", "ParentId": "338", "CreationDate": "2015-06-18T15:18:52.910", "Score": "2", "Body": "

There was another source that I read (probably that 1000 page beer encyclopedia that I forgot the title of) where they said that a saison was made with whatever ingredients that were available at hand at that season.

\n", "OwnerUserId": "4224", "LastActivityDate": "2015-06-18T15:18:52.910", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3414"}} +{ "Id": "3414", "PostTypeId": "1", "AcceptedAnswerId": "3415", "CreationDate": "2015-06-22T19:28:25.223", "Score": "6", "ViewCount": "2704", "Body": "

In many beer tasting guides it tells to describe the head, or to 'admire' the head of the beer. From Wikipedia, I understand that:

\n\n
\n

Beer head (also head) is the frothy foam on top of beer which is produced by bubbles of gas, typically carbon dioxide, rising to the surface. The elements that produce the head are wort protein, yeast and hop residue. The carbon dioxide that forms the bubbles in the head is produced during fermentation.

\n
\n\n

But what is the actual significance of focusing on the head of the beer so much? Why does one concern themselves with how much head exists, how long it lasts, etc?

\n", "OwnerUserId": "4238", "LastEditorUserId": "4238", "LastEditDate": "2015-06-23T21:26:43.587", "LastActivityDate": "2019-07-07T00:14:44.337", "Title": "What is the significance of a beer's head?", "Tags": "head", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3415"}} +{ "Id": "3415", "PostTypeId": "2", "ParentId": "3414", "CreationDate": "2015-06-23T14:09:47.053", "Score": "5", "Body": "

There are some good answers here, but to distill and maybe enhance:

\n\n

Beer heads are a great indication of proper serving because if any number of factors that could affect the taste are off, they'll also affect the head. Some of these are:

\n\n
    \n
  • Warm beer foams too much. If your server is dumping tons of head down the drain to fill your glass with enough beer, it might be too warm.
  • \n
  • Too much pressure in the keg makes beer foam too much. The brewer carbonated it to the level they wanted, the bar might be over-carbonating it.
  • \n
  • Cold beer does not foam very much. If the kegs are chilled too cold or the bar is serving beer in a frozen glass, your beer is probably too cold. Cold temperatures will dull flavors and kill aromas. Obviously if you're into beer for flavor, this is bad.
  • \n
  • Dirty glasses tend to dissipate the foam very quickly, so you could be drinking whatever was in the glass before, or soap scum... neither of which sounds very tasty.
  • \n
  • Under-carbonated beer doesn't foam very much. Under-carbonation can also dull flavors since so much of taste is based on smell and you can't smell volatile aromatics if there's no fizz to carry them out of the liquid.
  • \n
\n\n

There are various schools of thought on the head as an indicator of beer's quality or freshness but realistically this will vary by style. Think of the thick creamy head of Guinness stout; remove the head and you completely change the experience. The large luxurious heads of Belgian beers, or the thinner off-color head of porters.

\n\n

Also, without a good head with lots of tiny popping bubbles of CO2 to spray the air above the glass with volatile aromatic oils, you wouldn't have nearly as much hoppiness to smell and taste in an IPA or spices from a Belgian style.

\n", "OwnerUserId": "268", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2015-06-24T13:31:26.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3416"}} +{ "Id": "3416", "PostTypeId": "1", "CreationDate": "2015-06-23T16:13:24.883", "Score": "5", "ViewCount": "1136", "Body": "

anyone know where you can buy US/American craft beers in Europe. Which shops/websites sell US craft beer and will ship it to other EU countries? Or any wholesalers/distributors to contact.

\n", "OwnerUserId": "4240", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:51:56.370", "LastActivityDate": "2017-07-19T10:43:43.297", "Title": "Where can you buy US craft beer in Europe that will ship to other EU countries?", "Tags": "distribution craft-beers", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3417"}} +{ "Id": "3417", "PostTypeId": "1", "CreationDate": "2015-06-23T19:00:38.220", "Score": "3", "ViewCount": "13371", "Body": "

Why is draught (draft) beer known to cause more hangovers than bottled beer?

\n", "OwnerUserId": "4241", "LastActivityDate": "2019-09-16T19:41:00.623", "Title": "Why does draught (draft) beer cause hangovers?", "Tags": "draught bottles", "AnswerCount": "4", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3418"}} +{ "Id": "3418", "PostTypeId": "2", "ParentId": "3417", "CreationDate": "2015-06-23T19:49:57.943", "Score": "7", "Body": "

Draft beer does not give you a hangover, headache, or any kind of sickness just because it is a draft beer. If you’ve ever felt sick after drinking draft beer, you either:

\n\n
    \n
  • Had too much
  • \n
  • Drank from a dirty tap.
  • \n
\n", "OwnerUserId": "4238", "LastActivityDate": "2015-06-23T19:49:57.943", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3419"}} +{ "Id": "3419", "PostTypeId": "2", "ParentId": "3414", "CreationDate": "2015-06-23T21:24:51.813", "Score": "0", "Body": "
\n

You taste and judge beer more or less like wine. Among the first things (after looking at the color) is the fragrance. Pouring a beer with a good head brings more of that out. You can test it yourself. Open a bottle of good beer (not an ordinary lager) and pour two glasses: one with a good head (2-3 centimeters) and one without any. Then see which one has the most fragrance.

\n
\n\n

This was an answer on a similar Quora question here.

\n", "OwnerUserId": "4238", "LastEditorUserId": "4238", "LastEditDate": "2015-06-23T21:41:22.313", "LastActivityDate": "2015-06-23T21:41:22.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3420"}} +{ "Id": "3420", "PostTypeId": "1", "AcceptedAnswerId": "3422", "CreationDate": "2015-06-23T21:32:53.403", "Score": "8", "ViewCount": "84730", "Body": "

Asking as a beer lover, my roommate does not enjoy most beers, nor does my fiancé. I have nobody to share my enjoyment and taste testing with. What is a good beer that I can get them started out on to maybe get them to eventually appreciate the taste of beer?

\n\n

They enjoy sweeter flavors, whereas I enjoy more bitter flavors.

\n\n

My roommate recently started drinking Angry Orchards and will occasionally drink a Blue Moon Cinnamon Horchata Ale, so he is starting to appreciate the taste more, but my fiancé just has not found her favorite yet. She says that she didn't mind Dos Equis as much as others, but still didn't really like it.

\n\n

Is there a beer that is good for starters that is not overwhelmingly \"beery\"?

\n", "OwnerUserId": "4238", "LastEditorUserId": "5847", "LastEditDate": "2021-03-30T10:13:45.183", "LastActivityDate": "2021-09-02T16:23:37.317", "Title": "What is a good beer for starters, or people who don't typically enjoy the taste of beer?", "Tags": "recommendations flavor", "AnswerCount": "13", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3421"}} +{ "Id": "3421", "PostTypeId": "1", "CreationDate": "2015-06-23T23:16:58.210", "Score": "17", "ViewCount": "753", "Body": "

Duff is the only one of which I am aware. I know there are Game of Thrones inspired brews, but are there any others that originated from works of fiction?

\n", "OwnerUserId": "4245", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:43:49.140", "LastActivityDate": "2017-08-20T11:13:01.623", "Title": "What other beer brands began as fictional but eventually became real?", "Tags": "history", "AnswerCount": "8", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3422"}} +{ "Id": "3422", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-06-24T14:32:36.207", "Score": "8", "Body": "

This largely depends on the person's tastes, but in general one that tastes good. In my experience, most men I know are already beer drinkers, and most women I know have only been exposed to beer in the form of generics like Canadian, Bud, Coors Light.. etc (no introduction to beer at all, and likely a big reason why they don't like it).

\n\n

The predominant character of these beers is that they're bitter and flavorless, so if that's what people don't like: move in the opposite direction. When I got my girlfriend into beer I introduced her to particulars like 'St. Ambroise Apricot Ale' and a 'Fruli'. She had no idea that fruity, sweet beers like this existed, and after trying enough of them she became more of a beer person.

\n\n

So in general spiced or sweet beers are usually a good direction to go, but it also depends on the person's tastes. You might find they can jump to a complex and heavy beer quickly, but for most people they have to move gradually into this realm.

\n", "OwnerUserId": "938", "LastActivityDate": "2015-06-24T14:32:36.207", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3423"}} +{ "Id": "3423", "PostTypeId": "2", "ParentId": "3417", "CreationDate": "2015-06-25T15:14:32.517", "Score": "2", "Body": "

Because you end up drinking more of it ;-)

\n", "OwnerUserId": "608", "LastActivityDate": "2015-06-25T15:14:32.517", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3424"}} +{ "Id": "3424", "PostTypeId": "1", "AcceptedAnswerId": "3433", "CreationDate": "2015-06-25T19:07:17.137", "Score": "5", "ViewCount": "131", "Body": "

When I drink beer I can taste a bitter, then slightly sweetness, then kind of a lingering flavor of something. I'm curious - is the lingering flavor the malt, or the hops? What contributes to the bitterness - the malt or the hops?

\n\n

I would like to know the taste differences between the two.

\n", "OwnerUserId": "4238", "LastEditorUserId": "4238", "LastEditDate": "2015-06-25T20:31:44.763", "LastActivityDate": "2015-06-28T12:46:39.027", "Title": "The taste of hops, malt", "Tags": "taste flavor hops malt", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3425"}} +{ "Id": "3425", "PostTypeId": "5", "CreationDate": "2015-06-25T20:32:47.663", "Score": "0", "Body": "

Malts (and adjuncts) provide the fermentable sugars that are required to make beer (and to make beer \"sweet\"). The process of malting converts insoluble starch to soluble starch, reduces complex proteins, generates nutrients for yeast development, and develops enzymes.

\n", "OwnerUserId": "4238", "LastEditorUserId": "4238", "LastEditDate": "2015-07-03T18:42:09.480", "LastActivityDate": "2015-07-03T18:42:09.480", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3426"}} +{ "Id": "3426", "PostTypeId": "4", "CreationDate": "2015-06-25T20:32:47.663", "Score": "0", "Body": "Malts (and adjuncts) provide the fermentable sugars that are required to make beer (and to make beer \"sweet\"). The process of malting converts insoluble starch to soluble starch, reduces complex proteins, generates nutrients for yeast development, and develops enzymes. ", "OwnerUserId": "4238", "LastEditorUserId": "4238", "LastEditDate": "2015-07-03T18:42:17.040", "LastActivityDate": "2015-07-03T18:42:17.040", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3427"}} +{ "Id": "3427", "PostTypeId": "1", "AcceptedAnswerId": "3430", "CreationDate": "2015-06-25T21:22:14.537", "Score": "11", "ViewCount": "13922", "Body": "

What does etching on the bottom of a beer glass do? What purpose does an etched glass serve?

\n", "OwnerUserId": "4238", "LastActivityDate": "2021-04-19T13:14:28.173", "Title": "What is the purpose of an etched glass?", "Tags": "glassware", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3428"}} +{ "Id": "3428", "PostTypeId": "2", "ParentId": "3416", "CreationDate": "2015-06-26T08:05:36.707", "Score": "2", "Body": "

www.beersofeurope.co.uk are very good, used them 4 times.

\n\n

www.beersofeurope.co.uk/usa lists a number of beers, just a case of scrolling through and selecting into the cart/basket.

\n\n

Delivery is £7.50 but I find it's worth paying a bit extra to get what you want / try new beers.

\n", "OwnerUserId": "4258", "LastActivityDate": "2015-06-26T08:05:36.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3429"}} +{ "Id": "3429", "PostTypeId": "1", "AcceptedAnswerId": "3434", "CreationDate": "2015-06-26T17:39:08.147", "Score": "10", "ViewCount": "53184", "Body": "

My main question is really, I guess - how resilient is beer? I have some beer in my refrigerator that was cold when I bought it. I couldn't bring it home quickly due to having to visit my fiancee's grandmother in the hospital (short notice). It got pretty warm sitting out in the car and I have it refrigerated again. My roommate took one out to drink it, but fell asleep before he opened it - therefore, it got warm (room temperature) again. If I were to put it back in the refrigerator a third time, would the beer still be safe to drink? Would there be any quality loss?

\n", "OwnerUserId": "4238", "LastActivityDate": "2021-02-25T14:32:28.957", "Title": "Would a beer still be good after being cold then hot then cold again?", "Tags": "storage", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3430"}} +{ "Id": "3430", "PostTypeId": "2", "ParentId": "3427", "CreationDate": "2015-06-26T19:18:02.670", "Score": "9", "Body": "

The etching provides a nucleation point. To quote a couple places:

\n
\n

A nucleation point on a beer glass refers to an etched mark or pattern on the bottom of the inside of a beer glass. The etching is called a nucleation point (or a widget in the UK) and helps the release of carbonation and can create a steady stream of bubble emanating from the etched portion of the glass. This works by CO2 releasing (dissolving into gas) when it comes in contact with the rough surface of the nucleation points. This is not a mere marketing ploy and a nucleation point does increase the amount of bubbles released when compared side by side with a non- nucleated beer glass.

\n
\n

And

\n
\n

A laser etched nucleation site within the glass maintains flavor release during the drinking experience. Samuel Adams Unveils the Samuel Adams Boston Lager Pint Glass.

\n
\n", "OwnerUserId": "49", "LastEditorUserId": "49", "LastEditDate": "2021-04-19T13:14:28.173", "LastActivityDate": "2021-04-19T13:14:28.173", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3431"}} +{ "Id": "3431", "PostTypeId": "2", "ParentId": "3416", "CreationDate": "2015-06-27T08:34:21.840", "Score": "2", "Body": "

I can recommend www.alesbymail.co.uk I used them at Christmas 2014 to send a mixed case (chosen by myself) to my family in France. Can't remember exact European delivery costs but it was very reasonable compared to the cost of the beers or I wouldn't have used it. Check their Twitter @alesbymail for regular discount codes. (I have no affiliation with them other than being a satisfied customer).

\n", "OwnerUserId": "4154", "LastActivityDate": "2015-06-27T08:34:21.840", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3433"}} +{ "Id": "3433", "PostTypeId": "2", "ParentId": "3424", "CreationDate": "2015-06-28T12:46:39.027", "Score": "3", "Body": "

The malt is providing the sweetness and the hops are providing the bitterness plus the lingering flavour.

\n\n

Depending on what type malted grains the beer is brewed will effect its sweetness. This is due to how much fermentatble sugar can be extracted from the grains, any non-fermentable sugars will stay in the beer and provide effect how the beer sweetness.

\n\n

Hops are used in different stages of the brewing process to provide different functions.

\n\n

Hops are added at the intial point of the boiling process (which is usually about 60mins) - The hops oils released from the hops at this stage provide the beer with head retention, bitterness and also natural perservative.

\n\n

Hops are then again added during the final stage of the boiling process (last 10-15mins) - At this point the hops are providing the lingering taste that you are noting, plus any aroma notes.

\n", "OwnerUserId": "4266", "LastActivityDate": "2015-06-28T12:46:39.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3434"}} +{ "Id": "3434", "PostTypeId": "2", "ParentId": "3429", "CreationDate": "2015-06-28T12:58:57.540", "Score": "7", "Body": "

There should be no reason why beer would lose any quality from being left out at room temperature then being re-cooled.

\n

During the brewing and distribution process beer is exposed to a wide range of temperatures numerous times.

\n

Some specialist beers may include "adjuncts" or additional ingredients (fruit, honey etc...) that may be affect quality with a temperature range (none spring to mind). However normal beer made with malt, hops & water should be fine.
\nExposure to sunlight is more likely to affect beer than temperature.

\n", "OwnerUserId": "4266", "LastEditorUserId": "12018", "LastEditDate": "2021-02-25T14:32:28.957", "LastActivityDate": "2021-02-25T14:32:28.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3435"}} +{ "Id": "3435", "PostTypeId": "2", "ParentId": "637", "CreationDate": "2015-06-29T12:32:25.190", "Score": "2", "Body": "

Oysters used to be served as an accompaniment to beer in pubs in Victorian England, so the first beers called Oyster Stouts were probably beers intended to compliment oysters rather than containing them. Later someone discovered that you could use crushed Oyster shells as a fining agent in beer and later still someone actually added the oyster meat, probably as a marketing gimmick since oysters aren't going to add much to the flavour.

\n\n

So it's fine for oyster stout to not contain oysters.

\n", "OwnerUserId": "4269", "LastActivityDate": "2015-06-29T12:32:25.190", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3436"}} +{ "Id": "3436", "PostTypeId": "1", "AcceptedAnswerId": "3440", "CreationDate": "2015-06-29T13:58:19.923", "Score": "6", "ViewCount": "1262", "Body": "

As a person of good beer taste, I have moved to Germany and to my horror I discovered, nobody here considers Indian Pale Ale to be beer.

\n\n

Having looked intensively for Indian Pale Ale for several years now, I only found it in one bar that has it occationally and one \"Späti\" (Liquor/Tobaco store).

\n\n

Am I missing something? Do Germans have some alternative to Indian Pale Ale or are they a lost nation missing out on imho. one of the best beer types in the world?

\n\n

They have things here like Bock, Doppelbock and other strange things I never heard of. Are any of these similar in taste to Indian Pale Ale?

\n", "OwnerUserId": "4270", "LastActivityDate": "2015-07-20T13:23:29.790", "Title": "In Germany, Out of pale ale", "Tags": "ipa german-beers", "AnswerCount": "4", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3437"}} +{ "Id": "3437", "PostTypeId": "1", "AcceptedAnswerId": "3439", "CreationDate": "2015-06-29T22:33:29.277", "Score": "4", "ViewCount": "162", "Body": "

I'm sure I had it in the Delirium Café in Brussels but I can't remember the name of it.

\n\n

I have no idea if tastes good as that day was a bit of blur ;)

\n", "OwnerUserId": "4272", "LastActivityDate": "2015-06-30T07:21:33.523", "Title": "Which Belgian beer is served in wooden bowl?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3438"}} +{ "Id": "3438", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-06-29T22:37:15.847", "Score": "3", "Body": "

While I'm not a fan Butterbeer from Harry Potter is apparently a thing. However I don't believe it's widely available and is pretty niche by the looks of it.

\n", "OwnerUserId": "4272", "LastActivityDate": "2015-06-29T22:37:15.847", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3439"}} +{ "Id": "3439", "PostTypeId": "2", "ParentId": "3437", "CreationDate": "2015-06-30T07:21:33.523", "Score": "2", "Body": "

The only brand of beer I can think of is Mongozo, which is brewed in Belgium by a Dutch company (Dutch wikipedia). They brew various kinds of fruit beers, in addition to a pilsener and a wheat beer.

\n", "OwnerUserId": "4254", "LastActivityDate": "2015-06-30T07:21:33.523", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3440"}} +{ "Id": "3440", "PostTypeId": "2", "ParentId": "3436", "CreationDate": "2015-06-30T10:47:23.137", "Score": "4", "Body": "

Generally speaking, Indian Pale Ale is not a type of beer you would typically find in Germany, and, as you hinted at, many Germans do not even know IPA. Furthermore, at least to my knowledge, none of the different styles prevalent in Germany (basically, bock and doppelbock are just beers with higher alcohol content and gravity) is a real alternative to IPA.

\n\n

BUT! over the last few years, there definitely was progress, and some small breweries startet producing IPA (see, for example, Schoppebraeu (Berlin)). In addition, there are some small marketers that have IPA's in their range of products (see, for example, Braufaktum with many points of sale in Germany and, especially, in Berlin).

\n", "OwnerUserId": "4276", "LastEditorUserId": "4276", "LastEditDate": "2015-07-01T08:10:23.600", "LastActivityDate": "2015-07-01T08:10:23.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3441"}} +{ "Id": "3441", "PostTypeId": "1", "CreationDate": "2015-06-30T10:57:56.400", "Score": "5", "ViewCount": "166", "Body": "

I am thinking about make my first beer in this summer. However, in my country the summer has an ambient temperature about 25-30º. So my question, is what type of beers are adequate to this conditions?

\n\n

My first idea is a blond ale (Brewferm Ale), with fermentation at the ambient temperature in Barrel Aging. What do you think about?

\n", "OwnerUserId": "4277", "LastActivityDate": "2015-07-22T20:23:06.303", "Title": "Craft beer - Ambient temperature for fermentation", "Tags": "style ale recommendations fermentation", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3442"}} +{ "Id": "3442", "PostTypeId": "2", "ParentId": "3436", "CreationDate": "2015-06-30T13:37:24.807", "Score": "2", "Body": "

It doesn't help you today, but Stone Brewing Company is opening a brewery in Berlin later this year or early next year. They make plenty of IPAs.

\n\n

http://www.stonebrewing.com/news/140719/

\n", "OwnerUserId": "23", "LastActivityDate": "2015-06-30T13:37:24.807", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3443"}} +{ "Id": "3443", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-06-30T13:39:18.830", "Score": "2", "Body": "

Olde Frothingslosh started as a joke. Not quite from a book, but possibly of interest.

\n\n

Olde Frothingslosh Pale Stale Ale

\n", "OwnerUserId": "23", "LastEditorUserId": "5064", "LastEditDate": "2017-01-06T14:14:35.673", "LastActivityDate": "2017-01-06T14:14:35.673", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3444"}} +{ "Id": "3444", "PostTypeId": "2", "ParentId": "3441", "CreationDate": "2015-06-30T19:19:29.653", "Score": "2", "Body": "

That is really too warm as you will get fusel oils as a bi-product. If you absolutely must do it in that high of a temperature, I would go with an ESB or something. If you really are going to get into this, you may want to invest in an old refrigerator and maintain around 17 - 20 degrees for an ale. Well worth the investment if you have the space and money!

\n\n

Good luck.

\n", "OwnerUserId": "4278", "LastActivityDate": "2015-06-30T19:19:29.653", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3445"}} +{ "Id": "3445", "PostTypeId": "2", "ParentId": "1040", "CreationDate": "2015-07-01T07:12:17.970", "Score": "4", "Body": "

There are many craft beer pubs in Tokyo.\nBut there is no craft beer brand made in Tokyo.\nI recommend Coedo Beer from Kawagoe-city, Saitama-Pref.

\n\n

Kawagoe is a traditional town near Tokyo. \nIt takes 40 minutes by train from Shinjuku/Ikebykuro.\nCoedo has 4 flavors, \"Kyara\" (Golden Brown), \"Ruri\" (Blue), \"Shiro\" (White), \"Shikkoku\" (Black) and \"Beniaka\" (Red).\nEspecially, \"Beniaka\" is made from sweet potatoes in Kawagoe.\nKawagoe is famous for sweet potatoes.

\n\n

And \"Coedo\" means \"Little Edo\".\n\"Edo\" is the old name of Tokyo.\nKawagoe has still old Tokyo street.

\n\n

Please come and drink up!

\n", "OwnerUserId": "4279", "LastEditorUserId": "5064", "LastEditDate": "2019-05-11T10:56:25.287", "LastActivityDate": "2019-05-11T10:56:25.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3446"}} +{ "Id": "3446", "PostTypeId": "1", "AcceptedAnswerId": "3477", "CreationDate": "2015-07-01T11:39:05.320", "Score": "5", "ViewCount": "166", "Body": "

I am moving back home in the next few days and the idea of importing all my beer does not seem reasonable.

\n\n

I'm willing to try any kind of beer, but my preference is for IPA's and Belgian Strong pale ales.

\n", "OwnerUserId": "4281", "LastEditorUserId": "4324", "LastEditDate": "2015-07-19T06:13:13.943", "LastActivityDate": "2015-07-19T06:13:13.943", "Title": "Any advice on good breweries near São Paulo - Brazil?", "Tags": "breweries local ipa ale", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3447"}} +{ "Id": "3447", "PostTypeId": "2", "ParentId": "3436", "CreationDate": "2015-07-01T11:55:15.297", "Score": "0", "Body": "

I had the same impression in my first time in Germany, its a nation of good beers, but (maybe thanks to their old purity law), they are very closed on their own styles. I could say the same from Czech Republic.

\n\n

Both nations make the best beers in the world in their main schools, but limited on other genres. And both mostly produce lagers.

\n\n

I never tasted a German beer simmilar to an IPA, but at least thanks to EU you can always buy something from England or Belgium

\n", "OwnerUserId": "4281", "LastActivityDate": "2015-07-01T11:55:15.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3448"}} +{ "Id": "3448", "PostTypeId": "2", "ParentId": "3417", "CreationDate": "2015-07-01T12:18:10.353", "Score": "1", "Body": "

Any alcoholic drink will cause a hangouver if you drink too much. Bottled beer and draft beer are basically the same product, they should produce the same hangover.\nBut it's easier to drink too much of draft beer as they are typically served in larger volumes.

\n\n

The exception are darker beverages (like wine and cognac), they produce worse hangovers because part of their alcohol is in worser forms to your body then ethanol. I am not aware of any beer containing it.

\n", "OwnerUserId": "4281", "LastActivityDate": "2015-07-01T12:18:10.353", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3449"}} +{ "Id": "3449", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-07-01T13:13:04.150", "Score": "4", "Body": "

I would choose a wheat beer for start, mainly because thats what got me started in the \"real\" beer world (with Erdinger and then Paulaner to be more precise).

\n\n

Mostly because they are not too bitter or complex, I find then accessible even to non-beer people, and they are still clearly beers, while many fruit beers (kriek for example) are so centered around the fruit that the beer part can almost be ignored.

\n", "OwnerUserId": "4281", "LastActivityDate": "2015-07-01T13:13:04.150", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3450"}} +{ "Id": "3450", "PostTypeId": "2", "ParentId": "3429", "CreationDate": "2015-07-01T13:32:19.093", "Score": "0", "Body": "

It would be safe to drink, in the sense of it would not cause any harm to you.

\n\n

Beer is very resistant to heat, it will preffer to be stored in a cold location, but will probably not go bad at room temperature for extended periods of time.

\n\n

What really spoil it is is UV light.

\n\n

But everything changes when the beer is opened, it should then be drinked on the spot, because it will soon loose all its CO2 and start oxidizing, making it terrible and probably hazardous.

\n", "OwnerUserId": "4281", "LastActivityDate": "2015-07-01T13:32:19.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3451"}} +{ "Id": "3451", "PostTypeId": "1", "AcceptedAnswerId": "5189", "CreationDate": "2015-07-06T12:27:20.387", "Score": "3", "ViewCount": "423", "Body": "

So my question is what are the requirements for micropubs?\nAre there any specifications on room size, interior, beers, staff?\nHas anyone got experience in setting up and running a micropub and can give more insights about what are key factors?

\n", "OwnerUserId": "4175", "LastEditorUserId": "73", "LastEditDate": "2015-07-07T18:07:29.907", "LastActivityDate": "2016-07-05T20:43:16.043", "Title": "What are requirements for a micropub?", "Tags": "terminology micropub", "AnswerCount": "2", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3453"}} +{ "Id": "3453", "PostTypeId": "1", "AcceptedAnswerId": "3456", "CreationDate": "2015-07-09T11:40:14.433", "Score": "6", "ViewCount": "110", "Body": "

I would like the other beer enthusiasts to suggest some new ales for me to try. I enjoy all Bath Ales and Box Steam Brewery; I'm more a fan of a bitter and less so of pale ales.

\n\n

Can you advise of any brands of a similar or superior quality I might try? (In the South West of the UK). The cheaper end of the scale (Spitfire, speckled hen) doesn't interest me.

\n\n

Many thanks in advance.

\n", "OwnerUserId": "4303", "LastEditorUserId": "73", "LastEditDate": "2015-07-10T08:43:05.523", "LastActivityDate": "2020-05-24T14:17:00.023", "Title": "Broadening my horizons (Ale recommendations in South West UK)", "Tags": "breweries local ale", "AnswerCount": "5", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3454"}} +{ "Id": "3454", "PostTypeId": "2", "ParentId": "3453", "CreationDate": "2015-07-09T14:24:55.943", "Score": "1", "Body": "

Not a great answer since I have no specifics for you. Going out to local bars and stores selling beer and shopping around can find you stuff, but it's expensive. Though if you're lucky someone might be at one of these places to help you.

\n\n

Another avenue might be to use something like beeradvocate.com, ratebeer.com or untappd.com to get recommendations based on how you rate beers you've had but these are only as good as other user's ratings... They may miss a lot of small or new brands and might not necessarily recommend beers you can actually find near you.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-07-09T14:24:55.943", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3455"}} +{ "Id": "3455", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-07-10T03:00:26.267", "Score": "11", "Body": "

I would recommend starting with a draft Hefeweizen or Belgian Wheat, or a fruit flavored mead such as a blackberry or passion-fruit mead.

\n\n

I would also recommend pairing the beer with a good meal so the experience is not centered around the beer, the beer is instead an accent to the experience.

\n", "OwnerUserId": "4306", "LastActivityDate": "2015-07-10T03:00:26.267", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3456"}} +{ "Id": "3456", "PostTypeId": "2", "ParentId": "3453", "CreationDate": "2015-07-10T13:06:52.607", "Score": "4", "Body": "

If you're in the South West, then it's definitely worth checking out Otter Brewery (a really good range with a cracking bitter). Also Abbey Ales are the only ales actually brewed in Bath, not to say that Bath Ales aren't great, but this is real Bath ale! Depending how far SW you go, Exeter Brewery's Avocet Ale is a nice drop that you can have a really good session with. \nHope this helps!

\n", "OwnerUserId": "4308", "LastActivityDate": "2015-07-10T13:06:52.607", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3457"}} +{ "Id": "3457", "PostTypeId": "1", "AcceptedAnswerId": "4688", "CreationDate": "2015-07-10T19:47:09.970", "Score": "3", "ViewCount": "207", "Body": "

Apparently gin and mild is an old man's drink - but I need to get it for a relatives birthday, anyone know a nick name for this drink ?

\n", "OwnerUserId": "4309", "LastActivityDate": "2017-02-20T21:14:09.360", "Title": "Whats the nickname for gin and mild?", "Tags": "stout", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3458"}} +{ "Id": "3458", "PostTypeId": "1", "AcceptedAnswerId": "3461", "CreationDate": "2015-07-10T19:58:21.227", "Score": "6", "ViewCount": "1385", "Body": "

Are \"stout\" and \"mild\" the same thing - \"mild\" being popular in the UK in the post-war decades.

\n", "OwnerUserId": "4309", "LastActivityDate": "2015-07-13T20:39:08.277", "Title": "Are stout and mild the same thing?", "Tags": "stout", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3460"}} +{ "Id": "3460", "PostTypeId": "2", "ParentId": "3453", "CreationDate": "2015-07-13T09:50:20.103", "Score": "3", "Body": "

Have you tried Wickwar Brewery? If you like darker beers, the Station Porter is one of the best I have ever tasted. It's got a great brewery shop and well worth a visit.

\n", "OwnerUserId": "4314", "LastEditorUserId": "8580", "LastEditDate": "2020-04-17T12:58:47.487", "LastActivityDate": "2020-04-17T12:58:47.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"3461"}} +{ "Id": "3461", "PostTypeId": "2", "ParentId": "3458", "CreationDate": "2015-07-13T20:39:08.277", "Score": "3", "Body": "

The short answer is no. While they're both styles of dark beer nowadays Mild is very low ABV with a lot of malty/nutty flavors and fruity sweetness. Stouts are stronger than milds with no fruitiness and a lot of roasted and burnt flavors instead of malts. Most will probably be more bitter and have less residual sweetness than milds.

\n\n
\n\n

The long answer is:

\n\n

Historically stout and mild were completely unrelated terms that referred to completely different things than they wound up being known for. Both started being used in the 18th century. Stout originally just meant strong and Mild was used as the opposite of Keeping (or Stale), which basically just meant the beer was fresh rather than being aged in a barrel for any length of time.

\n\n

Mild turned into a strength descriptor in the early 19th century when brewers started using the X, XX, XXX system to classify their ales, which referred to both the ABV and pounds of hops per barrel. But Mild was still a pale beer. As the 20th century progressed Milds started becoming more amber colored and playing more as malty and sweet.

\n\n

All beers until this point were actually much stronger than we're used to today. Barclay Perkins X Ale in 1839 was actually close to 8% ABV.

\n\n

Grain shortages and government restrictions towards the end of WWI dropped Mild to close to 2%, and brewers also added dark sugars and mixed in amber and brown malt to keep some measure of flavor. After the war ended ABVs bounced back up but new taxes in the 30s pushed them back down, close to the modern range for Mild. Dark mild being the standard and Pale mild being a variant didn't really happen until the 1950s.

\n\n

The history of stout is quite a bit muddier, though the general consensus seems to be that it evolved out of Stout Brown Porter and has been largely interchangeable with Porter for most of its history.

\n\n

The differentiation probably started with in the invention of Black Patent Malt in 1817. In the late 1700s new technology had been invented that allowed brewers to track their efficiency and they realized the roasty brown malt they used for porters was really expensive compared to how much fermentable sugar it produced. So they started making porters out of mostly pale malt with brown malt and burnt sugars among other ingredients for color and flavor.

\n\n

Britain had banned the use of anything besides malted barley in brewing in 1816 which really kindof screwed porter brewers over. With Black Patent they had something which was absurdly dark enough that they could finally make up the color difference using pale malt. Though most brewers in England continued to use some portion of brown malt, brewers in Ireland switched completely to pale and black malts only. Irish beer was also less hoppy than English beer in general since hops didn't grow as well in Ireland.

\n\n

Guinness renamed its XX Porter to Extra Stout Porter in ~1820 and the popularity and marketing gradually dropped \"Porter\" from the name, which is probably where Stout began to evolve as a style separate from Porter. But it's in a bit of grey area, people in 2015 are still debating Porter vs Stout.

\n\n

Short version of the long story

\n\n

Mild originally just meant Fresh and as a style evolved from the weakest pale beer a brewery made, and only really became what we think of it as today in the last 60 years. Stout originally just meant Strong and was a synonym for Porter for a very long time until marketing tried to differentiate it maybe 150 years ago.

\n\n

Sorry about the wall, but I fell down a rabbit hole of interesting beer history.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-07-13T20:39:08.277", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3463"}} +{ "Id": "3463", "PostTypeId": "1", "AcceptedAnswerId": "4615", "CreationDate": "2015-07-14T15:24:56.103", "Score": "6", "ViewCount": "618", "Body": "

Had to replace a faulty regulator for my two tap system. Hooked everything up, changed nothing else, not the temp in the fridge, not the kegs, etc. Literally just the regulator.

\n\n

Now I have air bubbles forming in the beer line after an hour or so of no use. Is it possible that the problem is from the CO2 regulator?

\n\n

Some additional background: current pressure is at 8 or so. When I had my \"faulty\" regulator prior to this -- the gauge would read 0 no matter what the line pressure was. To that end, it is entirely possible I overcarbonated the keg itself by thinking the tank was empty and cranking it up.

\n\n

It is also worth noting the beer tastes metallic -- did I overcarbonate and this will resolve over time? I am going to drop it down to 4 or 6 for now and bleed the kegs aggressively.

\n\n

I am running a commercial tap system (Sankey). This is not relative to homebrew.

\n\n

Thanks.

\n", "OwnerUserId": "4322", "LastEditorUserId": "4322", "LastEditDate": "2015-07-14T17:26:04.277", "LastActivityDate": "2015-10-07T09:44:56.043", "Title": "New Regulator = Air in my Beer LInes?", "Tags": "keg", "AnswerCount": "2", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3464"}} +{ "Id": "3464", "PostTypeId": "1", "CreationDate": "2015-07-15T00:34:56.987", "Score": "2", "ViewCount": "1159", "Body": "

From beer advocate, it says that the XXX beer from De Ranke brewery is no longer brewed. (http://www.beeradvocate.com/beer/profile/739/97035/). It's no longer on their brewery page too: http://www.deranke.be/en/bieren_en.htm

\n\n

It's not exactly the kind of belgium kind of belgium pale ale, famous for their bitterness, it's normally criticized for being too bitter in normal crowd-source reviews.

\n\n

Sometime ago I saw this tweet that says XXX scored an IBU 70 (https://twitter.com/beergusto/status/435908275863687168).

\n\n

Does anyone has any more information on the XXX?

\n\n

And also how can I get hold of one now? Is there like a beer amazon or something?

\n", "OwnerUserId": "123", "LastActivityDate": "2016-07-26T15:09:14.993", "Title": "De Ranke XXX Beer", "Tags": "ipa ibu", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3465"}} +{ "Id": "3465", "PostTypeId": "1", "AcceptedAnswerId": "3469", "CreationDate": "2015-07-15T01:16:35.247", "Score": "3", "ViewCount": "422", "Body": "

We often see the following acronym on beeradvocate or ratebeer

\n\n

ATMOS: Appearance, Smell, Taste, Mouthfeel, Overall

\n\n

LSTFO: Look, Smell, Taste, Feel, Overall

\n\n

Where do these acronyms come from? What is the original source of these acronyms?

\n", "OwnerUserId": "123", "LastActivityDate": "2015-07-15T14:58:38.737", "Title": "Beer Rating Acronyms and their Origins", "Tags": "taste history", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3466"}} +{ "Id": "3466", "PostTypeId": "1", "AcceptedAnswerId": "3471", "CreationDate": "2015-07-15T01:26:00.167", "Score": "4", "ViewCount": "301", "Body": "

Is there a full list of hops all around the world?

\n\n

Currently, I've been just collecting them as I drink and asking the brewers or the pub owners which hop the beer uses.

\n\n

Wikipedia has a list: https://en.wikipedia.org/wiki/List_of_hop_varieties but is there any other missing?

\n\n
    \n
  • Admiral
  • \n
  • Ahtanum
  • \n
  • Amarillo
  • \n
  • Apollo
  • \n
  • Bramling Cross
  • \n
  • Brewer's Gold
  • \n
  • Bullion
  • \n
  • Cascade
  • \n
  • Centennial
  • \n
  • Challenger
  • \n
  • Chinook
  • \n
  • Citra
  • \n
  • Cluster
  • \n
  • Columbus
  • \n
  • Crystal
  • \n
  • Eroica
  • \n
  • First Gold
  • \n
  • Feux-Coeur Francais
  • \n
  • Fuggle
  • \n
  • Galaxy
  • \n
  • Galena
  • \n
  • Glacier
  • \n
  • Goldings
  • \n
  • Green Bullet
  • \n
  • Greenburg
  • \n
  • Hallertau / Hallertauer Mittelfrüh
  • \n
  • Herald
  • \n
  • Herkules
  • \n
  • Hersbrucker
  • \n
  • Horizon
  • \n
  • Liberty
  • \n
  • Lublin
  • \n
  • Magnum
  • \n
  • Merkur
  • \n
  • Millennium
  • \n
  • Motueka
  • \n
  • Mosaic
  • \n
  • Mount Hood
  • \n
  • Mount Rainier
  • \n
  • Nelson Sauvin
  • \n
  • Newport
  • \n
  • Northdown
  • \n
  • Northern Brewer
  • \n
  • Nugget
  • \n
  • Opal
  • \n
  • Pacifica
  • \n
  • Pacific Gem
  • \n
  • Pacific Jade
  • \n
  • Palisade
  • \n
  • Perle
  • \n
  • Phoenix
  • \n
  • Pilgrim
  • \n
  • Pilot
  • \n
  • Pioneer
  • \n
  • Polnischer Lublin
  • \n
  • Pride of Ringwood
  • \n
  • Progress
  • \n
  • Riwaka
  • \n
  • Saaz
  • \n
  • Saaz Late
  • \n
  • Bor
  • \n
  • Premiant
  • \n
  • Rubin
  • \n
  • Agnus
  • \n
  • Vital
  • \n
  • Sladek
  • \n
  • Kazbek
  • \n
  • Bohemie
  • \n
  • Harmonie
  • \n
  • San Juan Ruby Red
  • \n
  • Santiam
  • \n
  • Saphir
  • \n
  • Satus
  • \n
  • Select
  • \n
  • Simcoe
  • \n
  • Smaragd
  • \n
  • Sorachi Ace
  • \n
  • Southern Cross
  • \n
  • Spalt
  • \n
  • Sterling
  • \n
  • Strisselspalt
  • \n
  • Styrian Aurora
  • \n
  • Styrian Bobek
  • \n
  • Styrian Goldings
  • \n
  • Styrian Celeia
  • \n
  • Summit
  • \n
  • Tardif de Bourgogne
  • \n
  • Target
  • \n
  • Taurus
  • \n
  • Tettnang
  • \n
  • Tomahawk
  • \n
  • Tomyski
  • \n
  • Tradition
  • \n
  • Ultra
  • \n
  • Vanguard
  • \n
  • Waimea
  • \n
  • Warrior
  • \n
  • Whitbread Golding Variety (WGV)
  • \n
  • Willamette
  • \n
  • Zeus
  • \n
\n", "OwnerUserId": "123", "LastActivityDate": "2016-06-01T13:38:55.223", "Title": "Is there a full list of hops all around the world?", "Tags": "hops", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3467"}} +{ "Id": "3467", "PostTypeId": "1", "AcceptedAnswerId": "3498", "CreationDate": "2015-07-15T01:36:56.970", "Score": "5", "ViewCount": "211", "Body": "

I was in Libramont back when I was roaming around Belgium. And hitting a pub next to station where people were having lunch, I ordered a Rodenbach beer (http://www.beeradvocate.com/beer/profile/216/1882/) and the bartender says that I should drink it with a cherry shot.

\n\n
    \n
  • Is that normal to drink Rodenbach beer with a cherry shot?

  • \n
  • Has it got to do with the Rodenbach red before Palm brewery bought over Rodenbach?

  • \n
  • Has cherry or cherry liquor has anything to do with Rodenbach brewery or beer history?

  • \n
\n", "OwnerUserId": "123", "LastActivityDate": "2017-11-29T13:05:48.687", "Title": "Is it true that Rodenbach beer should be drank with a shot of cherry liquor?", "Tags": "history liquor", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3468"}} +{ "Id": "3468", "PostTypeId": "1", "AcceptedAnswerId": "4527", "CreationDate": "2015-07-15T01:40:55.953", "Score": "4", "ViewCount": "1569", "Body": "

Beer sizes in spain are aptly explained in http://matadornetwork.com/nights/order-beer-spain/ (copa, cana, tanque, jarra, etc.)

\n\n

In portugal, similar sizes appear but I've only heard of imperial and caneca.

\n\n

Are there other sizes of beer in Portugal/Spain?

\n", "OwnerUserId": "123", "LastActivityDate": "2015-08-14T20:21:14.683", "Title": "Beer Sizes in Spain and Portugal", "Tags": "glassware classification", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3469"}} +{ "Id": "3469", "PostTypeId": "2", "ParentId": "3465", "CreationDate": "2015-07-15T14:58:38.737", "Score": "2", "Body": "

It's sort of tough to chase down the origins of this stuff. It likely grew out of wine competition judging, which itself may have been based on the internal QA process of breweries and wineries. But that's conjecture, I can't find anything concrete.

\n\n

The best information I've got is that the websites like BA and RateBeer use the criteria set down by the American Homebrewers' Association and the Beer Judge Certification Program (AHA/BJCP). The BJCP was formed in 1985, but their style descriptions were likely based on Michael Jackson's famous book: The World Guide To Beer, published in 1977. But realistically it just sort of makes sense...describe how it looks, how it smells, how it tastes, how fizzy/thick/thin it feels, and then any ephemeral qualities it has to give an impression of the beer. Pretty much covers all the bases.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-07-15T14:58:38.737", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3470"}} +{ "Id": "3470", "PostTypeId": "2", "ParentId": "3446", "CreationDate": "2015-07-15T16:35:33.880", "Score": "2", "Body": "

I've been to Cervejeria Nacional, which makes some good brews: http://www.cervejarianacional.com.br/

\n\n

I found this list of breweries in SP state, including SP city: http://beerme.com/region.php?411

\n\n

While there might not be a ton of breweries in SP, craft beer bars can be found popping up all over.

\n", "OwnerUserId": "4326", "LastActivityDate": "2015-07-15T16:35:33.880", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3471"}} +{ "Id": "3471", "PostTypeId": "2", "ParentId": "3466", "CreationDate": "2015-07-16T13:37:08.677", "Score": "7", "Body": "

Getting a full list would always be tough as new varieties are being developed all the time. Looking at the above list I see a couple of varieties that have been out a couple of years that are missing (Mosaic for example).

\n\n

Yakima Chief Hop Union has a pretty up to date list and since they deal in selling hops it probably would be a good source of the latest ones out there.

\n\n

https://ychhops.com/varieties

\n", "OwnerUserId": "529", "LastEditorUserId": "529", "LastEditDate": "2016-06-01T13:38:55.223", "LastActivityDate": "2016-06-01T13:38:55.223", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3473"}} +{ "Id": "3473", "PostTypeId": "2", "ParentId": "3391", "CreationDate": "2015-07-16T13:41:41.033", "Score": "0", "Body": "

I visited the brewery of West-Malle, Belgium recently.

\n\n

The bottles of 75 cl have a cork instead of a cap, and it's just because of marketing.

\n", "OwnerUserId": "4327", "LastActivityDate": "2015-07-16T13:41:41.033", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3476"}} +{ "Id": "3476", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-07-17T20:46:26.517", "Score": "4", "Body": "

This might sound heretical to the true aficionados, but why not try a „Bananenweizen“, which is a Hefeweizen (.5l), to which you add about .1l of banana juice. It’s refreshing, not too sweet, and might be a good starting point.

\n\n

Albeit being a purist, and preferring more bitter flavours (eg. Jever), I still enjoy this drink from time to time.

\n", "OwnerUserId": "4337", "LastActivityDate": "2015-07-17T20:46:26.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3477"}} +{ "Id": "3477", "PostTypeId": "2", "ParentId": "3446", "CreationDate": "2015-07-18T20:27:52.347", "Score": "3", "Body": "

São Paulo has seen a big rise in the craft beer scene through the last years (as does the whole country), so you'll probably find what you're looking for. The city doesn't have an actual (physical) brewery of its own (besides brewpubs, which are only a few, the most relevant being Cervejaria Nacional), once most of them are in the countryside of São Paulo state.

\nAnyway, you won't be disappointed with beers available and bar options - Pinheiros region being the place where you'll find the best ones.\nKeep an eye open for Jupiter, Urbana, STP, which are gypsy breweries born in the city, and have a lot of modern styles (Black IPAs, American Wheat, Brown IPAs, APAs, etc). Urbana has a very good Belgian Strong Golden Ale called Gordelícia, by the way.

\nBamberg is a brewery dedicated to german styles, with some state-of-art german style reproductions with tons of international awards. Colorado is one of the oldest breweries in the country and, although it doesn't have a wide portfolio, its beers are easy to find at supermarkets, affordable and still very good. They have a very good english-american-hybrid IPA with 'rapadura' (a candy made of molasses). Invicta is one of my favorites from here, having from humble Weizenbiers to Imperial American IPAs, all very good.

\nDon't miss Empório Alto dos Pinheiros (EAP), the best craft-beer bar in the city, with 30+ taps and excellent food at a fair price. Ah, well, prices overall here aren't very good. Actually, even though the whole craft beer scene is growing faster and faster, taxes and other aspects of the market aren't doing it more affordable to people, but the opposite, unfortunately.

\nBesides all that, you are certainly going to find beers from all over the country here, and I guarantee you won't be disappointed with many of them. If you like belgian styles, your best bet is Wals (not from São Paulo, but widely available over here), nowadays probably the best brewery brewing belgian traditional styles in the country.

\nPS: Off course we are not USA. You won't find six-packs here, nor even a 12oz Imperial IPA bottle for 3 bucks. But, willing to spend some money and knowing what to go for and what not, it's possible to drink good beer.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2015-07-18T20:31:40.977", "LastActivityDate": "2015-07-18T20:31:40.977", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3478"}} +{ "Id": "3478", "PostTypeId": "1", "AcceptedAnswerId": "3484", "CreationDate": "2015-07-19T06:57:32.817", "Score": "5", "ViewCount": "2053", "Body": "

Which beer, that is available in Germany, can you recommend that is more bitter than Jever?

\n\n

Or, to re-phrase the question: What is the beer with the most hop that you know of, in Germany?

\n", "OwnerUserId": "4337", "LastEditorUserId": "4337", "LastEditDate": "2015-07-19T14:34:32.323", "LastActivityDate": "2015-07-26T13:35:13.590", "Title": "Looking for a very hoppy beer (in Germany)", "Tags": "flavor pilsener", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3479"}} +{ "Id": "3479", "PostTypeId": "2", "ParentId": "3453", "CreationDate": "2015-07-19T13:34:13.730", "Score": "3", "Body": "

If you're really willing to push your own limits, try The Wild's sour/wild beers. I became aware of them last year completely by accident, in a trip to UK, and loved their Modus Operandi beer. I also had another very light pale sour wich wasn't remarkable compared to the first one, but fairly ok. (I guess it probably should have had more time in the bottle to develop and reach its full potential).

\n\n

Sours beers are not for everyone, and the common first reaction to them is negative. But, if one get over that first shocking experience, go on and try it again, people usually fall in love with it.

\n\n

They are called Wild because they use in their fermentation process, in addition to possible other yeasts, brettanomyces yeast, also known as wild yeast, a different species, found in some kinds of wine and belgians beers (lambics, flanders red), which gives very rustic but complex and delightful aromas to the beer. It doesn't actually makes a beer sour (it actually produces a very small amount of acid only), but \"wild\" beers usually have other types of what is called bugs (bacteria and other fungi) in it, which does leave a lot of acid to the final beer, making it sour.

\n\n

They also have regular beers (IPA, Saison, Pale Ale), and they're almost always creative and daring on their recipes. I guess, whether you like it or not, all their beers are worth a try, because those guys seem to take brewing very seriously and you can expect nothing less than quality stuff.

\n\n

I wish I was still there to taste all their beers.

\n\n

And a bonus: they're from Evercreech, soutwest. ;) Look it up at their site and see what they've got.

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-07-19T13:34:13.730", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3480"}} +{ "Id": "3480", "PostTypeId": "2", "ParentId": "3388", "CreationDate": "2015-07-19T14:12:09.707", "Score": "1", "Body": "

As said, Trappist isn't a style but something like a certificate of origin and, let's say, quality standards. That put aside, it can be anything. Belgians themselves don't give a damn about style definitions actually. They only follow their traditions (from the region where they live, their monastery, their community, whatever).

\n\n

So, you are going to find beers varying from very shinning blonde to dark/ruby and thick ones that almost resembles a wine, which is the case of Westvleteren 12, that one being the myth it is because it is not sold (at least officially) outside the monastery, and one is supposed to schedule and go pick it up personally with an amount limit, and everything. Off course, although I'm sure it is a really good beer (I've never had it), all that difficulty to get it undeniably contributes to its fame.

\n\n

I find Rochefort 10 (a belgian dark strong ale as Westvleteren 12) one of (if not the) best, certainly my very favorite on the list, but on the other end of the flavor range, Achel 10 (a strong golden ale) is my favorite blonde/pale trappist as well.

\n\n

La Trappe, which is the biggest trappist brewery, has at least twice the labels other breweries have, and is widely available on market, still has very good beers.

\n\n

So, the short answer is: trappist is not a style, and there's no such thing as the best one. It all depends on what you like, so, taste all them. Even nowadays, with some new-age trappist beers popping up, there aren't still so many out there, so tasting all trappist beers is pretty feasible in short time (except for Westvleteren, off course).

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2015-07-20T14:34:26.510", "LastActivityDate": "2015-07-20T14:34:26.510", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3481"}} +{ "Id": "3481", "PostTypeId": "2", "ParentId": "3197", "CreationDate": "2015-07-19T15:03:20.523", "Score": "1", "Body": "

(I'm assuming here you mean spontaneous fermentation, used originally in belgian lambics. Open fermentation is the practice of fermenting in an open vessel but in a controlled environment, not allowing other microorganisms to get in, like Anchor and Sierra Nevada still do these days, and sometime ago very common in the industry.)

\n\n

You will probably never get a definitive answer to it but based only in my theoretical knowledge I would say terroir is not so determinant as people use to think, even for spontaneously fermented beer.

\n\n

My first guess is that, aside from very extreme/sterile climates and landscapes, microflora in the air is pretty much the same, at least in terms of variety and the species that play a main role in spontaneously fermented beer, which aren't much more than a few (acetobacteria, sacharomyces, lactic bacteria and brettanomyces). I know, you can find hundreds of different bugs in a single lambic, but from all that, only a few really play an important role. You can see this study here from UC Davis, based on Allagash's Coolship.

\n\n

One thing that supports this argument is that american breweries are successfully making lambic-style beers following almost the exact same traditional process as the belgian. But, then, one thing they've already learned is that one of the main factors in the early process of inoculation and fermentation is temperature, what implies year's season as well. Usually they leave the wort to be inoculated over night at fall. You can listen to what people from Allagash say about their Coolship Ale, for example.

\n\n

The rest of the process, well, now it depends on infinite factors (barrels, wood, storage, temperature, etc). But, your question was about distance between places, what suggests the terroir aspect of the production. So, I would say (and that's a completely wild guess), since you're in a place surrounded by any vegetation, with a minimum of biodiversity, and have wind, it doesn't make a big deal of a difference.

\n\n

Oh, and don't forget one thing. You get (if so) a consistent and regular flavor from those kind of beers only because people blend it before releasing, once different barrels even of the same batch turn out to be completely different one from the other. So, again, that's why I think there isn't much sense to talk about terroir. It's not like grapes are to wines.

\n\n

PS1: Off course, as climate does play a crucial role in the process, it doesn't surprise me people are doing this only in the northern hemisphere at temperate climates. I guess it wouldn't work out very well in a tropical country, which doesn't have well definite seasons, although spontaneous fermentation can be done anywhere, you just can't guarantee what is going to come out of it.

\n\n

PS2: If you are heavily interested in the topic, as I am, I recommend that you listen to Savor's Salons about barrel aging and blending, and sour/wild beers, available at Craft Beer Radio. There has been a lot of talkings about the matter in the last years. Really interesting.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2015-07-19T17:37:54.280", "LastActivityDate": "2015-07-19T17:37:54.280", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3482"}} +{ "Id": "3482", "PostTypeId": "2", "ParentId": "501", "CreationDate": "2015-07-19T15:52:31.117", "Score": "1", "Body": "

Chemical reactions during a beer's aging are very complex, depending on a series of factors according to the beer's constitution and interaction between its components, as well as human perception of flavors. Certainly something way too complex to be briefly answered here.

\n\n

I recommend you to read Patrick Dawson's Vintage Beer book. While it's not a extensive and deeply scientific study on the matter, I guess it's as best as you can get in a single literature nowadays.

\n\n

Although some people have been aging beer for a long time, there isn't much formal knowledge about it yet, and most of what is known is from empiric experience and based on a lot of personal beliefs rather than strictly technical. But the book covers the basic.

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-07-19T15:52:31.117", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3483"}} +{ "Id": "3483", "PostTypeId": "2", "ParentId": "348", "CreationDate": "2015-07-19T16:43:53.813", "Score": "1", "Body": "

Beer barrel-aging is a complex topic, and there's more than one reason for doing it.

\n\n

It has become a common practice in the american industry to age strong beers in barrels (mostly ex-bourbon oak barrels, but no only), to mellow it and add another layer of flavors (almost the same thing that happens with whisky). It's very common with Imperial Stouts, for example, which is one of the styles that goes best with this kind of practice. Generally, boozy and dark beers are more suitable for this, but not only (people age belgian tripels, for example, which, while being sometimes boozy, aren't roasty at all).

\n\n

So, talking about oak, you get that vanilla, coconut, sherry flavors, sometimes some smoke from the barrel's inside toast, and things like that. Boozines is softened as well (mellowed). Off course, inside the barrel, a lot of complex reactions occurs, and I don't know how it can be compared with wine chemically, but, along with other compounds, tannins are incorporated to the beer, altough it doesn't always appear so much in the final product like in wines. It all depends on a series of factors, including the amount of time the liquid spends in the barrel.

\n\n

Besides it, some aeration and in consequence oxidation does occur, but that's not the main purpose in that \"type\" of aging. Flavors of the original barrel's content may be picked as well, in higher or lower levels.

\n\n

Another main use of barrels in the beer industry is for production of wild/sour beers, in that case, the micro-aeration being a main desired factor. When people want to sour their beers and/or develop wild characteristics in it, they use different organisms after the primary fermentation. In order to sour it they use bacteria and for the rustic (wild) flavors they use another kind of yeast called brettanomyces in a further step of fermentation/maturation, in which oxygen presence is fundamental, but a slow pace is mandatory as well to avoid an overgrowth of the organisms and a possible \"spoilage\" of the beer. So, the barrel is a perfect place for this process to take place, because wood allows the oxygen to get in very slowly. Besides it, the barrel itself becomes a colony house for all those bugs (as brewers call those wild microorganisms), so you may not even need to pitch any yeast/bacteria after some time anymore. Off course, the wood alone impairs some flavors to the beer as well. You end up with a very, very complex product.

\n\n

These days, people are doing all kinds of crazy experiments you can think of, and there's no mandatory rule when using barrels. It all depends on what result you want to achieve and real-world experience as well. There's a lot of methods, and every one is still figuring it out.

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-07-19T16:43:53.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3484"}} +{ "Id": "3484", "PostTypeId": "2", "ParentId": "3478", "CreationDate": "2015-07-20T00:20:14.743", "Score": "3", "Body": "

Well, when it comes to very hoppy beers nowadays, I can't help thinking about American IPAs. It's not even close to any german style, off course, but if you are looking for hops, that's the one style to go for.

\n\n

Fortunately, there are some german microbreweries making IPAs there, like Hans Müller Sommelierbier's Backbone Splitter IPA, Ale-Mania's Imperial IPA and Crew IPA. I just don't know how available they are over there.

\n\n

In general, german styles aren't so hop-forward, favoring balance over excess. Styles like Munich Helles and German Pilsners have a definite hop profile, which I find just the exact right amount to balance malt and compose the aroma profile, but nothing overwhelming like an IPA. The rare doppelstick style (double altbier) has a high IBU count, but just to balance the malt sweetness, which is massive in this style, and not to stand alone.

\n\n

Californian brewery Stone is going to open a production plant in Berlin soon, so their beers will be available when it kicks off. And, just in case you aren't aware, Californian beers = loads of hops. So, keep an eye open.

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-07-20T00:20:14.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3485"}} +{ "Id": "3485", "PostTypeId": "2", "ParentId": "3436", "CreationDate": "2015-07-20T13:23:29.790", "Score": "1", "Body": "

You may find a few microbreweries making IPAs there, but I have no idea how restrict are their distribution.

\n\n\n\n

Off course, if you're a hophead, your best bet is to wait for Stone to kick-off their production and distribution there.

\n\n

As an advice: give german styles a chance too. In general, they're much less extreme than american ones, and definitely not hop-forward, but they have their own beauty. They're delicate, balanced and diverse. If you really like beer, explore as much as you can. You're probably going to find something that pleases you. ;)

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-07-20T13:23:29.790", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3486"}} +{ "Id": "3486", "PostTypeId": "2", "ParentId": "2139", "CreationDate": "2015-07-20T13:39:47.717", "Score": "4", "Body": "

There is Untappd, which is a social network for beer drinkers (web and app). Quite straightforward, actually. You check you beer in, rate it and leave a short comment (like Twitter). And you see a timeline with your check-ins and your friend's ones.

\n\n

The rate is what you're looking for, an overall score from 0 to 5 (multiples of 0.25).

\n\n

It's nice for keeping a log of what you have had and see what you friends are having, too. But, it's very simple when it comes to features, don't expect much of it.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2015-07-20T17:12:55.070", "LastActivityDate": "2015-07-20T17:12:55.070", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3487"}} +{ "Id": "3487", "PostTypeId": "2", "ParentId": "672", "CreationDate": "2015-07-20T14:23:33.030", "Score": "1", "Body": "

Well, people at the craft beer industry just doesn't have limits, so, guess what? They are doing primary fermentation with Brettanomyces for many styles, including popular ones, like IPAs (look for brett ipa on Google). I don't know very specific details about the strains used for it, but I do know there are a few ones in the market right know. Probably some of them are more suitable for it than other ones.

\n\n

As far as I know, Brett doesn't take longer than any ale yeast to ferment (primarily), and gives a slightly different aroma and taste profile, but nothing funky like it does in secondary fermentation/maturation, which is that slow process you probably have heard of, when it eats complex sugars and other compounds, ending up with that barnyard aroma. And contrary to what many people think, it doesn't acidify the beer (brett produces only a small amount of acid, not enough to sour it). When people want to brew sours, they use bacteria.

\n\n

Actually, at a glance, 100% brett beers aren't so different from beers fermented with Saccharomyces. Off course, this is completely different from adding brett to the bootle and letting it to develop over time.

\n\n

Why brewers are doing it? A guess they ask the exact opposite: you should we not do this? =)

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-07-20T14:23:33.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3488"}} +{ "Id": "3488", "PostTypeId": "2", "ParentId": "33", "CreationDate": "2015-07-20T20:40:48.710", "Score": "4", "Body": "

Well, that style thing is complicated because in real world people just make beer, and don't make beer to satisfy styles guides (at least, not until very recentely when some people started to care more about style guidelines than the beer itself).

\n\n

Anyway, what I think is important to be aware is:

\n\n
    \n
  • Many styles have a long and old history, often centuries, and what we have as one nowadays doesn't have much to do with what it was once ago.
  • \n
  • Styles change a lot over time as well. I'm not a specialist, but I think before the american craft beer revolution and revival in the early 80's, no one was gathering and classifying beer styles in a guide like BJCP. And that same revival brought back to life many dead styles in different fashion (well, look the case of IPAs), by the way.
  • \n
  • Generally, despite style guides, people have their own understanding of what is X or Y, and when naming their beers, they will do it based on their perception and references too, not strictly style guidelines.
  • \n
  • If you look closer, porter and stout are ancient reference styles for more specific and contemporaneous styles (sweet stout, dry stout, outmeal stout, brown porter, robust porter, russian imperial stout, etc).
  • \n
\n\n

So, I think it makes more sense telling the difference between a milk and an outmeal stout, or brown and baltic porter than stout X porter.

\n\n

For what's worth, for me, there's no difference between stout and porter. What I mean is, at least not so that we, as consumers, can trust and be 100% of what you are going to get if you choose one over the other, specially when the name is generic like that.

\n\n

What I think is enlightening is to understand the history of those related styles and how they came to be what they are today.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2016-02-15T14:01:01.503", "LastActivityDate": "2016-02-15T14:01:01.503", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3489"}} +{ "Id": "3489", "PostTypeId": "2", "ParentId": "59", "CreationDate": "2015-07-21T03:13:29.640", "Score": "2", "Body": "

While I was in Germany, you had pretty much two common choices of beer available from the local brewery: Pils and Export. They were quite different, with Pils being lighter in color and taste and Export being darker and a little heavier flavor. They were in the same colored glass bottle with different labels. They are obviously two different beers. The name had nothing to do with whether it went out of the country or not. Now, maybe back when it was first developed way back when, it was exported to another people somewhere, I don't know. My beer knowledge is not that impressive, so I have relayed what I experienced.

\n", "OwnerUserId": "4345", "LastActivityDate": "2015-07-21T03:13:29.640", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3490"}} +{ "Id": "3490", "PostTypeId": "1", "AcceptedAnswerId": "3494", "CreationDate": "2015-07-21T23:50:53.283", "Score": "3", "ViewCount": "58", "Body": "

I know this is more preference than rule but I am a beginner and from what I have read it is:\n2 weeks in the fermenting jug;\nbottle, add sugar and sit for another 2 weeks.

\n\n

Any body else have suggestions for me?\nAnyone think this is wrong?

\n", "OwnerUserId": "4348", "LastActivityDate": "2015-07-22T19:10:25.593", "Title": "Recommended fermentation time for cider", "Tags": "fermentation", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3491"}} +{ "Id": "3491", "PostTypeId": "1", "AcceptedAnswerId": "3495", "CreationDate": "2015-07-22T02:24:23.947", "Score": "9", "ViewCount": "652", "Body": "

What exactly is involved in the brewing process that turns a beer 'sour'? Is it the addition of certain lactic acids or yeasts? I've been told before that, technically, a sour beer is a the result of the brewing process gone wrong (obviously this is controlled when that outcome is intentional). How true is this?

\n\n

The opinion part of my question: what are some excellent sour beers that you guys recommend? I have a few favorites, but am always looking for great suggestions.

\n\n

Some of my current favorites are Westbrook Gose (salty and sour), 4 Hands Prussia Berliner (passionfruit sour), New Belgian Hop Tart, Omer Vander's Cuvees Des Jacobins Rouge, and Brouwerij's Petrus Aged Ale

\n", "OwnerUserId": "4219", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:35:52.267", "LastActivityDate": "2016-07-28T14:35:52.267", "Title": "Sour Beer (Gose, Wild Ales, Lambics)", "Tags": "brewing ingredients recommendations sour-beer", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3492"}} +{ "Id": "3492", "PostTypeId": "2", "ParentId": "33", "CreationDate": "2015-07-22T17:37:29.760", "Score": "2", "Body": "

BJCP style guides aside, I generally love porters and don't care for stouts. The latter (in my experience) tend to have a much more pronounced roasted malt character. (I do like most milk stouts though, now that that's a thing)

\n", "OwnerUserId": "1290", "LastActivityDate": "2015-07-22T17:37:29.760", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3493"}} +{ "Id": "3493", "PostTypeId": "2", "ParentId": "3491", "CreationDate": "2015-07-22T18:59:48.807", "Score": "1", "Body": "

Effectively, yes. A sour beer is what we'd consider to be a spoiled beer.

\n\n

As a quick primer, \"wort\" is turned into \"beer\" when microbes convert the sugars in the liquid into alcohol, CO2, and ...other stuff. Generally speaking, we use brewer's yeast (Saccharomyces Cerevisiae for ale or Sacc. Pastorianus for lager) because the other stuff tastes pretty nice, or at least doesn't taste bad. Various strains of the same organism produce different byproducts, an example would be an English ale yeast which is well known for compounds that are kindof sweet or fruity vs Belgian ale yeasts which are well known for being peppery, clovy, or banana-y. Those flavors all come from the yeast used for fermentation, but it's only ever a single strain of yeast, which was isolated in a lab.

\n\n

Sour beers are basically defined by not using a single isolated, clean-tasting strain of Saccharomyces. The most common sour yeast used is in a genus called Brettanomyces, which depending on the specific species can produce flavors like...horse saddle, bandaid, cheese, cloves, and vinegar. But most sour beers are not strictly brewed with yeasts like Sacc. or Brett. but also have bacteria in them. Most commonly lactobacillus and pediococcus which are known for producing large amounts of lactic acid, which is where the sour really comes from.

\n\n

That's not to say sour beer brewers are being sloppy, because their \"infections\" aren't accidents. They're deliberately trying to use less predictable and slow-acting organisms to create consistent beer. That's tough.

\n\n

As to a suggestion? I like Tart of Darkness by The Bruery. Petrus is good stuff and Duchesse de Bourgogne is nice. Occasionally it's nice to find a really tart Berlinerweisse and mix it with a fruit syrup and Gose can be incredible paired with cheese.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-07-22T18:59:48.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3494"}} +{ "Id": "3494", "PostTypeId": "2", "ParentId": "3490", "CreationDate": "2015-07-22T19:10:25.593", "Score": "1", "Body": "

The recommended primary fermentation time for anything you're going to bottle is: until it's done.

\n\n

After 2-3 weeks, when you think it's ready, use a wine thief to pull a sample to test with a hydrometer. Record that number. Then wait maybe 3 days and do it again. Compare the new number to the first number. If they're the same, you're safe. If they're at all different, give it another week then repeat the whole process.

\n\n

The premeasured bottling sugar or bottling sugar calculator assumes the cider is completely done fermenting, if it's not then you've suddenly overdosed the bottles with sugar which could result in an explosion.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-07-22T19:10:25.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3495"}} +{ "Id": "3495", "PostTypeId": "2", "ParentId": "3491", "CreationDate": "2015-07-22T20:21:50.240", "Score": "4", "Body": "

Sourness may have been, in a higher or lower level, a common characteristic of beers centuries ago, specially after some time of storage, once the common vessel to keep it was wooden barrels, and wood often harbor a lot of microorganisms, including bacteria and wild yeast, the former being responsible for souring the beer. After the Industrial Revolution, with more hygiene and sterile tools, that characteristic became more and more uncommon, and at some point, undesirable. So, meanwhile, yeast was \"discovered\", isolated, and fermentation controlled so that we had a clean taste profile, free from acids at all, which is what you know as beer nowadays.

\n\n

Don't be fooled: what really sours a beer are bacteria, not Brettanomyces. The later, also known as 'wild yeast', are usually found in sour beers as well, but are responsible for other aromas and flavors (barnyard and horse saddle being the most recognizable). (Brett actually produces a tiny amount of acid, no more than that).

\n\n

Some Belgians have been intentionally making sour beers for centuries, through spontaneous fermentation process (in the case of lambics) and wood-aging (in large oak vats) after \"clean\" fermentation (in the case of flanders reds). Germans did it too, but their two traditional sour styles (gose and berliner weisse) are almost dead there, and differ from the belgians ones on the absence of brett character.

\n\n

Nonetheless, nowadays people comprehend a lot better how those processes occur, and are doing sours again on purpose and manipulating those organisms in many ways. Basically, souring bacteria used are pediococcus and lactobacillus (not very different from lambics, actually). Most of the time, barrels are still used in the process, because of the micro-aeration those microorganisms need. And, off course, for keeping the microflora inside it, etc, etc, not to mention the flavor complexity that comes from wood compounds itself.

\n\n

A contaminated beer may end up being a sour. Well, so what distinguish a spoiled beer from a sour? Nothing actually, except that when people intentionally want to produce a sour, they do that with some more control in order to get the outcome they want and not some weird aleatory taste at the end. But, at some level, producing a sour beer, specially when using barrels, is always unpredictable too.

\n\n

As you can see, it's a rich and complex topic, probably the most exciting one about brewing.

\n\n

As suggestions, I definitely encourage you to taste the classic ones, belgian lambics (any Gueuze you find) and flanders reds (have you ever heard about Rodenbach and Duchesse de Bourgogne? they're amazing). I love Petrus Aged Pale too.

\n\n

And, if you are from US, then you are bloody blessed, because american craft brewers are doing sour/wild beers like there were no tomorrow. =P Look for Allagash, Russian River, Lost Abbey, The Bruery, Avery, Boulevard, Almanac, Deschutes. The list is infinite. The thing is getting so serious that in the last years, all-sour breweries are popping up, like Rare Barrel from Berkeley.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2015-07-25T15:12:17.017", "LastActivityDate": "2015-07-25T15:12:17.017", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3496"}} +{ "Id": "3496", "PostTypeId": "2", "ParentId": "3441", "CreationDate": "2015-07-22T20:23:06.303", "Score": "2", "Body": "

I brew in South Florida with similar ambient temps during the spring-summer-autumn.

\n\n

For beer styles, check out the saison, which enjoys a higher fermentation temperature. Wyeast 3724 has a temperature range of 70-95F, 21-35C and attenuates up to 80%. I've had great success with this strain, even at the higher ends of the range.

\n\n

Beer and Wine Journal has a nice list of yeasts that do well in higher temps.

\n\n
\n

White Labs WLP550 (Belgian Ale) — 68–78°F (20–26 °C)

\n \n

White Labs WLP566 (Belgian Saison II yeast) — 68–78°F (20–26 °C)

\n \n

White Labs WLP568 (Belgian Style Saison Ale Yeast Blend) — 70–80 °F\n (21–27 °C)

\n \n

White Labs WLP065 (American Whiskey Yeast) — 75-82 °F (24–28 °C)

\n \n

White Labs WLP655 (Belgian Sour Mix 1) — 80-85+ °F (27–29 °C)

\n \n

White Labs WLP665 (Flemish Ale Blend) — 68-80°F (20 –27 °C)

\n \n

Wyeast 1214 (Belgian Abbey) — 68-78° F (20-24° C)

\n \n

Wyeast 1388 (Belgian Strong Ale) — 64-80° F (18-27° C)

\n \n

Wyeast 3724 (Belgian Saison) — 70-95 °F (21-35 ° C)

\n \n

Wyast 3725 (PC Biere de Garde) — 70-84 °F (21-29 °C)

\n \n

Wyeast 3763 (Roeselare Ale Blend) — 65-85 °F (18-30 °C)

\n \n

Wyeast 3787 (Trappist High Gravity) — 64-78 °F (18-25 °C)

\n \n

Wyeast 3822 (PC Belgian Dark Ale) — 65-80 °F (18-27 °C)

\n \n

Fermentis Safbrew T-58 — 12-25°C (54-77 °F)

\n \n

Fermentis Safbrew WB-06 — 12-25°C (54-77 °F)

\n
\n\n

If you're looking to bring the beer to a little bit below ambient (as fermentation is a bit of an exothermic process) try a small plastic tub full of cool water with the carboy in it wrapped in a towel. The towel will wick up cool water and evaporate, basically acting like a giant sweat gland!

\n\n

Hope this helps.

\n", "OwnerUserId": "4350", "LastActivityDate": "2015-07-22T20:23:06.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3497"}} +{ "Id": "3497", "PostTypeId": "2", "ParentId": "297", "CreationDate": "2015-07-23T14:45:28.207", "Score": "4", "Body": "

Well, technically, single malt (scotch whisky) is a distilled beer, except for not having hops in it. They even call it beer before distilling and the brewing process is pretty much the same (again, except for the hops), although it doesn't go through secondary maturation. Off course, they keep the recipe very simple, on most cases probably using a single type of base malt and nothing else. No special/flavouring malts like beer.

\n\n

But some people nowadays are doing crazy things like distilling real and well-known beers into whisky.

\n\n

Look at those guys of Seven Stills, from San Francisco, and Sons of Liberty. They're are making whisky (pretty much single malts if you stop to think) from Imperial IPAs and Chocolate Stouts. Those guys from Germany are distilling their classic Marzen style too. Rogue, a brewery in the first place, distill some of their beers as well.

\n\n

There are even some well-know craft beers which have already been distilled into whiskys, like Samuel Adams' Boston Lager.

\n\n

Some people go even further: they distill a barrel-aged beer and age the resultant spirit again in the same barrel which the beer came from. Not to mention that sometimes they age their regular spirits in \"beers barrels\" as well. Confused? Me too. =)

\n\n

Interesting time we are living nowadays.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2015-07-23T16:24:08.090", "LastActivityDate": "2015-07-23T16:24:08.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3498"}} +{ "Id": "3498", "PostTypeId": "2", "ParentId": "3467", "CreationDate": "2015-07-24T04:14:07.003", "Score": "4", "Body": "

In 1821, the four Rodenbach brothers (Pedro, Alexander, Ferdinand and Constantijn) invested in a small brewery in Roeselare, in the West Flanders province of Belgium. The brothers agreed to a partnership for 15 years. At the end of this period, Pedro and his wife, Regina Wauters, bought the brewery from the others and Regina ran the business while Pedro served in the military. Their son Edward later took over the brewery (1864) and, it was during his directorship that the brewery saw great growth.

\n\n

Edward's son, Eugene, took over in 1878 and, in preparation for this position, travelled to England where he learned how to ripen beer in oak barrels and then mix old and young beers. It was this that became the method of producing beer that Rodenbach became famous for. As Eugene produced no male offspring, a public limited liability corporation was created and most shares remained in the hands of descendants of the Rodenbachs until 1998 when the brewery was sold to Palm Brewery.

\n\n

There are 4 different types of Rodenbach beers:\n 1. Rodenbach Original (5,2% ABV) blended from aged and young ale (25%/75%);\n 2. Rodenbach Grand Cru, a rich winey beer (6% ABV) which, although blended, contains less young ale (67%/33%) (in the past this beer was unblended aged beer from a single cask selected for its qualities by a tasting panel. This type of beer has now been renamed Rodenbach Vintage beer and is available in limited quantities);\n 3. Vin de Céréale, an aged beer that is 10% ABV.\n 4. In commemoration of the brewery 150th year of activity, it produced Rodenbach Alexander (5,2% ABV). It was a variant of the Original one with a cherry taste. It is name comes from the brewery founder Alexander Rodenbach.

\n\n

After the take-over, Palm quickly stopped the production of Rodenbach's Alexander beer, a cherry-flavoured beer.[1] When Palm Brewery bought Rodenbach, another brewery it owned already made a cherry beer. At that time Alexander Rodenbach had to be ceased for contractual non-compete sorts of reasons. However, in recent years, Palm/Rodenbach has produced and distributed, first, Rodenbach foederbier, which is served only from cask, and is unfiltered and unblended. It comes straight from an oak riping barrel and is not processed further.

\n\n

I think the bartender told you to drink your Rodenbach with a shot of cherry liquor, so that you can taste the original Rodenbach Alexander (the cherry-flavoured beer, Rodenbach's erstwhile cherry beer which produced before the brewery was sold to Palm).

\n", "OwnerUserId": "3722", "LastEditorUserId": "3722", "LastEditDate": "2017-11-29T13:05:48.687", "LastActivityDate": "2017-11-29T13:05:48.687", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3499"}} +{ "Id": "3499", "PostTypeId": "1", "AcceptedAnswerId": "3500", "CreationDate": "2015-07-24T07:10:26.990", "Score": "8", "ViewCount": "4586", "Body": "

I was wondering if there really is a difference in taste when you drink the same beer out of a glass, a bottle and a can.

\n\n

Can anybody please tell me if there is a difference or if this is just a prejudice in your mind that makes you think it's better in one way?

\n", "OwnerUserId": "4353", "LastActivityDate": "2015-08-14T11:59:40.297", "Title": "Difference between glass, bottle and can?", "Tags": "taste glassware bottles cans", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3500"}} +{ "Id": "3500", "PostTypeId": "2", "ParentId": "3499", "CreationDate": "2015-07-24T14:08:30.490", "Score": "7", "Body": "

Glass vs bottle or can will be a pretty noticeable difference with most styles of beer simply due to the size of the opening. When you pour from the storage vessel to the glass you disturb the beer a lot which drives CO2 gas out, and that takes a lot of aromatics with it so the aroma you get from the beer in a glass is WAY stronger and more complex than what you'd sniff from the bottle or can.

\n\n

Also smell is a pretty huge part of tasting something and when you drink from a glass you're putting your nose right into the thick of all that, so the flavor will be more intense as well. Bottles and cans sort of keep that toned down since you don't smell the beer as much.

\n\n

There used to be a prejudice against cans because the liquid and the aluminum would react and oxidize, but they started coating the insides with a food safe epoxy resin decades ago and it's completely sealed now. As far as taste goes there's no difference between the two, but cans actually store a bit better because they let in no light and no air while bottles will eventually let through enough to affect the beer. Brewers like cans as well since they're more portable, don't shatter, chill faster, and are often cheaper to fill.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-07-24T14:08:30.490", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3501"}} +{ "Id": "3501", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2015-07-25T18:52:39.163", "Score": "0", "Body": "

As far as I've ever tried, old beers, even cheap light lager like Bud Light, will taste pretty off after a lot of in-bottle or can aging. The older it is, the worse it will taste, but having drunk more than one in a sitting, I can safely say it's no more harmful than drinking a fresh one. Never gotten sick off one, but it's pretty hard to down them without gagging a bit.

\n\n

Some beers actually seem to intentionally go for a similar taste. Anything with a green bottle seems to be trying for a skunky flavor, while brown bottles help filter out damaging light. Compare a Beck's or Heineken to, say, a Budweiser. The former will have a distinctly skunky flavor to them, basically similar to marijuana. The latter has a bit of a rice taste, as that's what's used in the brewing process, with a slight sweetness, but overall just a bubbly light flavor.

\n\n

As Linus pointed out, there's going to be a \"wet cardboard\" taste with past-due light lagers. I'm guessing this is due to the breakdown of oils and sugars in the beer, as well as other general chemical changes. I'm not sure why it has that taste of cardboard or paper, but it's definitely present. After doing some research (aka looking it up on google), I found that the main culprit of that cardboard taste is a chemical called \"nonenal\". It's apparently also a chemical in human body odor of aged people, leading to the so-called \"old people smell\". This isn't proven, but there's some evidence that this is the main culprit for the somewhat-neutral scent of older people's perspiration. In a beer, not quite as neutral, however.

\n", "OwnerUserId": "4358", "LastActivityDate": "2015-07-25T18:52:39.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3502"}} +{ "Id": "3502", "PostTypeId": "2", "ParentId": "3478", "CreationDate": "2015-07-26T13:35:13.590", "Score": "0", "Body": "

Try \"Flensburger Pilsener\", another typical Pilsener from Northern Germany.

\n", "OwnerUserId": "4359", "LastActivityDate": "2015-07-26T13:35:13.590", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3503"}} +{ "Id": "3503", "PostTypeId": "1", "AcceptedAnswerId": "5075", "CreationDate": "2015-07-26T15:52:29.847", "Score": "3", "ViewCount": "155", "Body": "

Has any of you guys ever aged Fuller's Golden Pride? Does it age well? How was your experience with it?

\n\n

To be honest I don't remember the beer so that well, and whether it has a good level of melanoidins and residual sugar worth to age. This beer is quite different from other english barley wines, known to age well, so if someone has ever done it, I would appreciate some advice.

\n\n

Thanks.

\n", "OwnerUserId": "4338", "LastActivityDate": "2020-04-05T03:45:02.257", "Title": "Does Fuller's Golden Pride age well?", "Tags": "aging", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3505"}} +{ "Id": "3505", "PostTypeId": "1", "CreationDate": "2015-07-31T18:53:40.323", "Score": "5", "ViewCount": "123", "Body": "

A couple of friend just came back from vacation in Lithuania and brought me a bottle of gira. However, the bottle is made of plastic (it looks like a soda bottle) and it suffered from what I guess is traveling in a plane cargo at low pressure: it expanded like a balloon, even the screw cap has a dome.

\n\n

\"A

\n\n

What could be the consequences of this expansion on taste, preservation, carbonation or anything else I might have forgotten?

\n", "OwnerUserId": "4374", "LastActivityDate": "2015-07-31T20:11:23.740", "Title": "A plastic bottle of gira (kvass) expanded in the plane: what are the possible consequence?", "Tags": "bottle-conditioning", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3506"}} +{ "Id": "3506", "PostTypeId": "2", "ParentId": "3505", "CreationDate": "2015-07-31T20:11:23.740", "Score": "3", "Body": "

One possible consequence is that the bottle will pop, sending gira all over the place and possibly hurting someone's eardrums.

\n\n

I don't know if opening the bottle before it bursts helps or, on the contrary, ensures that it bursts in someone's hands.

\n\n

\"The

\n\n

An in the end, you don’t get to know what it tastes like. :’(

\n", "OwnerUserId": "4374", "LastActivityDate": "2015-07-31T20:11:23.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3507"}} +{ "Id": "3507", "PostTypeId": "1", "AcceptedAnswerId": "3509", "CreationDate": "2015-07-31T20:12:21.117", "Score": "5", "ViewCount": "2319", "Body": "

I’ve recently received a bottle of gira (i.e. kvass from Lithuania).

\n\n

With it came a beer mug, so I guess the issue of the glassware is settled. At what temperature should I drink it? If I understand correctly (which I probably don’t, given that everything is written in Lithuanian), the kvass is unfiltered. Should I pour carefully to avoid mixing too much yeast in the glass or, on the contrary, should I ensure that some yeast do go into the glass? Or is it purely a matter of taste?

\n\n

Finally, at which temperature should it be served?

\n", "OwnerUserId": "4374", "LastActivityDate": "2015-08-25T07:17:54.660", "Title": "How to drink kvass?", "Tags": "serving temperature glassware", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3508"}} +{ "Id": "3508", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-07-31T20:31:02.193", "Score": "2", "Body": "

A faro, a lambic with added sugar, is sweet but not fruity. I find them enjoyable once in a while.

\n", "OwnerUserId": "4374", "LastActivityDate": "2015-07-31T20:31:02.193", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3509"}} +{ "Id": "3509", "PostTypeId": "2", "ParentId": "3507", "CreationDate": "2015-08-04T05:47:08.200", "Score": "3", "Body": "

You need to pour carefully as normally you have quite thick tankage and/or parts of kvass (sometimes bread pieces and crumbs if it`s homemade one) can float in it.

\n\n

My ancestors (and still my relatives) use limestone cellar to keep temperature-sensitive goods (including kvass) and the cellar`s floor is 3 meters below their ground level. At summer it's chilling cold down there and the Internet says the temperatures there fall into range of 5-10 degrees celsius (pretty much the temperature in a fridge).

\n\n

Kvass is one of the best beverages for hot summer and if brewed good it`s as tasty as beer and contains almost no alcohol so you can continue doing any type of work you've been doing prior to drinking it (beer does not really have this wonderful feature). However the best one is hand-made at home as kvass sold in supermarkets is not good and sometimes it differs drastically (imagine a difference between a home-made lemonade from a restaurant and any bottle of one from a supermarket).

\n", "OwnerUserId": "4383", "LastActivityDate": "2015-08-04T05:47:08.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3510"}} +{ "Id": "3510", "PostTypeId": "1", "AcceptedAnswerId": "4528", "CreationDate": "2015-08-04T21:05:17.837", "Score": "4", "ViewCount": "400", "Body": "

I found these Beer from Saarland but it looks more like commercial brews.

\n\n

Are there any craft/microbrewery in the tri-country greater region of Saarland (Germany), Luxembourg and Lorraine (France)?

\n", "OwnerUserId": "123", "LastEditorUserId": "5064", "LastEditDate": "2016-10-13T00:00:40.843", "LastActivityDate": "2016-10-13T00:00:40.843", "Title": "Craft/micro brewery in Saarland, Luxembourg and Lorraine region?", "Tags": "breweries german-beers micropub", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3511"}} +{ "Id": "3511", "PostTypeId": "1", "CreationDate": "2015-08-04T21:09:02.077", "Score": "5", "ViewCount": "129", "Body": "

Other than the popular Porterhouse (http://www.porterhousebrewco.com/bars-dublin-temple.php), are there other pub that serves craft/microbrewery beer in Dublin, Ireland?

\n\n

Other than the famous Guinness brewhouse, are there other microbrewery around Dublin?

\n\n

Other than Guinness Stout, what other Guinness beer is a must-have? Are there any Dublin exclusive beer?

\n", "OwnerUserId": "123", "LastActivityDate": "2015-10-23T19:31:27.570", "Title": "Craft brew in Dublin", "Tags": "breweries micropub", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3512"}} +{ "Id": "3512", "PostTypeId": "1", "AcceptedAnswerId": "4525", "CreationDate": "2015-08-04T21:11:12.573", "Score": "6", "ViewCount": "131", "Body": "

Czech is known for its Pilsen Pilsner but is there any special beer from the Prague capital?

\n\n

Are there any craft/microbrewery in Prague?

\n\n

Any suggestions to pub that serves good craft Czech brews?

\n", "OwnerUserId": "123", "LastActivityDate": "2016-10-08T19:57:33.583", "Title": "Microbrewery in Prague", "Tags": "breweries micropub pilsener", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3513"}} +{ "Id": "3513", "PostTypeId": "1", "AcceptedAnswerId": "3519", "CreationDate": "2015-08-04T21:16:54.980", "Score": "3", "ViewCount": "162", "Body": "

Recently, CNN listed the Smith Street Tap from the Good Beer Company in Singapore as one of the world's greatest bar (http://www.cntraveler.com/galleries/2015-07-21/the-greatest-bars-in-the-world/23).

\n\n

Also, locally known, Brewerkz http://www.brewerkz.com/ serves some good craft beer.

\n\n

After some internet searches, I found Jungle Beer that is a mircobrew: http://www.junglebeer.com/

\n\n

Other than the 3 sources listed above, where else can one get craft/microbrewery beer in Singapore?

\n\n

Are there other microbreweries in Singapore?

\n", "OwnerUserId": "123", "LastEditorUserId": "123", "LastEditDate": "2018-06-19T06:54:19.457", "LastActivityDate": "2020-04-02T17:21:24.137", "Title": "Craft beers and Microbreweries in Singapore?", "Tags": "breweries micropub singapore", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3514"}} +{ "Id": "3514", "PostTypeId": "2", "ParentId": "3289", "CreationDate": "2015-08-05T14:45:00.770", "Score": "0", "Body": "

Toronto - Town Crier Pub (John and Adelaide)\n
\nToronto - Bier Markt (various locations)

\n", "OwnerUserId": "4393", "LastActivityDate": "2015-08-05T14:45:00.770", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3515"}} +{ "Id": "3515", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-08-06T11:05:21.853", "Score": "2", "Body": "

Discworld Ales have a range of drinks inspired by the Terry Pratchett novels! I've not tasted any myself but they were well received as a gift.

\n", "OwnerUserId": "4392", "LastActivityDate": "2015-08-06T11:05:21.853", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3516"}} +{ "Id": "3516", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-08-06T13:52:03.977", "Score": "2", "Body": "

Duff Beer

\n\n
\n

\"Duff Beer is a brand of beer that originally started as a fictional beverage on the animated series The Simpsons. Since then it has become a real brand of beer in a number of countries without permission or consent from its original creator, Matt Groening, and has resulted in legal battles with varying results. An official version of the beer is sold in three variations near The Simpsons Ride at Universal Studios.\" - Duff Beer (Wikipedia)

\n
\n", "OwnerUserId": "529", "LastEditorUserId": "5064", "LastEditDate": "2017-01-06T14:07:40.440", "LastActivityDate": "2017-01-06T14:07:40.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3517"}} +{ "Id": "3517", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-08-06T17:10:15.220", "Score": "5", "Body": "

There is a variant of stout available in the UK known as Sweet Stout. There is a version made by Sam Smith of Tadcaster in England who export to the US as Samuel Smiths Organic Chocolate Stout.\nThe beer actually has organic cocao mixed in the brew. It may well suit the tastes of someone moving into beer.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-08-06T17:10:15.220", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3518"}} +{ "Id": "3518", "PostTypeId": "2", "ParentId": "3220", "CreationDate": "2015-08-07T02:27:20.380", "Score": "6", "Body": "

Well, they don't mean anything in particular really, because this is fiction. However, if we want to play analysis, the answer would certainly be whiskey, American bourbon most likely. Let's go through the choices.

\n\n

1) Wine. No way. If someone is going to generically order wine, they at least specify a color, red or white. Plus wine is mostly all the same strength, only varying a couple percent either direction, unless you count fortified wines, which are another topic.

\n\n

2) Beer. Ordering a generic beer would get you a basic beer, which isn't very strong. Only a few specialized beer bars would have any beers that I'd call really strong. Any beer stronger than 12% is going to be very rare, with most bars not even having above 8%. The kinds of people who order strong beers, these 8, 9, 10, etc beers, would always order by name. They are craft beer fans. These aren't really strong enough to help someone in distress.

\n\n

3) Vodka. Unless you are a Russian or a huge vodka fan, you don't order vodka straight like this. Vodka is generally for mixing in America. The people who are serious about vodka drinking would order by brand name.

\n\n

4) Gin is the same story as vodka really. Gin in generally served in mixed form, although a dry gin martini is close to 100% gin, it still counts as mixed.

\n\n

5) Cordials, liquers, etc. Again, would be ordered by type or brand, and often not that strong compared to the main liquors.

\n\n

6) Rum, can be quite strong, makes decent shots, makes decent sipping. But it conjours up images of pirate and or topical locations. If the movie is set in the Caribbean, they would mean rum.

\n\n

7) Tequila. It's strong, makes good shots. Not so great for sipping, unless you are talking about the really good stuff or you are a tequila fan. If you are in Mexico or a Cantina, they would mean tequila.

\n\n

8) Whiskey. This is the winning category. It's always strong. It tastes good in shots, and makes fine sipping from a glass. This is manly and good for all classes of life. Blue collars and white collars alike love whiskey. if you are doing, \"forget your troubles\" kinda drinking, whiskey is the best choice. If you are sad, or upset, or worried, or looking for a fight, or anything like that, whiskey is the best choice. A real American manly man is going to want whiskey, usually bourbon, something like Knob's Creek. Some will prefer Irish whiskeys, or Scottish Whiskys, (notice no e), but if they do, they will say so by name.

\n\n

I mean, I know if I was upset like that and going to a bar and said a stupid order like gimme a strong one, I would mean bourbon. If I wanted a beer, to get back on topic, I'd be like, \"What kind of IPAs you got?\" \"Any sours?\"

\n\n

:)

\n", "OwnerUserId": "4397", "LastActivityDate": "2015-08-07T02:27:20.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3519"}} +{ "Id": "3519", "PostTypeId": "2", "ParentId": "3513", "CreationDate": "2015-08-08T13:02:13.007", "Score": "2", "Body": "

Paulaner
\nReddot Brewhouse
\nArchepelago (found in various locations)
\n1925 Brewery
\nAdstraGold

\n\n

Paulaner should be the same everywhere, Reddot is pretty good, I'm not sure that Adstra actually exists (but WOW, what a janky website). Brewerkz still seems to be the best AFAIK.

\n", "OwnerUserId": "1289", "LastEditorUserId": "1289", "LastEditDate": "2015-08-08T13:42:09.763", "LastActivityDate": "2015-08-08T13:42:09.763", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"3520"}} +{ "Id": "3520", "PostTypeId": "2", "ParentId": "3451", "CreationDate": "2015-08-08T14:45:16.477", "Score": "-2", "Body": "

In the US, the \"microbrewery\" name is going away, and being replaced with \"craft beer\" as many formerly small breweries have grown so much. But they are still small compared to companies like Budweiser, Miller, Coors, etc. One definition is: \"Annual production of 6 million barrels of beer or less...\"

\n\n

Beyond that, they take every conceivable form: big restaurant plus small brewery, small restaurant attached to big brewery, tasting room in an industrial park (without food), some guy's garage... whatever the local law allows.

\n\n

The only constants, for businesses that last, are good beer and staff that like beer too.

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-08-08T14:45:16.477", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4520"}} +{ "Id": "4520", "PostTypeId": "2", "ParentId": "3511", "CreationDate": "2015-08-08T23:48:48.767", "Score": "1", "Body": "

Try against the grain on wexford street got a good selection there

\n", "OwnerUserId": "4402", "LastActivityDate": "2015-08-08T23:48:48.767", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4521"}} +{ "Id": "4521", "PostTypeId": "2", "ParentId": "458", "CreationDate": "2015-08-10T12:42:20.443", "Score": "4", "Body": "

The process is a bit different in freely moving bottles when compared to bottles on a solid surface.

\n\n

Bottles that can't move only foam a little bit, where the hitting bottle foams as much as the hit bottle.

\n\n

Bottles that can move (even 1 mm is enough) move down faster than the beer. This creates a lower pressure inside the bottle. \nBeer can hold a lot less CO2 at lower pressure so any bubble that can grow, will grow and new ones will form at an increased rate.\nThe top bottle will have an equal but opposite pressure change, but increased pressure just increases the amount of CO2 that the beer can hold so no extra foam will be produced here.

\n\n

Fun sidenote: If you hit hard enough the pressure in the hit bottle gets low enough to create a small and very short lived vacuum at the bottom of the bottle, the beer rushes towards the vacuum with such power that the bottom of the bottle breaks off. You can also do this with your hand instead of with another bottle. How to Break a Beer Bottle With Your Bare Hands.

\n", "OwnerUserId": "4406", "LastEditorUserId": "5064", "LastEditDate": "2016-10-21T13:28:56.703", "LastActivityDate": "2016-10-21T13:28:56.703", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4522"}} +{ "Id": "4522", "PostTypeId": "2", "ParentId": "3512", "CreationDate": "2015-08-10T21:00:37.240", "Score": "2", "Body": "

Did some reading and found this site listing a number of microbreweries and beer gardens. Pubs (Microbreweries).

\n\n

And this place seems cool, Pivovar Hostivar.

\n\n

I'd love to see if other people know about more cool beer gardens.

\n", "OwnerUserId": "4411", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T19:53:40.353", "LastActivityDate": "2016-10-08T19:53:40.353", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4523"}} +{ "Id": "4523", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-08-11T06:00:49.107", "Score": "2", "Body": "

Dagschotel

\n\n

In Belgium, there's a tv-show that's been running for 20 years.\nOne of the characters always orders a \"dagschotel\" (french: plat du jour, english: the dish of the day) when he orders a glass of beer.

\n\n

A few weeks ago, some brewery makes bottles of Dagschotel.

\n", "OwnerUserId": "4327", "LastActivityDate": "2015-08-11T06:00:49.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4524"}} +{ "Id": "4524", "PostTypeId": "2", "ParentId": "3512", "CreationDate": "2015-08-11T11:59:18.003", "Score": "1", "Body": "

I was in Prague a month ago :-)

\n\n

You absolutely must make a stop at the brewery at Strahov Monastery, Klášterní Pivovar / Sv. Norbert, in particular if you're a fan of hops. I wasn't enjoying the beer in Prague until a local directed me here for their excellent food (yes, they also have fantastic Czech dishes!) Here's a photo of the beers I had—

\n\n

\"enter

\n\n

—from left to right, their Wheat Ale, Amber Ale, Dark Lager, Summer Red Ale (my favorite, but seasonal only), and IPA.

\n\n

There's also Prague Beer Museum near Old Town, a few blocks northeast of the famous astronomical clock tower. The name's a little misleading—it's just a beer garden with some bar food (not great). Most of the beers were lagers (pilsners, dark), with a few IPAs and other styles scattered about. I wasn't a huge fan of their selection, but perhaps I was being closed-minded. Relative to San Diego standards, their one porter on draft tasted more like barleywine (...unaged, blegh), their one pale ale tasted skunky to me, and their IPAs tasted like they were afraid to use too much hops :-) If you check it out and have a different experience, please let me know.

\n\n

And also don't hesitate to self-answer your question after your travels, especially if you've found breweries or pubs not mentioned here.

\n\n

Below, the first of 3 flights I ordered at Prague Beer Museum.

\n\n

\"enter

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2015-08-11T12:07:52.347", "LastActivityDate": "2015-08-11T12:07:52.347", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4525"}} +{ "Id": "4525", "PostTypeId": "2", "ParentId": "3512", "CreationDate": "2015-08-12T13:18:34.517", "Score": "3", "Body": "

I am from Prague and sure, there are many microbreweries here.

\n\n

It sure depends what part of city you are in, but here are some of my personal tips (overall, the more to the city center, the more expensive it is)

\n\n
    \n
  • City center - Novomestsky pivovar - mostly for tourists I would say
  • \n
  • City center - Pivovarsky dum - popular among locals as well
  • \n
  • City center - U Fleku - very popular among tourists, nice atmosphere, not very cheap though
  • \n
  • North of Prague - Pivovar U Bulovky - nice small brewery, locals mainly, near tram
  • \n
  • North of Prague - Pivovar Kolčavka - very nice brewery, good food, locals mainly, close to Palmovka Metro (underground)
  • \n
  • Southern Prague - Jihomestsky pivovar - again, very good beer and food, near Metro Háje
  • \n
  • Southern Prague - Pivovar Hostivar - one of the best gardens, nice beer and food, only about two years old, quite far from Metro (Hostivar or Haje)
  • \n
\n\n

And sure much more, but these are some of those I remember or have experienced myself.

\n\n

You can ask for anything in particular, if you want.\nEnjoy your stay in Prague :)\nZax

\n", "OwnerUserId": "2574", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T19:57:33.583", "LastActivityDate": "2016-10-08T19:57:33.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4526"}} +{ "Id": "4526", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-08-13T15:41:09.590", "Score": "1", "Body": "

There is also a BreakingBad based beer that you can find here

\n\n

\"enter

\n\n
\n

Schraderbräu is a homebrew beer brewed by Hank Schrader. He is seen bottling the beer in Breakage, the fifth episode of season 2. He offers a six-pack of the beer as a prize in a fundraiser in ABQ, the thirteenth episode of season 2.

\n
\n", "OwnerUserId": "4423", "LastActivityDate": "2015-08-13T15:41:09.590", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4527"}} +{ "Id": "4527", "PostTypeId": "2", "ParentId": "3468", "CreationDate": "2015-08-13T15:54:30.037", "Score": "1", "Body": "

Actually you have nice words to ask in Spain for a shooter beer, but I can add somes:

\n\n

big quantity (1L or more)

\n\n
mini\ncachi\n
\n\n

regular size (200cl-500cl)

\n\n
tubo\n
\n\n

little quantities:

\n\n
cañita  \ncorto\nchato  (used for beer but usually of wine)\nzurito (basque country and andalucia but extendind all over Spain)\n
\n\n

but we have also words to name beer bottles depending the size:

\n\n

20cl bottle:

\n\n
botellin\nquinto    (in north regions like Catalunya)\n
\n\n

33cl bottle:

\n\n
tercio\nmediana   (in north regions like Catalunya)\n
\n\n

1 l bottle:

\n\n
litro\nlitrona\nxibi * \n
\n\n

* from Xibeca, Damm big bottles

\n", "OwnerUserId": "4423", "LastEditorUserId": "4423", "LastEditDate": "2015-08-14T20:21:14.683", "LastActivityDate": "2015-08-14T20:21:14.683", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4528"}} +{ "Id": "4528", "PostTypeId": "2", "ParentId": "3510", "CreationDate": "2015-08-14T08:12:19.830", "Score": "3", "Body": "

First of all... you must know in this regions there is a laarge tradition with beer, so microbreweries are not as usual as in other regions, because there is a lot of abbeys and old factories that made beer in a traditional way. That tradition gives us really good beers, what makes microbreweries less usual than in other regions like Spain or Italy or center-south part of France where comercial beers are a real shit ;).

\n\n

That's why I will make not only a microbreweries list, but also places where you can find craft and traditional beers of each region.

\n\n

Also, feel free to check this map I made where you can find some Bretagne (France), Flandes (Belgium) and some Italian (Roma), Home/micro-breweries, Abbeys, Factories, Brasseurs and Bars :) related.

\n\n

Saarland

\n\n

Here and here you can find more Saarland breweries.

\n\n

Walsheimer Sudhaus Microbrewery
\nwalsheimer-sudhaus.de
\nFacebook: walsheimbrauerei
\ninfo@walsheim-brauerei.de

\n\n

Neufang's Brauerei
\nDudweiler Landstraße 3-9,
\n66123 Saarbrücken.
\nhttp://www.neufang.de/

\n\n

Grosswald Brauerei - Bauer
\nGrosswaldstrasse 132,
\n66265 Heusweiler.
\nhttp://www.grosswald.de

\n\n

Hochwälder Braugasthaus
\nZum Stausee 190,
\n66679 Losheim am See.
\nhttp://hochwaelder-brauhaus.de/

\n\n

Homburger Brauhaus Karl-Heinz Wierz Saarpfalz-Center
\nTalstraße 38,
\n66424 Homburg.
\nhttp://www.homburger-brauhaus.de

\n\n

Luxembourg

\n\n

Here and here you can find more Luxembourg breweries.

\n\n

Brasserie Simon
\nrue Joseph Simon 14,
\n9550 Wiltz.
\nHomepage: http://www.brasseriesimon.lu/
\nAnnual production: 23,000 hl

\n\n

Brasserie Bofferding
\nBd J.F. Kennedy 2,
\n4901 Bascharage.
\nEmail: direction@bofferding.lu
\nHomepage: http://www.bofferding.lu/

\n\n

Go Ten Café
\nType: Bar (6 taps, 8 bottles)
\n10, rue du Marché-aux-Herbes
\nLuxembourg, Luxembourg L-1728
\n+352 26203652
\nwww.goten.lu

\n\n

Liquid Café
\nType: Bar (6 taps 25 bottles)
\n15 - 17, rue Munster, Grund
\nLuxembourg, Luxembourg
\n+352224455
\nwww.liquid.canalblog.com

\n\n

Lorraine

\n\n

Finde here a list of breweries and brewers (is a France one, but you can search for cities like Metz) and here a list of brasseurs (traditional beer producers in france).

\n\n

Bière de Metz
\nRue de la Fontaine à l Auge
\nJury, France 57245
\n(3) 87 63 83 41

\n\n

Bière Artisanale Lorraine L’Epitaphe
\n40, rue de France
\nBlénod-Lès-Pont-À-Mousson, France 54700

\n", "OwnerUserId": "4423", "LastEditorUserId": "4423", "LastEditDate": "2015-08-14T12:40:46.630", "LastActivityDate": "2015-08-14T12:40:46.630", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4529"}} +{ "Id": "4529", "PostTypeId": "2", "ParentId": "3499", "CreationDate": "2015-08-14T11:59:40.297", "Score": "0", "Body": "

I would add that beer that tends to last longer in a can because of way it's sealed. No bottle cap for leaking oxygen and light can't penetrate so it's not going to be ruined as fast when it's sitting in the store fridge under the fluorescent lights

\n", "OwnerUserId": "3901", "LastActivityDate": "2015-08-14T11:59:40.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4531"}} +{ "Id": "4531", "PostTypeId": "1", "AcceptedAnswerId": "4532", "CreationDate": "2015-08-16T09:52:35.397", "Score": "4", "ViewCount": "305", "Body": "

During the past couple of years, the variety of beers found in supermarkets in Germany has vastly increased.\nThere is a number of beers that I remember having always been there, and a few have been added over time. But these don’t stick out much in price or flavour.

\n\n

Recently, I heard the term micro brewery for the first time, and I noticed that large supermarkets have stocked up on many different (mostly regional) beers. Prices start at “slightly above average”, but some are easily ten times as expensive. A bottle of beer for 7 Euros? Not the most expensive.

\n\n

This, and the fact that beer.stackexchange.com exists, and that many questions concern micro breweries and craft beers leads me to the questions:

\n\n

Why this sudden interest in micro breweries and craft beers? When did it start?

\n", "OwnerUserId": "4337", "LastActivityDate": "2015-08-17T19:12:19.597", "Title": "Why and when did the interest for micro breweries and craft beers arise?", "Tags": "history", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4532"}} +{ "Id": "4532", "PostTypeId": "2", "ParentId": "4531", "CreationDate": "2015-08-17T19:12:19.597", "Score": "3", "Body": "

I'm not sure about the German market for craft, but American craft can almost certainly be traced back to Frederick Maytag's purchase of San Francisco's Anchor Brewing in 1965. Since then, 'craft' or 'microbrew' grew slowly through the years.

\n\n

A lengthy but interesting report called THE MARKET FOR CRAFT AND SPECIALTY BEER, A Market Intelligence Report, March 1997 has an impressive description of why craft in particular was able to keep growing, and why it wasn't labeled a 'fad':

\n\n
\n

\"There is also a floor under the craft/specialty segment. This is not\n a fad segment like packaged draft, dry, ice, clear, or perhaps even\n red. While growth in the craft segment will slow, it will not peak\n quickly and then lose share, as the fad beers have. The\n craft/specialty segment has firm underpinnings from homebrewers and\n other beer aficionados. Many of the homebrewers prefer to brew their\n own beer (done right, it’s even better than the best of the craft\n brews), but they often sample commercial brews to try unfamiliar or\n difficult-to-brew styles, and of course they’re top prospects for\n drinking craft brews when they are at a restaurant or brewpub.\"

\n
\n\n

That explains a lot through the 90's, but why the quicker increase in growth patterns in the last 10 years?

\n\n

According to the Brewers Association (a US-based trade group):

\n\n
\n

\"Between 2011 and 2013, 80% of craft growth came from new craft\n appreciators, the majority of which were in the 21 to 29 age group,\n and their impact is still muted. Lester Jones of the National Beer\n Wholesalers Association (NBWA) sees Millennials as not fully\n economically activated yet due to the impact of the economic recession\n and their struggle to transition into aging Baby Boomer jobs. This\n means as the economy improves we should feel the impact of the\n Millennials even more. The message here is the fastest growing and\n most influential demographic is also moving the fastest toward craft.\"

\n
\n\n

Pair this with the increased ideals behind \"Trade-ups and premiumization\", and you have people willing to spend a little more to gain an perceived increase in value and quality.

\n\n

IBISWorld shares that craft beer has enjoyed a 19% growth in the past 5 years. I don't know about you, but that's incredible considering the economic woes of developed nations.

\n\n

It appears to boil down to a long, slow pattern of growth that has reached a massive generational shift in consumption which has caused a spike in sales volume, which in turn is pushing every store from New Jersey to Frankfurt to attempt to capitalize on one of the few growth industries.

\n", "OwnerUserId": "4350", "LastActivityDate": "2015-08-17T19:12:19.597", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4533"}} +{ "Id": "4533", "PostTypeId": "1", "CreationDate": "2015-08-18T10:36:25.073", "Score": "4", "ViewCount": "174", "Body": "

I'm a hop lover, recently I found one of bests IIPA I ever tasted (I don't know if I can name beer / brand)

\n\n

I've found at the bottom of the bottle, there are no yeast rests, but yes hop leafs. :) sweet!

\n\n

One friend tell me this technike is called bottle dry-hopping, consisting in introducing a little bud of hop in each bottle.

\n\n

I've heard about dry-hopping but before botteling the beer, also i know Hop Spider, is a filter you fill with hop for the freezing step.

\n\n

Three techniques are great and give nice results at the end, so:

\n\n
    \n
  • Anyone knows about other techniques using hops to add flavour and aroma AFTER cooking the beer?
  • \n
\n", "OwnerUserId": "4423", "LastEditorUserId": "-1", "LastEditDate": "2017-03-17T08:31:08.567", "LastActivityDate": "2015-08-24T08:20:59.680", "Title": "Techniques to add flavour and aroma to beer with hops", "Tags": "taste brewing hops", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4534"}} +{ "Id": "4534", "PostTypeId": "1", "CreationDate": "2015-08-18T13:07:43.523", "Score": "5", "ViewCount": "526", "Body": "

Wondering why it is that certain smaller brewing companies will export only certain beers out of their primary location? I am a huge fan of Goose Island (Chicago area based) and am having a tough time finding their Sofie and Matilda brews on the East Coast/NYC area.

\n", "OwnerUserId": "4434", "LastEditorUserId": "73", "LastEditDate": "2015-09-02T17:12:05.373", "LastActivityDate": "2015-09-02T17:12:05.373", "Title": "Why do some brewing companies only export certain beers outside of their primary location?", "Tags": "specialty-beers distribution", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4535"}} +{ "Id": "4535", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2015-08-18T20:58:28.673", "Score": "6", "Body": "

According to the Beer Advocate website, Romulan Ale from Star Trek is brewed by Cervecería Centro Americana in South Africa. A search in Google Images will produce several images of the bottles. I have included a link to one image.

\n\n

\"Romulan

\n\n

Romulan Ale

\n", "OwnerUserId": "4437", "LastEditorUserId": "5064", "LastEditDate": "2017-08-20T11:13:01.623", "LastActivityDate": "2017-08-20T11:13:01.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4536"}} +{ "Id": "4536", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-08-18T21:41:57.810", "Score": "6", "Body": "

If you are trying to get a person who does not like beer to try beer, you are going to have to be creative and go for something a little more exotic.

\n\n

Young's Double Chocolate Stout or Rogue's Chocolate Stout would be my first two choices. My partner dislikes American beer, but really likes these two brands. In addition to Chocolate Stout, Rogue also has Pumpkin-flavor, Hazelnut-flavor, and Voodoo \"Lemon Chiffon\" Donut-flavor beer (and many others).

\n\n

When my partner's first two choices are not available, we go fruity. Pyramid Brewery makes an absolutely delicious apricot ale.

\n\n

We were in a little brewery in Hannover and they had the best banana-flavored beer in the entire world. Now I know you are not going to be able to get this, but you might be able to find some banana bread beer in the USA instead. I have not tried this brand, but if it is anything like the beer in Hannover, your friends will probably like it.

\n\n

\"Banana
\n(source: drizly.com)

\n", "OwnerUserId": "4437", "LastEditorUserId": "6255", "LastEditDate": "2019-02-18T09:31:28.757", "LastActivityDate": "2019-02-18T09:31:28.757", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4537"}} +{ "Id": "4537", "PostTypeId": "1", "CreationDate": "2015-08-19T03:26:09.040", "Score": "10", "ViewCount": "426", "Body": "

I tend to go for darker beers, typically stouts and porters.

\n\n

Guinness is my usual go to when I'm at a bar or restaurant, but as appealing as \"a meal in a glass\" is, on occasion I find these to be a little too filling/heavy.

\n\n

More recently I had the opportunity to try Köstritzer, which I guess would be classified as a black lager. It had the very familiar taste of a stout but without the filling quality.

\n\n

Black lager seems to be a rather generic category though, the title seems to cover a rather large variety of dark lagers and seems to be more about color than taste.

\n\n

Is there a more specific category I should be looking for?

\n\n

Or perhaps better, does any one know any other beers that taste like a stout but with the light weight of a lager?

\n", "OwnerUserId": "4439", "LastActivityDate": "2020-12-18T01:35:16.623", "Title": "Looking for dark but not heavy", "Tags": "taste style stout lager recommendations", "AnswerCount": "4", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4538"}} +{ "Id": "4538", "PostTypeId": "2", "ParentId": "4537", "CreationDate": "2015-08-19T16:47:53.373", "Score": "4", "Body": "

Two types of beers might suit you, both are similar but with slightly different flavour profiles.

\n\n

English mild ale has a lower alcoholic content than bitter or Guinness, generally dark coloured. Theakstons make a particularly nice mild on an irregular basis.

\n\n

Scottish 60 shilling (60/-) or light beer is similar to mild but is generally slightly sweeter to suit the Scottish palate. McEwan's 60/- is the one most commonly seen.

\n\n

It should be noted that this class of beer is generally out of favour in the UK despite efforts by the Campaign for Real Ale to revive interest.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-08-19T16:47:53.373", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4540"}} +{ "Id": "4540", "PostTypeId": "2", "ParentId": "4537", "CreationDate": "2015-08-19T20:40:34.643", "Score": "10", "Body": "

Let's start off with beers that you're interested in, something akin to a black lager. I'm going to keep things focused on beer styles rather than particulars, since I do not know where you are nor what might be available for you.

\n

Dunkelweizen

\n

This is a dark wheat beer with characteristics of a traditional wheat with caramel type flavors joining the mix. Not exactly stout-like, but more like your black lager in lightness.

\n

Schwarzbier

\n

Schwarzbier means "black beer" in German. This is what you had with your Köstritzer. It is a medium-bodied, malt-accented dark brew, very opaque and deep-sepia in color, with a chewy texture and a firm, creamy, long-lasting head. In spite of its dark color, it comes across as a soft and elegant brew that is rich, mild, and surprisingly balanced. It never tastes harsh, toasty or acrid.

\n

Black IPA / Cascadian Dark Ale

\n

The American fascination with hops has shown that the addition of toasted malts can give a hoppy, bitter, and coffee-like experience to these beers.

\n

Black Saisons

\n

Similar to the Black IPA, I've seen a few breweries start brewing their saisons with roasted malts. The usual light flavors of the saison are accented by this extra roasted character. It's never acrid, however.

\n

Porters

\n

A lot of English porters are not heavy at all, and are generally akin to milds that have roasted malts added in. Look for lower ABV porters in the 4-5% range, and you'll probably find something you like.

\n

Surprisingly to many, Guinness is actually on par with any other beer of similar alcohol strength, as beer gets a majority of its calories from alcohol, about 7 per gram. Perhaps much of the 'full' feeling is a product of the use of nitrogen in the mix which gives it that creamy texture.

\n", "OwnerUserId": "4350", "LastEditorUserId": "8580", "LastEditDate": "2020-12-17T14:41:19.540", "LastActivityDate": "2020-12-17T14:41:19.540", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4546"}} +{ "Id": "4546", "PostTypeId": "2", "ParentId": "4533", "CreationDate": "2015-08-20T21:28:52.720", "Score": "3", "Body": "

Some breweries use a hop \"Torpedo\", where the beer is forced through a chamber containing the desired aroma hops:

\n\n

http://byo.com/hops/item/1899-torpedoes-away

\n\n

You probably don't need one that big, though.

\n", "OwnerUserId": "866", "LastEditorUserId": "866", "LastEditDate": "2015-08-24T08:20:59.680", "LastActivityDate": "2015-08-24T08:20:59.680", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4549"}} +{ "Id": "4549", "PostTypeId": "2", "ParentId": "3507", "CreationDate": "2015-08-21T11:24:16.553", "Score": "1", "Body": "

I think kvas tastes best when it is cold. In Moscow, say, when you are walking around in the summer, you see many stands with cooled containers where you can buy it. This type of kvas is not bad, but the best kvas is often made by some monastery like the one in Sergiev Posad - see the photo. The difference to standard types is huge.

\n\n

\"enter

\n", "OwnerUserId": "1469", "LastEditorUserId": "1469", "LastEditDate": "2015-08-25T07:17:54.660", "LastActivityDate": "2015-08-25T07:17:54.660", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4550"}} +{ "Id": "4550", "PostTypeId": "2", "ParentId": "4533", "CreationDate": "2015-08-21T12:16:43.020", "Score": "3", "Body": "

I saw on Zythos Beer Festival in Leuven (Belgium) where they have a hop chamber (in glass) where the beer is going through when drafting into a glass.

\n\n

Similar like this

\n", "OwnerUserId": "4447", "LastActivityDate": "2015-08-21T12:16:43.020", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4554"}} +{ "Id": "4554", "PostTypeId": "2", "ParentId": "4534", "CreationDate": "2015-08-27T19:18:42.127", "Score": "1", "Body": "

There's lots of possible reason

\n\n
    \n
  • Some beers don't taste the same after the pasteurization required for shipping commercially, so only local or limited run would work.
  • \n
  • The area you're in may not be their target demographic/flavor profile.
  • \n
  • They may just not have a distributor in your area or know if people want it.
  • \n
  • They may not be a well known enough brand to justify shipping all of their products to an area and instead on just a few initially.
  • \n
  • Intentionally driving up demand.
  • \n
\n\n

That being said, I show some of those beers available at areas well outside of their Chicago area, so it probably isn't the commercial shipping one.

\n", "OwnerUserId": "4466", "LastActivityDate": "2015-08-27T19:18:42.127", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4555"}} +{ "Id": "4555", "PostTypeId": "2", "ParentId": "4534", "CreationDate": "2015-08-27T19:44:22.187", "Score": "5", "Body": "

I'd say it comes down to three things.

\n\n

Distribution Rights

\n\n

Breweries in most states are restricted by the three-tier system which divides the brewing industry into three categories:

\n\n
    \n
  1. Producers
  2. \n
  3. Distributors
  4. \n
  5. Retailers.
  6. \n
\n\n

A few states allow the producer to engage in self-distribution (usually to a limited degree) but most require that a brewery get distribution rights with a third party, which will hold full, exclusive, and unlimited rights to shipping that producer's beer. ProBrewer.com has some excellent reading on the subject.

\n\n
\n

The rules and regulations pertaining to the distribution and advertising of beer products are highly regulated and are enacted and enforced at the state level. Therefore, each state has its own set of laws in which the brewer is responsible for knowing and abiding by. It is incumbent on you, the brewer, to know the specific regulations of each state in which you sell.

\n
\n\n

It boils down to what the distributor wants to do and state-by-state requirements for what can be sold there. Ohio has a cap on alcohol by volume of 12%. Any beer over 4% ABV in Oklahoma must be sold only at liquor stores at room temperature. It varies so much that some brewers don't want to go into those markets.

\n\n

Demand

\n\n

There's also the simple issue of supply and demand. In 2013, Founders Brewing delayed entering the Florida market for a few months while they brought on more 600BBL fermenters because of some slight under-reporting of potential market numbers. There's nothing worse than not being able to supply your customers with beer. (Ahem, Cigar City's Great Jai-Alai Shortage of 2013).

\n\n

Expense

\n\n

Bottling/canning beer is expensive. There's also only a certain amount of time available to package. This is why there will usually be only a certain number and type of beer that gets packaged in these containers until a brewery grows to a certain size that allows better economies of scale. Once there, it's easier to start releasing seasonals, one-offs, and more nuanced beer styles compared to just cranking out a wheat ale or amber ale.

\n", "OwnerUserId": "4350", "LastActivityDate": "2015-08-27T19:44:22.187", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4558"}} +{ "Id": "4558", "PostTypeId": "2", "ParentId": "3388", "CreationDate": "2015-08-31T21:20:55.753", "Score": "1", "Body": "

The Westvleteren 12 is rated best beer in the world according ratebeer

\n", "OwnerUserId": "4476", "LastActivityDate": "2015-08-31T21:20:55.753", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4559"}} +{ "Id": "4559", "PostTypeId": "1", "AcceptedAnswerId": "4560", "CreationDate": "2015-09-01T02:20:49.307", "Score": "7", "ViewCount": "7791", "Body": "

I have some cans of Busch in my refrigerator that say \"Born on: DD/MM/YYYY\". That seems odd to me. When I drink craft beers, I always see \"Best by: xx/xx/xxxx\" or something like that.

\n\n

Why would some beers have a born on date and others have an expiration, or \"best by\" date?

\n\n

Bonus: How long after the \"Born on\" date will a beer last before the taste begins to diminish?

\n", "OwnerUserId": "4238", "LastActivityDate": "2015-09-02T17:05:41.320", "Title": "Why do some beers have expiration date, while others have \"born on\" date?", "Tags": "storage", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4560"}} +{ "Id": "4560", "PostTypeId": "2", "ParentId": "4559", "CreationDate": "2015-09-02T16:35:07.900", "Score": "6", "Body": "

IPAs don't age well, or at all. The sooner they're consumed, the better they taste (or taste as intended). Are most of the craft beers you have, IPAs? If so, a \"Best by:\" would make sense.

\n\n

Meanwhile, some styles taste better aged, e.g. barleywines, imperial souts, sours. You definitely wouldn't see a \"Best by:\" for these types, and in fact you might even see a \"Best after:\". So perhaps the \"Born on:\" label is a way of letting the enthusiast decide how long to age a beer, without feeling forced to wait a minimum number of months or years.

\n\n

Would you happen to know or remember the styles (or even better, the exact name) of the beers that said \"Best by:\" vs. \"Born on:\"? Then perhaps we could validate or invalidate this explanation.

\n\n
\n\n

Edit

\n\n

Interestingly, Anheiser-Busch is the only entity that may use \"Born on:\", as they've trademarked it.

\n\n

But anyway, it turns out that another class of beers that typically have production dates are macros (i.e. American Adjunct Lagers), not because they taste better aged, but for a mix of several reasons:

\n\n
    \n
  1. profit-maximization (purportedly),
  2. \n
  3. tracking problems and policing freshness,
  4. \n
  5. giving consumers an (illusory) sense of regulatory safety,
  6. \n
  7. and giving enthusiasts control over when they'd like to consume a beer.
  8. \n
\n\n

A Lagunitas employee quoted in the aforementioned link claims that

\n\n
\n

Bud only really did it to reduce brewery and distributor inventories and wring a one-time load of cash out of the company...

\n
\n\n

and goes on to say that Lagunitas labels production dates

\n\n
\n

to track problems [...] and to give our distributors the ability (if they will use it) to police freshness.

\n
\n\n

A bit biased, but I can believe some elements of both sides.

\n\n

Furthermore, these threads on BeerAdvocate suggest that some consumers feel better (even might only drink a beer) when a production date is printed, whether it gives them an illusory sense of regulatory safety or they actually know enough about beer to know if and how long to age them.

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2015-09-02T17:05:41.320", "LastActivityDate": "2015-09-02T17:05:41.320", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4561"}} +{ "Id": "4561", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-09-02T16:38:50.783", "Score": "4", "Body": "

This is a highly subjective question. It depends on the types of food they eat and what their preferences are taste wise. Ask them which notes within beer they find unappealing and what makes them cringe.

\n\n

My wife hated beer because of the carbonation and forever nobody asked why they just suggested beers that she subsequently hated. Eventually I asked her why she explained so I went out and got an Allagash four and she loved it.

\n\n

It is entirely subjective though and you will need to find the flavors she likes then tailor your approach around that.

\n\n

Hope this helps!

\n", "OwnerUserId": "4481", "LastActivityDate": "2015-09-02T16:38:50.783", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4562"}} +{ "Id": "4562", "PostTypeId": "1", "CreationDate": "2015-09-03T17:20:41.570", "Score": "10", "ViewCount": "7376", "Body": "

As in title, I'm going camping with some buddies soon and we're planning on bringing far more beer than we have space for in a cooler. What kinds of beer are palatable to drink (or good even) when at room temperature or even slightly warm?

\n", "OwnerUserId": "4488", "LastActivityDate": "2019-01-28T12:55:17.620", "Title": "What beer is ok to drink not-cold or room temperature (for camping)", "Tags": "temperature varieties", "AnswerCount": "7", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4564"}} +{ "Id": "4564", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2015-09-04T07:22:56.117", "Score": "3", "Body": "

My first temptation is to say none. However there are two mitigation strategies to this dilemma.

\n\n

The first is mulled beer, you need a light IPA, a saucepan, cinnamon and star anise. Put the beer in the pan, add the spices and heat.

\n\n

The second strategy, and one I've used, is camp near a stream. Store the beer in the stream in a net bag or similar. Any beer works in this situation and it will cool the beer to a drinking temperature.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-09-04T07:22:56.117", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4565"}} +{ "Id": "4565", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2015-09-04T07:44:25.013", "Score": "8", "Body": "

Somewhat related: What temperature should I serve my beer? In short, beers don't need to be served as cold as many are led to believe, and darker beers tend to be meant to serve warmer (as warm as 55°F). You certainly don't want to drink warm Coors, so maybe bring along some stouts.

\n\n

In case there isn't a stream around to do what @user23614 suggests, bring some newspapers. Wet a sheet of newspaper and wrap the bottle with a single layer. Leave the bottle somewhere the breeze can blow on it, until most of the water evaporates. This is probably a common camping trick, but I first saw Moroccans in the Sahara Desert do this to chill a bottle of wine.

\n", "OwnerUserId": "73", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2015-09-04T07:44:25.013", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4566"}} +{ "Id": "4566", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2015-09-04T08:35:41.210", "Score": "2", "Body": "

At room temperature the flavour of the beer starts to intensify, some people would say it gets more bitter.\nI tried something that worked: there are beers like Kingfisher Light that have pretty good carbonation content.\nSo even at room temperature you get a good time. You can try any other beer that has strong carbonation and little mild in flavour.

\n", "OwnerUserId": "4480", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-28T12:55:17.620", "LastActivityDate": "2019-01-28T12:55:17.620", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4567"}} +{ "Id": "4567", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2015-09-07T07:54:25.293", "Score": "7", "Body": "

Short answer: no beer that has color-changing mountains on the side should be served warm, otherwise you'll taste it.

\n\n

Long answer:

\n\n

First, ales are traditional served warmer than pilseners, so start your selection there.

\n\n

Second consideration is sweet/bitter balance. Sweetness generally becomes stronger with warmer beer. Something with a bit of sour would probably hold up well when warm. At the same time, styles that are meant to be sweet are usually served at/close to room temp: barleywines, or anything imperial/double/doppel/strong. Bonus: you won't have to carry as much.

\n\n

Third: can you get it in a can? Cleaning up that campsite will be so much easier the next morning...

\n", "OwnerUserId": "1289", "LastActivityDate": "2015-09-07T07:54:25.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4569"}} +{ "Id": "4569", "PostTypeId": "2", "ParentId": "637", "CreationDate": "2015-09-08T13:19:09.960", "Score": "4", "Body": "

Oyster stouts are indeed brewed with oysters. The occasional offering that we sell (Niagara College Teaching Brewery), uses oysters at the end of the mash regime (hot soaking of the grains). The idea here is that you are extracting calcium carbonate from the shells, which helps reduce the tannic astringency that can result from the roasted grains used in stouts. This is the same reason/benefit that stouts are traditionally brewed in areas with relatively hard water. It also happens to be the perfect temperature for cooking oysters.

\n\n

Oysters cooked or uncooked could be added at other parts of the process, but may not have the same impact on reducing astringency. There is a subtle undertone of the oyster that makes it into the finished product, but your palate may vary and may or may not detect it (depending on process and quantity used).

\n", "OwnerUserId": "4497", "LastEditorUserId": "4501", "LastEditDate": "2015-09-17T02:49:14.673", "LastActivityDate": "2015-09-17T02:49:14.673", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4570"}} +{ "Id": "4570", "PostTypeId": "2", "ParentId": "605", "CreationDate": "2015-09-08T23:40:48.950", "Score": "8", "Body": "

Repeatedly cooling and warming (to ambient temperatures) a beer can induce a permanent haze, where proteins and tannins bond to create semi-soluble molecules. While this can have an aesthetic impact, it does not impact flavour, aroma or mouthfeel.

\n\n

This is mostly an issue in beers where the knocking-out, or rapid cooling of the beer may not have been effective at precipitating what is known as cold-break proteins. Which generally leads to chill haze (haze when the beer is cool, but not when it is warm). This generally isn't an issue with most commercial beers (especially if filtered), and is more often found in home-brewed beers.

\n", "OwnerUserId": "4501", "LastActivityDate": "2015-09-08T23:40:48.950", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4571"}} +{ "Id": "4571", "PostTypeId": "1", "AcceptedAnswerId": "4572", "CreationDate": "2015-09-10T17:48:02.347", "Score": "5", "ViewCount": "18436", "Body": "

The other day I ordered an Eagle Rock Brewery XPA on tap. At the time, I had no idea what that was, but according to the brewer's site:

\n\n
\n

Extra Pale Ale (XPA) is a variation of American pale ale – bright and refreshing with a substantial hop presence.

\n
\n\n

I'm guessing the thing that is \"extra\" is the paleness. To my (very) untrained palate, it tasted pretty much like any other IPA/APA I've ordered. Maybe it was a bit more bitter though?

\n\n

Is there any standard that differentiates an XPA from other American pale ales?

\n", "OwnerUserId": "17", "LastActivityDate": "2015-09-10T19:51:37.087", "Title": "What exactly is an XPA?", "Tags": "ipa", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4572"}} +{ "Id": "4572", "PostTypeId": "2", "ParentId": "4571", "CreationDate": "2015-09-10T19:51:37.087", "Score": "4", "Body": "
\n

Is there any standard that differentiates an XPA from other American\n pale ales?

\n
\n\n

Currently, no.

\n\n

According to the latest Beer Judge Certification Program guidelines (the drafted 2015 style guide http://www.bjcp.org/docs/2015_Guidelines_Beer.pdf), there is no category of XPA or Extra Pale Ale.

\n\n

Stylistically, depending on the malt bill used, one would place the beer in either an American Pale Ale or IPA category, though most 'sub styles' the BJCP wants to have in the 21B. Specialty IPA category. If it was heavy in British malts, perhaps even an English IPA.

\n\n

This doesn't mean, however, that a brewery can't just make up whatever they feel like to call their beer, which is what I believe is happening there. XPA sounds cool, new, and interesting.

\n\n

The idea of the style has been around for a few years, at least back to 2013 as referenced by this HomeBrewTalk forum post. Even then there were debates as to the meaning of this style... and it still hasn't become anything of note.

\n", "OwnerUserId": "4350", "LastActivityDate": "2015-09-10T19:51:37.087", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4574"}} +{ "Id": "4574", "PostTypeId": "1", "AcceptedAnswerId": "4584", "CreationDate": "2015-09-11T19:31:37.337", "Score": "3", "ViewCount": "969", "Body": "

Does anybody know someone that has completed the 1001 beers of the book:\n1001 Beers You Must Try Before You Die - Adrian Tierney-jones

\n\n

If there is someone here trying, please tell me: In your opinion which beer was the best until now and why do you consider it the best.

\n", "OwnerUserId": "4514", "LastEditorUserId": "4518", "LastEditDate": "2015-09-12T17:54:46.423", "LastActivityDate": "2015-09-16T17:23:39.720", "Title": "1001 Beers You Must Try Before You Die", "Tags": "specialty-beers recommendations", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ClosedDate": "2015-10-07T15:44:53.737", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4576"}} +{ "Id": "4576", "PostTypeId": "2", "ParentId": "4574", "CreationDate": "2015-09-12T16:47:21.427", "Score": "1", "Body": "

I really like Super Bock from Portugal, it reminds me a little\nof Heineken but with a less bitter taste. Resembles my memories\nof the times that I lived there. From the beers I've tasted in\nEurope (Stella Artois, Birra Moretti, Amstel, San Miguel, Estrella etc) I would say it's the best between the lagers.\nIt's a pale lager from the Unicer brewery with 5,2% of alcohol.

\n\n

And there is a brazilian brand I like a lot thats called Áustria from\nKrug Bier Brewery: http://www.krug.com.br/\nMy favourite is the Hefe Weizen for sure.

\n", "OwnerUserId": "4518", "LastEditorUserId": "4518", "LastEditDate": "2015-09-16T17:23:39.720", "LastActivityDate": "2015-09-16T17:23:39.720", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4578"}} +{ "Id": "4578", "PostTypeId": "1", "AcceptedAnswerId": "4617", "CreationDate": "2015-09-14T19:41:37.847", "Score": "10", "ViewCount": "593", "Body": "

I grew up near Baltimore, Maryland (USA), and spent a few years living in the city. One very popular beer in Baltimore is National Bohemian (\"Natty Boh\" in local parlance). You can see the beer's one-eyed mascot, Mr. Boh, all over the city. Apparently more than half a million cases of Natty Boh are sold in the city of Baltimore each year, which seems pretty high for a city with population 620,000.

\n\n

                                      \"enter

\n\n

One thing that I've found very odd is that outside of the small state of Maryland, you really can't find the beer at all, and 90% of the beer's sales are within the city of Baltimore. Thus, while the beer is reasonably popular, the interest is hyper-localized to a single city.

\n\n

Are there other examples of beers that have high sales volume but are hyper-localized, or are Baltimore and Natty Boh unique in this respect? Is there some sort of economic or marketing phenomenon behind hyper-localized popularity of a high-volume beer?

\n", "OwnerUserId": "4526", "LastEditorUserId": "4526", "LastEditDate": "2015-09-14T19:57:02.947", "LastActivityDate": "2015-10-24T08:46:02.120", "Title": "Beers that are popular but hyper-localized", "Tags": "local", "AnswerCount": "5", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4580"}} +{ "Id": "4580", "PostTypeId": "1", "AcceptedAnswerId": "4604", "CreationDate": "2015-09-15T04:10:41.767", "Score": "3", "ViewCount": "210", "Body": "

I was recently crunching some numbers about beer production in the United States (data from the Alcohol and Tobacco Tax and Trade Bureau), and I noticed pretty significant seasonality in the production of beer:

\n\n

\"enter

\n\n

Average production peaks in June (on average 18.1 million barrels) and is lowest in November and December (on average 14.1 million barrels). Are these ~25% seasonal swings in production based on some technical aspect of the brewing process, or are they based on something else (e.g. demand)?

\n", "OwnerUserId": "4526", "LastActivityDate": "2015-09-23T18:04:40.860", "Title": "Cause of seasonal difference in beer production", "Tags": "production", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4581"}} +{ "Id": "4581", "PostTypeId": "2", "ParentId": "4580", "CreationDate": "2015-09-15T11:33:36.803", "Score": "0", "Body": "

I think the answer you are looking for is not so much seasonal as it is holidays.

\n\n

As you have your summer holiday in the middle of the year, it is the time when most alcohol is highest in demand.

\n\n

The small spikes in your graph around December indicates the increase in production for new-year's parties.

\n\n

As I am on the opposite side of the world, our peak production is the three months leading to December, for our Summer Holiday.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-15T11:33:36.803", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4582"}} +{ "Id": "4582", "PostTypeId": "2", "ParentId": "4578", "CreationDate": "2015-09-15T11:38:24.663", "Score": "2", "Body": "

You will have to ask the brewery if they even try to advertise or ship their product anywhere outside of Maryland. If the brewery is limiting it's availability (for whatever reason) then that would be your answer.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-15T11:38:24.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4583"}} +{ "Id": "4583", "PostTypeId": "2", "ParentId": "4578", "CreationDate": "2015-09-15T13:14:21.787", "Score": "3", "Body": "

The kings beer sold in the goan state of India. Super popular, but only available within the state. Granted, it's a state vs a city but its a really small state.

\n", "OwnerUserId": "4530", "LastActivityDate": "2015-09-15T13:14:21.787", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4584"}} +{ "Id": "4584", "PostTypeId": "2", "ParentId": "4574", "CreationDate": "2015-09-16T07:45:57.080", "Score": "4", "Body": "

I have not done the 1001 to drink before you die, but I have rated more than 1000 beers on RateBeer. :)

\n\n

I have many favourites, but a favourite depends on so many things! Westvletern 8 is one of the best beers I have ever had, but I would not like to drink it while mowing the lawn! Snow and Bud are great for quenching a thirst, but not something I would drink with good meal.

\n\n

London Pride, Stone Ruination, Lagunitas Hop Stoopid, Dogfish Head 60, 90, Midas Touch. Weihnstephaner Weiss, Pilsner Urquell, Duvel, Cockpit Crazy Diamond, Windhoek Light, Badger Golden Glory... The list just continues.

\n\n

Use sites like Ratebeer and BeerAdvocate to see what others think of the beers.

\n\n

And sometimes the best beer is the one in front of you. :D

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-16T07:45:57.080", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4585"}} +{ "Id": "4585", "PostTypeId": "2", "ParentId": "899", "CreationDate": "2015-09-16T07:48:25.177", "Score": "2", "Body": "

For quick calculations, a Fluid Ounce is is slightly less than a tot.

\n\n

Tots are (at least in South Africa) 30 ml.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-16T07:48:25.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4586"}} +{ "Id": "4586", "PostTypeId": "2", "ParentId": "744", "CreationDate": "2015-09-16T07:50:30.810", "Score": "1", "Body": "

Another something to look at: your beerline. Check for flaws, sharp bends, particles. Check your taps as well, as an imperfection there might cause the problem.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-16T07:50:30.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4587"}} +{ "Id": "4587", "PostTypeId": "2", "ParentId": "351", "CreationDate": "2015-09-16T20:18:47.823", "Score": "5", "Body": "

There really isn't any reason why a modern pewter tankard would be harmful to drink from. Lead has been illegal in pewter drinkware in the USA and western europe (at least) for decades now. The FDA is widely considered VERY risk-averse and they are fine with pewter when it doesn't contain lead greater than a trace amount (see FDA regulation 4-101.13(B)).

\n\n

The other metals in pewter - mostly tin, with some copper and (usually) antimony - are very unlikely to cause a problem because they won't be absorbed into the beer in any material quantity, and because they are generally not harmful if they were absorbed (see this page about pewter tankards). Remember tin's role as a coating for the inside of food containers?

\n\n

NOTE: older pewter may well contain lead, and this is soluble in beer, and this is not safe. The lead dissolving is what causes 'pitting' on the inside of older pewter tankards.

\n\n

As to whether it's more enjoyable to drink out of glass or pewter, really comes down to personal taste. I enjoy both.

\n", "OwnerUserId": "4535", "LastActivityDate": "2015-09-16T20:18:47.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4588"}} +{ "Id": "4588", "PostTypeId": "1", "AcceptedAnswerId": "4601", "CreationDate": "2015-09-17T10:31:49.690", "Score": "9", "ViewCount": "6958", "Body": "

I enjoy brewing and the challenges involved. I am self taught and rather good with my sweet beers.

\n\n

I am South-African and want to know how to go legal and if it is worth the costs and challenges invloved.

\n", "OwnerUserId": "4538", "LastEditorUserId": "37", "LastEditDate": "2015-09-19T15:30:07.750", "LastActivityDate": "2020-04-21T12:18:44.243", "Title": "How to homebrew legally in South Africa?", "Tags": "brewing", "AnswerCount": "2", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4589"}} +{ "Id": "4589", "PostTypeId": "2", "ParentId": "1024", "CreationDate": "2015-09-17T23:12:01.467", "Score": "0", "Body": "

Having the right shaped drinkware can improve the taste of beer. For example, there's very specific reasons for the shape of a weizen vase, or a pilsner.

\n\n

However, more often than not unusual shaped glasses are about branding and nothing more. In this wikipedia article it is claimed that the fancy Kwak beer glasses (which I like incidentally) were not launched until the 1980s. IF that is true, their claim that it was designed for couchmen unable to leave their horses rings a bit hollow...

\n\n

I do think that although the flavor of your beer is paramount, there's a lot more to how you enjoy your beer than 'just' flavor. Company, environment, and a beautiful glass or mug all contribute.

\n", "OwnerUserId": "4535", "LastActivityDate": "2015-09-17T23:12:01.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4590"}} +{ "Id": "4590", "PostTypeId": "1", "CreationDate": "2015-09-18T04:24:44.807", "Score": "5", "ViewCount": "8961", "Body": "

I know how to tap beer from a keg with CO2. The CO2 provides the pressure and you will get the beer.

\n\n

But how can germans tap their beer without using CO2?

\n", "OwnerUserId": "4327", "LastActivityDate": "2019-08-06T05:53:54.293", "Title": "How to tap beer without CO2, like the germans do?", "Tags": "keg", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4591"}} +{ "Id": "4591", "PostTypeId": "2", "ParentId": "4590", "CreationDate": "2015-09-18T08:08:50.310", "Score": "2", "Body": "

There are two usual ways to extract beer from a barrel.

\n\n

By gravity, one places a tap a short way up from the base and you allow air into the top. When you open the tap beer comes out. Generally you want to drink the beer quickly in this situation as it will go off. This method is commonly seen in beer exhibitions.

\n\n

The other method is to use an overpressure of gas to push beer out. The gas can be CO2, Nitrogen or air. The pressure is usually generated by some form of pump. For Real Ale the handpump is the device of choice forcing air onto the beer and powered by human. In some places in Scotland the handpump is replaced by a water powered pump because Scots are engineers.

\n\n

When the real ale resurrection happened in the 70s barmaids were actually warned to swap hands used to pull the pump lest they increase the muscles on one side and became lopsided as it were.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-09-18T08:08:50.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4592"}} +{ "Id": "4592", "PostTypeId": "2", "ParentId": "4590", "CreationDate": "2015-09-18T13:59:46.247", "Score": "9", "Body": "

I've never seen any evidence that Germans use anything but CO2, so if you have a source that'd be cool. That said, for getting beer out of the cask/keg/barrel you generally have 3 options:

\n\n
    \n
  1. Pressurized gas. As mentioned by the other answer this is most commonly CO2 since CO2 is produced by yeast, so if you sealed the container while yeast were still processing sugars and producing CO2, they would pressurize the container. Some brewers, especially home brewers, will pressurize their kegs through natural carbonation but most just push CO2 from a canister. BUT there's also \"beer gas\" which is a mix of Nitrogen and CO2, think Guinness or Boddingtons. This came into use to emulate the soft carbonation of cask/real ale/kellerbier, which leads to:

  2. \n
  3. Siphoning. A hand pump, or beer engine, uses a siphon to \"pull\" the beer out of the cask and up to the tap. The physics needs atmospheric pressure to be maintained inside the cask, so it's usually open to the air at the top. This required a fast turnaround on casks to prevent the beer from spoiling, which is one of the reasons cask/\"real\" ale fell out favor. Kegs simply kept longer and were more economical. I think CAMRA still isn't a fan of them, but some bars use \"breathers\" which basically add very low pressures of CO2 to replace the volume lost by the beer, but not enough to pressurize the cask. This just lets the beer last longer in the cask.

  4. \n
  5. Gravity pouring. This tends to happen most often at festivals or if a bar has a \"guest cask\". A spout is installed in the side and beer pours out. All the caveats about air spoilage from cask ale still exist here.

  6. \n
\n\n

So if the bartender pulls a handle and leaves it there until the glass is full of beer, that's a pressurized gas system. If the bartender has to keep pulling the handle to fill the glass and the beer has that cool \"cascading\" look, it was pulled by siphoning. If the cask is on the bar and the bartender just opens a spigot...that's a gravity pour.

\n\n

I don't know that there are any other options...maybe an open barrel and ladling the beer out like soup?

\n", "OwnerUserId": "268", "LastActivityDate": "2015-09-18T13:59:46.247", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4593"}} +{ "Id": "4593", "PostTypeId": "2", "ParentId": "4578", "CreationDate": "2015-09-18T15:53:49.507", "Score": "2", "Body": "

Great Lakes Brewing Company located in Cleveland, OH has a lot of great beers! To be honest I don't leave the state too often, but I believe it's an Ohio thing.

\n\n

There is also another popular brewing company in Akron, Ohio called Thirsty Dog Brewing Company, which also makes a lot of great beers!

\n\n

Like I said, I don't leave my bubble very often, so I can't tell you how hyper-localized these are.

\n", "OwnerUserId": "4505", "LastActivityDate": "2015-09-18T15:53:49.507", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4594"}} +{ "Id": "4594", "PostTypeId": "1", "AcceptedAnswerId": "4629", "CreationDate": "2015-09-20T23:38:29.353", "Score": "5", "ViewCount": "211", "Body": "

What is the best beer subscription service that people have found? I have wanted to get beers delivered to my doorstep that I have never tried before.

\n", "OwnerUserId": "920", "LastEditorUserId": "6255", "LastEditDate": "2018-10-09T08:34:21.087", "LastActivityDate": "2019-01-23T14:37:18.693", "Title": "Beer Clubs Online", "Tags": "buying", "AnswerCount": "3", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4595"}} +{ "Id": "4595", "PostTypeId": "1", "AcceptedAnswerId": "6227", "CreationDate": "2015-09-21T05:32:16.793", "Score": "3", "ViewCount": "18845", "Body": "

My friends says if you eat some bread it will absorb the alcohol and make you high less. is it true?

\n", "OwnerUserId": "4545", "LastEditorUserId": "4545", "LastEditDate": "2017-02-24T08:11:41.757", "LastActivityDate": "2017-05-18T12:07:43.630", "Title": "Eat bread before drink beer make you drunk less?", "Tags": "drinking alcohol-level non-alcoholic preparation-for-drinking alcohol", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4597"}} +{ "Id": "4597", "PostTypeId": "2", "ParentId": "4595", "CreationDate": "2015-09-21T12:37:07.727", "Score": "1", "Body": "

Eating will absorb some of the alcohol. Drinking on an empty stomach means the alcohol can go directly to the blood stream and the effects of the alcohol will happen faster.

\n\n

So if you have food in you, especially breads, it will rather slow the process of getting drunk.

\n\n

Of course you could eat four loaves of bread a slam a bottle of liquor in less then a minute and it won't help you there.

\n", "OwnerUserId": "4505", "LastActivityDate": "2015-09-21T12:37:07.727", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4598"}} +{ "Id": "4598", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2015-09-22T18:46:28.217", "Score": "0", "Body": "

A friend of mine used to be barman in an old pub in Dublin. He said the old boys would get him to microwave the cold Guinness up to room temperature. Additionally, non draught Guinness such as the old export strength stuff wadcdrunk at room temperature

\n", "OwnerUserId": "4550", "LastActivityDate": "2015-09-22T18:46:28.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4599"}} +{ "Id": "4599", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2015-09-22T19:01:01.333", "Score": "2", "Body": "

My wife will try a beer mixed as a shandy e.g Badger brewery's Tanglefoot 1:1 with lemonade. This can take the hoppy edge off \"beery\" beers. Mort Subite or Kriek fruit beers are also a hit

\n", "OwnerUserId": "4550", "LastActivityDate": "2015-09-22T19:01:01.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4600"}} +{ "Id": "4600", "PostTypeId": "1", "AcceptedAnswerId": "4605", "CreationDate": "2015-09-23T07:54:58.770", "Score": "7", "ViewCount": "445", "Body": "

I know that exists those beers that uses fruits and then leaving beer with sugary taste, for example Belgian Hoergaaden with orange zest. But there are those without any fruit part and it's yet sweet.

\n\n

I don't like too much these kind of beer but I don't know what look for in orther to avoid them.

\n\n

What kind of ingredients should I look for? Or maybe, should I look for ingredients that leave beer less sweet?

\n\n

P.S. My favorite kind of beer are American Lager like Heineken, IPA and Stout from Ale family.

\n", "OwnerUserId": "4514", "LastEditorUserId": "4514", "LastEditDate": "2017-03-27T02:14:46.693", "LastActivityDate": "2021-08-12T22:34:47.747", "Title": "What ingredients leave beer with sugary taste?", "Tags": "taste ingredients", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4601"}} +{ "Id": "4601", "PostTypeId": "2", "ParentId": "4588", "CreationDate": "2015-09-23T11:28:25.827", "Score": "6", "Body": "

As a South African homebrewer I can happily report that it is legal to brew in South Africa. We have no legal limitation on what/how much we may brew. The only rule is: Do not sell your brewed product!

\n\n

There are a few homebrew shops around, Beerguevera, brewmart, black kilt, etc. Google should help you find a good one close by.

\n\n

Ask your questions on homebrew.stackexchange.com

\n\n

For a active SA Brewing forum: wortsandall.co.za

\n\n

There is a home brew club in most provinces. On wortandall you can find one close to you.

\n\n

Better get brewing fast! The Nationals are starting soon! :D

\n\n

Happy Brewing!

\n", "OwnerUserId": "984", "LastEditorUserId": "5064", "LastEditDate": "2020-04-21T12:18:44.243", "LastActivityDate": "2020-04-21T12:18:44.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4602"}} +{ "Id": "4602", "PostTypeId": "2", "ParentId": "4590", "CreationDate": "2015-09-23T11:30:12.177", "Score": "4", "Body": "

There is one new \"sneaky\" technique, where the beer is in a bag inside the keg. To create pressure, air is pumped into the area between the bag and the keg.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-23T11:30:12.177", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4603"}} +{ "Id": "4603", "PostTypeId": "2", "ParentId": "605", "CreationDate": "2015-09-23T11:33:15.353", "Score": "2", "Body": "

Cooling and warming a beer does have an effect, but it is minor in the beginning. If you heat, cool, repeatedly many times, there will be evidence of damage and it will become staggeringly obvious!\nAt Budweizer they gave us a beer that was cycled over a 100 times! It was shocking how many off-flavours such a delicately flavoured beer can get!

\n", "OwnerUserId": "984", "LastEditorUserId": "5064", "LastEditDate": "2017-01-28T04:57:35.787", "LastActivityDate": "2017-01-28T04:57:35.787", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4604"}} +{ "Id": "4604", "PostTypeId": "2", "ParentId": "4580", "CreationDate": "2015-09-23T18:04:40.860", "Score": "3", "Body": "

One thing you should take into consideration is that this chart certainly represents macro breweries production, once they still have the vast majority of the market-share, as opposite to craft breweries. So, we are talking here mainly about light lagers, known to be consumed as a refreshing beverage.

\n\n

So, to me, it's pretty clear that the production increases as the weather warms up, peaking at the summer, and then falls down again towards chiller seasons. Considering distribution and other delaying factors, the peak at June would match the peak consumption at mid-July through mid-August.

\n\n

PS: I don't live in USA, and this is merely a theory I came up with, but which seems feasible to me.

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-09-23T18:04:40.860", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4605"}} +{ "Id": "4605", "PostTypeId": "2", "ParentId": "4600", "CreationDate": "2015-09-24T18:43:42.550", "Score": "7", "Body": "

This is a simple question to ask but has a longer answer with a ton of complexities you probably don't care about if you are not brewing your own. Ultimately sweet beers are part of the style they are in so avoiding sugary sweet beers is as simple as knowing the styles. You can skip to the bottom if that's all you want to know.

\n

There are two types of sweetness that are often discussed and sometimes confused in beer, a Malty flavor and a Sweet flavor. The same ingredients are involved but in different ways. Sugary sweet beers basically come from unfermented sugars which simply means sugars that the yeast hasn't processed to create alcohol and carbon dioxide. This is also called attenuation.

\n

This can be caused by a few different things such as unfermentable sugars that come from the way the beer is mashed (when the grains are mixed in with hot water and left to sit for a specific length of time) or from specialty grains, or the yeast itself.

\n

The explanation of how the mash affects sweetness is very complex and full of biochemistry. I will try to summarize. Grains are full of starches that need to be converted to sugar for the yeast to ferment. There are two main enzymes involved in this process, alpha and beta amylase enzymes. Using a branched tree analogy works great. After a strong storm you need to clean up your yard from the limbs that have fallen from the trees. You have a lopper (alpha amylase) which is great for cutting the branches apart from the limbs but still leave you with long branches and twigs. You also have a chipper (beta amylase) which is good at taking the branches and twigs and cutting them into little pieces that are easy to use. The two enzymes need to do their work together to make the most fermentable sugars out of the starches stored in the grains. Alpha amylase is good at breaking the limbs apart into long starch chains but these are not easy for yeast to ferment. Beta amylase is great at making small glucose chains that the yeast can convert but the big limbs are too big to get into the chipper, if the alpha amylase doesn't do its job first the beta amylase can't do its job well.

\n

The kicker is each enzyme works in a specific temperature range (beta amylase 131-150°F and alpha amylase 154-162°F). A brewer can manipulate the mash temperature to ensure both enzymes are working with an overlapping temperature (for instance 152°F) or adjust the temperature up or down to accentuate one enzyme over the other. For instance if we mashed at 158°F the beta amylase will denature and not affect the beer, while the alpha amylase will be very happy and busy. This will result in more long starch molecules in the beer which are harder for yeast to ferment and result in a sweeter beer!

\n

Unfermentable sugars can also come from specialty grains added to the beer for flavor and intentional sweetness. The usual suspects are roasted grains where the sugars inside the grain will start to caramelize such as Dark caramel and roasted malts like Crystal 80, Crystal 120, Special B, Chocolate Malt, and Roast Barley. Below is a great place for people to start learning the intricacies of brewing beer at home.

\n

Increasing the Body

\n

Ultimately these things are done by brewers to make their beer fit into the style they are trying to make along with other things like the amount and type of hops used and other adjuncts (stuff added to beer like fruit or rice or...) So to avoid sugary beers you mainly need to know what styles are not sweet or it's as simple as saying know what types of beers you like. If you really want to learn the styles turn to the Beer Style Guide!

\n

2008 BJCP Style Guidelines

\n

Look around and see which are sweet and avoid, meanwhile look for highly attenuated beers. I'd expect some you would like are:

\n
    \n
  • German Pilsners
  • \n
  • American Lagers and Pilsners
  • \n
  • Berliner-Style Weisse
  • \n
  • Dunkel Weizen/Dunkel Weissbier
  • \n
  • Munich Helles
  • \n
  • Belgian-Style Pale Strong Ale
  • \n
  • Pale Ales shouldn't be too sweet
  • \n
  • Kölsch
  • \n
  • IPAs should be dry
  • \n
\n

If you want to be adventurous, try a Wood- and Barrel-Aged Sour Beer. They are supposed to be dry although I can't speak from experience.

\n", "OwnerUserId": "4557", "LastEditorUserId": "6255", "LastEditorDisplayName": "user5195", "LastEditDate": "2021-08-12T22:34:47.747", "LastActivityDate": "2021-08-12T22:34:47.747", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4606"}} +{ "Id": "4606", "PostTypeId": "1", "AcceptedAnswerId": "4609", "CreationDate": "2015-09-26T10:48:52.117", "Score": "8", "ViewCount": "827", "Body": "

I know there are certain words experts use when they talk about wine. Categories of taste, colour etc.

\n\n

This is of course a matter of creativity and subjectivity, like describing a beer as “chocolaty” or “nutty” despite there being no chocolate or nuts in it.

\n\n

But is there an established vocabulary in beer-tasting? Where could I find a list of words, and a description of these properties? For beer, what are the magic words so abundantly found in wine culture?

\n", "OwnerUserId": "4337", "LastActivityDate": "2015-10-14T06:42:36.783", "Title": "What is the traditional vocabulary to describe the characteristics of beer?", "Tags": "terminology taste", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4608"}} +{ "Id": "4608", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2015-09-28T17:30:24.807", "Score": "1", "Body": "

This is a couple years behind the topic. What the heck. I've got 3 aluminum long neck bud's, Not that light stuff either, from 2006. I'm straining them through a coffee filter just in case. 1st thing I noticed was the color. Much darker than a new bud. 2nd is the smell. Strong alcohol smell you don't get with beer. Makes me wonder if fermentation was still active at a later point. Wish I had a way of checking the alcohol lv. After about 20 oz consumed I'll have a close enough guess. Waiting til after work around 11 or 12. I'll put in an update. 9 year old beer. This sounds like fun.

\n\n

I am Tom Sawyer

\n", "OwnerUserId": "4564", "LastActivityDate": "2015-09-28T17:30:24.807", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4609"}} +{ "Id": "4609", "PostTypeId": "2", "ParentId": "4606", "CreationDate": "2015-09-28T21:07:01.803", "Score": "7", "Body": "

I found this pretty amazing infographic at popsci. Most of them seem pretty clear, but for context reading some of the BJCP Style Descriptions might help you out. But really, describe it however it tastes to you even if the word isn't commonly used in beer tasting. There are some hop varieties that, to me, smell and taste like raw green onions rubbed on feet so I just say that.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-09-28T21:07:01.803", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4610"}} +{ "Id": "4610", "PostTypeId": "2", "ParentId": "4594", "CreationDate": "2015-09-29T13:29:31.703", "Score": "3", "Body": "

Off the top of my head, Half-Time Beverage co. runs a few Beer of the Month clubs. I've ordered beer from them, and that worked pretty well, but never tried any of their clubs. I'm sure there are some other companies, but figuring out who can legally ship to you can get a bit tricky.

\n", "OwnerUserId": "268", "LastActivityDate": "2015-09-29T13:29:31.703", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4612"}} +{ "Id": "4612", "PostTypeId": "2", "ParentId": "4600", "CreationDate": "2015-09-30T04:18:05.493", "Score": "3", "Body": "

The heavier beers (ABV 6.5% +) tend to have a sweeter taste as the alcohol increases. Alcohol may add a bit of sweetness to a beer, but it is mostly due to the amount of malt used to increase the alcohol of the beer. Note: Certain styles, like the Belgian Strong Ales, also tend to have sugar added. Sometimes this may lead to a sweeter beer, but the beer (usually) should finish dry.

\n\n

Beer that is cloyingly sweet after you finished your sip is usually not well fermented.

\n\n

In the stout style you also get Sweet Stout that is made to be sweeter using lactose (milk sugar) which is unfermentable.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-09-30T04:18:05.493", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4613"}} +{ "Id": "4613", "PostTypeId": "2", "ParentId": "976", "CreationDate": "2015-09-30T21:08:43.043", "Score": "1", "Body": "

In college we found a miller high life in the basement of a rental house that was at least 15 years old judging by the can design. (This was 2004 and it was a 1980s era can) A pledge drank it and he didn't die so if say you're fine.

\n", "OwnerUserId": "4572", "LastActivityDate": "2015-09-30T21:08:43.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4614"}} +{ "Id": "4614", "PostTypeId": "2", "ParentId": "3503", "CreationDate": "2015-10-01T10:55:27.413", "Score": "2", "Body": "

I have not aged one yet (they only arrived in my country a month ago!), but I am sure it should age well.

\n\n

Due to the higher ABV it should develop some fruity aromas and flavours, maybe even go into the sherry-like arena.

\n\n

If you do age them, age them properly (cold/cool and in the dark) and try one every year. Certain beers age amazingly well in the beginning, but then go sideways after year 5, others you can leave for ages!

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-01T10:55:27.413", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4615"}} +{ "Id": "4615", "PostTypeId": "2", "ParentId": "3463", "CreationDate": "2015-10-01T11:00:12.310", "Score": "2", "Body": "

the bubbles are most probably just CO2 coming out of suspension. This can be due to temperature diffences between the beer and the beerline, or because of something causing the agitation (dirt in the beerline).

\n\n

If the beer is overcarbonated this will happen quicker. Try to get the beer & beerline at the same temp, or get the beerline even colder.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-01T11:00:12.310", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4616"}} +{ "Id": "4616", "PostTypeId": "2", "ParentId": "3387", "CreationDate": "2015-10-01T11:05:05.020", "Score": "2", "Body": "

Usually beer is shipped, by ship. This is a slow process and can get quite hot. The beers are usually not in temperature controlled environments, just in a container. The heat causes chemical reactions in the beer, making the beer's flavours and aromas change. The temp rise (day) and drop (night) also causes the beer to \"age\" quicker.

\n\n

Yes, this process hurts all beers. You can do a simple test. Take 2 cans of beer, put the first in the fridge and leave it there for the week. The second you put in a sunny spot in the house during the day and in the fridge at night. Taste the beers after one week.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-01T11:05:05.020", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4617"}} +{ "Id": "4617", "PostTypeId": "2", "ParentId": "4578", "CreationDate": "2015-10-01T16:20:45.603", "Score": "2", "Body": "

Most of the long running local brands have been acquired by the conglomerates and continue to operate and distribute in a limited range, as there is little to no financial motive to further the distribution of these brands.

\n", "OwnerUserId": "4576", "LastActivityDate": "2015-10-01T16:20:45.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4618"}} +{ "Id": "4618", "PostTypeId": "2", "ParentId": "4606", "CreationDate": "2015-10-01T17:05:15.560", "Score": "2", "Body": "

You judge a beer based on visual, aroma, taste, mouthfeel; and descriptive terms generally fall into these categories.

\n\n

Visually you might describe the color of the brew (amber, golden, inky black, hazy, clear), the color and retention of the head, how the beer poured. Aroma might be described by smell of hops (floral, citrusy, resiny, piney, etc.), or malts (caramel, toffee, smoke, chocolate, etc), or other aromas present (molasses, booze, soy sauce, oak).

\n\n

Describing taste opens up even more potential terminology, but don't be shy to use whatever terms or comparisons best describe the flavor for you. Think of tasting beer as an evolution of flavor in your mouth: describe how it hits your tongue; how the flavor builds, morphs, and leaves; and the aftertaste. You might use any word you would to describe the flavors of food and more to describe beer (Sweet, salty, sour, tangy, raisins, dough, bread, bacon, spicy, herbal, etc).

\n\n

Finally, for mouthfeel, you're looking at words describing the texture and consistency; so ones like smooth, rich, chalky, gritty, effervescent, thick, syrupy, etc., are very useful when appropriate.

\n", "OwnerUserId": "4576", "LastEditorUserId": "4576", "LastEditDate": "2015-10-02T01:19:37.660", "LastActivityDate": "2015-10-02T01:19:37.660", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4619"}} +{ "Id": "4619", "PostTypeId": "2", "ParentId": "4590", "CreationDate": "2015-10-01T17:17:08.173", "Score": "1", "Body": "

All beer has CO2 in it, whether or not its added artificially, even nitro pours. Not sure if you mean a gravity based pull system, or maybe a nitro tap line? Nitro beers use a gas mix of mostly nitrogen to some parts CO2 to give the beer a richer, creamier body and head.

\n", "OwnerUserId": "4576", "LastActivityDate": "2015-10-01T17:17:08.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4620"}} +{ "Id": "4620", "PostTypeId": "1", "AcceptedAnswerId": "4621", "CreationDate": "2015-10-04T21:00:07.003", "Score": "2", "ViewCount": "97", "Body": "

It's kind of simple question, I'd like to know why exists different kinds of glass for each beer. Could glass affect beer taste? How? Or is this just marketing?

\n", "OwnerUserId": "4514", "LastEditorUserId": "4514", "LastEditDate": "2015-10-05T15:28:32.180", "LastActivityDate": "2017-07-10T13:49:51.297", "Title": "Glassware for Beer", "Tags": "taste glassware", "AnswerCount": "1", "CommentCount": "0", "ClosedDate": "2015-10-06T00:57:33.287", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4621"}} +{ "Id": "4621", "PostTypeId": "2", "ParentId": "4620", "CreationDate": "2015-10-05T13:54:41.427", "Score": "2", "Body": "

Most people would say yes, it does make a difference. Take a read of this article for some thoughts:

\n\n

http://www.washingtonpost.com/news/innovations/wp/2014/07/11/can-this-glass-actually-make-beer-taste-better/

\n\n

The type of glass can effect not only the aromas imparted to your nose but also how quickly the beer warms up and also the visual appeal too. I tell people you first taste things with your eyes, then your nose, then your mouth.

\n", "OwnerUserId": "529", "LastEditorUserId": "529", "LastEditDate": "2017-07-10T13:49:51.297", "LastActivityDate": "2017-07-10T13:49:51.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4622"}} +{ "Id": "4622", "PostTypeId": "2", "ParentId": "744", "CreationDate": "2015-10-07T08:09:06.327", "Score": "1", "Body": "

I found an awesome resource: Draft Beer Quality. They have a very nifty pdf Manual that you can download for free!

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-07T08:09:06.327", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4623"}} +{ "Id": "4623", "PostTypeId": "2", "ParentId": "3463", "CreationDate": "2015-10-07T09:44:56.043", "Score": "1", "Body": "

Here is a great site http://www.draughtquality.org/

\n\n

Download the free manual and I am sure it will help you.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-07T09:44:56.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4624"}} +{ "Id": "4624", "PostTypeId": "1", "AcceptedAnswerId": "4626", "CreationDate": "2015-10-09T01:11:24.017", "Score": "8", "ViewCount": "1656", "Body": "

Consider the map of per capita beer consumption by county from Wikipedia:

\n\n

\"enter

\n\n

Zooming in on Europe, something that jumps out is that France and Italy consume much less beer than their neighbors:

\n\n

\"enter

\n\n

What has caused these two countries to be pretty much surrounded by other countries with higher beer consumption? I would imagine to some degree this is caused by replacing beer consumption with wine consumption, but what led to these regional differences in alcohol preferences?

\n", "OwnerUserId": "4526", "LastEditorUserId": "4526", "LastEditDate": "2015-10-09T01:22:39.800", "LastActivityDate": "2017-02-01T08:18:09.127", "Title": "Why do France and Italy have so much lower beer consumption than their neighbors?", "Tags": "history", "AnswerCount": "6", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4625"}} +{ "Id": "4625", "PostTypeId": "1", "AcceptedAnswerId": "4627", "CreationDate": "2015-10-09T13:08:37.617", "Score": "6", "ViewCount": "573", "Body": "

Since beers are made with hops, what nutritional value do those hop give to a human body when beer is consumed?

\n", "OwnerUserId": "4605", "LastEditorUserId": "37", "LastEditDate": "2015-10-09T19:29:40.067", "LastActivityDate": "2015-10-10T12:25:44.417", "Title": "Nutritional value of hops?", "Tags": "health hops", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4626"}} +{ "Id": "4626", "PostTypeId": "2", "ParentId": "4624", "CreationDate": "2015-10-09T13:44:39.730", "Score": "15", "Body": "

You are correct that in countries like France and Italy, beer consumption is replaced by much higher wine consumption.

\n\n

Why? Because they can.

\n\n

It's a cultural difference that has been developed and ingrained over many centuries, back to when trade was more limited and more difficult, and Northern Europe was colder than it is today. For much of that time, the climate in Southern Europe was ideal for growing grapes and producing wine, while it was simply too cold further north. So, Southern Europe produced and drank wine, Northern Europe produced and drank beer, thus creating regional preferences that persist even to this day.

\n", "OwnerUserId": "37", "LastActivityDate": "2015-10-09T13:44:39.730", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4627"}} +{ "Id": "4627", "PostTypeId": "2", "ParentId": "4625", "CreationDate": "2015-10-10T12:25:44.417", "Score": "6", "Body": "

None, the hops are added to provide a bitter flavour and because they have an antibiotic property that favours yeast over other microorganisms.

\n\n

The hops are filtered out in the brewing process so there is no calorific gain.

\n\n

In a typical UK beer recipe the hops are typically 1% of the dry ingredients.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-10-10T12:25:44.417", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4628"}} +{ "Id": "4628", "PostTypeId": "1", "AcceptedAnswerId": "4644", "CreationDate": "2015-10-13T05:32:13.600", "Score": "5", "ViewCount": "101", "Body": "

I recently came across the following map of number of breweries per 1 million population in the United States:

\n\n

\"enter

\n\n

Visually it's apparent that there are the most breweries per capita in the northwest and northeast, and there are the fewest breweries per capita in the south.

\n\n

What is the main cause for these regional differences? The impact of climate? Laws and regulations in different parts of the U.S.? Regional demand differences? Something else?

\n", "OwnerUserId": "4526", "LastActivityDate": "2015-10-19T14:00:47.560", "Title": "Causes for regional differences in brewery count in the United States", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4629"}} +{ "Id": "4629", "PostTypeId": "2", "ParentId": "4594", "CreationDate": "2015-10-13T23:13:54.733", "Score": "3", "Body": "

Here are some US options.

\n\n

The Bruery has a few different levels but their starter Preservation Society gets you 3 bottles of different styles each quarter without any commitment (you can join for one quarter and quit any time). This is also the easiest way to get some of their big beers like Black Tuesday, White Chocolate, and Chocolate Rain. The contents of the 2015 4th quarter Preservation Society package includes:

\n\n
    \n
  • Black Tuesday - bourbon barrel aged stout
  • \n
  • Oude Tart with Boysenberries - Flemish-style red ale
  • \n
  • Humulus Triple - triple india-style pale lager
  • \n
\n\n

Cost is $58.50 but doesn't include tax or shipping.

\n\n

The Microbrewed Beer of the Month Club offers many different options. You can choose beers from the US or international, or a mix of both. They have levels that run from 2 large format bottles up to a dozen 12-oz bottles.

\n", "OwnerUserId": "4615", "LastEditorUserId": "4615", "LastEditDate": "2015-11-16T23:52:04.200", "LastActivityDate": "2015-11-16T23:52:04.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4630"}} +{ "Id": "4630", "PostTypeId": "1", "AcceptedAnswerId": "4643", "CreationDate": "2015-10-14T04:16:05.270", "Score": "5", "ViewCount": "365", "Body": "

In all the years of my life (except when I was a minor), I've never tasted beer that's not bitter. So was beer conceived to be a bitter drink? What factors in the bitter taste of beer?

\n", "OwnerUserId": "127", "LastActivityDate": "2015-10-19T15:59:56.640", "Title": "Was beer conceived to be a bitter drink?", "Tags": "taste history", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4631"}} +{ "Id": "4631", "PostTypeId": "2", "ParentId": "4630", "CreationDate": "2015-10-14T06:35:01.303", "Score": "2", "Body": "

Beer is not always bitter, but the bitterness (usually from the hops) is there to counter the sweetness of the malt.

\n\n

Some beers, like the Belgian Strong Ales, tend to be malty & sweet, with just enough bitterness to but the sweetness.

\n\n

Beers become sweeter with age, as the hops (and the bitterness) drop out, leaving only the malty sweetness.

\n\n

Gruit (beers made without hops) use different herbs to give bitterness to the beer.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-14T06:35:01.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4632"}} +{ "Id": "4632", "PostTypeId": "2", "ParentId": "4606", "CreationDate": "2015-10-14T06:42:36.783", "Score": "0", "Body": "

There was a lexicon written, but it does not seem that it ever made it to the public.

\n\n

Trained tasters have fairly similar tastes, as that is what makes them so important. Thus they will know the difference between roasty, coffee, dark chocolate, cocoa, white chocolate, coffee with milk, latte.

\n\n

The beer descriptors (I think) are a lot more down to earth. (To quote CBR) If beer had a wine vocabulary, we would say simcoe is feline, as opposed to cat piss! :p

\n\n

Listen to podcasts like Dr Homebrew, Brewing With Style and Craft Beer Radio. They rate the beers, providing amazing insight to the vocabulary of a beer judge as well as the judging process.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-14T06:42:36.783", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4635"}} +{ "Id": "4635", "PostTypeId": "1", "AcceptedAnswerId": "4638", "CreationDate": "2015-10-15T17:40:05.437", "Score": "5", "ViewCount": "129", "Body": "

A fake grassroots organization (one sponsored by an industry but made to look as though it was set up by regular people) is called an \"astroturf\" group. Is there a similar name for a \"craft beer\" that's actually produced by one of the big brewers (AB InBev, SABMiller, etc.)?

\n\n

Said another way, what do you call a beer that is made to look as though it was brewed by a small, independent brewery but was really produced by a major brewer?

\n\n

Examples might be Blue Moon (SABMiller) or ShockTop (AB InBev).

\n", "OwnerUserId": "4626", "LastActivityDate": "2015-10-17T22:32:54.927", "Title": "Is there a common name for a \"craft\" beer brewed by a major brewery?", "Tags": "terminology", "AnswerCount": "1", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4636"}} +{ "Id": "4636", "PostTypeId": "1", "CreationDate": "2015-10-15T23:02:34.790", "Score": "3", "ViewCount": "617", "Body": "

Myth or Fact: Antibiotics cannot be taken with beer because it damages the effect of the drug with the interaction in your body of the alcohol.

\n\n

I take antihistamines with beer and they work, so not sure if anyone knew about this one?

\n", "OwnerUserId": "4631", "LastEditorUserId": "43", "LastEditDate": "2015-10-18T02:36:44.397", "LastActivityDate": "2015-10-24T19:24:17.867", "Title": "Why can't antibiotics be taken with beer?", "Tags": "health", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4637"}} +{ "Id": "4637", "PostTypeId": "2", "ParentId": "4636", "CreationDate": "2015-10-16T04:03:03.393", "Score": "5", "Body": "

As everything in life, it depends.... From the Mayo Clinic:

\n\n
\n

Antibiotics and alcohol can cause similar side effects, such as\n stomach upset, dizziness and drowsiness. Combining antibiotics and\n alcohol can increase these side effects.

\n \n

A few antibiotics — such as metronidazole (Flagyl), tinidazole\n (Tindamax) and trimethoprim-sulfamethoxazole (Bactrim, Septra) —\n should not be mixed with alcohol because this may result in a more\n severe reaction. Drinking any amount of alcohol with these medications\n can result in side effects such as flushing, headache, nausea and\n vomiting, and rapid heart rate.

\n
\n\n

So some antibiotics may not cause issues while others might. Best thing to do is follow the medications warning label

\n", "OwnerUserId": "529", "LastActivityDate": "2015-10-16T04:03:03.393", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4638"}} +{ "Id": "4638", "PostTypeId": "2", "ParentId": "4635", "CreationDate": "2015-10-16T06:28:24.927", "Score": "6", "Body": "

In Wisconsin, there is not a coined term for those types of \"craft brews\" as produced by a global brewery. They are generally referred to simply by describing the brew as a/an fake or impostor craft, craft-style beer, or Big Beer craft. (The descriptors simply degenerate as the beer-passion elevates.)

\n\n

This 2013 TIME article simply references \"Faux Craft\" and \"Crafty\"\nhttp://business.time.com/2013/08/13/that-craft-beer-youre-drinking-isnt-craft-beer-do-you-care/

\n\n

If it's a matter of simply communicating effectively, I don't feel the need to use a coined term (as astroturf is to grassroots). For marketing purposes, however, it seems there is still time for a hilariously ironic name to be coined.

\n", "OwnerUserId": "4632", "LastActivityDate": "2015-10-16T06:28:24.927", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4639"}} +{ "Id": "4639", "PostTypeId": "2", "ParentId": "935", "CreationDate": "2015-10-17T17:21:19.107", "Score": "2", "Body": "

Call them and find out cause in NYC you can get it at a couple of international beer carriers (SEARCH ON YELP).

\n\n

Or try PRESIDENTE Beer from their DR neighbours at any Publix Supermarket/Wine & Spirits.

\n\n

Phone Number to Medalla Company

\n", "OwnerUserId": "4631", "LastActivityDate": "2015-10-17T17:21:19.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4641"}} +{ "Id": "4641", "PostTypeId": "2", "ParentId": "4630", "CreationDate": "2015-10-18T16:41:45.173", "Score": "2", "Body": "

It is rather hard to say what should be in beer making as much of beer making is just a exercise in the personals taste of the brewer but yes a certain level of bitterness is required to counter act the sugars that need to be present for fermentation.

\n", "OwnerUserId": "4638", "LastActivityDate": "2015-10-18T16:41:45.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4642"}} +{ "Id": "4642", "PostTypeId": "2", "ParentId": "4624", "CreationDate": "2015-10-18T16:59:10.313", "Score": "5", "Body": "

It is curious to note that much to the chagrin of the Lowlanders some of the earliest beer history dates from the Roman empire. These types of beers did not use hops.

\n\n

The hop beers dated from 8th century and was first developed in Germany. It was not long before the new technology in brewing spread to Neighboring Belgium and a little while there after it jumped the channel to the British island.

\n\n

It is was evident from a early stage in the history of brewing that these hops where only made in a handful of places in the old world and the beer culture centered around these places.

\n\n

The Goldbach Valley in western Bohemia, near the town of Saaz, and the Mittelfrüh subregion of the Hallertau being the most famous.

\n\n

That being said northern Italy is busy with a nice beer renascence

\n", "OwnerUserId": "4638", "LastActivityDate": "2015-10-18T16:59:10.313", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4643"}} +{ "Id": "4643", "PostTypeId": "2", "ParentId": "4630", "CreationDate": "2015-10-19T03:55:20.977", "Score": "5", "Body": "

So I'm going to assume you mean historically...

\n\n

The Wikipedia page has a ton of good info but basically, beer was originally a very sweet beverage due to the wild yeast and under modified malt that was used in the brewing process. To combat the sweetness, brewers would use Gruit which is an herb mixture to bitter the beer. Hops were also used as a bittering agent, but not to the same extent as gruit.

\n\n

In 1842, the first Pilsner was brewed, a style which showcases hops and is very pale in color which was revolutionary at the time. This style took Europe by storm and the migrating Germans to the US brought this taste for hoppy pilsners with them to the US. There were many competing styles that were popular in the US up until Prohibition.\n After prohibition, the breweries that were still in business chose to produce the beers that appeal to the widest consumer base, I.E. Pilsner drinkers. This is the raison d'etre for the very large breweries.

\n\n

As for the bitterness in beer, the most common factor is Hops. Hops contain different acids (Alpha, Beta, Myrcente, etc) that bitter beer in different ways. The type, quantity and usage of hops in the brewing process can affect the bitterness of beer.\nThat being said, some styles don't use a lot of hops if at all. Scottish/Irish ales, for instance, don't have much hop flavor due to the lack of availability of hops in the region. Other styles originate from locations that have never seen hops.

\n\n

Hope this helps. Never be afraid to try new things.

\n", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2015-10-19T15:59:56.640", "LastActivityDate": "2015-10-19T15:59:56.640", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4644"}} +{ "Id": "4644", "PostTypeId": "2", "ParentId": "4628", "CreationDate": "2015-10-19T14:00:47.560", "Score": "1", "Body": "

I believe it is mostly due to the laws of each state. Brewers Assoc. stats.

\n\n

After prohibition ended, it was up to the states and counties to determine their own stance toward alcohol. One part of the repeal of the 18th Amendment was the legalization of homebrewing wine and mead. The law did not allow the homebrewing of beer until 1978. Event then, it was up to each state to determine their stance toward the homebrewing of beer.

\n\n

The states with the most breweries per capita follow the federal statute, which allows for 100 gallons per person of drinking age up to a maximum of 200 gallons per year. The states on the map with the least breweries have only recently relaxed their laws on homebrewing and alcohol sales in general.

\n\n

Many homebrewers dream of starting their own brewery or pub, but they need to be able to practice their craft. I am unable to locate the minutes to the Alabama House of Rep. discussion online, but the Basic Brewing Radio Podcast did air a snipped of the floor arguments on the legalization of homebrewing. Some of the arguments against were uniformed and antiquated.

\n\n

Why open up a beer business in a city/county/state where regulations and attitudes are opposed to your product?

\n", "OwnerUserId": "4637", "LastActivityDate": "2015-10-19T14:00:47.560", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4645"}} +{ "Id": "4645", "PostTypeId": "1", "CreationDate": "2015-10-21T05:24:25.083", "Score": "5", "ViewCount": "126", "Body": "

Are there any South Korean craft breweries who bottle their beers?

\n\n

Bonus question: Where (in Seoul) can my friend obtain some?

\n", "OwnerUserId": "73", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:51:15.073", "LastActivityDate": "2016-07-17T01:59:59.240", "Title": "Are there any bottled South Korean craft beers?", "Tags": "breweries craft-beers", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4646"}} +{ "Id": "4646", "PostTypeId": "2", "ParentId": "4645", "CreationDate": "2015-10-21T16:11:37.530", "Score": "1", "Body": "

Here you can find several places: Good Beer Hunting.

\n\n

e.g.: Craftworks\n[img]http://i.imgur.com/Vu4w4qm.png[/img]

\n\n

\"Seoul\"

\n", "OwnerUserId": "4646", "LastEditorUserId": "5064", "LastEditDate": "2016-07-17T01:59:59.240", "LastActivityDate": "2016-07-17T01:59:59.240", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4647"}} +{ "Id": "4647", "PostTypeId": "2", "ParentId": "4624", "CreationDate": "2015-10-21T20:37:57.680", "Score": "3", "Body": "

In the case of France it is more or less how is says in the accepted answer. In the case of Italy they consume in general little alcohol for European standards:\nList of countries by alcohol consumption per capita (Wikipedia)

\n\n

This can also be observed when there (which I am a lot). Cafes are popular which do in general also serve alcohol, but in the evening it usually remains at one drink often an Aperitif (Aperol Spritz for example) or a single beer or a glass of wine.

\n", "OwnerUserId": "4649", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T14:32:10.183", "LastActivityDate": "2016-10-08T14:32:10.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4648"}} +{ "Id": "4648", "PostTypeId": "1", "CreationDate": "2015-10-22T12:38:18.250", "Score": "6", "ViewCount": "148", "Body": "

Is there any information on how the levels of co2 and n2 change over time in a keg series pressurized with a 30/70 mix (co2/n2 respectively)? Assuming the beer originally carbonated (not a nitro beer) and it takes a week to empty the series of kegs?\nI would guess that one would get at least a 1/2 barrel of beer that is at the original carbonation level and no nitrogenation, but as the flow mixes the beer it would change and finally the last 1/2 barrel would have the greatest nitrogenation.

\n\n

Also, since it is not a nitro beer is there a limit of the amount of nitrogenation due to the originally present carbonation?

\n", "OwnerUserId": "4650", "LastEditorUserId": "5064", "LastEditDate": "2016-04-19T22:56:28.630", "LastActivityDate": "2016-04-19T22:56:28.630", "Title": "Changes of gasification of beer in a long draw series", "Tags": "carbonation", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4649"}} +{ "Id": "4649", "PostTypeId": "2", "ParentId": "3511", "CreationDate": "2015-10-23T19:31:27.570", "Score": "-1", "Body": "

Try the J.W. Sweetman Craft Brewery on 1-2 Burgh Quay. Just after O'Connel Bridge.

\n", "OwnerUserId": "4655", "LastActivityDate": "2015-10-23T19:31:27.570", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4650"}} +{ "Id": "4650", "PostTypeId": "1", "CreationDate": "2015-10-24T02:09:01.287", "Score": "5", "ViewCount": "191", "Body": "

So my grandmother told me before they had hair conditioner in the islands (grew up in Cuba) they used beer on their hair and laid out in the sun. She claims the 'froth' is packed with rich nutrients. I am not sure whether she made this up so I would pour it on my hair instead of drinking it. Anyone else ever heard of beer as a conditioner?...

\n", "OwnerUserId": "4631", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:49:58.910", "LastActivityDate": "2016-06-17T13:30:40.543", "Title": "Beer as a conditioner?", "Tags": "health", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4652"}} +{ "Id": "4652", "PostTypeId": "2", "ParentId": "4650", "CreationDate": "2015-10-24T07:14:33.893", "Score": "2", "Body": "

There are certainly a good few beer based shampoos available. Even Carlsberg make a beer shampoo/conditioner. I've no idea whether it's \"probably the best shampoo in the world'.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-10-24T07:14:33.893", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4653"}} +{ "Id": "4653", "PostTypeId": "2", "ParentId": "4578", "CreationDate": "2015-10-24T08:46:02.120", "Score": "1", "Body": "

Same here in Germany, in the 70s and 80s all the local breweries were bought by bigger companies or closed down. But than more and more small breweries got founded with delicious beers, hand crafted and very small amounts and miost of them (locally) very popular.\nOthers such as Rothaus in black forrest simply reached their capacity because they decided not to expand. Rothuas only has 7 natural water sources and therefore cannot produce any more beer based on those.

\n", "OwnerUserId": "4659", "LastActivityDate": "2015-10-24T08:46:02.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4654"}} +{ "Id": "4654", "PostTypeId": "1", "AcceptedAnswerId": "4656", "CreationDate": "2015-10-24T17:14:12.130", "Score": "5", "ViewCount": "534", "Body": "

I have an old bottle of Sahti, Samuel Adams, probably 3 years old, it's been kept properly, I noticed that it has a lot of sediment, don't know if it's normal or not, but regardless I want to try it. Is there a safe way to decant the beer, so the sediment or floaties don't make their way to the glass?

\n", "OwnerUserId": "4101", "LastActivityDate": "2015-10-25T02:11:44.997", "Title": "How to decant beer from bottle", "Tags": "serving", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4655"}} +{ "Id": "4655", "PostTypeId": "2", "ParentId": "4636", "CreationDate": "2015-10-24T19:24:17.867", "Score": "0", "Body": "

Assuming no side effects, the alcohol can actually inhibit the effect of the antibiotic i.e. negating the effect. It would be as if you hadn't taken any, so it would affect your medication course. As it is, some medication does cause side effects and since most people don't read the leaflet insert in their medicine box, it's safer to generally avoid the booze.
\nAntifungal treatments can be fine, but no one right in the head would drink a load of vodka with paracetamol unless they were trying to end it all. Each drug is different.

\n", "OwnerUserId": "4550", "LastActivityDate": "2015-10-24T19:24:17.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4656"}} +{ "Id": "4656", "PostTypeId": "2", "ParentId": "4654", "CreationDate": "2015-10-25T02:11:44.997", "Score": "1", "Body": "

Just like wine, pour into a glass while watching the sediment.\n Make sure the bottle has sat still for long enough that everything has settled. Stop when the sediment is about to pour out.\nEnjoy.

\n", "OwnerUserId": "4637", "LastActivityDate": "2015-10-25T02:11:44.997", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4657"}} +{ "Id": "4657", "PostTypeId": "2", "ParentId": "934", "CreationDate": "2015-10-25T18:23:18.643", "Score": "1", "Body": "

I was recently in Burlington and picked up a couple of cases.

\n\n

Yes, it's a good beer.\nNo, it's not as good as the hype suggests.

\n\n

One of the previous posts hit the nail on the head. Heady Topper has a good balance between the strength and the hoppiness. It has what I call smooth strength.

\n\n

But is it worth driving up from Pennsylvania and following the delivery truck around - probably not

\n", "OwnerUserId": "4660", "LastActivityDate": "2015-10-25T18:23:18.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4658"}} +{ "Id": "4658", "PostTypeId": "1", "CreationDate": "2015-10-26T13:04:15.107", "Score": "5", "ViewCount": "569", "Body": "

A while ago on a visit to Tallinn I visited the medieval-style restaurant Olde Hansa. There they had two very good kinds of beer: one with honey and one with cinnamon.

\n\n

Do such beers exist elsewhere, in particular, in bottled versions?

\n", "OwnerUserId": "1469", "LastActivityDate": "2015-10-30T18:15:36.243", "Title": "Beer with honey, beer with cinnamon", "Tags": "specialty-beers flavor", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4660"}} +{ "Id": "4660", "PostTypeId": "2", "ParentId": "4658", "CreationDate": "2015-10-27T10:13:36.980", "Score": "2", "Body": "

I have tried Fullers (of London) Organic Honey Dew which is lightly flavoured with honey - its a golden ale with a light flavour. Very refreshing. I believe it's available generally throughout the UK and is imported to the US.

\n\n

There is another honey beer by a company called Hiver but I've yet to track down a bottle and even I won't make a trip to London for a beer.

\n\n

I've never seen a beer with cinnamon brewed in but I have had mulled ales with cinnamon added so the flavours are compatible, I'm sure someone has done it.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-10-27T10:13:36.980", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4661"}} +{ "Id": "4661", "PostTypeId": "2", "ParentId": "4658", "CreationDate": "2015-10-27T13:46:17.027", "Score": "5", "Body": "

There are several beers with honey, some of them are quite famous.

\n\n

For example the ones I know are from Belgium and France:

\n\n
    \n
  • \"Barbãr\" and \"Barbãr Bok\" from the Levebvre brewery
  • \n
  • \"Bière des ours\" from the brewery \"La Binchoise\"
  • \n
  • \"Bière de miel biologique\" from the Dupont brewery
  • \n
  • \"Véliocasse\" from the brewery \"La bière du Vexin\"
  • \n
\n\n

The easiest to find are probably the ones from the Levebvre brewery.

\n\n

I don't know any beer with cinnamon but I'm quite sure that it exists.

\n", "OwnerUserId": "4575", "LastActivityDate": "2015-10-27T13:46:17.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4662"}} +{ "Id": "4662", "PostTypeId": "1", "AcceptedAnswerId": "4663", "CreationDate": "2015-10-28T03:04:50.740", "Score": "9", "ViewCount": "2321", "Body": "

I know some people like beer so much while some other resist do drink, is it determined by DNA? Can the situation be changed?

\n", "OwnerUserId": "4669", "LastEditorUserId": "4726", "LastEditDate": "2015-11-13T14:32:25.537", "LastActivityDate": "2016-10-08T16:23:32.650", "Title": "Are we born to either like or hate beer?", "Tags": "health", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4663"}} +{ "Id": "4663", "PostTypeId": "2", "ParentId": "4662", "CreationDate": "2015-10-28T12:10:51.247", "Score": "10", "Body": "

Beer is a taste preference, and therefor the chances exist that you may \"learn\" to like beer.

\n\n

As a child I tasted the pale mass-produced lager that my father drank and I did not like it. But children (usually) prefer sweet over bitter.

\n\n

As we grow older, our taste change and we learn to enjoy a more varied amount of flavours, including bitterness, and we then start to enjoy beer more.

\n\n

Another thing to take into consideration: There are MANY different types of beers! A person might love sour beers, but hate IPAs. Or prefer Bocks over fruit beers. It is a personal thing, but it means that, even though you do not like one style of beer, it does not mean that you will hate all beers!

\n\n

As a brewer once said: \"If you have have not found a beer you love, keep drinking more beer\"

\n\n

\"Beer

\n\n

For reference: \nExplosm.\nhttp://explosm.net/comics/52

\n", "OwnerUserId": "984", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T16:23:32.650", "LastActivityDate": "2016-10-08T16:23:32.650", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4664"}} +{ "Id": "4664", "PostTypeId": "2", "ParentId": "4658", "CreationDate": "2015-10-28T12:15:22.280", "Score": "1", "Body": "

There are LOADS of beers with honey and or cinnamon!

\n\n

Using Ratebeer I could find 5 beers in Germany that have the word honey in their name. Start searching there, or just visit craft breweries.

\n\n

Cinnamon beers would be more common in winter, again, from craft breweries and imports.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-28T12:15:22.280", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4665"}} +{ "Id": "4665", "PostTypeId": "2", "ParentId": "4650", "CreationDate": "2015-10-28T12:19:37.380", "Score": "3", "Body": "

I have heard and seen beer shampoo, both as a home-remedy and a commercial product.

\n\n

Here is an article about beer shampoo. http://lifehacker.com/5908809/shampoo-your-hair-with-beer-for-a-silky-soft-shine

\n", "OwnerUserId": "984", "LastActivityDate": "2015-10-28T12:19:37.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4666"}} +{ "Id": "4666", "PostTypeId": "2", "ParentId": "4645", "CreationDate": "2015-10-29T12:17:35.450", "Score": "3", "Body": "

Ratebeer has list of breweries in South Korea. I see there are some in Seoul and the images show bottles, so I assume that they bottle.

\n\n

Go to RateBeer and in the Brewer Search area select the country. (I would have liked to give a result link, but ratebeer hides them).

\n", "OwnerUserId": "984", "LastEditorUserId": "5064", "LastEditDate": "2016-07-17T01:54:40.917", "LastActivityDate": "2016-07-17T01:54:40.917", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4667"}} +{ "Id": "4667", "PostTypeId": "1", "AcceptedAnswerId": "4669", "CreationDate": "2015-10-30T05:02:12.560", "Score": "6", "ViewCount": "38034", "Body": "

By dumping a small amount of cigarette ash into a beer, I have heard people say it helps give the beer an extra \"kick\"...

\n\n

Is there any truth to this? Or, is it just a myth?...

\n", "OwnerUserId": "1321", "LastEditorUserId": "5847", "LastEditDate": "2019-12-12T12:49:06.463", "LastActivityDate": "2019-12-12T12:49:06.463", "Title": "Dumping small amount of cigarette ashes into the beers", "Tags": "health alcohol-level", "AnswerCount": "6", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4668"}} +{ "Id": "4668", "PostTypeId": "2", "ParentId": "4658", "CreationDate": "2015-10-30T18:15:36.243", "Score": "5", "Body": "
\n

Do such beers exist elsewhere, in particular, in bottled versions?

\n
\n\n

Yes.

\n\n

American craft brewers use honey and cinnamon quite a bit, though not necessarily at the same time. Here are a few that might be available to you, but as is the case with a perishable product, your mileage may vary.

\n\n

Honey

\n\n

Dogfish Head Midas Touch is brewed with honey, barley malt, white muscat grapes and saffron.

\n\n

Sam Adams Honey Porter uses Scottish Heather Honey.

\n\n

Brooklyn Brewery Local 2 uses NY State Raw Wildflower Honey.

\n\n

Here are a few more that utilize the sweet stuff for extra flavor.

\n\n

Cinnamon

\n\n

Dundee Festive Ale is brewed with nutmeg, allspice, cinnamon and orange peel.

\n\n

Cigar City's Hunahpu's Imperial Stout brewed with Cacao nibs, ancho and pasilla chiles, cinnamon, and vanilla beans.

\n\n

Sweetwater Festive Ale has \"a taint of cinnamon and mace\".

\n\n

Who could forget Terrapin's Cinnamon Roll's Wake-n-Bake? Though I believe it is retired now.

\n", "OwnerUserId": "4350", "LastActivityDate": "2015-10-30T18:15:36.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4669"}} +{ "Id": "4669", "PostTypeId": "2", "ParentId": "4667", "CreationDate": "2015-10-31T22:09:00.353", "Score": "19", "Body": "

Adding any particulate to a beer will reduce the carbonation due to more nucleation sites and the flavor may change from the tobacco ash, but the only way to increase the alcohol content of a beer in your glass is to add alcohol.

\n", "OwnerUserId": "4637", "LastActivityDate": "2015-10-31T22:09:00.353", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4670"}} +{ "Id": "4670", "PostTypeId": "2", "ParentId": "744", "CreationDate": "2015-11-04T08:58:02.763", "Score": "1", "Body": "

Lots of good, in-depth answers here. It looks like nobody (edit: looks like Soloem did, actually) mentioned the obvious: close your supply line and bleed excess CO2 from the keg.

\n\n

Sometimes a keg will come to you highly carbonated and you just have to bleed it. Sometimes you have to bleed it a few times (before you begin dispensing for the day).

\n\n

As long as you don't have some physical problem with your setup (long lines, warm temps, leaks or something crazy) you're just facing an over-pressurized keg.

\n", "OwnerUserId": "4691", "LastActivityDate": "2015-11-04T08:58:02.763", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4672"}} +{ "Id": "4672", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2015-11-04T09:59:43.520", "Score": "3", "Body": "

There is a beer called \"Snake Venom\", by \"Brewmeister\" a scottish brewery. The alcohol content is 67.5%. It has been verified by Trading Standards and is officially named the world´s strongest beer. The wiki entry states that they use the process of fractional freezing to achieve such a high percentage of alcohol.

\n", "OwnerUserId": "4175", "LastEditorUserId": "4175", "LastEditDate": "2015-11-04T13:11:43.260", "LastActivityDate": "2015-11-04T13:11:43.260", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4673"}} +{ "Id": "4673", "PostTypeId": "1", "CreationDate": "2015-11-05T04:31:53.783", "Score": "2", "ViewCount": "240", "Body": "

Can I use any brand of beer on my hair? \nwhat are the things I need to consider before applying beer on to my hair?

\n", "OwnerUserId": "1321", "LastEditorUserId": "37", "LastEditDate": "2015-11-06T16:18:41.043", "LastActivityDate": "2015-11-14T04:08:08.977", "Title": "Using beer as hair care product", "Tags": "health", "AnswerCount": "2", "CommentCount": "0", "ClosedDate": "2016-01-02T02:26:39.177", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4675"}} +{ "Id": "4675", "PostTypeId": "1", "CreationDate": "2015-11-05T11:10:18.550", "Score": "3", "ViewCount": "84630", "Body": "

Is it safe to mix small quantity of vodka with beer.

\n\n

Any there any dare devils who had tried cocktails on their beer?

\n", "OwnerUserId": "1321", "LastEditorUserId": "5064", "LastEditDate": "2017-05-21T15:38:26.807", "LastActivityDate": "2019-06-29T23:28:31.060", "Title": "Mixing vodka with beer?", "Tags": "vodka beer-cocktails", "AnswerCount": "8", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4676"}} +{ "Id": "4676", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2015-11-05T13:46:35.650", "Score": "8", "Body": "

Mixing vodka (alcohol mixed with water) to beer (alcohol mixed with water plus some flavouring and other compounds) is perfectly safe. No need to be a daredevil to do it. Beer cocktails also exist but have varying degrees of pleasantness. The \"black velvet\", stout and sparkling wine (Black Velvet -\nbeer cocktail) I have tried and can confirm that it is not too bad as beer cocktails go.

\n\n

I make no assertions as to the quality of the hangover after beer cocktails.

\n", "OwnerUserId": "909", "LastEditorUserId": "5064", "LastEditDate": "2016-09-01T11:00:49.280", "LastActivityDate": "2016-09-01T11:00:49.280", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4677"}} +{ "Id": "4677", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2015-11-05T23:30:25.113", "Score": "6", "Body": "

It is most definitely okay, but can lead to much higher alcohol content compared to what one might expect. There is actually a commonly made mix in college that I and others had made using a bottle of vodka a couple cans of beer and lemonade concentrate. Was quite good, but dangerous in high quantity. I know of others who would put an ounce or so of flavored vodka or rum in their beers as well.

\n", "OwnerUserId": "4701", "LastActivityDate": "2015-11-05T23:30:25.113", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4678"}} +{ "Id": "4678", "PostTypeId": "2", "ParentId": "4673", "CreationDate": "2015-11-05T23:36:17.670", "Score": "5", "Body": "

Before application, consider the steps you have taken to have gotten to that point, then do whatever you can to ensure you never repeat those steps again.

\n", "OwnerUserId": "4701", "LastActivityDate": "2015-11-05T23:36:17.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4680"}} +{ "Id": "4680", "PostTypeId": "1", "AcceptedAnswerId": "4681", "CreationDate": "2015-11-08T05:49:43.970", "Score": "3", "ViewCount": "6466", "Body": "

In a bid to chill my beer quickly, I've placed my bottles in freezer only to find myself cleaning up a mess a few minute later.

\n\n

In order to save myself from having this happen again, is it ok to leave beer in cans inside freezer for a longer time?

\n", "OwnerUserId": "1321", "LastEditorUserId": "37", "LastEditDate": "2015-11-11T02:00:49.853", "LastActivityDate": "2015-11-18T08:43:09.993", "Title": "Can canned beer be frozen for longer than bottled beer?", "Tags": "science", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4681"}} +{ "Id": "4681", "PostTypeId": "2", "ParentId": "4680", "CreationDate": "2015-11-08T16:50:29.927", "Score": "4", "Body": "

Cans should be okay in the freezer for a long time, however they will probably dent outward as the water freezes. Bottles will pop the cap since that is the weakest part of the container.

\n\n

All that being said, the quality of the beer may deteriorate from being frozen as the water will separate from the alcohol during freezing and they may not mix evenly when thawing.

\n", "OwnerUserId": "4637", "LastActivityDate": "2015-11-08T16:50:29.927", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4682"}} +{ "Id": "4682", "PostTypeId": "1", "AcceptedAnswerId": "4683", "CreationDate": "2015-11-09T04:10:51.977", "Score": "4", "ViewCount": "5827", "Body": "

Recently, I had seen a video where a Coke was boiled, and end result was tar like substance. I am just curious to know if anyone has tried boiling beer, and what is the result?

\n", "OwnerUserId": "1321", "LastEditorUserId": "37", "LastEditDate": "2015-11-11T01:55:05.027", "LastActivityDate": "2015-11-18T08:37:32.447", "Title": "What is the result of boiling beer?", "Tags": "science", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4683"}} +{ "Id": "4683", "PostTypeId": "2", "ParentId": "4682", "CreationDate": "2015-11-09T18:07:38.500", "Score": "8", "Body": "

Well, I never tried such an heresy, but theoretically you will end up with some kind of syrup (or broth, I really don't know the most appropriate word in english for it), thick, and more or less sweet depending on the beer you use. Some beers have more residual sugars than other ones.

\n\n

Alcohol will be the first to evaporate, then water, which is basically the majority of beers composition, in volume, leaving behind sugars and proteins, basically. Those last compounds can be modified or merged, as well, I can't say. Then, depending on the beer's malt bill (pale, crystal, caramelized, roasted, smoked, etc), you might get different flavors related to it. I don't know what would happen to hop compounds when boiled for a long time, but you'll probably still get some bitterness from them.

\n\n

You know what, you question got me curious about how it would taste at the end. =P

\n", "OwnerUserId": "4338", "LastActivityDate": "2015-11-09T18:07:38.500", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4684"}} +{ "Id": "4684", "PostTypeId": "2", "ParentId": "278", "CreationDate": "2015-11-10T05:02:33.130", "Score": "2", "Body": "

Not to be snarky, but there are as many uses for beer as there are people who use it. I'm here because I use it, specifically high-hop/low alcohol (IPAs) as an alternate for sleep medication, since I don't want to be taking the same ones all the time. (And though it's impossible to separate the sleep benefits, I think it helps with anxiety, not just at consumption time, too).

\n\n

Beer, particularly the hoppy stuff, is known to raise blood estrogen levels. http://goo.gl/qctfH3. Frankly, though I'm no expert by any stretch, I'd say a (that's one) bitter IPA at bedtime is the perfect prescription for menopausal insomniacs.

\n\n

There's so much to read about beer and hormones. To each his (her) well-read own.

\n", "OwnerUserId": "4713", "LastActivityDate": "2015-11-10T05:02:33.130", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4686"}} +{ "Id": "4686", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2015-11-12T06:47:02.783", "Score": "3", "Body": "

Yip, all good. As a student we called it \"Power [Drink]\", where [Drink] is the name of the original drink. :p

\n\n

Anything that is safe to eat/drink can be added to a beer. Whether it will taste good is subjective.

\n\n

Beer and lemonade (shandy) is well known. Beer and fruit juice (radler) is getting popular. There are LOADS of recipes on the web.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-11-12T06:47:02.783", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4687"}} +{ "Id": "4687", "PostTypeId": "2", "ParentId": "33", "CreationDate": "2015-11-12T17:17:06.460", "Score": "7", "Body": "

There are a number of different types of porters and stouts, so it isn't necessarily a simple answer, but I would say the use of roasted grains in stouts, particularly roasted barley, is the biggest difference. As such, you end up with more burnt toast and coffee type flavors in a stout, but the amount and type of roastiness depends upon the type of stout. If you get the chance, try a side-by-side comparison between the regular Guinness and the Guinness Foreign Extra stouts where the regular Guinness comes off more roasty than the Foreign Extra.

\n\n

Most porters have little to no roastiness. I think of them as having more smoother chocolate-type flavors, and to be lighter in color (deep red or ruby as opposed to black), but there is a lot of overlap in the Venn diagrams between the two.

\n", "OwnerUserId": "4725", "LastActivityDate": "2015-11-12T17:17:06.460", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4688"}} +{ "Id": "4688", "PostTypeId": "2", "ParentId": "3457", "CreationDate": "2015-11-12T23:31:25.360", "Score": "3", "Body": "

There is a drink called the Hangman's Blood that uses either porter or stout, which aren't too far off of a mild (well, the porter at least). It also contains other things like rum and brandy so it might not be what you're thinking of, but it does have a history that goes back to around 1930 or so.

\n", "OwnerUserId": "4725", "LastActivityDate": "2015-11-12T23:31:25.360", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4689"}} +{ "Id": "4689", "PostTypeId": "2", "ParentId": "4673", "CreationDate": "2015-11-14T04:08:08.977", "Score": "2", "Body": "

I don't remember much of the advantages of using beer in your hair, but it was popular in the 70s. Variations across beer styles are much greater than variations across brands within a style, so if you know what style of beer you want to use, it should not matter much which brand you pick. My recommendation is to go with the cheapest brand you can find within the style you want to use.

\n", "OwnerUserId": "4725", "LastActivityDate": "2015-11-14T04:08:08.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4690"}} +{ "Id": "4690", "PostTypeId": "2", "ParentId": "4682", "CreationDate": "2015-11-14T04:14:04.680", "Score": "3", "Body": "

Beer reductions can make very good sauces. For more flavor you go with darker beers, but you apparently want to shy away from using hoppy beers because the bitterness can become rather harsh. Just punch in something like \"beer reduction\" into your favorite search engine.

\n", "OwnerUserId": "4725", "LastActivityDate": "2015-11-14T04:14:04.680", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4693"}} +{ "Id": "4693", "PostTypeId": "1", "AcceptedAnswerId": "4694", "CreationDate": "2015-11-18T04:44:17.943", "Score": "3", "ViewCount": "1228", "Body": "

Would the highest alcohol percentage be things like bud light or something resembling an ale?

\n", "OwnerDisplayName": "user4737", "LastActivityDate": "2015-11-18T08:31:15.283", "Title": "What kind of beer has the highest alcohol percentage", "Tags": "alcohol-level", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4694"}} +{ "Id": "4694", "PostTypeId": "2", "ParentId": "4693", "CreationDate": "2015-11-18T08:31:15.283", "Score": "4", "Body": "

Strange question, but here goes: No, on both.

\n\n

Explanation: \nTo make a beer strong requires a LOT of ingredients and of these the ones that provide sugars for the yeast are most important. The large volume of ingredients means that the beer will (usually) have complex malt flavours.

\n\n

Mashing:\nWe immediately run into a problem: You can only get so much sugar out of malt. So you use all sorts of tricks to get the most out of your malt.

\n\n

Boiling:\nTo increase the sugar content the brewers add sugars to the wort. Next problem: too much sugar and the beer does not taste very good and fermentation problems are a possible problem. (Sugars can also be added to the fermentation). Another trick is to concentrate the wort by boiling for a longer period. The water evaporates, but the sugars and other ingredients stay in the wort. Note that a large amount of hops is required to balance all the sugars.

\n\n

Fermentation: High gravity beers are notoriously difficult to ferment. The biggest problem is that the alcohol in the beer becomes so much that it poisons the yeast. So, you need a yeast that is \"strong\" enough to work in these harsh conditions. You will often find that brewers will mix strains, starting with a lager, then going to ale, then to champagne or wine yeast. Most \"normal\" yeasts will (with help) get you a product of 15-20% ABV. Stronger yeasts can go higher than 20%, but not much further.

\n\n

Post Fermentation:\nLest assume that you ended with a naturally fermented product of 20%. Fermentation is complete and your yeast is dead. The alcohol kills any other yeast that you add. What next? Ice concentration! This process is seen as a form of distilling. You put your fermenter in a freezer and scoop out the ice crystals. As water freezes before alcohol, the alcohol in the beer increases. Stronger beer! But the penalty is that you use a lot of flavour and aroma during this process.

\n\n

The final product: A boozy, typically malty, bready, product, usually on the sweeter side. The body tends to be heavy. Hops is usually low to none, unless the beer was dry-hopped post concentration.

\n\n

Here is a list of the strongest beers:\nhttp://www.beertutor.com/beers/index.php?t=highest_alcohol

\n", "OwnerUserId": "984", "LastActivityDate": "2015-11-18T08:31:15.283", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4695"}} +{ "Id": "4695", "PostTypeId": "2", "ParentId": "4682", "CreationDate": "2015-11-18T08:37:32.447", "Score": "1", "Body": "

Beer will evaporate down when boiled. During this it will become thicker. The alcohol will evaporate the quickest, then the water. Caramelization (Maillard reaction) will occur. The bitterness will NOT evaporate, making the bitterness more concentrated.

\n\n

However; boiling wort is \"required\" to make beer and excessive boiling is used in some styles to give it extra flavours and colours or to make the resulting beer stronger.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-11-18T08:37:32.447", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4696"}} +{ "Id": "4696", "PostTypeId": "2", "ParentId": "4680", "CreationDate": "2015-11-18T08:43:09.993", "Score": "0", "Body": "

Chances are that your cans will also explode. Just leave them in the fridge.

\n\n

Do a test: take one can and leave it in the fridge. Take another and place it in a plastic container. Close the container and put it in the fridge. The container serves no purpose apart form minimizing the amount of clean-up. After a few days, remove the can from the fridge. If it is still whole, put it in the fridge and mark it with pen so that you know which is which. Leave for two day. Both beers should now be at the same temp. Open them both and compare the beers.

\n\n

There are many techniques for cooling cans quickly. I would rather do that than leave beers in the freezer.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-11-18T08:43:09.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4697"}} +{ "Id": "4697", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2015-11-18T14:51:14.053", "Score": "20", "Body": "

In (Soviet) Russia it is called Yorsch (\"yorsh\" means ruffe, a small fish remarkable for its hard and sharp spines).

\n\n

There is a variations of it – \"From brown bear to the polar and back\". You take a glass of beer, drink a little, fill it up with vodka, drink again, fill up again and keep drinking and filling until the mixture is colorless. After that you keep on drinking but start to fill it up with beer. It is said that many have seen The White Polar Bear but only few have managed to see The Brown again.

\n", "OwnerUserId": "4742", "LastActivityDate": "2015-11-18T14:51:14.053", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4699"}} +{ "Id": "4699", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2015-11-23T15:58:19.173", "Score": "2", "Body": "

It is more than color. You need the other beer to have a different density from Guinness, at least if you want it to stay separated for any length of time. And be careful which Guinness you use because there are a number of them out there with different \"strengths\". If the densities are too close, they'll mix together.

\n\n

A good starting point in selecting interesting combinations is to look at the densities across different styles. Pick two that are widely different and find bottles of each. For instance, if you take a bottle of a kriek (red-looking fruit lambic), it would probably float nicely on most other beers, but you'd want to pick a nice, dark beer to show off the contrast (plus, if you used a kriek (cherry) or frambois (raspberry), pairing it with a porter or stout that has nice chocolate tones would taste very nice). Likewise, just about anything would float on a bock or a strong scotch ale like a \"wee heavy\".

\n", "OwnerUserId": "4725", "LastActivityDate": "2015-11-23T15:58:19.173", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4700"}} +{ "Id": "4700", "PostTypeId": "1", "CreationDate": "2015-11-25T15:04:10.897", "Score": "7", "ViewCount": "74", "Body": "

When I lived in Hong Kong a few years back I enjoyed several interesting microbrewed beers and a small but enthusiastic beer scene. I still think about the much-missed Belgos East, which had a whole suite of Belgian ales on tap. What's available these days?

\n", "OwnerUserId": "4144", "LastActivityDate": "2016-08-11T21:45:15.713", "Title": "What is the Hong Kong craft beer scene these days?", "Tags": "micropub", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4701"}} +{ "Id": "4701", "PostTypeId": "2", "ParentId": "4662", "CreationDate": "2015-11-25T16:14:23.043", "Score": "2", "Body": "

I will put forth my own experience. I disliked beer when I was young. It was not until I tasted ale imported from England that I liked it and sought it out. I loved Samuel Smith's, Old Peculiar, Bass Ale, and others. I expanded from there and sought out other beers and ales that were not your ordinary North American Lagers and found many I liked. I quickly discovered homebrewing while perusing a used bookstore. This was way before it was popular here and way before 'Craft Brewing' was a term that people knew. I started to make my own. Now I really like beer. However I still don't really like most of the big-brand beers. And I don't drink beer as a thirst quencher. But if someone offers me a beer - I am no snob and say yes.

\n\n

As far as DNA or genetically based dislikes. I don't think there is a 'beer' gene. There may, however be genes that make people dislike, or at least avoid certain tastes or aromas, or perceive these in different ways. These could then translate to dislikes of beer. However, there are so many types of beers that this is probably very unlikely. It would at least it's unlikely that beer would be the only thing that would be affected by this inheritance.

\n\n

I think a dislike of beer can be overcome. Many people have notions of beer that are not really true. A friend said she hated dark beer because it was too bitter. I explained that this was not really true (that all dark beer is very bitter). So, I brought over some examples that were not bitter, but chocolaty, sweet, roasty, etc. She now loves dark beers (most are actually not very bitter). With some people it is really difficult to overcome these dislikes however. But at least, in my opinion, most of these dislikes are learned.

\n", "OwnerUserId": "4767", "LastActivityDate": "2015-11-25T16:14:23.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4702"}} +{ "Id": "4702", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2015-11-26T19:10:49.383", "Score": "4", "Body": "

Beer cocktails, where spirits are added to beer, were a sort of Fad here in the US a couple years ago. Maybe they still are (I'm sort of isolated where I live in that respect). Your question of safe is a bit perplexing. The only unsafe part might be if you give a charged up beer to someone who isn't used to much alcohol and bad consequences result... But otherwise it's not unsafe. I've done it (added vodka to beer) and it doesn't taste that great to me. But with some other additions you can make a pretty great cocktail.

\n\n

From The Huffington Post: Beer Cocktails.

\n", "OwnerUserId": "4767", "LastEditorUserId": "5064", "LastEditDate": "2016-09-01T10:54:55.320", "LastActivityDate": "2016-09-01T10:54:55.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4703"}} +{ "Id": "4703", "PostTypeId": "2", "ParentId": "904", "CreationDate": "2015-11-27T23:41:39.047", "Score": "2", "Body": "

The two craft breweries in Lisbon are Dois Corvos and Oitava Colina. Dois Corvos has a tasting room a couple km from the centre. Both make good beer.

\n", "OwnerUserId": "4774", "LastActivityDate": "2015-11-27T23:41:39.047", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4704"}} +{ "Id": "4704", "PostTypeId": "2", "ParentId": "2127", "CreationDate": "2015-11-28T14:37:20.893", "Score": "2", "Body": "

I am Czech and I would say there are few factors to it.

\n\n

Firstly many grocery products are cheap as well as services which makes beer affordable even in restaurants.

\n\n

Most importantly there is long historical tradition in drinking beer. It is common to drink it with lunch, it is usual to visit the pub for a chat with friends and drink 1,2 or 10 beers there. Beer is cheaper than water in restaurants and this is another reason why people prefer it to other drinks.

\n\n

It is said that the government can do anything unless they increase the price of beer. The pub is often the cultural center of many villages where people meet after work and when we are there we drink beer.

\n", "OwnerUserId": "4777", "LastEditorUserId": "1469", "LastEditDate": "2015-12-01T13:58:16.633", "LastActivityDate": "2015-12-01T13:58:16.633", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4705"}} +{ "Id": "4705", "PostTypeId": "2", "ParentId": "904", "CreationDate": "2015-11-30T09:29:41.460", "Score": "1", "Body": "

Go to http://www.ratebeer.com/search.php and in the Brewer Search enter Lisbon in the City and Portugal in the Country, then click Search.

\n\n

It returns 4 breweries.

\n\n
    \n
  • 100 Maneiras Rua do Teixeira, 35 Lisbon Portugal
  • \n
  • Amnesia Brewery Oeiras, Lisbon Portugal
  • \n
  • Cerveja Aroeira Lisbon Portugal
  • \n
  • Dois Corvos Cervejeira Lisbon Portugal
  • \n
\n", "OwnerUserId": "984", "LastActivityDate": "2015-11-30T09:29:41.460", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4706"}} +{ "Id": "4706", "PostTypeId": "1", "CreationDate": "2015-11-30T23:58:22.357", "Score": "0", "ViewCount": "50", "Body": "

I have a mini fridge and looking to convert it into a kegerator with a tower tap on top. I've researched a few kegerator conversion kits and see economy, standard, deluxe, etc, kits available.

\n\n

I'm not looking for a super fancy setup but a solid kegerator that will look good in my garage. Any recommendations for what conversion kit or how to best practices to convert a mini fridge to a kegerator?

\n", "OwnerDisplayName": "user4785", "LastActivityDate": "2015-12-01T01:56:47.860", "Title": "Recommendations for Kegerator conversion kit?", "Tags": "serving", "AnswerCount": "1", "CommentCount": "1", "ClosedDate": "2015-12-01T04:49:57.397", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4707"}} +{ "Id": "4707", "PostTypeId": "2", "ParentId": "4706", "CreationDate": "2015-12-01T01:56:47.860", "Score": "1", "Body": "

Some things to consider:

\n\n

If you don't tap a beer every so often, the beer that is left in regular beer faucets can dry out and lock the tap shut. I suggest a perlick faucet as it seals without drying out. I've used mine for years without any \"sticky tap\" problems.

\n\n

If you are going to have a tower on top of the fridge, the beer line in the tower will warm up to the ambient room temperature. This means that the first part of the first pour of the night will be very foamy as the pressure is different in the warm tower. Some way of insulating the tower or circulating the air inside the tower will ensure the quality of the beer in the line.

\n\n

When cutting the top of the fridge, be very careful to avoid damaging the cooling lines (if there are any in the top) as that will destroy the cooling ability on that wall of the refrigerator.

\n\n

If you're keeping it in the garage, you may want to consider some way of sealing the tap when you're done for the night. A plug will prevent flies or ants from enjoying your beer while you're out. A lock will prevent any neighbors from doing the same.

\n\n

Probably not as direct as a link to a conversion kit, but hopefully this will help you decide.

\n", "OwnerUserId": "4637", "LastActivityDate": "2015-12-01T01:56:47.860", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4708"}} +{ "Id": "4708", "PostTypeId": "2", "ParentId": "4588", "CreationDate": "2015-12-02T09:56:29.493", "Score": "6", "Body": "

It is legal to home brew beers in unlimited quantities for personal use only.\nYou may not for sell it without the required required permits or licenses. Registration as a \"manufacturer not for commercial use\" at the South African Revenue Service (SARS) is required to produce wine at home.

\n\n

Happy brewing from a fellow home brewer in Cape Town

\n", "OwnerUserId": "4793", "LastActivityDate": "2015-12-02T09:56:29.493", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4710"}} +{ "Id": "4710", "PostTypeId": "2", "ParentId": "4667", "CreationDate": "2015-12-04T15:36:30.123", "Score": "6", "Body": "

I would suggest the extra kick would be due to the fact that as you smoke the cigarette, you are taking in nicotine, which does enhance the effect of alcohol. So the effect is not coming from the ash, but the cigarette you smoke to get the ash.

\n", "OwnerUserId": "4805", "LastActivityDate": "2015-12-04T15:36:30.123", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4713"}} +{ "Id": "4713", "PostTypeId": "1", "AcceptedAnswerId": "4714", "CreationDate": "2015-12-05T18:39:15.880", "Score": "6", "ViewCount": "91", "Body": "

I have never tried sour beer before, and was recently given a sour brown ale. At what temperature should I serve this type of beer?

\n", "OwnerUserId": "1482", "LastActivityDate": "2015-12-06T15:43:27.463", "Title": "At what temperature should sour brown ale be served?", "Tags": "temperature", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4714"}} +{ "Id": "4714", "PostTypeId": "2", "ParentId": "4713", "CreationDate": "2015-12-06T07:08:12.717", "Score": "3", "Body": "

Tough one to answer...

\n\n

Since all sour ales have a very low pH, the sour flavor will be present no matter the serving temperature. With that in mind, the subtle notes of the beer will probably require the beer to be warmer than most beers when serving. I would recommend a cellar temperature, about 55F (12C) to bring out the best combination of flavor and drinkablity.

\n\n

The best advice I've ever heard on sour beers is from the tour at New Belgium Brewery: Take a sip and think for a few seconds about what the beer is trying to tell you then take another sip. If the second was better than the first, take a third. If the third was better than the second then keep going.

\n\n

Never be afraid to try new brews.

\n", "OwnerUserId": "4637", "LastEditorUserId": "1482", "LastEditDate": "2015-12-06T15:43:27.463", "LastActivityDate": "2015-12-06T15:43:27.463", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4715"}} +{ "Id": "4715", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2015-12-06T15:31:48.080", "Score": "2", "Body": "

Of course you can add vodka to beer! As long as you're mindful of how much you're drinking and how long it takes to process, you should be fine. The harder part is actually devising a cocktail you'd want to drink.

\n\n

With the popularity of craft beer, a new culture of beer cocktails is growing. Do a quick Google search, and you'll come up with tons of great recipes, old and new. While the craft beer world has traditionally been sceptical about mixing things with beer, there are endless possibilities to elevate and excite, and some are coming around to this.

\n\n

My old beer manager would make a Blanche De Chamblay and vanilla vodka drink that was delicious. Rauchbier and other smoked styles work amazingly well in a bloody Mary.

\n\n

If the mood strikes you, experiment!

\n", "OwnerUserId": "4576", "LastActivityDate": "2015-12-06T15:31:48.080", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4716"}} +{ "Id": "4716", "PostTypeId": "1", "AcceptedAnswerId": "4717", "CreationDate": "2015-12-07T06:36:10.130", "Score": "11", "ViewCount": "508", "Body": "

I asked a bartender what she was drinking near the end of her shift. She said a blend. Of Bear Republic's Racer 5 IPA and North Coast's Le Merle (a Belgian Saison).

\n\n

I tried it and it was great. I already liked Le Merle except it had a bit too much of the Belgian kick, and I never liked Racer 5 at all, but together somehow the attributes I didn't like canceled out or masked one another.

\n\n

At the risk of heresy, I wonder if mixing beers is or was ever a (semi-)official thing anywhere. I've heard wine blends mostly exist as a product of leftover grapes, so their justification doesn't apply to beer. Still, if the taste is great, why not have beer blends? With the distinct taste variations of hops alone, I wouldn't be surprised if great combinations could be found.

\n\n

So, to put succinctly: Are beer blends being served anywhere?

\n", "OwnerUserId": "73", "LastEditorUserId": "73", "LastEditDate": "2015-12-07T15:02:22.033", "LastActivityDate": "2016-05-10T22:52:29.377", "Title": "Do beer blends exist?", "Tags": "style", "AnswerCount": "8", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4717"}} +{ "Id": "4717", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2015-12-07T09:18:41.090", "Score": "8", "Body": "

There are beer blends served in England and Scotland although it tends to be the older drinkers.

\n\n

Mild and Bitter is one where a half pint of bitter is mixed with a half of mild.

\n\n

Brown and Bitter is half of bitter with a brown ale such as Mann's.

\n\n

A common Scottish blend is the Black and Tan which is Guinness and IPA/Heavy - this can also be made a Sweet Black and Tan by using sweet stout and IPA.

\n\n

Before Fullers shut Gales of Horndean down they produced a bottled Christmas ale which was a mix of their HSB premium bitter and their 555 mild with spice.

\n", "OwnerUserId": "4394", "LastActivityDate": "2015-12-07T09:18:41.090", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4718"}} +{ "Id": "4718", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2015-12-07T13:49:49.280", "Score": "2", "Body": "

Some breweries do release blends from time to time. I recently picked up a bottle of Siren Cotteridge Wines 20th Anniversary, which is a blend of a few different beers.

\n", "OwnerUserId": "4819", "LastActivityDate": "2015-12-07T13:49:49.280", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4719"}} +{ "Id": "4719", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2015-12-07T14:42:53.563", "Score": "1", "Body": "

Sam Adams has released special blends of beers as has Firestone Walker. I am sure other breweries have done special blends too.

\n\n

And lets not forget Mississippi Mud.

\n", "OwnerUserId": "529", "LastActivityDate": "2015-12-07T14:42:53.563", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4720"}} +{ "Id": "4720", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2015-12-07T17:50:45.280", "Score": "4", "Body": "

According to Graham Wheeler's article on the history of porter (which I cannot currently locate), London-style porter was originally a mixed-on-demand blend of mild and sour brown ales. \"Butt porter\" was a later version, blended at the brewery so it could be shipped in a single keg (\"butt.\")

\n\n

EDIT: Found it! The article was reposted in parts to the Homebrew Digest mailing list in 1996 & 1997 by Rob Moline.

\n\n

Part 1

\n\n

Part 2

\n\n

Part 3

\n\n

Part 4

\n\n

Part 5

\n\n

Part 6

\n\n

Part 7

\n\n

Part 8

\n\n

Hope that's of interest. Cheers!

\n", "OwnerUserId": "4770", "LastEditorUserId": "4770", "LastEditDate": "2015-12-07T22:39:56.290", "LastActivityDate": "2015-12-07T22:39:56.290", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4721"}} +{ "Id": "4721", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2015-12-09T14:09:43.883", "Score": "0", "Body": "

Slightly OT but my Dad used to drink what he called a \"Poor mans black velvet\". Half Guiness, Half cider

\n", "OwnerUserId": "4826", "LastActivityDate": "2015-12-09T14:09:43.883", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4723"}} +{ "Id": "4723", "PostTypeId": "2", "ParentId": "123", "CreationDate": "2015-12-10T12:50:18.197", "Score": "3", "Body": "

In general, beers that are served with nitro tend to be smoother than their CO2 counterpart. Personally, I've had Left Handed Milk Stout Nitro and Standard side by side and much preferred the Nitro version.

\n", "OwnerUserId": "4819", "LastActivityDate": "2015-12-10T12:50:18.197", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4726"}} +{ "Id": "4726", "PostTypeId": "1", "AcceptedAnswerId": "4727", "CreationDate": "2015-12-15T06:20:32.850", "Score": "6", "ViewCount": "768", "Body": "

Inspired by this question, I want to ask if there are any existing beer flavored using tobacco or have a hint of tobacco in the taste.

\n", "OwnerUserId": "127", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2020-09-05T14:37:58.543", "Title": "Tobacco-flavored beer", "Tags": "flavor", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4727"}} +{ "Id": "4727", "PostTypeId": "2", "ParentId": "4726", "CreationDate": "2015-12-15T20:45:59.647", "Score": "7", "Body": "

If used the the brewing process, the nicotine in the tobacco leaves would be extracted into the beer. Too high a nicotine dose in the beer would be poisonous. The whole process would probably be more effort than it is worth.

\n\n

As for tobacco flavor, it depends on the flavors that you enjoy in tobacco. Just like some smokey whiskeys work well with cigars, some rich beers work just as well. Strong beers aged in spirit barrels often contain the same oakey, vanilla notes that are present in the aged spirits. Cigar City Brewing uses a lot of different barrels to impart tobacco like flavors in its beers and their tasting notes usually suggest pairing a beer with a cigar.

\n\n

If you are looking for a smokey beer without the possibility of nicotine poisoning, then I suggest Rauchbier. Some of the malt used in this beer are smoked over different woods (usually alder). \nSome breweries experiment with adding smoked malt to other beer styles (Porter,IPA, etc.)

\n", "OwnerUserId": "4637", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2015-12-15T20:45:59.647", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4729"}} +{ "Id": "4729", "PostTypeId": "1", "AcceptedAnswerId": "4731", "CreationDate": "2015-12-21T00:43:35.477", "Score": "16", "ViewCount": "688", "Body": "

Beer is obviously not healthy if it is drunk to much, however, one of my friends argue a little beer in moderation can provide certain health benefits. Like it can lower risk of stroke and heart diseases. Is this true or is it just baloney people say to get someone else to drink a little bit?\nAre these claims true?

\n", "OwnerUserId": "4784", "LastEditorUserId": "4784", "LastEditDate": "2015-12-21T01:11:05.707", "LastActivityDate": "2018-04-03T16:46:13.067", "Title": "Is beer healthy if drunk in moderation?", "Tags": "health", "AnswerCount": "4", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4731"}} +{ "Id": "4731", "PostTypeId": "2", "ParentId": "4729", "CreationDate": "2015-12-24T09:25:24.330", "Score": "12", "Body": "

According to this research paper published in BMJ they concluded the following:

\n\n
\n

Results from observational studies, where alcohol consumption can be\n linked directly to an individual's risk of coronary heart disease,\n provide strong evidence that all alcoholic drinks are linked with\n lower risk. Thus, a substantial portion of the benefit is from alcohol\n rather than other components of each type of drink.

\n
\n\n

This argues that health benefits are alcohol related and not specifically beer related. This is, again, during moderate consumption.

\n", "OwnerUserId": "1236", "LastActivityDate": "2015-12-24T09:25:24.330", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4732"}} +{ "Id": "4732", "PostTypeId": "2", "ParentId": "4729", "CreationDate": "2015-12-24T16:11:52.823", "Score": "4", "Body": "

There's very little hard research on the healthful benefits of beer, though there is some observational research on both beer and (as Jens mentioned in his answer) on the benefits of moderate levels of alcohol in general.

\n\n

It's also been noted that there beer has a number of ingredients that are generally believed or known to be healthy, including vitamins, fiber, silicon, and others.

\n\n

So, while I wouldn't base a diet on it, moderate consumption of beer is at least anecdotally a reasonably healthy habit in which to imbibe.

\n", "OwnerUserId": "37", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2015-12-24T16:11:52.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4733"}} +{ "Id": "4733", "PostTypeId": "2", "ParentId": "4729", "CreationDate": "2015-12-25T09:03:38.000", "Score": "3", "Body": "

While a doctor probably won't ever state that drinking beer is \"healthy,\" doctors do provide advice on what \"moderation\" is.

\n\n

Women who consume eight or more drinks per week are considered excessive drinkers. And for men, excess is defined as 15 or more drinks a week. (A drink is defined as just 5 ounces of wine, 12 ounces of beer or 1.5 ounces of spirits.)

\n\n

Moderation is around 1-2 drinks per week or per 2 weeks.

\n\n

All of this varies of course per individual's weight, current health, etc.

\n", "OwnerUserId": "4880", "LastActivityDate": "2015-12-25T09:03:38.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4734"}} +{ "Id": "4734", "PostTypeId": "1", "AcceptedAnswerId": "4740", "CreationDate": "2015-12-25T09:17:08.417", "Score": "5", "ViewCount": "194", "Body": "

I remember when my brother said that drinking beer on a plane have more \"kick\" than when in land, so we tried it. It was my first time being on a plane, so I don't know if that's the reason, but I felt the \"kick\" sooner, and it gave me a worse headache than usual, and that's just one can.

\n\n

Is this common? Does drinking in a plane make you more intoxicated?

\n", "OwnerUserId": "127", "LastActivityDate": "2015-12-29T16:43:02.440", "Title": "Is there evidence that drinking beer on airplane have more \"kick\"?", "Tags": "alcohol-level", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4735"}} +{ "Id": "4735", "PostTypeId": "2", "ParentId": "986", "CreationDate": "2015-12-25T12:28:40.823", "Score": "0", "Body": "

It doesn't matter what beer you drink, whether it is a beer bought from the grocery store or a liquor store in Colorado. It is all the same beer, bottled off the same vat. In every beer sold, alcohol is measured by volume, except 3.2% beer which is measured as alcohol by weight. Ask a brewer they will tell you the same. They (the beer owners) did this so that they could get around the blue laws prohibiting beer sales on Sunday, but without any cost increase to the business. If you drink Coors Light bought at a liquor store it's 4.2% ABV, that very same beer bought at a 7-11 is 3.2% ABW. The measurement ABW is just about a 1% difference vs. ABV.

\n", "OwnerUserId": "4881", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-28T12:55:07.957", "LastActivityDate": "2019-01-28T12:55:07.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4736"}} +{ "Id": "4736", "PostTypeId": "2", "ParentId": "4734", "CreationDate": "2015-12-26T16:10:37.623", "Score": "1", "Body": "

I have experienced the following: I can drink vast volumes whilst flying. However, when we come in to land (cabin pressure changes) I got very drunk, very quickly.

\n\n

I think the cabin pressure is the culprit.

\n", "OwnerUserId": "984", "LastActivityDate": "2015-12-26T16:10:37.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4738"}} +{ "Id": "4738", "PostTypeId": "2", "ParentId": "4729", "CreationDate": "2015-12-28T23:28:08.560", "Score": "4", "Body": "

Beer is a good way to prevent kidney stones (have to be sure that the person is not susceptible for uric acid stone, because in that case it's not recommended).\nAlso reduces risk of cardiovascular diseases, strengthens bones, plus good for your insomnia. One beer a day is generally good for your health.\njust a few quick results :\nhttps://www.organicfacts.net/health-benefits/beverage/health-benefits-of-beer.html\nhttp://www.shape.com/healthy-eating/healthy-drinks/7-healthy-reasons-be-drinking-beer

\n", "OwnerUserId": "4890", "LastActivityDate": "2015-12-28T23:28:08.560", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4739"}} +{ "Id": "4739", "PostTypeId": "2", "ParentId": "3292", "CreationDate": "2015-12-29T02:42:27.270", "Score": "0", "Body": "

BITBURGER GERMAN 100% Alcohol-free

\n\n

Tastes like beer.\nMade full strength then all alcohol extracted.

\n", "OwnerUserId": "4891", "LastActivityDate": "2015-12-29T02:42:27.270", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4740"}} +{ "Id": "4740", "PostTypeId": "2", "ParentId": "4734", "CreationDate": "2015-12-29T16:43:02.440", "Score": "4", "Body": "

The 'kick' you are describing is being caused by a mild altitude sickness. As you can read in these medical guidelines for airline passengers the cabin pressure is contrary to popular belief, not pressurized to sea level pressure:

\n\n
\n

On most flights the cabin altitude will be between 6,000 and 8,000 ft.\n (1,828m and 2,438m) even though the aircraft is flying at much higher\n altitudes. In other words, on most flights, it is as if you are on top\n of a hill or small mountain. This imposes two stresses on the body:\n less oxygen; and, expansion of gases in the body cavities.

\n
\n\n

The reason for feeling drunk more quickly is due to the lack of oxygen presented by the lack of pressure. Lack of oxygen, according to this source, gives rise to the following symptoms and comes to the same conclusion:

\n\n
\n

There are various symptoms, including dizziness, lightheadedness,\n fatigue, drowsiness, weakness, nausea, unsteady gait, and a headache.\n Sounds familiar, right? Yeah, the symptoms of altitude sickness are a\n lot like the effects of alcohol intoxication.

\n
\n\n

Another interesting read can be found here.

\n", "OwnerUserId": "1236", "LastActivityDate": "2015-12-29T16:43:02.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4741"}} +{ "Id": "4741", "PostTypeId": "2", "ParentId": "4662", "CreationDate": "2015-12-30T00:39:09.510", "Score": "-1", "Body": "

Beer contains alcohol. Beer is addictive because some people are indeed predisposed to be an alcoholic. Beer drinking is no different than any other method of consuming alcohol. Yes, alcoholism is in your DNA. That's why some people get carried away with the allure of Beer only to find out that they are now dependent on alcohol.

\n\n

Easy Peasy. Answer is good Ya?

\n", "OwnerUserId": "4895", "LastActivityDate": "2015-12-30T00:39:09.510", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4742"}} +{ "Id": "4742", "PostTypeId": "2", "ParentId": "278", "CreationDate": "2015-12-30T00:43:40.900", "Score": "-3", "Body": "

Beer is alcohol no matter what people may think. Alcohol is a dangerous drug that happens to be legal right now.

\n\n

There are no proven benefits to drinking, bathing, washing hair or dishes in beer.

\n\n

Beer has a reputation of being safer than whiskey, but the opposite is true.\nBoth can kill you.

\n", "OwnerUserId": "4896", "LastActivityDate": "2015-12-30T00:43:40.900", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4745"}} +{ "Id": "4745", "PostTypeId": "1", "CreationDate": "2015-12-30T20:40:03.113", "Score": "8", "ViewCount": "1310", "Body": "

I recently read Stephen Buhner's \"Sacred and Herbal Healing Beers\" wherein he claimed that hops were a fairly new way to bitter beer in the renaissance and that in England Henry VIII outlawed them. However, I have not been able to find substantiation of this in the historical record. It makes for a great story, but is it true?

\n", "OwnerUserId": "1077", "LastActivityDate": "2016-04-07T00:16:42.043", "Title": "Did Henry VIII really outlaw hops?", "Tags": "history hops", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4746"}} +{ "Id": "4746", "PostTypeId": "2", "ParentId": "4745", "CreationDate": "2015-12-30T21:14:12.107", "Score": "3", "Body": "

First off, I don't know if this story is in fact true, but I can shed some light on the subject which would indicate that it is certainly plausible.

\n\n

Hops were first used to flavor beer around 1000 A.D., starting in Germany. Until this time beer was flavored with a mix of herbs and spices called \"gruit\" which was taxed (generally by either the government or the Roman Catholic Church) and in many cases required by law, so when hops did appear, they appears in regions where the church had less control.

\n\n

Hops didn't make their way to England until around 1500 A.D., and weren't universally used until around the year 1600. Since Henry VIII reigned from 1509 until 1547, it would have been early in the introduction of hops to the region, and it is certainly within the realm of possibility that he may have outlawed them as a threat to the tax revenue stream provided by the sale of gruit. Eventually though, demand for hops won out, and Henry's own wars with the Catholic Church may have weakened the ability to gruit rights-holders to continue to monopolize the market, and as I mentioned, by fifty years after Henry's death, hops ultimately won the war.

\n", "OwnerUserId": "37", "LastActivityDate": "2015-12-30T21:14:12.107", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4748"}} +{ "Id": "4748", "PostTypeId": "2", "ParentId": "3195", "CreationDate": "2016-01-02T20:44:07.233", "Score": "-2", "Body": "

Corona is a very famous, international beer consisting of corn. It's made by a starchy product, and that's why we use to lemon wedges at the time of serving: in order to disguise the starchy taste.

\n", "OwnerUserId": "4908", "LastEditorUserId": "73", "LastEditDate": "2016-01-04T12:53:32.913", "LastActivityDate": "2016-01-04T12:53:32.913", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4749"}} +{ "Id": "4749", "PostTypeId": "1", "CreationDate": "2016-01-04T02:20:12.280", "Score": "5", "ViewCount": "10881", "Body": "

Beer isn't for everyone. That's fair enough. However there are some people that get physically ill from it almost immediately.

\n\n

Are there specific ingredients in beer that can cause this? Or is it dependent on the consumer?

\n\n

If the ingredients cause this, is there a way to nullify/reduce the effects?

\n", "OwnerUserId": "4910", "LastEditorUserId": "1236", "LastEditDate": "2016-01-04T12:55:26.573", "LastActivityDate": "2019-02-13T02:13:26.393", "Title": "What are the ingredients in beer that cause people to feel ill almost immediately?", "Tags": "ingredients", "AnswerCount": "4", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4750"}} +{ "Id": "4750", "PostTypeId": "2", "ParentId": "4749", "CreationDate": "2016-01-04T10:12:41.353", "Score": "8", "Body": "

(Assuming you are referring to \"plain\" beers, not beers with weird ingredients)

\n\n

The only allergen that is present in normal beers is malt that contains gluten. Gluten intolerant people can therefor react to beer very aggressively.

\n\n

Next, I would guess the alcohol. Some people have violent reactions to any form of alcohol.

\n\n

Then, maybe the bitterness or just the flavour. The people may be sensitive to bitterness, or just really do not like the taste of (that) beer.

\n\n

I have had beers that taste like baby vomit. It is VERY hard to not gag when you taste that!

\n\n

You have to determine why the person reacts that way. If it is the malt, then get them a gluten free beer, if it is alcohol, then try an alcohol free beer, or just a cold drink, if it is the bitterness, then get a beer that is less bitter, if it is the flavour, then get a beer with a different flavour (fruit beer or a different style of beer that has other prominent flavours).

\n", "OwnerUserId": "984", "LastActivityDate": "2016-01-04T10:12:41.353", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4754"}} +{ "Id": "4754", "PostTypeId": "2", "ParentId": "399", "CreationDate": "2016-01-05T14:19:58.477", "Score": "3", "Body": "

Depends on who you ask. Both of these answers are correct but some would take the definition of cask ale a little further by defining it as an ale that is unfiltered and unpasteurised and conditioned (including secondary fermentation) and served from a cask without additional nitrogen or carbon dioxide pressure.

\n\n

One of our local beer shops has a few cask ales on tap, ran by someone from England. He often scolds beer sold as cask ales which were only placed into the cask after fermentation is completed.

\n", "OwnerUserId": "529", "LastActivityDate": "2016-01-05T14:19:58.477", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4755"}} +{ "Id": "4755", "PostTypeId": "1", "CreationDate": "2016-01-05T16:40:35.020", "Score": "5", "ViewCount": "143", "Body": "

I have recently begun to learn somethings about beer and I suddenly noticed that, for a while now, I have always been served similar types of beer on different looking beer glasses... which is confusing me. It could be human error, but it's got me wondering what beer glasses should I really be sipping from?

\n\n

So I decided to get some beer glasses, and what do I find? A plethora of beer glasses, all kinds and funky shapes, where not one glass is like the next. It makes me feel like the beer glass industry is very opinionated, rather than factual, and I need to know how to choose correctly.

\n\n

Could anyone please instruct me on the general type of beers and how they pair with beer glasses, as well as why x glass goes with y beer?

\n", "OwnerUserId": "4917", "LastEditorUserId": "4917", "LastEditDate": "2016-01-05T23:33:58.777", "LastActivityDate": "2016-01-08T17:16:06.170", "Title": "How to pair a beer with a glass?", "Tags": "taste style serving glassware pairing", "AnswerCount": "2", "CommentCount": "0", "ClosedDate": "2016-01-06T14:52:36.833", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4756"}} +{ "Id": "4756", "PostTypeId": "2", "ParentId": "4755", "CreationDate": "2016-01-06T05:26:51.530", "Score": "3", "Body": "

Beer glasses are mainly a product of the region in which the beer was originated and therefore tied to a specific beer.

\n\n
    \n
  • Belgian beers - Normally served in goblets because the beers have very complex aromas and the shape of the glass can help present and concentrate them for consumption.
  • \n
  • British beers - Normally served in the \"nonic\" glass. Simply a glass that is easier to hold in the hand whilst standing around the pub. Normally associated with most British ales.
  • \n
  • Pilsner - High sided flute to concentrate the hop aroma and show off the high carbonation of Pilsners.
  • \n
  • Weissbeir - German wheat beers are usually served in tall glasses to show off the cloudy beer and also the creamy tall head of foam.

  • \n
  • Scottish Ale - a Thistle glass designed to evoke the image of the national flower of Scotland.

  • \n
  • Stout - Popularized by Guinness, a glass designed to show off the nitrogen bubbles.

  • \n
\n", "OwnerUserId": "4637", "LastActivityDate": "2016-01-06T05:26:51.530", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4757"}} +{ "Id": "4757", "PostTypeId": "2", "ParentId": "4755", "CreationDate": "2016-01-06T11:44:27.420", "Score": "4", "Body": "

It might sound snobbish to be peckish about the type of glass but the glass does influence the taste of the beer.

\n\n

Some things are:\n - the thickness of the glass. A thin glass invites to a more delicate way of drinking, a really thick glass would let you expect a sturdier beer.\n - the surface compared to the volume of beer. A big surface gives a change to let of more aroma's but I would think you also need a little more foam.\n - the capacity to keep the aroma's. As pointed out by Rube. Think of a cognac glass versus a vase. Some glasses also take in you nose deeper than others.\n - the way the beer flows. The shape of the glass how quickly you can drink it without spilling. Think of kwak, you HAVE to drink the last very carefully.

\n\n

So to answer your question: there are many factors how the glass influences how you taste a beer. What's best is very subjective. You could at first stick to the opinion of the brewer, what he finds the best glass for it. If you like the taste with an other glass better, use that. I would not approach this as a hard science. Brewers might choose a specific glass to \"stand out\".

\n", "OwnerUserId": "4921", "LastEditorUserId": "4921", "LastEditDate": "2016-01-08T17:16:06.170", "LastActivityDate": "2016-01-08T17:16:06.170", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4759"}} +{ "Id": "4759", "PostTypeId": "2", "ParentId": "15", "CreationDate": "2016-01-06T16:27:55.250", "Score": "7", "Body": "

Question one: how does bottled beer differ from draught beer?\nThis varies from beer to beer, and should be handled on a beer-to-beer basis. Sometimes beer in the bottle is pasteurized, while the keg is not. Sometimes one or the other is filtered, while the other is not. The gas content can also differ, since this is adjustable in draught systems but not with bottles.

\n\n

In some cases, such as when yeast content is very important for the flavor profile of a beer, like German Hefeweizen, how much yeast you get in your glass has a big impact on the drinking experience. When drinking from the bottle, you can make sure that you get all of the yeast from the bottom of the bottle into your glass by agitating the last few ounces of beer, but this isn't possible with a keg. \nKegged versions of these beers still have yeast in them, but you're not getting that perfect ratio in every glass. In my two years as a beer enthusiast living in Germany, these beers are almost always served from the bottle, and every bar or bartender has their preferred method for getting all the yeast out of a bottle.

\n\n

Question two: What is done to bottled beer to prolong its shelf life?\nThis also differs from beer to beer. Some imports are pasteurized in the bottle, some others, namely MillerCoors products, use proprietary hop derivatives like Tetrahop to keep hop flavor while minimizing hop oils' susceptibility to producing off-flavors due to light exposure. This isn't a bad or unnatural thing, and I hope this becomes more widespread, because skunked, lightstruck beer is awful. (see this interview) This, however, is also present in kegged beer, as it has other beneficial properties like increased head retention.\nSometimes, though, nothing is done beyond packaging, like Sierra Nevada's transition from twist-off to pry-off caps a few years ago to combat leaking, infection, and oxidation. Brookston Beer Blog 2007

\n\n

Question three: Why is draught so much better?\nVery, very subjective, and you may want to clarify or qualify this in the future. Is good draught beer better than old, skunked bottled beer? Yes. Is good bottled beer better than flat draught beer poured through dirty lines? Also yes. Each has its pros and cons when it comes to service and storage.

\n\n

I would venture to say that much of draught beer's appeal comes from it being special- you typically have to go somewhere else to get it in a way that's not usually available to the home user, like how the theater experience differs from the home movie experience. Yes, you can get bottled beer in bars, too, but it's still a more \"normal\" format. In terms of taste over experience, though, I don't know that you could say for sure without some sort of blind tasting with lots of variables (age, glass type, line cleanliness, CO2 pressure) controlled for. Even then, what does it for the tasters might not do it for you.

\n\n

For further reading on all that goes into draught beer, check out the Draught Beer Quality Manual

\n", "OwnerUserId": "3879", "LastActivityDate": "2016-01-06T16:27:55.250", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4764"}} +{ "Id": "4764", "PostTypeId": "1", "AcceptedAnswerId": "4768", "CreationDate": "2016-01-10T22:48:52.940", "Score": "7", "ViewCount": "1298", "Body": "

I bought a 4-pack of Duvel recently and when I looked at the last bottle I saw that instead of this label:

\n\n

\"Standard

\n\n

It instead had this label:

\n\n

\"Smaller

\n\n

All of the bottles had different art/text on the backs, but up to this point I hadn't noticed anything different on the front label, so I decided to look into it.

\n\n

I couldn't find any official references to a Duvel \"love\" beer but also could not find any official images of these labels. I was able to find images of bottles with the same label listed as a unique beer on Untappd but am somewhat hesitant to take this as any kind of proof of it being a different beer.

\n\n

Did I stumble upon a rarity or packaging mistake or is this the same beer and I'm just overreacting because I don't know any better?

\n", "OwnerUserId": "4935", "LastActivityDate": "2020-06-04T11:16:46.740", "Title": "Is there a difference between normal Duvel and Duvel \"Love\"", "Tags": "distribution", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4765"}} +{ "Id": "4765", "PostTypeId": "2", "ParentId": "3388", "CreationDate": "2016-01-11T13:12:04.797", "Score": "2", "Body": "

Here in Belgium where the majority of 'true' (certificated \"Authentic Trappist Product\") Trappist breweries are located (6 out of 11), the common answer is the almost mythical Westvleteren 12. It is notoriously hard to acquire. One has to register by phone to get a date and hour. You can only reserve 2 crates (42 euros each) and this at most once every 60 days per phone number and car. I drank it once and it was very very good. I however like blonde beers more and prefer Orval, which has the additional benefit of actually being readily available.

\n", "OwnerUserId": "4938", "LastActivityDate": "2016-01-11T13:12:04.797", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4766"}} +{ "Id": "4766", "PostTypeId": "2", "ParentId": "22", "CreationDate": "2016-01-11T13:40:06.803", "Score": "4", "Body": "

As a Belgian I am always told by bartenders and brewers that for special (heavy) Belgian beers a Tulip glass is a good choice, except for Belgian Lambics (nl:Lambieken) for which one should use a flute glass. These glasses are sometimes scratched at the bottom to better accommodate the bubbling (for example: Duvel Glasses)

\n", "OwnerUserId": "4938", "LastActivityDate": "2016-01-11T13:40:06.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4767"}} +{ "Id": "4767", "PostTypeId": "2", "ParentId": "4749", "CreationDate": "2016-01-11T14:39:46.313", "Score": "0", "Body": "

There are a few common allergens in beer- hops are a fairly common allergen, and gluten intolerances or celiac's disease can cause physical illness. Yeast is also a common allergen.

\n\n

Also, some people lack the ability to properly process alcohol- this often manifests by a single beer being enough to cause illness and vomiting.

\n", "OwnerUserId": "1569", "LastActivityDate": "2016-01-11T14:39:46.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4768"}} +{ "Id": "4768", "PostTypeId": "2", "ParentId": "4764", "CreationDate": "2016-01-11T17:49:10.987", "Score": "6", "Body": "

It doesn't even show on the belgian (dutch/french) pages of the site, My best guess is that it's just an alternate cover.

\n\n

DUVEL - mastery in beer

\n\n

It seems they used these different covers as a marketing trick designed to generate publicity and hype as it clearly did here

\n", "OwnerUserId": "4938", "LastEditorUserId": "5064", "LastEditDate": "2018-04-20T13:54:42.917", "LastActivityDate": "2018-04-20T13:54:42.917", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4769"}} +{ "Id": "4769", "PostTypeId": "2", "ParentId": "4624", "CreationDate": "2016-01-12T10:48:21.003", "Score": "2", "Body": "

In the beginning most in Western Europe drank beer,the Romans however started converting to wine. It wasn't long before the idea spread that wine was somehow more sophisticated, contrary to beer, which was only drunk by Barbarians. After Caesars conquest of Gaul. The Gauls were quickly romanized. It is clear that the romanized parts drink less beer and more wine, and the Germanic area produces more beer (+ the Belgian region which were there was a lot of germanic immigration). The reason Spain produces a lot of beer is probably because the relative dryness and infertile grounds make it not ideal to grow wine (largest area of wineyards, only third in production).

\n", "OwnerUserId": "4938", "LastActivityDate": "2016-01-12T10:48:21.003", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4770"}} +{ "Id": "4770", "PostTypeId": "1", "AcceptedAnswerId": "4772", "CreationDate": "2016-01-13T03:01:53.417", "Score": "7", "ViewCount": "1170", "Body": "

I recently drank Stone's \"Punishment\" which was brewed with jalapeños! Having homebrewed with jalapeños from my garden for years I was super excited. Are there other breweries that have started experimenting with spicing their beers this way?

\n", "OwnerUserId": "1077", "LastEditorUserId": "6255", "LastEditDate": "2018-10-09T08:34:24.963", "LastActivityDate": "2018-10-09T20:22:51.320", "Title": "Other Jalapeño beers?", "Tags": "ingredients flavor", "AnswerCount": "7", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4771"}} +{ "Id": "4771", "PostTypeId": "1", "AcceptedAnswerId": "4777", "CreationDate": "2016-01-13T09:24:31.300", "Score": "6", "ViewCount": "365", "Body": "

I've heard lately, that the german beer Warsteiner does not fullfill the german Reinheitsgebot and therefore is is not allowed to be called Pilsner, that is why they call it a Premium Verum.

\n\n

Is that true and if yes, why?

\n", "OwnerUserId": "4947", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2016-01-29T09:47:51.333", "Title": "Is the german \"Warsteiner\" a Pilsner?", "Tags": "brewing breweries german-beers", "AnswerCount": "3", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4772"}} +{ "Id": "4772", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-01-13T17:00:52.623", "Score": "11", "Body": "

I recently had their \"Crime\" and loved it. Here are some other beers brewed with Jalapenos, but not a whole lot from major breweries like Stone.

\n\n

Rogue - Chipotle Ale

\n\n

\"smoked jalapeno peppers\"

\n\n

\"enter

\n\n

Twisted Pine - Ghost Face Killah

\n\n

\"serrano, jalapeno, habanero, fresno, anaheim\" (notoriously hot)\n\"enter

\n\n

Alaskan - Jalapeno Imperial IPA

\n\n

\"enter

\n\n

Horseheads - Hot-Jala-Heim

\n\n

\"jalapenos and anaheim\"

\n\n

\"enter

\n\n

No Label - Don Jalapeno

\n\n

\"this beer is brewed with 60lbs of jalapenos. 30 lbs raw and 30lbs roasted (seeds included)\"

\n\n

\"enter

\n\n

Hot Box - Imperial Smoked Pepper Porter

\n\n

\"smoked poblano & jalapeno peppers\"

\n\n

\"enter

\n", "OwnerUserId": "73", "LastActivityDate": "2016-01-13T17:00:52.623", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4775"}} +{ "Id": "4775", "PostTypeId": "2", "ParentId": "4771", "CreationDate": "2016-01-14T16:36:38.047", "Score": "-2", "Body": "

As far as I read, Warsteiner is not a Pilsener because they don't use enough hops. It's like a Pilsener but less bitter.

\n", "OwnerUserId": "4859", "LastEditorUserId": "73", "LastEditDate": "2016-01-14T22:11:02.910", "LastActivityDate": "2016-01-14T22:11:02.910", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4777"}} +{ "Id": "4777", "PostTypeId": "2", "ParentId": "4771", "CreationDate": "2016-01-15T08:37:03.063", "Score": "5", "Body": "

I think your friend got the wrong end of a stick :p

\n\n

Wikipedia lists it as a pilsner, so does BeerAdvocate and the Warsteiner site.

\n\n

I think Premium Verum is just a name.

\n", "OwnerUserId": "984", "LastActivityDate": "2016-01-15T08:37:03.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4778"}} +{ "Id": "4778", "PostTypeId": "1", "AcceptedAnswerId": "4784", "CreationDate": "2016-01-16T05:10:11.163", "Score": "8", "ViewCount": "1321", "Body": "

Why do Double IPAs tend to be sweeter than regular IPAs? (I personally have in mind Ninkasi's Tricerahops and Saint Archer's Double IPA.)

\n", "OwnerUserId": "73", "LastActivityDate": "2016-01-20T16:45:29.000", "Title": "Why do Double IPAs (aka Imperial IPAs, IIPAs) tend to be sweeter than regular IPAs?", "Tags": "taste ipa", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4779"}} +{ "Id": "4779", "PostTypeId": "2", "ParentId": "4778", "CreationDate": "2016-01-16T19:00:24.830", "Score": "7", "Body": "

I would say some are sweeter, some aren't. Brewers do kick up the mount of malt in IIPA's to get the ABV up there. This could lead to a sweeter taste depending on the malt bill and fermentation.

\n", "OwnerUserId": "529", "LastActivityDate": "2016-01-16T19:00:24.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4780"}} +{ "Id": "4780", "PostTypeId": "1", "AcceptedAnswerId": "4795", "CreationDate": "2016-01-16T22:21:06.777", "Score": "16", "ViewCount": "274", "Body": "

In my experience, dubbels are often fairly dark, brown ales, while tripels are much clearer and lighter (of colour).

\n\n

Why is that?

\n", "OwnerUserId": "4962", "LastEditorUserId": "4962", "LastEditDate": "2018-06-25T15:35:37.880", "LastActivityDate": "2018-06-25T16:03:33.523", "Title": "Why are dubbels generally dark while most tripels are not?", "Tags": "trappist colour dubbel tripel", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4784"}} +{ "Id": "4784", "PostTypeId": "2", "ParentId": "4778", "CreationDate": "2016-01-19T23:32:55.897", "Score": "2", "Body": "

Yeast can just process a certain amount of sugar inside the mash and therefore in double IPA there can be more sugar left in the beer, depending on the yeast that is used.

\n", "OwnerUserId": "4974", "LastActivityDate": "2016-01-19T23:32:55.897", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4785"}} +{ "Id": "4785", "PostTypeId": "1", "CreationDate": "2016-01-20T12:38:55.783", "Score": "1", "ViewCount": "542", "Body": "

I've got a case of beer, which is Rivet Beer. Each can is 330 mL, & 4.7%/1.2 standard drinks. They ran out of date on 13 November 2015, & it's been in a cupboard the entire time, room temperature. Are the cans safe to drink? I'm not concerned about bad taste or anything, I just don't want to get sick. Any help would be appreciated!

\n\n

Thanks!

\n", "OwnerUserId": "4976", "LastActivityDate": "2016-01-20T13:33:31.540", "Title": "Beer that's slightly out of date", "Tags": "taste history", "AnswerCount": "1", "CommentCount": "0", "ClosedDate": "2016-01-20T18:55:12.870", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4786"}} +{ "Id": "4786", "PostTypeId": "2", "ParentId": "4785", "CreationDate": "2016-01-20T13:33:31.540", "Score": "0", "Body": "

Should not be a problem healthwise, taste could be a little different but as it was stored in a can it was protected from sunlight.

\n", "OwnerUserId": "4938", "LastActivityDate": "2016-01-20T13:33:31.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4787"}} +{ "Id": "4787", "PostTypeId": "2", "ParentId": "4778", "CreationDate": "2016-01-20T16:45:29.000", "Score": "4", "Body": "

To be classified as a double IPA it must have an ABV >= 7.5%. That requires more malt/sugar. However, the perceived sweetness can be a factor from yeast used and the Bitterness Ratio: http://www.madalchemist.com/chart_bitterness_ratio.html

\n", "OwnerUserId": "4979", "LastActivityDate": "2016-01-20T16:45:29.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4788"}} +{ "Id": "4788", "PostTypeId": "2", "ParentId": "4749", "CreationDate": "2016-01-21T20:33:48.237", "Score": "4", "Body": "

In general, beer only has 4 ingredients: grain, hops, yeast and water. Of those 4 ingredients, 3 can cause issues with somebody who is sensitive (everything but water). As Tom said, if a person has Celiac's Disease, they're going to be sensitive to the gluten that that is in barley and wheat, which is why some breweries are offering an alternative (usually made with sorghum). It's also possible that hops might be an issue for somebody sensitive. I have a friend who is allergic to hops. There are also folks who are sensitive to yeast. Both ale yeast and baker's yeast are Saccharomyces cerevisiae, so if somebody has trouble with yeast raised bread, they'll have trouble with beer too. A yeast sensitivity can be mitigated by filtering the beer, but not all of it is captured.

\n\n

All that said, I thought that I was going to get sick before I tried a certain maple bacon doughnut beer and surprisingly, I really enjoyed it.

\n", "OwnerUserId": "860", "LastActivityDate": "2016-01-21T20:33:48.237", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4789"}} +{ "Id": "4789", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-01-22T17:27:58.230", "Score": "7", "Body": "

This is not a jalapeno beer, but along the same lines. Ballast Pointe brewery out of San Diego, CA makes what they call a Habanero Sculpin IPA. It is delicious and you can find it all the way over here on the east coast in NC. It has a very nice kick to it- it's great with a steak or something kind of heavy, but not so great for beer pong as the habanero really does have a bite to it.\n\"enter

\n", "OwnerUserId": "4993", "LastActivityDate": "2016-01-22T17:27:58.230", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4790"}} +{ "Id": "4790", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-01-24T01:45:56.510", "Score": "3", "Body": "

Again, not a jalapeno beer, but a great one nonetheless that incorporates similar thinking. RAR Brewing in Cambridge, MD makes a killer beer called Habanero Nectar.

\n\n

\"enter

\n", "OwnerUserId": "4998", "LastActivityDate": "2016-01-24T01:45:56.510", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4791"}} +{ "Id": "4791", "PostTypeId": "1", "CreationDate": "2016-01-25T21:20:07.650", "Score": "5", "ViewCount": "369", "Body": "

What are the most important chemicals for the flavour of beer, and what effect do they have? I mean chemicals as components in the beer not regarding if they are naturally or artificially added.

\n", "OwnerUserId": "4938", "LastEditorUserId": "4938", "LastEditDate": "2016-01-27T16:13:47.563", "LastActivityDate": "2016-02-10T09:45:31.930", "Title": "Flavour components in beer", "Tags": "flavor", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4792"}} +{ "Id": "4792", "PostTypeId": "2", "ParentId": "4791", "CreationDate": "2016-01-26T17:14:56.847", "Score": "-1", "Body": "

I don't want chemicals (as in not natural grown plants) in my beer.

\n\n

The standard natural ingredients are:

\n\n
    \n
  • water
  • \n
  • yeast
  • \n
  • hops
  • \n
  • barley
  • \n
\n\n

To be a craft brewery in Texas you are limited to those ingredients
\nA good link

\n\n

There are different types of hops and barley. The type and amount affect the flavor. Naturally the brew process, water, and yeast also affect the flavor.

\n\n

A hoppy beer will have more hops. Link to hops. An IPA is heavy on the hops.

\n\n

Link to barley / malt

\n\n

There are also wheat and rye beers but I don't know much about them.
\nBrewers may use corn syrup and number of other ingredients.

\n\n

Low calorie beer will naturally not use as much high calorie ingredients.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-01-27T15:37:35.447", "LastActivityDate": "2016-01-27T15:37:35.447", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4794"}} +{ "Id": "4794", "PostTypeId": "2", "ParentId": "4771", "CreationDate": "2016-01-29T09:47:51.333", "Score": "2", "Body": "

\"premium verum\" is just a marketing-joke. Warsteiner is a real \"Pilsener\".\nAnd they brew according to the german purity law.

\n\n

Martin (I studied Brewing Science in Weihenstephan and know Warsteiner very well)

\n", "OwnerUserId": "5024", "LastActivityDate": "2016-01-29T09:47:51.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4795"}} +{ "Id": "4795", "PostTypeId": "2", "ParentId": "4780", "CreationDate": "2016-01-30T07:51:19.600", "Score": "6", "Body": "

Color tends to come primarily from the malt bill used (darker roasted malts lending darker color to a beer). In the case of Belgian beers, a \"candi\" sugar (derived from beets) may used as an additive, and different styles use different types of candi sugars. For dubbels in particular, the candi is a darker variety, made with a (more) substantial dose of molasses, which would darken the beer further. A tripel uses a candi with less molasses.

\n", "OwnerUserId": "27", "LastActivityDate": "2016-01-30T07:51:19.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4796"}} +{ "Id": "4796", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-02-01T15:00:53.280", "Score": "3", "Body": "

Bent River (from Rock Island/Moline, IL) has a Jalapeno Pepper Ale. They take it with them when they go to most festivals. I assume it's mostly for novelty. \nTastes kinda like drinking nacho beer (probably make a good beer dip).

\n\n

It was added on beeradvocate in like 2005, so apparently they've been doing it for a while.

\n", "OwnerUserId": "5036", "LastActivityDate": "2016-02-01T15:00:53.280", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4797"}} +{ "Id": "4797", "PostTypeId": "1", "AcceptedAnswerId": "4798", "CreationDate": "2016-02-01T21:36:16.320", "Score": "12", "ViewCount": "12737", "Body": "

Does drinking strong beer with a straw get you drunk faster? \nIf this is true what causes this effect?

\n", "OwnerUserId": "4938", "LastActivityDate": "2019-04-22T19:45:44.797", "Title": "Drinking beer with a straw", "Tags": "alcohol-level", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4798"}} +{ "Id": "4798", "PostTypeId": "2", "ParentId": "4797", "CreationDate": "2016-02-01T21:36:16.320", "Score": "14", "Body": "

This is caused by two things.

\n\n

1)\nWhen you drink with a straw the liquid touches your palate (upper part of your mouth) more, the skin in your palate is thin and strongly circulated (with blood) this accelerates the absorption of alcohol in the blood.

\n\n

2)\nSucking fluid trough the straw requires a lower than ambient pressure in the lungs and mouth. This lower pressure causes more of the alcohol to evaporate, this alcohol is absorbed by the lungs again increasing alcohol absorption.

\n\n

While drinking with a straw will get you drunk faster it will not necessarily get you more drunk as this is mostly just related to the amount of consumed alcohol.

\n", "OwnerUserId": "4938", "LastActivityDate": "2016-02-01T21:36:16.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4799"}} +{ "Id": "4799", "PostTypeId": "1", "AcceptedAnswerId": "4800", "CreationDate": "2016-02-02T16:10:39.360", "Score": "4", "ViewCount": "416", "Body": "

What is the residue some in bottled (special) beers. Is it true that it can cause flatulence?

\n", "OwnerUserId": "4938", "LastEditorUserId": "4938", "LastEditDate": "2016-02-02T23:18:03.360", "LastActivityDate": "2016-02-04T09:12:02.227", "Title": "Deposit on bottom beer bottle", "Tags": "deposit", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4800"}} +{ "Id": "4800", "PostTypeId": "2", "ParentId": "4799", "CreationDate": "2016-02-02T16:10:39.360", "Score": "4", "Body": "

This deposit is called trub (sometimes lees), and is a created in all ethanol fermentation processes.\nThe trub is mostly yeast cells both living and dead. This is why this deposit is only seen in beers that ferment in the bottle as it is otherwise removed before bottling. It is even possible to cultivate the yeast from the trub, but this requires special care. It is often advised not to drink it but some people like the taste. It is also possible a little glass is provided to separately drink the trub.

\n\n

As some of the yeast still lives, it will continue to produce gas while inside you which can cause flatulence.

\n", "OwnerUserId": "4938", "LastEditorUserId": "4938", "LastEditDate": "2016-02-04T09:12:02.227", "LastActivityDate": "2016-02-04T09:12:02.227", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4803"}} +{ "Id": "4803", "PostTypeId": "1", "AcceptedAnswerId": "4806", "CreationDate": "2016-02-04T11:03:31.113", "Score": "5", "ViewCount": "316", "Body": "

I was wondering why there are so few trappists and how is it that from the eleven trappists 6 of them are from Belgium. Why aren't the breweries more spread over the world? Does it have something do to with what happened there in the history?

\n", "OwnerUserId": "5046", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:40:48.517", "LastActivityDate": "2016-07-28T14:40:48.517", "Title": "Why are there so few \"real\" trappists and why are six from them from belgium", "Tags": "history trappist", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4804"}} +{ "Id": "4804", "PostTypeId": "2", "ParentId": "4803", "CreationDate": "2016-02-04T13:03:55.547", "Score": "4", "Body": "

The Trappist designation is monitored by the International Trappist Association. Here are the criteria set forth by them for an abbey to maintain their Trappist label:

\n\n
    \n
  • The beer must be brewed within the walls of a Trappist monastery, either by the monks themselves or under their supervision.

  • \n
  • The brewery must be of secondary importance within the monastery and it should witness to the business practices proper to a monastic way of life

  • \n
  • The brewery is not intended to be a profit-making venture. The income covers the living expenses of the monks and the maintenance of the buildings and grounds. Whatever remains is donated to charity for social work and to help persons in need.

  • \n
\n\n

Trappist breweries are constantly monitored to assure the irreproachable quality of their beers.

\n", "OwnerUserId": "5051", "LastEditorUserId": "3875", "LastEditDate": "2016-02-14T19:22:20.743", "LastActivityDate": "2016-02-14T19:22:20.743", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4806"}} +{ "Id": "4806", "PostTypeId": "2", "ParentId": "4803", "CreationDate": "2016-02-04T17:56:31.347", "Score": "8", "Body": "

The Trappists are members of a Roman Catholic religious order. Trappists follow a rule of St. Benedict stating that they should \"live by the work of their hands\", which means many Trappist monasteries sell goods for income. The order has no particular prohibition against alcohol, so producing beer is an entirely reasonable profession for the monks.

\n\n

The order is centuries old, and originated in France. However, many of the French breweries were destroyed during the French revolution (and later, the world wars). Fortunately for us today, the monasteries in the beer-loving Belgium survived (or in cases like that of the Rochefort Abbey, were restored).

\n\n

Today, the \"Authentic Trappist Product\" logo, which defines a \"real\" Trappist beer, is owned by the International Trappist Association, an organization founded in 1997. The founding members include six abbeys from Belgium, one from the Netherlands, and one from Germany (which doesn't produce beer). It is only in very recent years that the ITA has expanded to recognize breweries aside from the original 7, the first \"new\" one being Stift Engelszell from Austria in 2012.

\n\n

As the craft beer revolution pushes forward, I'd say we're likely to see more monasteries start their own beer production and apply for the logo. But right now, it's still mostly the original Belgians.

\n", "OwnerUserId": "793", "LastActivityDate": "2016-02-04T17:56:31.347", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4807"}} +{ "Id": "4807", "PostTypeId": "1", "AcceptedAnswerId": "4809", "CreationDate": "2016-02-05T08:10:26.867", "Score": "10", "ViewCount": "195", "Body": "

So from a previous question I learned that the Trappist foundation was founded in 1997 by 6 Belgian breweries one from the Netherlands and one from Germany. But were there other breweries which succeeded to the conditions for the label of Trappist. I mean, it sounds unfair for a brewery in France that six of the founding members are from Belgium.

\n\n

And are those original founding members still the people who control the label? Then it sounds still unfair today, because they can easily keep the number of breweries with the trappist label low, just for marketing reasons.

\n", "OwnerUserId": "5046", "LastEditorUserId": "5575", "LastEditDate": "2016-09-07T08:30:25.600", "LastActivityDate": "2016-09-07T08:30:25.600", "Title": "When the Trappist foundation was founded in 1997, were there breweries which didn't get the label although they succeeded to the conditions?", "Tags": "history breweries trappist", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4809"}} +{ "Id": "4809", "PostTypeId": "2", "ParentId": "4807", "CreationDate": "2016-02-07T06:20:40.633", "Score": "8", "Body": "

The explication to your question is multi-faceted and not so easy to understand if one is neither Roman Catholic nor understanding of the nuances of religious life (Trappist).

\n\n

The Trappists were founded in 1664 as a branch of the Benedictine Order at the La Trappe Abbey. The abbot of La Trappe has a greater authority of jurisdiction than the other trappist abbots. Under canon law this is permitted because La Trappe is the motherhouse of the Trappist Order.

\n\n

The history of the Trappist Foundation in 1997 is of a totally different perspective. Originally only La Trappe Abbey could grant the title of the label to those Trappist breweries which could safeguard the integrity of the Order. All other monasteries which could not or would not abide to the conditions to be met, would not be granted the Trappist Label.

\n\n

Since 2012, four other Trappist monasteries have been added to the list, including St. Joseph's Abbey in Massachusetts, United States.

\n\n

The three basic rules for granting the label are:

\n\n
    \n
  • The beer must be brewed within the monastery, by the monks or at least under the supervision of the monks.
  • \n
  • The making of ales should be of a secondary importance to the monastery and should be seen as a witness of monastic life.
  • \n
  • Any profits from the brewery are to be use to help sustain the monks in their life of prayer. Any extra income is to be given to some sort of charity.
  • \n
\n\n

There seems to be no other Trappist Abbeys that were producing beer at the time the label was founded. Since abbeys are independent of one another, sources of revenue are not limited to the brewing of ales. Some abbeys made vestments, while other distilled products such as kirsch, as was the case at Fontgombault Abbey from 1849-1905. Fontgombault Abbey (Wikipedia)

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-08-30T03:27:09.380", "LastActivityDate": "2016-08-30T03:27:09.380", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4810"}} +{ "Id": "4810", "PostTypeId": "2", "ParentId": "3289", "CreationDate": "2016-02-07T22:09:35.880", "Score": "0", "Body": "

I find it so weird that there is no consistent rules as to why some varieties of beer and ales are so difficult to obtain in Canada. Regulations change even between the provinces. It seems so strange that in BC there is a regular list of products sold in liquor stores as well as a restricted list for restaurants and a specialty list where one can buy products providing one buys the whole box. Some private liquor store may allow you to buy a six-pack if it is permitted to be sold within a particular province. You need to ask and find out if the province carries Grimbergen. One can also order it online using the same criteria. Here is an example for Alberta.

\n\n

If you are fortunate enough to be able to cross the border you will have little trouble finding Grimbergen in the US. Normally would pay duty upon returning to Canada, but in my experience here in BC is that if your bottle of wine is valued less than $10.00 or you are bringing back only a six-pack of beer or cider, you will not pay anything. I always declare my purchases and have yet to pay any duty.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-08-06T13:12:31.757", "LastActivityDate": "2016-08-06T13:12:31.757", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4811"}} +{ "Id": "4811", "PostTypeId": "1", "AcceptedAnswerId": "4821", "CreationDate": "2016-02-08T05:12:49.880", "Score": "3", "ViewCount": "105", "Body": "

What are the most popular ingredient used in the making of gluten-free beers? Do they have a good shelve life or not?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-06-21T14:03:13.467", "LastActivityDate": "2020-06-21T14:03:13.467", "Title": "What are some of the most common ingredients used in gluten-free beers?", "Tags": "ingredients gluten-free", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4812"}} +{ "Id": "4812", "PostTypeId": "2", "ParentId": "4749", "CreationDate": "2016-02-08T15:08:09.480", "Score": "2", "Body": "

There is a condition caused by alcohol, called an \"alcohol flush reaction\". Some people (often from Asia) have a condition, not related to allergies, that makes them lack a certain enzyme that lets their bodies process alcohol properly. The condition apparently causes rapid intoxication and nausea after drinking only small amounts of alcohol, and I believe the reason for the sufferings are an overproduction of the same waste chemicals that causes the really bad hangovers (aldehydes). Anyhow, I wouldn't blame them for being abstinent.

\n", "OwnerUserId": "5049", "LastEditorUserId": "5049", "LastEditDate": "2016-02-08T15:26:56.590", "LastActivityDate": "2016-02-08T15:26:56.590", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4813"}} +{ "Id": "4813", "PostTypeId": "1", "AcceptedAnswerId": "4814", "CreationDate": "2016-02-08T16:09:36.070", "Score": "4", "ViewCount": "204", "Body": "

Are there any varieties of beer that some people associate with the liturgical season of Lent? If so, why?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:40:16.517", "LastActivityDate": "2016-07-28T14:40:16.517", "Title": "Which beer or beers are associated with Lent?", "Tags": "occasions", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4814"}} +{ "Id": "4814", "PostTypeId": "2", "ParentId": "4813", "CreationDate": "2016-02-08T17:37:15.783", "Score": "4", "Body": "

Bock style beers are regularly produced for festivals such as Christmas and Lent.

\n\n

The specific kind of bock for Lent is Lentenbock.

\n\n

The only one I've tried in the UK is Oates Lenten Bock. It was a traditional Bock style, dark, sweet and strong and it was OK. I wasn't enamoured of it enough to repeat tasting it.

\n", "OwnerUserId": "4394", "LastActivityDate": "2016-02-08T17:37:15.783", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4815"}} +{ "Id": "4815", "PostTypeId": "2", "ParentId": "4791", "CreationDate": "2016-02-08T18:16:33.257", "Score": "1", "Body": "

When yeast ferment the sugar into alcohol it produces a lot of different by-products that give beer most of it's flavour. The brewer can influence the by-products produces by controlling the temperature at which the fermentation takes place.

\n\n

Hops also add a lot in particular aroma. Since so much of tasting depends on the nose aroma comes of as flavour too. By boiling hops most of the aroma disappears and your left with only bitterness. By boiling hops for a shorter time, or not at all you can add more aroma. Brewers often talks about bittering vs aroma hops. Hops bitterness and aroma contribution depends on the variety of hops used. Hops growers are constantly coming up with new types of hops.

\n\n

Malt, grain having been processed, also add flavour. Though most malt come from the same type of grain, barley, it can be processed/malted in many different ways giving a different flavour. When mashing (getting the sugar out of the malt and into the liquid) you can adjust the flavour by temperature. At high temperature (68c) you get almost only unfermentable sugar, which will give you a sweet result, while mashing at 64 will give you fermentable sugar and therefore a dry product.

\n\n

Water does not add so much to the flavour in it self as it helps other parts of the recipe add a certain flavour. PH and content of minerals have a huge impact on mashing and fermentation.

\n", "OwnerUserId": "5066", "LastEditorUserId": "4770", "LastEditDate": "2016-02-10T09:45:31.930", "LastActivityDate": "2016-02-10T09:45:31.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4816"}} +{ "Id": "4816", "PostTypeId": "1", "CreationDate": "2016-02-09T15:44:20.307", "Score": "4", "ViewCount": "589", "Body": "

Does your country have any band or music based special crafted beers?\nIn Finland I can get Mötorhead, Kiss, Iron Maiden and Finnish bands like Amorphis and soon Diablo's Corium Black titled beer.

\n\n

I was wondering that if I could get information that different countries have band or music related beers I could order some online for educational purposes.

\n", "OwnerUserId": "5050", "LastEditorUserId": "6255", "LastEditDate": "2019-02-21T08:18:09.893", "LastActivityDate": "2019-02-21T08:18:09.893", "Title": "Which band beers exist in your country?", "Tags": "specialty-beers", "AnswerCount": "7", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4817"}} +{ "Id": "4817", "PostTypeId": "2", "ParentId": "4811", "CreationDate": "2016-02-09T20:09:41.867", "Score": "1", "Body": "

IIRC, Lakefront New Grist is made from sorghum. I can't comment on shelf life.

\n", "OwnerUserId": "4770", "LastActivityDate": "2016-02-09T20:09:41.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4818"}} +{ "Id": "4818", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-02-09T21:43:21.797", "Score": "1", "Body": "

Hell, yes!

\n\n

\"AC
\n(source: acdc-beverage.com)

\n\n

I have never drunk it though :)

\n\n

Update.

\n\n
    \n
  • German rock band \"Die toten Hosen\" (\"The dead pants\", means \"deadly boring\") has recently presented its own beer brewed in collaboration with a local brewery - \"Hosen Hell\" (don't be confused with \"hell\", it's German for \"pale lager beer\", so the skull is from the band's logo not from hell. See also note below)
  • \n
\n\n

\"enter

\n\n
    \n
  • In Russia, there is \"Leningrad band\" beer named after Russian \"Leningrad\" band.
  • \n
\n\n

\"enter

\n\n
\n\n

Note: Same applies to \"Fucking Hell\". Fucking is a village in Austria, Hell is pale beer. But the name is obviously an intended pun.

\n", "OwnerUserId": "4742", "LastEditorUserId": "4742", "LastEditDate": "2019-02-20T13:16:27.330", "LastActivityDate": "2019-02-20T13:16:27.330", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4820"}} +{ "Id": "4820", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-02-11T12:39:26.927", "Score": "2", "Body": "

In South Africa (where I am from) the band FokofPolisiekar had two beers.

\n\n

In other countries: Queen has a Bohemian Pilsner.

\n\n

Loosely related: Playboy also has their own beer. Not a band, I know.

\n", "OwnerUserId": "984", "LastActivityDate": "2016-02-11T12:39:26.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4821"}} +{ "Id": "4821", "PostTypeId": "2", "ParentId": "4811", "CreationDate": "2016-02-11T12:47:24.677", "Score": "4", "Body": "

Corn, rice, sorghum, buckwheat, millet and quinoa are popular. Each has their own special trick to get it to convert the starches to sugars.

\n\n

In Africa sorghum lagers are very popular, and they have the same shelf life of \"normal pale\" lagers. aka 3-6 months. I do not know if gluten-free affects the shelf life.

\n\n

Here is a BYO article to provide more information on gluten free brewing.

\n", "OwnerUserId": "984", "LastEditorUserId": "5064", "LastEditDate": "2018-06-29T22:41:03.030", "LastActivityDate": "2018-06-29T22:41:03.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4822"}} +{ "Id": "4822", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-02-11T13:25:48.590", "Score": "5", "Body": "

In Brazil, we have a few. But, in general, they're not an original beer, really created by some musician, but more a marketing thing. They only contract a micro brewery to develop a recipe for then, or even use a previously existent beer and re-brand it with their names.

\n\n

Examples are: Raimundos, Sepultura (which is a brazilian hardcore band well-known around the world) and Paralamas do Sucesso, bands which have a beer with their names produced by Bamberg Brewery, a microbrewery of São Paulo state dedicated exclusively to german styles. The former 2 being merely a re-brand of Bamberg's flagship beers.

\n\n

Velhas Virgens is a rock band from São Paulo which have their own brand too, and more than one beer, and I think someone inside the band homebrew. Nowadays they produce in association with Invicta brewery, and I guess they have some contribution for them in the products development, although, of all those \"rock band beers\", they seem to be the most genuine/authentic initiative.

\n\n

The way I see this thing on the craft beer scene is: people trying to take advantage of this trending market and make money out of it. It's a pure marketing thing. It's like you being a famous person and associating your name with some product, whatever it is, just because you know people will buy it only because of your image/name, and not because of what is really inside of it.

\n\n

Particularly, I think this is pure opportunism.

\n", "OwnerUserId": "4338", "LastEditorUserId": "4338", "LastEditDate": "2016-02-11T19:23:02.410", "LastActivityDate": "2016-02-11T19:23:02.410", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4823"}} +{ "Id": "4823", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2016-02-11T14:11:44.393", "Score": "1", "Body": "

In addition to blending different beers (like, blending an stout with an IPA, getting something like a black IPA), it's important to mention that almost all barrel aged beers are blends, because of the very nature of barrel aging.

\n\n

When I mention barrel aged beers, I'm not just referring to the recent barrel aged styles which have been created by the american craft beer scene, but also to more traditional ones like the Belgian ones: lambic, flanders red and oud bruin.

\n\n

Blending is crucial to beverages aged on barrels (even whisky or wine), because you never get a regular result from them. It depends heavily on the barrel itself (remember, it's wood, a biological element), the storage conditions of each of them (temperature, for example, which varies depending on the position of it in the warehouse) and some other random factors. So, the only way to achieve a consistent and reproducible product is blending, trying to fuse all those different characteristics in the right proportion, giving you an expected final product. In this process, is even common having to dump some barrels, which will not make it on the final proportion (maybe, let's say, you have too many very sour barrels, and you don't want your beer to be so that sour).

\n\n

Additionally, another common practice is to blend aged beer with the young (not aged) version of it. Beers like Rodenbach, for example, are like this (Rodenbach Grand Cru has 2/3 of aged beer with 1/3 of fresh beer). Dogfish's Burton Barton is a blend of wood-aged and fresh IPA, as well.

\n\n

So, blending beer is not exactly a new thing. I understand that your question was about blending different styles of beers, which is still less common, probably because the brewers will try to do that from the beginning, with the ingredients, but is not an heresy. We should try doing this more often, I dare to say.

\n", "OwnerUserId": "4338", "LastActivityDate": "2016-02-11T14:11:44.393", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4824"}} +{ "Id": "4824", "PostTypeId": "1", "AcceptedAnswerId": "4826", "CreationDate": "2016-02-12T18:19:14.713", "Score": "7", "ViewCount": "1777", "Body": "

I received a bottle of Delirium Tremens for my birthday and this will be the first time I have tasted that beer. I see that it has what appears to be a cork which is surrounded by 4 wire posts at the corner. The following site (of some random person I don't know) has an image of a bottle looking very much like my own.

\n\n

So that I don't mutilate what is sure to be a wonderful beer, how should I get about opening it?

\n", "OwnerUserId": "5083", "LastActivityDate": "2016-10-08T21:19:20.187", "Title": "What is the proper way to open a bottle of Delirium Tremens?", "Tags": "bottles", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4825"}} +{ "Id": "4825", "PostTypeId": "1", "AcceptedAnswerId": "4828", "CreationDate": "2016-02-12T18:24:57.593", "Score": "4", "ViewCount": "70", "Body": "

When I go buy my beer, I will always look for the some sort of date indicating when it expires, or when it was bottled, or something of that sort. Occasionally, I run into undecipherable codes instead of dates and I am at a lost to know when the beer was produced. Is it a company by company basis, or is there some general way to decipher the codes so I know when the beer was produced, or when it will expire, or whatever other information they care to give me?

\n", "OwnerUserId": "5083", "LastActivityDate": "2016-02-13T20:45:15.327", "Title": "Is there a universal resource to decipher beer production codes?", "Tags": "freshness", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4826"}} +{ "Id": "4826", "PostTypeId": "2", "ParentId": "4824", "CreationDate": "2016-02-12T18:26:33.237", "Score": "7", "Body": "

The cage is simply twisted closed. You'll see that bottom wire is twisted tight and bent upwards. Simply bend it back down to horizontal, and untwist to loosen the cage. At that point you'll be able to lift the cage free, and un-cork by hand. It's been a year or two since I've had a bottle of Delirium Tremens, so I don't remember how tight the cork was, but certainly some beers that are corked and capped like this do have corks that are fairly resistant to removal. If that is the case for your bottle, then I find that twisting the cork as I pull up will generally free it nicely.

\n", "OwnerUserId": "37", "LastActivityDate": "2016-02-12T18:26:33.237", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4827"}} +{ "Id": "4827", "PostTypeId": "2", "ParentId": "4824", "CreationDate": "2016-02-12T22:51:51.287", "Score": "3", "Body": "

I cannot recall delirium ever being packaged in a strange way the site (in dutch) also only shows Deliria packaged the way you describe. In either way i think they should be opened like a bottle of champagne, open the metal wire casing twist the cork out (or push it with your thumb) and it's often advised to wrap your hand around the neck of the bottle which will make it less eager to foam excessively.

\n\n

Here you have some pictures to take a look at: How to Open a Champagne Bottle.

\n", "OwnerUserId": "4938", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T21:19:20.187", "LastActivityDate": "2016-10-08T21:19:20.187", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4828"}} +{ "Id": "4828", "PostTypeId": "2", "ParentId": "4825", "CreationDate": "2016-02-13T20:45:15.327", "Score": "4", "Body": "

TLDR answer: Unfornately, no.

\n

From my own experience, this varies a lot from company to company. It also depends on country's legislation or even the state, when it comes to USA. As far as I know, expiring dates for beers are even not obligatory by law in many american states.

\n

Besides that, some breweries inform the bottling date, others the expiration date, which is less useful, because if you are a experienced drinker you know how old (or not) you want your beer to be, despite what the producer has estimated for it. So, in those cases, first you need to figure out the given shelf-life of it, and count backwards, to know when it was bottled. Pretty messy. I age beers and I'm quite used to it.

\n

So, in general, when that information is not clear, your best (and maybe only) friend is the web - the brewery's website or forums.

\n

For example, Anchor Brewery has a very particular (and weird) code standard for bottling date, but it is well explained on their website.

\n
\n

The date code currently being used by Anchor Brewing Company (post-October 1991) replaces the clock-face that used to show the bottling month as one of 12 small notches around the main label. A three character code is now included on the new back label of the bottle. The code works like this:

\n

The first character is always numeric and represents the last digit of the year. The second character is always alpha and represents the month by using the first letter of the month unless that letter has already been used:

\n

January: J, February: F, March: M, April: A, May: Y, June: U, July: L, August: G, September: S, October: O, November: N, December: D

\n

The third character in the code is either alpha or numeric and tells the day of the month. The first 26 days are represented by the alphabet with the remaining days listed as:

\n

27th through 29th = 7 through 9, 30th = 3, 31st = 1

\n

An example of a date code would be: January 20, 2012 = 2JT

\n
\n

Not all breweries are so transparent like that, though. I have had a lot of trouble trying to figure out bottling date of some European beers, specially from some small, old breweries. Some american ones just won't tell anything about it as well, even on bottles.

\n", "OwnerUserId": "4338", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2016-02-13T20:45:15.327", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4829"}} +{ "Id": "4829", "PostTypeId": "1", "AcceptedAnswerId": "4830", "CreationDate": "2016-02-16T01:31:00.063", "Score": "7", "ViewCount": "4721", "Body": "

Does anyone know if kosher beers exist? To be kosher, the beer would have to totally (100%) brewed by Jewish hands? Such wines do exist!

\n", "OwnerUserId": "5064", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-25T10:27:40.290", "LastActivityDate": "2019-01-25T10:27:40.290", "Title": "Do kosher beers exist?", "Tags": "specialty-beers", "AnswerCount": "6", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4830"}} +{ "Id": "4830", "PostTypeId": "2", "ParentId": "4829", "CreationDate": "2016-02-16T16:17:09.493", "Score": "6", "Body": "

Indeed there are kosher beers

\n\n

All unflavored beer with no additives are considered to be kosher, even without certification. Some of the most popular kosher beer companies include:

\n\n
\n

Many breweries are coming out with specialty brews that have\n additives; don't assume that all varieties are acceptable - check the\n label.

\n
\n\n
    \n
  1. Coors
  2. \n
  3. Saranac all products
  4. \n
  5. Pete's Brewing all products
  6. \n
  7. Brooklyn Brewery all products
  8. \n
\n\n
\n

These beers are generally available where ever beer is sold.

\n
\n\n

Read more: Kosher Beer (Orthodox Jews)

\n\n

The following beers from Samuel Adams, The Boston Beer\nCompany, are Star-K kosher/pareve, even without the Star-K on\nthe label.

\n\n
    \n
  1. Black Lager
  2. \n
  3. Boston Ale
  4. \n
  5. Boston Lager
  6. \n
  7. Brown Ale
  8. \n
  9. Cherry Wheat
  10. \n
  11. Cranberry Lambic
  12. \n
  13. Cream Stout
  14. \n
  15. Double Bock
  16. \n
  17. Hefeweizen
  18. \n
  19. Holiday Porter
  20. \n
  21. Light October fest
  22. \n
  23. Old Fezziwig
  24. \n
  25. Pale Ale
  26. \n
  27. Spring Ale
  28. \n
  29. Summer Ale
  30. \n
  31. White Ale
  32. \n
  33. Winter Lage
  34. \n
\n", "OwnerUserId": "5078", "LastEditorUserId": "5064", "LastEditDate": "2018-07-03T11:23:26.217", "LastActivityDate": "2018-07-03T11:23:26.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4831"}} +{ "Id": "4831", "PostTypeId": "2", "ParentId": "4829", "CreationDate": "2016-02-16T18:50:22.433", "Score": "3", "Body": "

As another answer indicates, many beers are considered Kosher without being certified as such. The primary brewer that I'm aware of that makes Kosher beers that are certified is He'Brew (\"The Chosen Beer\" - cute).

\n\n

They make a variety of beers and I believe that all of them are certified Kosher by the KSA.

\n\n

http://www.shmaltzbrewing.com/HEBREW/home.html

\n\n

EDIT: After some more research, it's a little hard to confirm whether all their beers are truly kosher. The wikipedia article says that they are, and there are a couple different news articles about them claiming that they are, but the KSA page has no products listed for the company.

\n\n

It does seem like some of the promotional materials for the beers have the KSA label, like the one for Chanukah beer. But many of them are harder to tell. I have been under the impression that all their beers were Kosher, but it might be worth asking the company for more information.

\n", "OwnerUserId": "960", "LastEditorUserId": "960", "LastEditDate": "2016-02-16T22:26:16.743", "LastActivityDate": "2016-02-16T22:26:16.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4832"}} +{ "Id": "4832", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-02-17T08:15:52.650", "Score": "3", "Body": "

If you want a look at a large variety of the band beers available this is a great site where you can buy them: Icon Beverages.

\n", "OwnerUserId": "5078", "LastEditorUserId": "5064", "LastEditDate": "2016-10-08T21:10:23.387", "LastActivityDate": "2016-10-08T21:10:23.387", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4833"}} +{ "Id": "4833", "PostTypeId": "2", "ParentId": "4648", "CreationDate": "2016-02-17T22:06:33.417", "Score": "1", "Body": "

While I can't point you to a calculator on beer gas mixture I can point you to this Fact sheet from the Brewers Association.

\n\n

The key to balance a tap system is figuring out the opposing pressures. The keg to tap resistance must be matched by the gas tank push pressure. The gas pressure puts in a little CO2, the liquid line squeezes a little out. However, in long draw setups where the draft line has a lot of resistance the push pressure would have be so high that a lot more CO2 would be dissolved into the beer. The amount of CO2 squeezed out would cause very foamy beer. How to solve this? Mix in some Nitrogen.

\n\n

Basically, the Nitrogen will never blend into the beer. It is used as an inert gas to maintain the pressure in long draw lines. Any change in carbonation would come from the mix ratio. If the mix is too low in CO2, as the keg empties the beer will go flat since not enough CO2 is being forced in. If the mix is too high in CO2 then the beer would gain carbonation from the beer gas.

\n\n

Your ratio of 30% CO2 / 70% N is more suited to a Nitro tap setup. Traditional nitro beers have an original carbonation level of around 1-1.5 volumes of CO2. The amount of CO2 needed to maintain this carbonation level is minimal PLUS the faucets that pour these beers have an extra plate that restricts the flow even more, forcing almost all gas out of the beer. Without that specialized faucet, the beer coming out would just be flat with maybe a few sad bubbles of CO2 but no thick head of foam that you'd expect.

\n", "OwnerUserId": "4637", "LastActivityDate": "2016-02-17T22:06:33.417", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4835"}} +{ "Id": "4835", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2016-02-18T21:48:56.107", "Score": "1", "Body": "

Evil Twin Yin & Yang is one popular blend. They are brewed and sold separately as Evil Twin Yin and Evil Twin Yang. There is also the blend that is bottled and sold, Evil Twin Yin & Yang, which is 1/3 stout (Yin) and 2/3 double IPA (Yang). I've also been to bars that have both the Yin and Yang on tap, and blend them for you in house.

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-18T21:48:56.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4836"}} +{ "Id": "4836", "PostTypeId": "2", "ParentId": "4829", "CreationDate": "2016-02-18T22:51:18.673", "Score": "2", "Body": "

RateBeer has recently instituted tags for beers to note particular characteristics about the beer, so that may be a place to start. They currently have 13 beers listed under the \"kosher\" tag.

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-18T22:51:18.673", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4837"}} +{ "Id": "4837", "PostTypeId": "1", "AcceptedAnswerId": "4870", "CreationDate": "2016-02-18T23:34:32.527", "Score": "4", "ViewCount": "64", "Body": "

I'm not looking for any specific vintage or special variant. Just the standard Dark Lord RIS.

\n\n

I'm also well aware of the fact that Three Floyds has limited distribution in the Midwest, and I'm for sure not going to find it on the West Coast.

\n\n

However, I sometimes travel back to Ohio, where they do distribute. What are my chances of walking into a decent bottle shop back there and finding one of these? Do i have a good shot, or is this a very seasonal brew?

\n", "OwnerUserId": "5107", "LastActivityDate": "2017-04-13T22:18:24.593", "Title": "How hard is it to find a Three Floyds Dark Lord?", "Tags": "imperal-stout", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4838"}} +{ "Id": "4838", "PostTypeId": "2", "ParentId": "4662", "CreationDate": "2016-02-19T01:18:15.583", "Score": "0", "Body": "

No, absolutely not.

\n\n

Where this conception comes from is that almost everyone who has their first beer drinks some of the worst beer out there, usually in their teens because they're surrounded by masses of other people who also don't know anything about alcohol.

\n\n

So their first impression of beer is either a Heineken, Budweiser, Canadian, Guinness, etc, and that's what they decide beer is like. People who want to get drunk continue drinking it and eventually acclimatize to it, and people who really don't like generics end up switching to sweeter alternatives.

\n\n

The thing about beer though is that there is a huge variation in flavours and styles. To try a Budweiser and then say \"I don't like beer\" is really saying \"I don't like Budweiser\". It's an opinion that arises out of the ignorance of what's available to the consumer.

\n\n

And so I'd argue that if almost anyone wanted to make an honest attempt to find a beer they liked, they would eventually find something under the enormous 'beer' label that they enjoyed. I've just convinced way too many people who thought they didn't like beer to start drinking it to believe it's at all hereditary. Psychological? Maybe. Genetic? No.

\n", "OwnerUserId": "938", "LastActivityDate": "2016-02-19T01:18:15.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4839"}} +{ "Id": "4839", "PostTypeId": "1", "AcceptedAnswerId": "4843", "CreationDate": "2016-02-19T01:37:52.540", "Score": "10", "ViewCount": "3009", "Body": "

This question might be a bit broad, but what I'm trying to understand is generally how the brewing process and the subsequent end result differed before the early-modern to modern era.

\n\n

I had asked a question here some months back on where I could find some historical styles of beer, but without having much luck I thought I'd try to get at least an understanding of what's known about the evolution of beer from ancient to medieval to modern times.

\n\n

So the question is: if I was a European medieval man drinking beer circa 6th-15th centuries what would that beer have been like? How did it differ from what we've been brewing for the last few centuries? And is that product distinct from what existed in ancient times?

\n", "OwnerUserId": "938", "LastActivityDate": "2016-02-19T17:09:15.807", "Title": "What is the difference between historical beer and 'modern' beer?", "Tags": "brewing history style", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4841"}} +{ "Id": "4841", "PostTypeId": "2", "ParentId": "4839", "CreationDate": "2016-02-19T02:51:08.687", "Score": "2", "Body": "

That's a very broad question, and hard to answer.

\n\n

Very early on, hops weren't well known, and beer was made without hops; this likely would have caused the beer to be sweeter than it is today. Hops were known and added to beer relatively early in the Middle Ages, though.

\n\n

Today, in my opinion, the key differences are variety and technology. Not only do we have a greater variety in styles, but we have more varieties of hops, malts, and different yeasts. These create wildly different flavor profiles unheard of centuries ago. Technology has allowed us to create more consistency in beers, as well as increasing variety indirectly through different techniques used in brewing.

\n\n

Here's a pretty nice article on the history of beer: https://en.wikipedia.org/wiki/History_of_beer

\n\n

And if you want to try some beers brewed in traditional styles, they are out there. Here's a good list of some of the best: http://www.ratebeer.com/beerstyles/traditional-ale/59/

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-19T02:51:08.687", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4842"}} +{ "Id": "4842", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-02-19T14:24:36.470", "Score": "2", "Body": "

Triangle Brewing Company from Durham, NC make their Habanero Pale Ale.

\n\n

I went on a brewery tour here in 2014, exceptionally minimalist brewery, and very generous with the samples! I've got to say, personally, a half pint would be enough but it's 100% worth trying for the experience alone.

\n", "OwnerUserId": "4392", "LastActivityDate": "2016-02-19T14:24:36.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4843"}} +{ "Id": "4843", "PostTypeId": "2", "ParentId": "4839", "CreationDate": "2016-02-19T17:09:15.807", "Score": "8", "Body": "

Not only has variety improved, but so has the technology and agronomy of brewing.

\n\n

Malt variety, yield, and efficiency

\n\n
    \n
  • Crop science has increased the size of barley kernels and the amount of starches available to convert to sugar. The common grain at the time was 6-row malt, today the most common brewing barley is 2-row.
  • \n
  • Understanding of the malting process has drastically improved. Today we understand how to get perfectly malted barley. Historically the malt would have been over or under modified. Under modified would have lots of unconverted starch which would leave a hazy beer that tasted rather bready. Over modified malt would would have no starch, but less sugar than possible so the resulting beer may lack body.
  • \n
  • Kiln dryers allow for greater variety of malt. By controlling the heat cycle, the same variety of barley can make different malt. Drying the grain in medieval times consisted of heating it over a fire. Fire dried grains would have a smokey flavor that would be present in the beer. The traditional Scottish Ale uses malt that has been dried over a fire where the fuel is peat, which is a very distinct smoke flavor. The fire also was not nearly as exact or even as a modern kiln so some kernels would be burnt and other may be under cooked, so to speak.
  • \n
\n\n

Water

\n\n
    \n
  • Needless to say, but water purity is drastcally better today than in the 6th-15th centuries. Because the brewing process boils the water, the beer was safer to drink than the water. Hence the patron saint of brewers said \"Drink beer, not water.\"
  • \n
  • Dissolved mineral content of water and pH control. Medieval brewers had the water that they had. Today, a brewer can start with distilled water and add whatever minerals they desire to change the flavor profile and pH of the mash. The water pH can effect the mash efficiency and fermentation profile of the beer. This lack of water control lead to specific styles coming from specific areas. I.E. Burton upon Trent is known for pale ales, Pilsen for golden pilsners, Munich for malty lagers.Some water source mineral content.
  • \n
\n\n

Hops

\n\n
    \n
  • Ancient beers were not hoppy. Hops were not used extensively in beer until about the 12th century and were not cultivated en mass until about the 13th century. Most beers older than that were bittered with Gruit..
  • \n
  • The hops that were used were not high in bittering acids. The oldest common hop varieties are the Noble hops. Just like today, costs of ingredients was a major factor in brewing. Making a really hoppy beer was prohibitively expensive. Just compare an English IPA brewed from old recipes vs. an American IPA.
  • \n
\n\n

Yeast and Microbiology

\n\n
    \n
  • This is where modern technology really helps out. Louis Pasteur discovered yeast in 1857. Up until that time, the changing of sugar into alcohol was considered magic or an act of god. It was understood that the foam on top of a fermenting wort could be passed around to other vats of wort to start the process (Krausening). Others would transfer Magic Sticks from batch to batch to start fermentation.
  • \n
  • There are other microorganisms that can inhabit beer. Brettanomyces, Lactobacillus, and Pediococcus to name a few. These can cause a sour, acidic flavor in beer. Some ancient breweries would just let the cold night air in through an open window in order to cool the freshly boiled wort, exposing the warm sugar solution to whatever might land on it.
  • \n
\n\n

Technology

\n\n
    \n
  • Thermometers - The temperature of the mash can affect the fermentabilty of the wort. The temperature of the malting and drying affect the sugar content of malted barley.
  • \n
  • Chemical cleaners - All of the brewing equipment is sanitary. Modern living through chemistry.
  • \n
  • Food storage/availability - I can get whatever ingredients I want, whenever I need them.
  • \n
  • Refrigeration - I can cool the wort in controlled conditions. Beer can travel farther. I can ferment at optimal yeast temperature.
  • \n
  • More than can possibly be named...
  • \n
\n\n

The Result?

\n\n
    \n
  • Ancient beers would be sweeter and thicker than today's thanks to less fermentable sugars in the wort due to inconsistencies in the brewing process, and inconsistencies in the malting process and poor yeast/microorganism control. The alcohol content would be lower as well.
  • \n
  • Ancient beers would not be hoppy.
  • \n
  • Ancient beers would have to be drunk quickly before they spoiled. The other bugs in the beer would turn the beer bad after a few weeks. This also prevented the beer from traveling very from from the brewery.
  • \n
  • Ancient beers could vary greatly, batch to batch. The brewers of the times were very skilled with what they could work with, but they were constrained by what ingredients they could use, whether by law or availability. Flavor can be affected by fermentation temperature, so a hot day in December could ruin my beer.
  • \n
  • Ancient beers were dependent on the season. When was the grain harvested? When is it cool enough to ferment?
  • \n
\n\n

Probably more information than you need, but hopefully it helps.

\n", "OwnerUserId": "4637", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2016-02-19T17:09:15.807", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4844"}} +{ "Id": "4844", "PostTypeId": "1", "CreationDate": "2016-02-19T22:46:44.867", "Score": "3", "ViewCount": "120", "Body": "

I'm looking to order some beer online from some Trappist Belgian breweries. Shipping internationally, obviously, to Washington State in the USA. What are the best (e.g., cheapest, most reliable) sites from which to order?

\n\n

Edit: This is for Trappist Breweries that don't distribute to the US (e.g., Westvleteren, Cantillon)

\n", "OwnerUserId": "5107", "LastEditorUserId": "5107", "LastEditDate": "2016-02-20T01:21:38.967", "LastActivityDate": "2016-10-24T20:31:02.537", "Title": "Ordering Beer from Belgium", "Tags": "trappist", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4845"}} +{ "Id": "4845", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-02-19T23:04:33.770", "Score": "6", "Body": "

There are many Jalapeno beers out there. Here is a list of the top 50 rated beers brewed with jalapeno (source):

\n\n
    \n
  1. Arizona Wilderness American Presidential Stout
  2. \n
  3. Indeed / Northbound Hot Box Imperial Smoked Pepper Porter
  4. \n
  5. Stone Smoked Porter - Chipotle Peppers
  6. \n
  7. Two Henrys Roasted Jalapeño Blueberry Porter
  8. \n
  9. Fate (AZ) Chocolate Chili Milk Stout - Jalapeño
  10. \n
  11. Trois Dames / Six Point Jalapenos Raspberry Double
  12. \n
  13. Alaskan Pilot Series: Jalapeño Imperial IPA
  14. \n
  15. Jaipur Jalapeño Ale
  16. \n
  17. Tempest Chipotle Spiced Extra Porter
  18. \n
  19. 5 Stones Aloha Piña
  20. \n
  21. Birdsong Jalapeno Pale
  22. \n
  23. Grand River Jubilation Spiced Ale 2008 Retired
  24. \n
  25. Country Boy Jalapeno Smoked Porter
  26. \n
  27. Angry Chair Byron IPA - Pineapple and Jalapeño
  28. \n
  29. COAST Dave Brown
  30. \n
  31. Country Boy Jalapeno Smoked Porter XXX
  32. \n
  33. Asheville Fire Escape
  34. \n
  35. Coronado Señor Saison
  36. \n
  37. Urban Artifact Harrow (Orange, Jalapeno)
  38. \n
  39. Evil Twin Spicy Nachos Retired
  40. \n
  41. Cigar City Strawberry Jalapeño PB&J Double Cream Ale
  42. \n
  43. Banger El Heffe
  44. \n
  45. Fate (AZ) Jalapeño Cream Ale
  46. \n
  47. Wasatch Jalapeño Cream Ale
  48. \n
  49. Fairhope Shallow Jalapeño
  50. \n
  51. Manayunk Black Eye P. A.
  52. \n
  53. Cigar City Jalapeño Peach Pale Ale
  54. \n
  55. Barley Browns Hot Blonde
  56. \n
  57. Kuhnhenn Jalapeño Lime Mead
  58. \n
  59. Cigar City Florida Cracker - Raspberry & Jalapeño
  60. \n
  61. Cigar City Jalapeño Red
  62. \n
  63. Town Hall Chipotle Wee Heavy
  64. \n
  65. Old Ox Kristin’s Temper: Jalapeno Pale Ale
  66. \n
  67. Pizza Port Carlsbad Raceway IPA - Roasted Pineapple & Jalapeño
  68. \n
  69. Swamp Head Smoke Signal Porter - Chipotle
  70. \n
  71. Steam Plant Jalapeno Ale
  72. \n
  73. Throwback Spicy Bohemian
  74. \n
  75. Waikiki Jalapeño Mouth
  76. \n
  77. Breaker Mine Fire Blackberry Jalapeño Ale
  78. \n
  79. Seven Bridges Maple Jalapeno Stout
  80. \n
  81. Pizza Port Night Rider - Tequila, Jalapeño & Chocolate Retired
  82. \n
  83. Golden City Javapeño Stout Retired
  84. \n
  85. Ballast Point Smoke Screen Helles - Jalapeño
  86. \n
  87. Original Gravity 440 Pepper Smoker
  88. \n
  89. No Label Don Jalapeno Ale
  90. \n
  91. Horseheads Hot-Jala-Heim
  92. \n
  93. Nickel Back Country Gold - Jalapeño
  94. \n
  95. Black Forest Jalepeno Pilsener
  96. \n
  97. Rogue Chipotle Ale
  98. \n
  99. Fort George Spank Stout
  100. \n
\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-19T23:04:33.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4846"}} +{ "Id": "4846", "PostTypeId": "2", "ParentId": "4844", "CreationDate": "2016-02-20T01:18:34.500", "Score": "1", "Body": "

Why do you want to have Belgium Trappist beers or ales shipped from all that distance?

\n\n

I live in BC and visit Bevmo several times a year in Bellingham, Washington. There are 10 Bevmo outlets in the State of Washington. They carry Belgium Trappist beer and ales. If a particular store does not have the variety on location, they will order it for you from another branch. This can be done online! I would only order internationally if the particular variety could not be purchased in the USA.

\n\n

Here is the link to Bevmo.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-10-21T12:16:04.493", "LastActivityDate": "2016-10-21T12:16:04.493", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4848"}} +{ "Id": "4848", "PostTypeId": "2", "ParentId": "4844", "CreationDate": "2016-02-20T16:05:03.297", "Score": "0", "Body": "

I think Westvleteren will not really be possible. It is already very hard to get them here in belgium. One has to register by phone to get a date and hour. You can only reserve 2 crates (42 euros each) and this at most once every 60 days per phone number and car. It is very rare for them to even sell it somewhere other than the brewery.

\n", "OwnerUserId": "4938", "LastActivityDate": "2016-02-20T16:05:03.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4850"}} +{ "Id": "4850", "PostTypeId": "1", "CreationDate": "2016-02-21T17:03:34.817", "Score": "2", "ViewCount": "2422", "Body": "

I love Erdinger and wheat beers in general, after trying some of Erdginers others types I wondered what other beer out there is close to Erdinger taste

\n", "OwnerUserId": "5113", "LastActivityDate": "2016-03-01T02:25:43.253", "Title": "What is the closest tasting beer to Erdinger?", "Tags": "taste", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4851"}} +{ "Id": "4851", "PostTypeId": "2", "ParentId": "4829", "CreationDate": "2016-02-21T21:30:32.360", "Score": "-1", "Body": "

Beer manufacturing and ingredients are free from 'trefa' suspect and do not require special examination. All beers are kosher.

\n", "OwnerUserId": "5114", "LastActivityDate": "2016-02-21T21:30:32.360", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4852"}} +{ "Id": "4852", "PostTypeId": "1", "CreationDate": "2016-02-22T21:35:02.357", "Score": "3", "ViewCount": "273", "Body": "

My Guinness is mixing into my harp and not staying seperated! Any trouble shooting ideas? Half and half trouble!

\n", "OwnerUserId": "5121", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:37:38.017", "LastActivityDate": "2016-07-28T14:37:38.017", "Title": "My Guinness is mixing into my harp and not staying separated, any trouble shooting ideas?", "Tags": "beer-cocktails", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4853"}} +{ "Id": "4853", "PostTypeId": "2", "ParentId": "4852", "CreationDate": "2016-02-22T23:56:10.573", "Score": "2", "Body": "

Here are some troubleshooting tips I've found (source):

\n\n
\n

Hold your pint glass at an angle, and fill just over halfway with Harp\n or Bass.

\n \n

Rest the spoon upside down over the center of the glass, and pour the\n Draught Guinness over the spoon which will evenly disperse the flow\n and keep the Guinness from mixing -- the Guinness needs to be on the\n top.

\n \n

Serve while the nitro is still cascading.

\n
\n\n

If they're mixing, my guess is that the Guinness is not being poured carefully enough, so that would be where I'd start.

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-22T23:56:10.573", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4854"}} +{ "Id": "4854", "PostTypeId": "1", "CreationDate": "2016-02-23T08:39:42.907", "Score": "-1", "ViewCount": "1510", "Body": "

Basically looking for some examples of funny/ innuendo beer names for inspiration.

\n\n

There are some great ones here: Beer Brands: The Ultimate List of the 50 Funniest, Stupidest and Best Beer Names...In The World, Ever.

\n", "OwnerUserId": "5122", "LastEditorUserId": "5064", "LastEditDate": "2016-10-18T22:32:21.280", "LastActivityDate": "2016-10-18T22:32:21.280", "Title": "What are some good examples of double entendre beer names?", "Tags": "drinking", "AnswerCount": "4", "CommentCount": "1", "ClosedDate": "2016-04-07T18:30:09.727", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4856"}} +{ "Id": "4856", "PostTypeId": "2", "ParentId": "4854", "CreationDate": "2016-02-23T15:38:00.857", "Score": "4", "Body": "
    \n
  1. \"Fucking Hell\" of course. \"Hell\" is German word for \"pale\" and Fucking is a village in Austria (pronounced \"foo-king\").
  2. \n
\n\n

\"Fucking

\n\n
    \n
  1. There is a Belgian beer named \"Mort subite\" which means \"Sudden death\". It's not that bad though that your days are counted after you drink it - I have drunk it and i'm still alive :)
  2. \n
\n", "OwnerUserId": "4742", "LastEditorUserId": "4742", "LastEditDate": "2016-02-23T16:54:13.650", "LastActivityDate": "2016-02-23T16:54:13.650", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4857"}} +{ "Id": "4857", "PostTypeId": "2", "ParentId": "4854", "CreationDate": "2016-02-23T23:41:13.467", "Score": "1", "Body": "

If you're an IPA fan, it seems that brewers are almost required to make some hops-related pun when naming their beer. Here's a small handful of ones I've had:

\n\n\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-23T23:41:13.467", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4858"}} +{ "Id": "4858", "PostTypeId": "1", "AcceptedAnswerId": "4862", "CreationDate": "2016-02-24T04:29:27.803", "Score": "6", "ViewCount": "225", "Body": "

I find most ciders to be a bit too sweet for my tastes. Most of the lineup from Woodchuck is on the sweet side. I like most of the Crispin Cider lineup.

\n\n

Does anyone have any recommendations for dry cider that is available in the United States?

\n", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2016-02-24T04:39:54.570", "LastActivityDate": "2018-09-14T19:15:28.087", "Title": "Dry Cider recommendations", "Tags": "recommendations cider", "AnswerCount": "4", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4859"}} +{ "Id": "4859", "PostTypeId": "5", "CreationDate": "2016-02-24T05:00:04.977", "Score": "0", "Body": "

Questions that reference alcoholic drinks made by fermenting fruit juices. Common examples are Apple cider or Pear cider (sometimes called Perry).

\n", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2016-02-24T10:15:28.480", "LastActivityDate": "2016-02-24T10:15:28.480", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4860"}} +{ "Id": "4860", "PostTypeId": "4", "CreationDate": "2016-02-24T05:00:04.977", "Score": "0", "Body": "Apple, pear or other fruit fermentation.", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2016-02-24T10:15:00.040", "LastActivityDate": "2016-02-24T10:15:00.040", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4861"}} +{ "Id": "4861", "PostTypeId": "2", "ParentId": "4858", "CreationDate": "2016-02-24T18:53:15.523", "Score": "0", "Body": "

Thatcher's Gold is now available in the US. While it is a reasonably dry cider if they start to ship some of the single Apple variety ciders then they tend to the dry side. My personal favourite is Katy.

\n", "OwnerUserId": "4394", "LastActivityDate": "2016-02-24T18:53:15.523", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4862"}} +{ "Id": "4862", "PostTypeId": "2", "ParentId": "4858", "CreationDate": "2016-02-24T23:20:03.323", "Score": "7", "Body": "

I'm not a huge cider fan myself, but you should check out the Ace ciders. One of the drier ones I appreciated was Ace Joker Dry, which should be pretty ubiquitous and findable where you are.

\n\n

And if price isn't a big deal (as you indicated), here is a list of the top 50 dry ciders:

\n\n
    \n
  1. ÆppelTreow Sparrow Spiced Cider
  2. \n
  3. Sea Cider Wild English
  4. \n
  5. Snowdrift Cornice Cider
  6. \n
  7. Russell New England Dry Cider
  8. \n
  9. Left Field Little Dry Cider
  10. \n
  11. Michel Jodoin Cuvée Blanc de Pépin (Fort)
  12. \n
  13. Castle Hill Levity
  14. \n
  15. Spire Mountain Dark & Dry Apple Cider
  16. \n
  17. Potter’s Craft Farmhouse Dry
  18. \n
  19. Mt Defiance Old Volstead’s Cider
  20. \n
  21. Urban Orchard Ginger Champagne
  22. \n
  23. Cydr Ignaców
  24. \n
  25. Farnum Hill Extra-Dry Cider
  26. \n
  27. Castle Hill Celestial Merret
  28. \n
  29. Wilkins Cider - Dry (Draught)
  30. \n
  31. Snowdrift Dry Cider
  32. \n
  33. Swamp Donkey Dry Cider
  34. \n
  35. Wandering Aengus Ciderworks Oaked Dry Cider
  36. \n
  37. Albemarle Ciderworks Royal Pippin
  38. \n
  39. L’Hermitière Cidre Brut
  40. \n
  41. Applewood Naked Flock Draft Cider
  42. \n
  43. Luscombe Farm Organic Devon Dry Cider
  44. \n
  45. Albemarle Ciderworks Pomme Mary
  46. \n
  47. Hartlands Dry Cider
  48. \n
  49. MacIvors Traditional Dry Cider (Bottle)
  50. \n
  51. Brickworks Batch 1904
  52. \n
  53. Castle Hill Gravity
  54. \n
  55. Hopkins Vineyard Off-Dry Cider
  56. \n
  57. Black Mac Traditional Dry Cider Retired
  58. \n
  59. Noble Cider The Standard Bearer
  60. \n
  61. Blue Bee Gold Dominion
  62. \n
  63. Baron Noir Sparkling Dry Cider
  64. \n
  65. Eaglemount Homestead Dry Cider
  66. \n
  67. Oliver’s Cider - Dry (Draught)
  68. \n
  69. Malvern Magic Wapping Dry Cider (Draught)
  70. \n
  71. Burrow Hill Stoke Red Bottle Fermented Sparkling Dry Cider (Bottle)
  72. \n
  73. Henney’s Frome Valley Herefordshire Dry Cider (Bottle)
  74. \n
  75. Double Vision Cider - Dry (Draught)
  76. \n
  77. Potter’s Craft O’Tannenbaum!
  78. \n
  79. Cascade / Cider Riot! Rising Tide
  80. \n
  81. Troggi Bowmore Whiskey Cask Dry Cider
  82. \n
  83. Butford Farm Craft Dry Cider (Bottle)
  84. \n
  85. Cornish Orchards Veryan Dry Cider Retired
  86. \n
  87. Troggi Old Dry Cider
  88. \n
  89. Blue Bee Hopsap Shandy (Apple Brandy Barrel)
  90. \n
  91. Mill House Farm Dry Cider
  92. \n
  93. Small Acres Sparkling Dry Cider
  94. \n
  95. CJs Dry Cider
  96. \n
  97. Leprechaun Dry Cider
  98. \n
  99. West Avenue Heritage Dry Cider
  100. \n
\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-24T23:20:03.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4863"}} +{ "Id": "4863", "PostTypeId": "1", "CreationDate": "2016-02-25T10:56:09.437", "Score": "5", "ViewCount": "326", "Body": "

I usually brew my own beer. I prefer IPA (American) to all other styles. I like more carbonated beers (with CO2 volume >4, refer to the chart -http://www.drinktanks.com/wp-content/uploads/2015/02/CARBONATION_CHART_DRINKTANKS.png). Would an overcarbonated hoppy (IBU >70) ale qualify as an IPA or would that be a completely different style?

\n\n

Thank you.

\n", "OwnerUserId": "5138", "LastActivityDate": "2016-02-25T17:07:36.473", "Title": "Is overcarbonated IPA an IPA or a different style?", "Tags": "ipa", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4864"}} +{ "Id": "4864", "PostTypeId": "2", "ParentId": "4858", "CreationDate": "2016-02-25T16:15:25.207", "Score": "0", "Body": "

Where are you located? There is a nice cider made in Niagara-on-the-Lake, Ontario, Canada at Sunnybrook called Ironwood.

\n", "OwnerUserId": "5141", "LastActivityDate": "2016-02-25T16:15:25.207", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4865"}} +{ "Id": "4865", "PostTypeId": "2", "ParentId": "4770", "CreationDate": "2016-02-25T16:42:27.627", "Score": "2", "Body": "

Welcome to Scoville from Jailbreak is a great beer. Beer Advocate

\n\n

\"Welcome

\n", "OwnerUserId": "5142", "LastActivityDate": "2016-02-25T16:42:27.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4866"}} +{ "Id": "4866", "PostTypeId": "2", "ParentId": "4863", "CreationDate": "2016-02-25T17:07:36.473", "Score": "3", "Body": "

I would argue that an overcarbonated IPA is still an IPA. IPAs are characterized by the intense hoppy aroma, a malt backbone, and color. The carbonation level isn't referred to in style guides, generally.

\n\n\n\n

What I believe you're doing is creating a slightly more sour IPA. With more dissolved CO2 in the beer, you're creating slight amounts of carbonic acid, and acids make things a bit more sour. Seems like a pretty cool variant of an IPA, actually.

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-25T17:07:36.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4867"}} +{ "Id": "4867", "PostTypeId": "1", "AcceptedAnswerId": "4868", "CreationDate": "2016-02-25T19:51:48.930", "Score": "5", "ViewCount": "27970", "Body": "

I've only tried IPAS once, but when I can regularly drink 6 beers without feeling any type of alcohol in my system, it only took one and a half pints for me to feel the alcohol kicking in when drinking the IPA. I just know what it stands for but I have 0 knowledge about them, are they beers? how are they much stronger than regular beers?

\n", "OwnerUserId": "5144", "LastActivityDate": "2020-11-16T23:16:12.960", "Title": "What makes IPAS stronger than \"regular\" beers", "Tags": "ipa", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4868"}} +{ "Id": "4868", "PostTypeId": "2", "ParentId": "4867", "CreationDate": "2016-02-25T20:16:07.823", "Score": "7", "Body": "

Answer to the easiest part of the question: Yes, IPAs (India Pale Ales) are beers.

\n\n

Unfortunately, there isn't a clear and concise answer to the rest of you question.

\n\n

Let's assume, for the sake of argument, that by \"regular beer\", you mean Budweiser. Budweiser sits at 5% ABV. IPAs are often in the 5-7% ABV range, so let's call an \"average\" IPA 6%. You will feel the alcohol substantially more quickly in the 6% IPA than in the 5% Budweiser.

\n\n

Lifehacker has a nice article that explains this phenomenon well, but it boils down to the rate at which your body can process alcohol. Suppose that 1% ABV corresponded to 1 \"alcohol unit.\" If, for example, your body could process 4.5 alcohol units/hour, after 6 pints of a 5% ABV beer (1/hr), you'd have 3 alcohol units left in your body [(5.0-4.5)*6]. However, you'd reach the same mark after only 2 beers (1/hr) of a 6% ABV beer [(6-4.5)*2].

\n\n

TL;DR Version: It probably has to do with the beer's ABV you were drinking.

\n\n

Side note: There is a lot of variability in strength within any given style. If you like IPAs, you should check out Session IPAs - They are IPAs designed to be lower in ABV than the average IPA, so you can drink more of them in a drinking \"session.\" For a list of the top Session IPAs and more information on the style, check out Ratebeer's Session IPA page.

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-25T20:16:07.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4869"}} +{ "Id": "4869", "PostTypeId": "1", "AcceptedAnswerId": "4883", "CreationDate": "2016-02-25T22:15:33.670", "Score": "17", "ViewCount": "17831", "Body": "

One of the recent trends I've noticed is that breweries are starting to come out with Triple IPAs. (In fact, there's a triple IPA week in the Seattle area.) But what exactly distinguishes the Triple IPA from a Double IPA?

\n\n

[Note that this was not included in IPA and variants question, nor is it discussed in the IPA vs. DIPA sweetness question.]

\n\n

Edit: This is decidedly NOT the same as the question regarding dubbels vs. tripels (which are Abbey-style Belgian ales, and remarkably different in style from a double or triple IPA).

\n", "OwnerUserId": "5107", "LastEditorUserId": "-1", "LastEditDate": "2017-04-12T07:33:59.100", "LastActivityDate": "2016-02-28T18:59:46.423", "Title": "What's the difference between a Triple IPA and a Double IPA?", "Tags": "style ipa imperial-ipa", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4870"}} +{ "Id": "4870", "PostTypeId": "2", "ParentId": "4837", "CreationDate": "2016-02-26T01:00:10.930", "Score": "5", "Body": "

As far as I know it is only sold on dark Lord day at the brewery and you need to buy tickets. I've only had it once from someone who went.

\n\n

Three Floyds Brewing cuts off packaged sales on Dark Lord Day

\n", "OwnerUserId": "5145", "LastEditorUserId": "5064", "LastEditDate": "2017-04-13T22:18:24.593", "LastActivityDate": "2017-04-13T22:18:24.593", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4871"}} +{ "Id": "4871", "PostTypeId": "1", "AcceptedAnswerId": "4881", "CreationDate": "2016-02-26T12:52:31.850", "Score": "4", "ViewCount": "367", "Body": "

I have been drinking the Hitachino Nest White Ale for some time, but I find it quite hard to get in the UK. I have been trying to find an alternative which is similar in taste.

\n\n

It is similar to a Belgian Wheat Beer, but very light and citrusy. I like many Belgian Wheat Beers or Whit Beers like Blance de Namur, and more popular ones like Hoegaarden. They are very nice, but I am looking for a more light and citrusy version similar to the Hitachino to try.

\n\n

Does anyone have any recommendations?

\n", "OwnerUserId": "5147", "LastActivityDate": "2016-02-27T18:00:53.583", "Title": "Similar beers to Hitachino Nest White Ale", "Tags": "recommendations", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4875"}} +{ "Id": "4875", "PostTypeId": "2", "ParentId": "4854", "CreationDate": "2016-02-26T15:22:40.623", "Score": "1", "Body": "

A Schwarzbier called \"Use The Schwarz\"

\n", "OwnerUserId": "5150", "LastActivityDate": "2016-02-26T15:22:40.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4877"}} +{ "Id": "4877", "PostTypeId": "2", "ParentId": "4869", "CreationDate": "2016-02-26T17:47:54.313", "Score": "5", "Body": "

The beer judge certification program style guides seem to imply they are the same. You can get more details at bjcp.org. The text below is from the 2015 guidelines double IPA category, 22A.

\n\n

Comments: A showcase for hops, yet remaining quite \ndrinkable. The adjective “double\" is arbitrary and simply \nimplies a stronger version of an IPA; “imperial,” “extra,” \n“extreme,” or any other variety of adjectives would be equally \nvalid, although the modern American market seems to have \nnow coalesced around the “double” term.

\n", "OwnerUserId": "5145", "LastActivityDate": "2016-02-26T17:47:54.313", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4879"}} +{ "Id": "4879", "PostTypeId": "5", "CreationDate": "2016-02-27T04:43:36.400", "Score": "0", "Body": "

The act of making beer is called brewing.

\n\n
\n

Brewing is the production of beer by steeping a starch source (commonly cereal grains, the most popular of which is barley) in water and fermenting the resulting sweet liquid with yeast. It may be done in a brewery by a commercial brewer, at home by a homebrewer, or by a variety of traditional methods such as communally by the indigenous peoples in Brazil when making cauim. Brewing has taken place since around the 6th millennium BC, and archaeological evidence suggests that emerging civilizations, including ancient Egypt and Mesopotamia, brewed beer. Since the nineteenth century the brewing industry has been part of most western economies.

\n \n

The basic ingredients of beer are water and a fermentable starch source such as malted barley. Most beer is fermented with a brewer's yeast and flavoured with hops. Less widely used starch sources include millet, sorghum and cassava. Secondary sources (adjuncts), such as maize (corn), rice, or sugar, may also be used, sometimes to reduce cost, or to add a feature, such as adding wheat to aid in retaining the foamy head of the beer. The most common starch source is ground cereal or \"grist\" - the proportion of the starch or cereal ingredients in a beer recipe may be called grist, grain bill, or simply mash ingredients.

\n \n

Steps in the brewing process include malting, milling, mashing, lautering, boiling, fermenting, conditioning, filtering, and packaging. There are three main fermentation methods, warm, cool and spontaneous. Fermentation may take place in an open or closed fermenting vessel; a secondary fermentation may also occur in the cask or bottle. There are several additional brewing methods, such as Burtonisation, barrel-ageing, double dropping, and Yorkshire Square.

\n
\n", "OwnerUserId": "-1", "LastEditorUserId": "5064", "LastEditDate": "2020-03-03T00:02:28.600", "LastActivityDate": "2020-03-03T00:02:28.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4880"}} +{ "Id": "4880", "PostTypeId": "4", "CreationDate": "2016-02-27T04:43:36.400", "Score": "0", "Body": "Questions on the act of making beer.", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2016-02-27T15:18:35.857", "LastActivityDate": "2016-02-27T15:18:35.857", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4881"}} +{ "Id": "4881", "PostTypeId": "2", "ParentId": "4871", "CreationDate": "2016-02-27T18:00:53.583", "Score": "2", "Body": "

That's a tough question. Most of the witbiers I've had are locally distributed in the US, so you'll never find them in the UK.

\n\n

Here are two lighter ones with a nice citrus kick that you might be able to get your hands on:

\n\n
    \n
  1. St. Bernardus Blanche (Witbier)
  2. \n
  3. Ommegang Witte
  4. \n
\n", "OwnerUserId": "5107", "LastActivityDate": "2016-02-27T18:00:53.583", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4883"}} +{ "Id": "4883", "PostTypeId": "2", "ParentId": "4869", "CreationDate": "2016-02-28T18:59:46.423", "Score": "7", "Body": "

A bit obvious, but it's just about more malt and hops (which results in higher ABV and IBU levels, off course).

\n\n

Particularly, I don't see it becoming a new style, as our palate has a limit when it comes to tasting bitterness and even smelling hop oils. I think we have already reached this limit sometime ago when Imperial IPAs were conceived. So, anything beyond that seems like a silly obsession to me, and probably the best that one can get from a \"triple IPA\" is to come up with a good Imperial/Double IPA with (maybe) more alcohol, nothing more.

\n\n

PS: Dogfish's 120 Minute IPA would be a quadruple IPA, then?

\n", "OwnerUserId": "4338", "LastActivityDate": "2016-02-28T18:59:46.423", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4885"}} +{ "Id": "4885", "PostTypeId": "2", "ParentId": "4813", "CreationDate": "2016-03-01T01:48:13.067", "Score": "1", "Body": "

Found this little tidbit the other day: Ten Weird Wonderful foods for Lent.

\n\n

Rauchbier, or “smoke beer,” is made using malts that have been dried over fire—-thus gaining the smoky taste of cured meats like ham and bacon. At one time all beers malts were produced over fire, but in medieval Bavaria beers of this type came to be associated with Lent when the rich, smoky tones of meat were dearly missed. There is, of course, an official blessing for beer (“Bless, O Lord, this creature beer . . . ”) which one may safely assume is more efficacious in the original Latin: ” Benedic, Domine, creaturam istam cerevisiae, quam ex adipe frumenti producere dignatus es: ut sit remedium salutare humano generi, et praesta per invocationem nominis tui sancti; ut, quicumque ex ea biberint, sanitatem corpus et animae tutelam percipiant. Per Christum Dominum nostrum. Amen. ”

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-03-01T01:48:13.067", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4886"}} +{ "Id": "4886", "PostTypeId": "2", "ParentId": "4850", "CreationDate": "2016-03-01T02:15:57.590", "Score": "2", "Body": "

I assume you're talking about the Erdinger hefeweissbier. This is a good example of the beer style known as German-style wheat beer / BJCP category 15A.

\n\n

It also goes by the names: Weizen, Weissbier (Weißbier), Wheat beer, etc. etc.

\n\n

Lots of German breweries produce great examples of this style of beer: Weihenstephan, Franziskaner, Schneider, Aying. I believe that if you like Erdinger, many of these companies' wheat beers will be to your liking.

\n\n

IMHO the closet to Erdinger Hefeweissbier would be from Franziskaner (obviously this is a very subjective assertion, YMMV). It would be interesting to line some of these up for a taste-difference test.

\n\n

But you may be able to find German-style wheat beers brewed in many other countries. Do not be confused with an \"American Style Wheat-beer\" / BJCP Category 6D. This is a significantly different sort of beer.

\n\n

Given your liking of these sorts of beers, you might also enjoy Belgian style wheat beers, collectively known as Witbier.

\n", "OwnerUserId": "5160", "LastEditorUserId": "5160", "LastEditDate": "2016-03-01T02:25:43.253", "LastActivityDate": "2016-03-01T02:25:43.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4887"}} +{ "Id": "4887", "PostTypeId": "2", "ParentId": "22", "CreationDate": "2016-03-01T03:01:28.910", "Score": "3", "Body": "

Studies have shown a correlation between a foods presentation and the perceived goodness of the taste. So even excepting the usual reasons for matching a beer style to a glass style (head retention, aroma dispersal, etc.), presenting a beer in a good looking vessel will enhance its taste.

\n\n\n", "OwnerUserId": "5160", "LastActivityDate": "2016-03-01T03:01:28.910", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4888"}} +{ "Id": "4888", "PostTypeId": "2", "ParentId": "4813", "CreationDate": "2016-03-01T21:56:51.557", "Score": "1", "Body": "

There was a brewer that went on a beer only diet several years ago.

\n\n

Here is the CNN article

\n\n

It was an interesting read and provides some backstory on why heavier beers are sometimes associated with Lent.

\n", "OwnerUserId": "5165", "LastActivityDate": "2016-03-01T21:56:51.557", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4889"}} +{ "Id": "4889", "PostTypeId": "2", "ParentId": "4854", "CreationDate": "2016-03-01T22:01:57.560", "Score": "1", "Body": "

Flying Dog has Doggie Style Pale Ale, Pearl Necklace Chesapeake Stout, and Raging Bitch Belgian-Style IPA as examples of their more colorful beer names.

\n", "OwnerUserId": "5165", "LastActivityDate": "2016-03-01T22:01:57.560", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4890"}} +{ "Id": "4890", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-03-02T03:04:20.167", "Score": "2", "Body": "

In Denver CO, Trve Brewing collaborates with a variety of metal bands for some if their beers. There's also Black Sky and Black Shirt Brewing.

\n\n

Then there's the E40 malt liquor, but I forget who brews it.

\n", "OwnerUserId": "27", "LastEditorUserId": "27", "LastEditDate": "2016-03-02T17:09:52.790", "LastActivityDate": "2016-03-02T17:09:52.790", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4893"}} +{ "Id": "4893", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-03-03T13:09:52.120", "Score": "3", "Body": "

In Russia we have ARIA (АРИЯ) heavy metal band branded beer, made by Faxe. Marketing way of Faxe. As presentation of this event the band played a concert right at the Faxe brewery.\n\"enter

\n", "OwnerUserId": "5178", "LastActivityDate": "2016-03-03T13:09:52.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4894"}} +{ "Id": "4894", "PostTypeId": "1", "AcceptedAnswerId": "4895", "CreationDate": "2016-03-03T15:02:42.197", "Score": "8", "ViewCount": "274", "Body": "

I was wondering if there are certain combinations of beer and food go perfect together in my own experience I have found that Negra Modelo goes really well with Mexican food

\n\n

do you guys know of any other really good combinations ?

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-06-14T07:32:44.977", "LastActivityDate": "2019-08-29T21:14:51.640", "Title": "Different Beer with Different food", "Tags": "taste pairing", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4895"}} +{ "Id": "4895", "PostTypeId": "2", "ParentId": "4894", "CreationDate": "2016-03-03T18:35:06.520", "Score": "9", "Body": "

Beer and food pairings have an entire subculture, not unlike wine. On both Ratebeer and Beer Advocate, there are entire forums dedicated to beer and food pairing. Honestly, there are an infinite number of combinations.

\n\n

One thing I've heard is that a lot of chefs really like pale lagers. Not because the pale lagers themselves are all that amazing (personally, I'm not a fan of them), but they present a neutral palate, which allows them to pair well with most dishes.

\n\n

Personally, two of my favorite pairings are hoppy IPAs with spicy food, and imperial stouts with desserts (especially if they are chocolate-based). IPAs complement the spice and help cut the heat of the spicy food. And the dark roastiness of the imperial stouts really complements the sweetness of dessert.

\n\n

The infographic below is from craftbeer.com and contains their recommendations on food and beer pairing. I tend to like what it suggests.

\n\n

\"Craftbeer.com's

\n", "OwnerUserId": "5107", "LastActivityDate": "2016-03-03T18:35:06.520", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4896"}} +{ "Id": "4896", "PostTypeId": "2", "ParentId": "4867", "CreationDate": "2016-03-06T00:44:55.430", "Score": "1", "Body": "

An IPA style beer has an ABV from 6% on the low end to 10% on the high end, although the higher alcohol ones are labeled as Double IPA of Imperial.

\n\n

That is probably more substantial than \"regular\" beer, however that is defined.

\n\n

Another thing to consider is the body of an IPA. It will tend to be more malty and thicker than say a Budweiser and that will also affect how you feel.

\n", "OwnerUserId": "3901", "LastActivityDate": "2016-03-06T00:44:55.430", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4897"}} +{ "Id": "4897", "PostTypeId": "2", "ParentId": "85", "CreationDate": "2016-03-06T04:31:53.773", "Score": "-1", "Body": "

Lighter beers typically pair well with fish. Darker beers are much better with steak then seafood.

\n", "OwnerUserId": "5086", "LastActivityDate": "2016-03-06T04:31:53.773", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4898"}} +{ "Id": "4898", "PostTypeId": "2", "ParentId": "4816", "CreationDate": "2016-03-07T00:19:43.393", "Score": "2", "Body": "

In Texas, Real Ale brewed Iron Swan Ale for The Sword. They followed that up with another Sword branded beer, Ghost Eye.

\n", "OwnerUserId": "5187", "LastActivityDate": "2016-03-07T00:19:43.393", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4900"}} +{ "Id": "4900", "PostTypeId": "1", "AcceptedAnswerId": "4901", "CreationDate": "2016-03-24T09:28:38.067", "Score": "6", "ViewCount": "1868", "Body": "

In The Netherlands, the law also prevents selling alcohol free beer to minors.

\n\n

What can be reasons for this? Is alcohol free beer also addictive, and does it therefore attract minors to much to alcoholic beer? Or does alcohol free beer contain a substance that is also harmful to the (young) brain?

\n", "OwnerDisplayName": "user5232", "LastEditorDisplayName": "user5232", "LastEditDate": "2016-03-25T16:31:43.907", "LastActivityDate": "2019-01-07T13:49:44.480", "Title": "What are reasons to not sell alcohol free beer to minors?", "Tags": "health laws non-alcoholic", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4901"}} +{ "Id": "4901", "PostTypeId": "2", "ParentId": "4900", "CreationDate": "2016-03-24T14:28:25.107", "Score": "5", "Body": "

Alcohol free beer is not non-alcoholic, it does still contain some alcohol. It often contains around about 0,5%. A beer can be called alcohol-free from 1%.

\n\n

To specifically respond to your situation I could not find any source saying that the Netherlands have an age restriction on alcohol-free beer. On the contrary the following sources indicate the opposite.

\n\n

Sources (Dutch of course):

\n\n

Ik ben 17 jaar, mag ik alcoholvrij bier kopen?

\n\n

Mogen jongeren onder de 16 alcoholvrij bier kopen?

\n", "OwnerUserId": "4938", "LastEditorUserId": "5064", "LastEditDate": "2019-01-07T13:49:44.480", "LastActivityDate": "2019-01-07T13:49:44.480", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4902"}} +{ "Id": "4902", "PostTypeId": "2", "ParentId": "868", "CreationDate": "2016-03-28T12:37:38.773", "Score": "1", "Body": "

\"Green\" refers to the flavor of the beer. Under-matured beer can have a green apple aroma called Acetaldehyde. IT is reduced by yeast in the maturation phase.

\n", "OwnerUserId": "5247", "LastActivityDate": "2016-03-28T12:37:38.773", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4903"}} +{ "Id": "4903", "PostTypeId": "2", "ParentId": "4900", "CreationDate": "2016-03-29T08:24:21.523", "Score": "4", "Body": "

It is also often seen as a gateway if you let kids buy bottles of lets say Becks Blue it gets them in to drinking at a young age and as a younger body is still not fully developed it can lead to health issues or dependency on alcohol from an early age so it really comes down to not enough research on how a younger body can processes it and it is really hard to get that research done as we don't really want to be giving alcohol to kids

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-03-29T08:24:21.523", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4904"}} +{ "Id": "4904", "PostTypeId": "2", "ParentId": "4852", "CreationDate": "2016-03-29T14:33:44.027", "Score": "0", "Body": "

If you want you can spend a little bit of money and get a Beer layering Tool I have on of these and it is really helpful almost impossible to mess up

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-03-29T14:33:44.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4906"}} +{ "Id": "4906", "PostTypeId": "1", "CreationDate": "2016-03-31T17:50:51.583", "Score": "8", "ViewCount": "9651", "Body": "

I was just in Ireland on holiday and obviously went to some pubs. Of course Guinness is everywhere there. While in Dublin, I got advice that a common drink was not only regular Guinness though, but 'Guinness with a Smithwicks head' and any barman would know it. So I tried it out, it was fine, nothing special.

\n\n

Now I'm home and I Googled guinness with a smithwicks head and there are like no results. So my question is: Is this really a common Irish drink or is this just something they tell visitors so it's easier to spot the tourists?

\n", "OwnerUserId": "5268", "LastEditorUserId": "5064", "LastEditDate": "2016-04-01T01:17:45.400", "LastActivityDate": "2017-10-01T06:24:01.940", "Title": "How common is Guinness with a Smithwicks head in Ireland?", "Tags": "local", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4907"}} +{ "Id": "4907", "PostTypeId": "1", "AcceptedAnswerId": "4909", "CreationDate": "2016-04-02T02:51:41.993", "Score": "7", "ViewCount": "11096", "Body": "

I've seen both refered to as IPA, which is the real IPA and how are they different?

\n", "OwnerUserId": "5272", "LastActivityDate": "2016-04-07T01:06:13.237", "Title": "What's the difference between imperial pale ale and indian pale ale?", "Tags": "ipa imperial-ipa", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4909"}} +{ "Id": "4909", "PostTypeId": "2", "ParentId": "4907", "CreationDate": "2016-04-02T04:03:13.163", "Score": "6", "Body": "

Most often, if you see IPA, it's an \"India pale ale\".

\n\n

\"Imperial pale ale\" is an informal, descriptive style (i.e., a strong pale ale), whereas \"india pale ale\" is a BJCP recognized style. India pale ales are primarily understood as a hopped-up version of a pale ale, made to withstand long travels. Beers with an \"imperial\" nomenclature (typically synonymous with \"double\") are brewed to be a stronger, higher ABV -- think double IPAs, imperial stouts, etc.

\n", "OwnerUserId": "27", "LastActivityDate": "2016-04-02T04:03:13.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4911"}} +{ "Id": "4911", "PostTypeId": "1", "CreationDate": "2016-04-03T00:11:00.517", "Score": "8", "ViewCount": "5047", "Body": "

I bought a 6 pack of milk stout by left hand off the shelf and it was warm. Upon looking on the bottle, it says \"Please Keep Refrigerated.\" Is this beer okay to be stored on the shelf?

\n", "OwnerUserId": "5278", "LastEditorUserId": "887", "LastEditDate": "2016-04-06T16:21:42.223", "LastActivityDate": "2016-04-06T16:21:42.223", "Title": "Is it okay to store milk stout on the shelf?", "Tags": "storage temperature stout", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4912"}} +{ "Id": "4912", "PostTypeId": "2", "ParentId": "4867", "CreationDate": "2016-04-05T00:54:23.923", "Score": "1", "Body": "

For a variety of reasons, IPA's are generally brewed with higher specific gravities, resulting in a higher (on average) alcohol content by volume.

\n\n

wikipedia

\n", "OwnerUserId": "5280", "LastActivityDate": "2016-04-05T00:54:23.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4914"}} +{ "Id": "4914", "PostTypeId": "2", "ParentId": "4867", "CreationDate": "2016-04-05T03:07:29.853", "Score": "1", "Body": "

Without getting too technical, just as others have stated the alcohol content will vary from a traditional run of the mill beer like Budweiser vs something craft like an ipa. The ipa tends to run a little higher in alcohol by volume than Budweiser or similar brands. For example I can down 4-5 modelos Negra without feeling took buzzed but this year I tried pumpkinator and it only too 2 to get me buzzed the ABV is 10% for the pumpkinator vs 5.4% for the modelo

\n", "OwnerUserId": "5282", "LastEditorUserId": "5282", "LastEditDate": "2016-04-07T02:32:08.470", "LastActivityDate": "2016-04-07T02:32:08.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4920"}} +{ "Id": "4920", "PostTypeId": "2", "ParentId": "4911", "CreationDate": "2016-04-06T08:43:30.897", "Score": "3", "Body": "

It won't hurt you, lactose (the 'key' ingredient of milk stouts) doesn't need to be refrigerated the way actual milk does. However, it is advisable to keep milk stouts refrigerated for two reasons:

\n\n

1) They generally don't age particularly well, so keeping them in the fridge will best preserve the taste.

\n\n

2) If a milk stout isn't pasteurized the lactose can provide unfermented carbohydrates for infections to feast on if any bacteria is present. But keeping it in the fridge will drastically slow down any potential infection.

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-04-06T08:43:30.897", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4921"}} +{ "Id": "4921", "PostTypeId": "2", "ParentId": "4906", "CreationDate": "2016-04-06T08:49:55.190", "Score": "-2", "Body": "

It is quite common but is usually Known as Black and Tan.

\n\n

So searching Guinness with a Smithwicks head wont get you a lot of results, but Black and Tan is a quite common drink

\n\n

Although as far as I know, it originated in England - but was linked to Ireland with its ties to the Royal Irish Constabulary Reserve Force, which was sent into Ireland in the early 1920s and nicknamed the Black and Tans.

\n\n
\n

The Black and Tan almost certainly came from England, and the first\n written mention of the drink comes from the Oxford English Dictionary\n in 1889.

\n
\n\n

More information on Black and Tan

\n\n

Extra information

\n", "OwnerUserId": "5078", "LastEditorUserId": "6042", "LastEditDate": "2016-10-24T19:36:56.577", "LastActivityDate": "2016-10-24T19:36:56.577", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4922"}} +{ "Id": "4922", "PostTypeId": "1", "AcceptedAnswerId": "4926", "CreationDate": "2016-04-06T20:27:29.817", "Score": "8", "ViewCount": "2628", "Body": "

I would like to start this hobby however I don't know how hard is to do it in a semi desert climate. Should I have a place with cool temperature to avoid spoiling the brew?

\n", "OwnerUserId": "5294", "LastEditorUserId": "6509", "LastEditDate": "2017-03-06T07:55:58.793", "LastActivityDate": "2017-03-06T07:55:58.793", "Title": "How hard is to brew beer in a hot climate?", "Tags": "brewing", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4923"}} +{ "Id": "4923", "PostTypeId": "1", "AcceptedAnswerId": "4925", "CreationDate": "2016-04-06T21:32:35.107", "Score": "10", "ViewCount": "335", "Body": "

Last night two of my friends were having this huge argument on which was the proper way to make your beer bottles cold. One said in the freezer cause they're kept at some point dry, and the other one claimed that it was better in ice since they're more in contact with the freezing agent.

\n\n

I personally think it doesn't really matter(I'd still drink both anyways) but out of curiosity, is there really a best way to freeze your beers?

\n", "OwnerUserId": "5144", "LastActivityDate": "2019-05-20T08:15:13.937", "Title": "Most effective way to freeze beer bottles", "Tags": "storage", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4924"}} +{ "Id": "4924", "PostTypeId": "2", "ParentId": "4745", "CreationDate": "2016-04-07T00:16:42.043", "Score": "2", "Body": "

The short answer is No.

\n\n

Ian Horney in \"A History of Beer and Brewing\" makes this claim[0]. But it is not backed up by evidence. Henry VIII's beer brewer John Pope was given special dispensation to hire more than four foreign workers for the household brewery[1]. So at least Henry VIII's court brewed their own beer.

\n\n

The various laws are being used to differentiate between Ale and Beer. Ale being made with a selection of herbs known as a \"gruit\" - that must not contain hops. Whereas beer was flavoured with hops (and possibly other herbs). The generic use of hops was never banned[2], but the use of hops in ale was controlled.

\n\n

[0] http://zythophile.co.uk/false-ale-quotes/myth-two-hops-were-forbidden-by-henry-vi/

\n\n

[1] Terry Breverton \"The Tudor Kitchen: What the Tudors Ate & Drank\", Ch 3.

\n\n

[2] http://www.beerscenemag.com/2010/04/the-short-and-bitter-history-of-hops/

\n", "OwnerUserId": "5160", "LastActivityDate": "2016-04-07T00:16:42.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4925"}} +{ "Id": "4925", "PostTypeId": "2", "ParentId": "4923", "CreationDate": "2016-04-07T00:42:11.100", "Score": "15", "Body": "

Well you're going to be the genius here, because as it turns out, they're both wrong.

\n\n

First, we're going to eliminate \"novel\" options for cooling, like liquid nitrogen and fire extinguishers, and limit ourselves to ways we can cool bottles every day in the freezer.

\n\n

What we need to maximize here is thermal conductivity. Since the goal here is homeostasis, we need to move heat out of the bottle and into the surrounding medium as quickly as possible. And air, as it turns out, is a pretty lousy conductor. So that makes your first friend most wrong. Keeping the bottle dry will cool it eventually, but quite slowly. However, ice isn't that much better. Because there's a lot of air still touching the bottle when it's in ice. It'll cool it better, but it's certainly still not the best option.

\n\n

The best option, it turns out, is an ice water mixture, with a healthy dose of salt to help keep the water liquid, even below 0 degrees Celsius. Water happens to be an excellent conductor, and with ice to keep it cold and salt to keep it liquid, can draw heat out of bottles faster than any other non-exotic method, by a significant margin.

\n\n

So, if you want to cool your bottles quickly. and ice-water bath is the ticket.

\n", "OwnerUserId": "37", "LastEditorUserId": "37", "LastEditDate": "2016-04-12T00:25:40.117", "LastActivityDate": "2016-04-12T00:25:40.117", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4926"}} +{ "Id": "4926", "PostTypeId": "2", "ParentId": "4922", "CreationDate": "2016-04-07T00:44:00.157", "Score": "9", "Body": "

Generally - yes.

\n\n

A large part of the flavour of the beer comes from esters produced by the yeast during fermentation. There are many different varieties of yeast, and each has a differing set of esters it produces.

\n\n

The problem arises in that as temperatures increase the yeast ferments and grows much more rapidly, and can produce different and/or too many esters, in addition to fusel alcohols.

\n\n

Most packs of brewer's ale yeasts will have a temperature range on the back, say something like 18-25°C {1}. However, unless one is brewing a beer style that warrants it (like a \"Saison\") the general rule is to keep the beer fermenting below 20°C. Ideally, 18-19°C is best. (You don't want to go too low either, at < 15°C, ale yeast may go dormant - but that's another answer.)

\n\n

So, what can you do?

\n\n
    \n
  • Brew only in winter.
  • \n
  • Find a spot in your house, a cave, whatever that maintains this temperature.
  • \n
  • Immerse your fermenter in a larger vessel of water:

    \n\n
      \n
    • Find a vessel significantly larger than your fermenter. Bathtub, laundry sink, plastic barrel, etc.
    • \n
    • Put your fermenter inside this, fill the space with water. Drape a cloth, towel, t-shirt, over the fermenter such that it wicks-up the water. This cools by evaporation.
    • \n
    • Add blocks of ice a few times a day, as necessary.
    • \n
  • \n
  • Modify an old freezer (or 'fridge) with a temperature controller:

    \n\n
      \n
    • A device like an STC-1000 allows one to simply set the temperature wanted inside the 'fridge and it monitors and adjusts the temperature by turning the electricity on and off.
    • \n
    • Some variants of these have the controller mounted in a box with a pair of domestic sockets, so the 'fridge doesn't need to be modified, just plugged in. (the temperature probe still has to go inside though).
    • \n
  • \n
\n\n

I personally brew in a hot climate (some Autumn & Spring, and most Summer days are > 30°C), and have used all these methods with varying levels of success. They are ordered from least-successful to most-successful.

\n\n

{1} Just because the yeast pack says it's OK at 25°C, doesn't mean it produces good beer at this temperature. I expect some people will disagree with me on this. Ultimately it's a matter of preference, and I think keeping fermentation temperatures < 20°C is good advice for a beginner.

\n", "OwnerUserId": "5160", "LastEditorUserId": "5160", "LastEditDate": "2016-04-07T01:48:30.413", "LastActivityDate": "2016-04-07T01:48:30.413", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4927"}} +{ "Id": "4927", "PostTypeId": "2", "ParentId": "4894", "CreationDate": "2016-04-07T00:50:43.070", "Score": "1", "Body": "

For a good spicy curry I like significantly hop-forward beer, like a big IPA.

\n", "OwnerUserId": "5160", "LastActivityDate": "2016-04-07T00:50:43.070", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4928"}} +{ "Id": "4928", "PostTypeId": "2", "ParentId": "4907", "CreationDate": "2016-04-07T01:06:13.237", "Score": "3", "Body": "

[English] India Pale Ales (BJCP Style 14A) were shipped to India (and elsewhere) during the late 18th Century.

\n\n

[American] India Pale Ales (BJCP Style 14C) are significantly different.

\n\n

Imperial Pale Ales (BJCP Style 14C) refer to a relatively stronger (in alcohol) beer. They are a modern invention by American Craft Brewers.

\n\n

The \"Imperial\" part of the name though, has some interesting history.

\n\n

During the 1698-1700's \"Porter\" beer was exported from England to the court of Russia. However during initial shipment, the long journey ruined the beer. Barklay's Brewery in London significantly increased both the alcohol and hops in the beer to help it prevent spoilage during the trip. This beer became known as \"Russian Imperial Stout\".

\n", "OwnerUserId": "5160", "LastActivityDate": "2016-04-07T01:06:13.237", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4929"}} +{ "Id": "4929", "PostTypeId": "1", "CreationDate": "2016-04-07T01:48:01.740", "Score": "7", "ViewCount": "2293", "Body": "

Cabernet Sauvignon is a varietal more suitable for aging, but are the any general guidelines for the ideal age, or is it highly variable?

\n\n

Specifically I'm interested in finding out if there are general rules around how long after bottling before you should drink it, and how long it can stay in the bottle before you should drink it. And if the guidelines are variable, what are some of the factors that come into play?

\n", "OwnerUserId": "37", "LastEditorUserId": "43", "LastEditDate": "2016-06-03T14:35:30.367", "LastActivityDate": "2016-11-17T17:10:06.770", "Title": "Guidelines for aging Cabernet Sauvignon", "Tags": "aging red-wine", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4930"}} +{ "Id": "4930", "PostTypeId": "1", "AcceptedAnswerId": "4948", "CreationDate": "2016-04-07T02:24:12.177", "Score": "14", "ViewCount": "1378", "Body": "

Whisk[e]y varieties often have significant differences in how long they are aged. While there are always exceptions, Bourbon is often aged for 5-10 years. Scotch, on the other hand, is more commonly aged for 10-20 years. Why is this?

\n", "OwnerUserId": "37", "LastActivityDate": "2016-04-10T23:10:32.580", "Title": "What are the factors that determine how long whisky is aged?", "Tags": "aging whiskey", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4931"}} +{ "Id": "4931", "PostTypeId": "1", "CreationDate": "2016-04-07T02:30:29.733", "Score": "6", "ViewCount": "7146", "Body": "

I recently came across a bottle of Pino Grigio that's a few years old (label says 2012, and that's probably when it was bought). We usually only break out a bottle of wine for guests or a special occasion -- exactly the wrong time to find out that it's way past its use-by date. We're usually more prompt in our consumption; this was an oversight.

\n\n

I have the impression that whites are more fragile than reds in this regard, and that less-dry wines are more fragile than drier ones. (Please correct any misunderstandings.) How likely is it that I could serve this wine to people I like? More generally, how long is too long?

\n\n

The wine has been stored at room temperature in a room that isn't too hot (but isn't a cellar either), away from light.

\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2016-06-03T14:34:37.663", "LastActivityDate": "2016-06-03T14:34:37.663", "Title": "What is the shelf life for (unopened) Pino Grigio?", "Tags": "age", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4932"}} +{ "Id": "4932", "PostTypeId": "2", "ParentId": "4922", "CreationDate": "2016-04-07T05:10:49.283", "Score": "4", "Body": "

Some beer styles are less sensitive to temp than others, strong ales or hefeweizens would do better than lagers for example. In my opinion, if you are serious about brewing you want consistency. To achieve consistency you need a temp controlled storage. Get an old freezer or fridge and a kit from ebay/amazon and you can maintain 70F on the cheap...

\n", "OwnerUserId": "5193", "LastActivityDate": "2016-04-07T05:10:49.283", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4933"}} +{ "Id": "4933", "PostTypeId": "2", "ParentId": "4931", "CreationDate": "2016-04-07T07:54:28.453", "Score": "3", "Body": "

It’s tough to generalize, but most crisp whites have a best-before date of roughly two years from the vintage date on the label.

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-04-07T07:54:28.453", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4934"}} +{ "Id": "4934", "PostTypeId": "2", "ParentId": "4930", "CreationDate": "2016-04-07T08:01:41.710", "Score": "8", "Body": "

Aging or 'Finishing' is an extension of the maturation process, when the spirit is subsequently filled into empty casks that previously held other\nwines or spirits for a further relatively short period at the end of maturation.

\n\n
\n

The selection of casks can affect the character of the final whisky.\n Outside of the United States, the most common practice is to reuse\n casks that previously contained American whiskey, as US law requires\n several types of distilled spirits to be aged in new oak casks. To\n ensure continuity of supply of used oak casks some Scottish distilling\n groups own oak forests in the US and rent the new barrels to bourbon\n producers for first fill use. Bourbon casks impart a characteristic\n vanilla flavour to the whisky.

\n
\n\n

so really the longer you age the whiskey the more of the flavor you are going to capture form the cask

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-04-07T08:01:41.710", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4936"}} +{ "Id": "4936", "PostTypeId": "1", "AcceptedAnswerId": "5028", "CreationDate": "2016-04-07T14:26:19.973", "Score": "3", "ViewCount": "566", "Body": "

A while ago I was told that I should choose my tequilas carefully since ones are meant to be drank on their own(not chased, not mixed) and others (supposedly cause they're lower quality) can and should be mixed. So now that the scope of the site has been changed I feel like I can now ask this here.

\n\n

So what are the characteristics I should look for in a tequila(other than price) to learn how to differentiate a good-for-drinks tequila from a drink-it-on-its-own one?

\n", "OwnerUserId": "5144", "LastEditorUserId": "971", "LastEditDate": "2016-04-07T17:30:57.440", "LastActivityDate": "2016-05-24T17:29:27.267", "Title": "How to know which tequila should be for drinks and which one meant to be drank on its own", "Tags": "taste tequila", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4937"}} +{ "Id": "4937", "PostTypeId": "1", "AcceptedAnswerId": "4938", "CreationDate": "2016-04-07T16:55:10.323", "Score": "10", "ViewCount": "523", "Body": "

How long does an opened bottle of wine last in the refrigerator?

\n\n

(Simply plugging the cork back in that is, and not using any vacuum contraption.)

\n", "OwnerUserId": "73", "LastActivityDate": "2018-10-30T11:51:42.653", "Title": "How long does an opened bottle of wine last in the fridge?", "Tags": "storage freshness wine", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4938"}} +{ "Id": "4938", "PostTypeId": "2", "ParentId": "4937", "CreationDate": "2016-04-07T17:57:04.650", "Score": "10", "Body": "

The Life of Wine (after opening)

\n\n

The short answer is approximately 3-5 days, but it all depends on the type of wine. There are a number of factors at play when it comes to the life of wine, after it has been opened.

\n\n

These include acetic acid bacteria that consumes the alcohol in wine and metabolizes it into acetic acid and acetaldehyde. This causes the wine to have a sharp, vinegar-like smell. Additionally, the alcohol can oxidize, causing a nutty, bruised fruit taste, that robs the wine of fresh, fruity flavors. These are both chemical reactions, and so the lower the temperature you keep a wine at, the slower this will happen.

\n\n

Please see link for full reference and detailed breakdown of How long wine lasts after opening: How Long Does an Open Bottle of Wine Last?

\n", "OwnerUserId": "5297", "LastEditorUserId": "5064", "LastEditDate": "2018-10-30T11:51:42.653", "LastActivityDate": "2018-10-30T11:51:42.653", "CommentCount": "8", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4940"}} +{ "Id": "4940", "PostTypeId": "2", "ParentId": "4930", "CreationDate": "2016-04-07T22:36:13.537", "Score": "6", "Body": "

First, we have to understand why we age whiskey in the first place. It's primarily to extract compounds from the wood of the barrels (and any previous contents) so that they can add flavor and complexity to the final product.

\n\n

From there, there are several factors that determine how long a typical aging period might be.

\n\n
    \n
  1. If the wood in the barrels is new, or has been previously used. Bourbon, which is typically aged as few as 4 years is aged in casks of new wood, meaning there are more compounds in the wood to be extracted, and they can be extracted more quickly. Scotch, on the other hand, which is often aged from 10-25 years, is aged in previously used barrels, so it takes longer to extract the desired level of flavoring compounds.

  2. \n
  3. How much flavor you want the wood to add to the finished product. A Rye, aged for 10 years, is going to have a lot more oak than you would want in say, an Anejo Tequila, which will often be aged for just a year or two.

  4. \n
  5. The type of wood can have an impact as well. Most whiskeys are aged in American or French oak, but if other woods are used, a tighter grain, or different wood chemistry can mean that you need more time in the barrel to the get the flavors that you want.

  6. \n
\n", "OwnerUserId": "37", "LastActivityDate": "2016-04-07T22:36:13.537", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4942"}} +{ "Id": "4942", "PostTypeId": "2", "ParentId": "60", "CreationDate": "2016-04-08T13:32:13.527", "Score": "3", "Body": "

Here's a good link regarding yeast, now this article is talking about candida but can likely apply to other strains of yeast

\n\n

http://www.needs.com/product/NDNL-0704-01/a_Probiotics

\n\n

In a nut shell, a definite answer is not always easy to come by in medicine since many factors can give different results. Anything from the make up of your intestinal flora, your diet, to medications you take can have different affects that may be causing bloating or excessive flatulance. To answer your question, yes it could be the yeast activity but also it may be an intolerance to the yeast itself, also the bacteria in your intestines may not like the \"new\" yeast introduced and may produce additional toxins. Or a combination of all this plus more.

\n", "OwnerUserId": "5282", "LastActivityDate": "2016-04-08T13:32:13.527", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4943"}} +{ "Id": "4943", "PostTypeId": "2", "ParentId": "4936", "CreationDate": "2016-04-08T13:57:39.007", "Score": "5", "Body": "

Tequila has come a long way from when it was 1st manufactured, back in the day the traditional way to drink tequila was in a shot glass because it actually did taste like you were drinking paint stripper!... this is not the case anymore, now some tequila is drank from wide mouth cups and sipped like wine or a really nice bourbon. Contrary to popular belief tequila doest always give you the craziest hang over, at least not the newer tequilas since they are better quality, that is, if you are drinking real tequila. Real tequila is made from the agave plant and depending on the region grown in Mexico ( south, north) will have a slight different taste. Sometimes you may find tequilas that say mixto or mixed, stay away from these types since they are not pure tequila and should not be drank without mixing it in a cocktail or mix drink. This mixto tequila will not taste as good and will give you a crappy headache the next day. There are different types of aging process for tequilas. There is the silver, gold or aged and extra aged, all have distinct flavors and undertones. Here is a good link with some tequila information and history also for tasting.\nSo if the bottle says mixed or mixto then it's for mixing and should not be drank alone unless you want to feel like a truck hit you the next day.\nAny other kind of real tequila should be ok, it all depends on taste and preference. \nJust remember that the first swig you take is suppose to burn, lol enjoy!

\n\n

This is just my opinion, but on a personal note, patron is over hyped and you can find way\nBetter quality tequilas at a better price. I personally like casamigos the brand by George clooney it's actually pretty good, also Don Julio and Herradura are good.

\n", "OwnerUserId": "5282", "LastEditorUserId": "5064", "LastEditDate": "2016-05-11T15:55:18.780", "LastActivityDate": "2016-05-11T15:55:18.780", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4944"}} +{ "Id": "4944", "PostTypeId": "2", "ParentId": "81", "CreationDate": "2016-04-08T14:20:07.173", "Score": "1", "Body": "

Without getting technical, I think it really depends on the individual person just as much as the science behind it, hence the articles from previous posts. I have known females that will get extremely aroused just by drinking one or two sips of alcohol, this is due to the fact that these individuals actually had a very satisfying encounter with alcohol and sex, others may be put off if the experience was bad. I think quantity is key to sex and alcohol. Drinking alcohol impairs judgement and can make a person more out going and take more risk too much drinking can lead to passing out or getting the o' limp noodle despite the fact that you want to have intercourse. I guess there is not an exact scientific answer.

\n", "OwnerUserId": "5282", "LastActivityDate": "2016-04-08T14:20:07.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4945"}} +{ "Id": "4945", "PostTypeId": "2", "ParentId": "4936", "CreationDate": "2016-04-08T18:03:34.023", "Score": "1", "Body": "

A general rule when it comes to liquor is that if it's a cheap, generic version of it's type then it's probably better mixed into a cocktail. This is because the cocktail masks the poor quality of the liquor, but you still get the kick of the alcohol.

\n\n

On the other hand, if it's a high quality version of the liquor then the reason you should buy that liquor is for its own merits. For instance, I'd never buy a 100 dollar bottle of Scotch and mix it with ginger-ale, would be a big waste of money.

\n\n

That said, alcohol is subjective so if you like drinking a cheap tequila straight that's your prerogative. In general, which you mix and which you drink straight is a matter of your own taste and research on what's a 'good' tequila.

\n", "OwnerUserId": "938", "LastActivityDate": "2016-04-08T18:03:34.023", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4947"}} +{ "Id": "4947", "PostTypeId": "1", "AcceptedAnswerId": "4955", "CreationDate": "2016-04-09T15:50:01.817", "Score": "5", "ViewCount": "53", "Body": "

My first batch of beer was very complicated with lots of different ingredients and to be honest I wasn't even sure exactly what I was doing. In my second batch I decided to go \"neutral,\" making a smaller batch (5 liters) and used only Pilsner, only Saaz and single infusion (to see the impact of each ingredient, and from there evolve). The beer is ready but now I'm kind of clueless to where to go. Is there any other way to see the impact of each ingredient without actually brewing a batch? I want to know how temperature, yeast, malt, etc. act on the beer.

\n", "OwnerUserId": "5306", "LastEditorUserId": "73", "LastEditDate": "2016-04-10T22:59:30.043", "LastActivityDate": "2016-04-15T08:50:14.683", "Title": "Alternative ways to know the impact of ingredients", "Tags": "hops yeast malt", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4948"}} +{ "Id": "4948", "PostTypeId": "2", "ParentId": "4930", "CreationDate": "2016-04-10T23:01:36.503", "Score": "3", "Body": "

A true Scotch whisky has to be aged at least 5 years to qualify as whisky. Beyond that, the factors that change over time are:

\n\n
    \n
  • colour
  • \n
  • nose
  • \n
  • flavour
  • \n
\n\n

The whisky takes on these from the wood, and from the previous contents. So for a really well rounded whisky, especially for a full bodies peaty, smoky whisky, that age is essential. That said, there are some amazing young whiskies, and some older whiskies that aren't as nice, so this comes down to taste,

\n\n

In fact there is a current furore in the industry about No Age Statement whiskies, as various blends are being sold off young, potentially putting the longer term whiskies in jeopardy as volumes will be necessarily reduced in the long term, becuase of a drive for shorter term profits...

\n\n
    \n
  • The alcohol content decreases as the Angel's Share leaves the cask over the years.
  • \n
\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2016-04-10T23:10:32.580", "LastActivityDate": "2016-04-10T23:10:32.580", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4949"}} +{ "Id": "4949", "PostTypeId": "2", "ParentId": "4931", "CreationDate": "2016-04-11T20:03:00.390", "Score": "3", "Body": "

Open and smell and you will know right away. If it smells OK then give it a taste. If it has gone bad you will know.

\n\n

A couple years as answered by Jamie.

\n\n

In the fridge I have stored over two years and it was fine. If you don't drink your white fast then best to store it in the fridge. Even if you drink them fast then store in the fridge as they are best served chilled.

\n\n

Whites (that I know of) don't get better with age so no reason age them.

\n\n

If it has gone bad then you can use it as white wine vinegar.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-04-11T20:30:50.327", "LastActivityDate": "2016-04-11T20:30:50.327", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4950"}} +{ "Id": "4950", "PostTypeId": "2", "ParentId": "4936", "CreationDate": "2016-04-11T22:03:43.513", "Score": "1", "Body": "

For the most part more expensive tequila is better. For drinking go with 100% agave. For drinking most people prefer gold.

\n\n

For margaritas mid to low end tequila seems to be just fine (I can't tell the difference). I think fresh squeezed lime does more for a margarita than expensive tequila. Most people prefer silver in margaritas. I went to a party once and the guy was serving Patron and a margaritas mix - I was like dude time to skip the mix.

\n\n

The big names are good but they also charge a premium.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-04-11T23:19:31.890", "LastActivityDate": "2016-04-11T23:19:31.890", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4951"}} +{ "Id": "4951", "PostTypeId": "2", "ParentId": "4929", "CreationDate": "2016-04-11T22:12:12.673", "Score": "2", "Body": "

Way variable. On the high end even from year to year the same vineyard and same grape will vary how long to hold. When it is released the vineyard and others will have a recommendation. On the shelf at the liquor store is often ready to drink. High end wine that is going to be put up is often bought out before it even hits the shelves. Some wine that still needs to age does hit the shelfs.

\n\n

Wineries will typically hold some back to mature. Follow when they release it. But that often goes to high end restaurants.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-04-11T22:17:40.380", "LastActivityDate": "2016-04-11T22:17:40.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4952"}} +{ "Id": "4952", "PostTypeId": "1", "AcceptedAnswerId": "4957", "CreationDate": "2016-04-14T15:27:04.803", "Score": "13", "ViewCount": "321", "Body": "

I was always told that if I was going to cook with wine just buy a cheap bottle as it makes no difference once you cook away the alcohol.

\n\n

Is this true or would a more expensive bottle give me more flavor in the food? Is there a big enough different to warrant spending a bit more money on a expensive wine rather than the cheaper bottle?

\n", "OwnerUserId": "5078", "LastActivityDate": "2021-09-03T20:39:25.273", "Title": "Cooking with wine", "Tags": "cooking wine", "AnswerCount": "4", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4953"}} +{ "Id": "4953", "PostTypeId": "2", "ParentId": "4952", "CreationDate": "2016-04-14T19:43:18.790", "Score": "6", "Body": "

Yes the alcohol cooks off but the flavor is not in the alcohol.

\n\n

If you would not drink it then don't cook with it. The flavor of the wine will come through.

\n\n

For me I do not cook with an expensive full body red as then just too much comes through.

\n\n

More about grape and just get a decent wine.

\n\n

Like Chardonnay with clams you would get some oak coming through with a nicer bottle but I am not going to spend more than $12 on cooking wine.

\n\n

You don't use that much. You can just use the wine you would pair with the meal. I don't drink much white so I will typically use the wine I am serving with the meal.

\n\n

A pork chop with onion and peppers I will use a $4 red bottle I would drink.

\n\n

Another trick is if they are starting to go bad then cooking wine. But wine rarely stays around long enough to go bad at my house.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-04-17T01:31:28.327", "LastActivityDate": "2016-04-17T01:31:28.327", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4954"}} +{ "Id": "4954", "PostTypeId": "2", "ParentId": "4952", "CreationDate": "2016-04-14T19:44:43.680", "Score": "7", "Body": "

The more expensive bit is not true, but the type of wine does make a dramatic difference to the taste imparted to your food.

\n\n

As an extreme example compare cooking a steak with a light white wine sauce to cooking it with a heavy Merlot.

\n\n

Even within a particular grape, there are differences in how full or heavy the taste is.

\n\n

So don't worry about the price (go for a cheap one) and instead think about what flavours you want to go into your food.

\n", "OwnerUserId": "187", "LastActivityDate": "2016-04-14T19:44:43.680", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4955"}} +{ "Id": "4955", "PostTypeId": "2", "ParentId": "4947", "CreationDate": "2016-04-15T08:50:14.683", "Score": "2", "Body": "

This discussion would be more suitable in the homebrew stack as Andrew said, but I will answer it anyway.

\n\n

You are on the right track, making a simple pilsner recipe will show you the effects of the malt, yeast, water and hops.

\n\n

There is a technique called SMASH (single malt, single hops), which is widely used to \"test\" the effect of a new ingredient. It is pretty much exactly what you are doing.

\n\n

The best technique: brew as often as possible. Be critical of your beer. Get a BJCP judge (or similar) to try your beer and give you feedback.

\n\n

Relax, dont worry, have a homebrew. (Papasian).

\n", "OwnerUserId": "984", "LastActivityDate": "2016-04-15T08:50:14.683", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4956"}} +{ "Id": "4956", "PostTypeId": "1", "AcceptedAnswerId": "4963", "CreationDate": "2016-04-16T01:47:05.063", "Score": "11", "ViewCount": "1623", "Body": "

I've never liked the taste of Guinness, on tap or from the can. But I have heard that it's much better tasting in Ireland, and the export one is completely different. Is there any truth to this, and if so, what are the differences?

\n", "OwnerUserId": "5328", "LastActivityDate": "2016-04-26T01:31:03.313", "Title": "Is Guinness really different in Ireland, compared to what's sold in the US?", "Tags": "taste", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4957"}} +{ "Id": "4957", "PostTypeId": "2", "ParentId": "4952", "CreationDate": "2016-04-16T02:26:42.923", "Score": "9", "Body": "

It all depends on what you are making and what you are drinking!

\n

Some people reach for the cheap bottle that's in the door of the fridge when making a braise, where the wine will cook for a long time.

\n

Others use the type of wine you’d serve with dinner to make the dish. Even better, unless you’re pouring something rare or expensive, buy an extra bottle and cook with it. When you’re cooking with red wine, watch out for tannins. When concentrated in reduction sauces, they can become harsh. Fortunately, proteins found in meat and dairy declaw tannins like milk does tea.

\n

Wines contains sugars, acids, and tannins, and each of these will show up on the plate. Subtle characteristics, by contrast, normally disappear with cooking. To maintain balance, check your recipe for acidic ingredients like lemon juice or vinegar and cut back to make room for the acid in the wine. This is especially crucial when cooking with white wine. For delicate fish or vegetables, a dry non-oaked wine works best. If your recipe is packed with onions, carrots and tomatoes, there will be plenty of sugars in the pot, so cooking with a fuller-bodied, less dry red or white wine can integrate perfectly.

\n

For deeper flavors, experiment with fortified wines like Port, Sherry, Madeira and Marsala. Michael Schachner offers some helpful tips and recipes on cooking with fortified wine in this piece.

\n

Cook with a wine you would drink. Do not use a wine to cook if you would never drink it in a glass or serve it with food.

\n

• Start with a basic red or white wine. An example of a good white to cook with is Sauvignon Blanc. Try Chianti or Cabernet Sauvignon for a red.

\n

• Avoid using wines that are labeled "cooking wines." These wines contain a lot of salt and other additives and you would never drink them in a glass.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-07-08T15:31:14.540", "LastActivityDate": "2021-07-08T15:31:14.540", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4958"}} +{ "Id": "4958", "PostTypeId": "1", "AcceptedAnswerId": "4969", "CreationDate": "2016-04-19T10:56:17.947", "Score": "9", "ViewCount": "169", "Body": "

Some whiskys (for example Deanston 12 ) say on their label that they are \"Un-Chill filtered\" and in the example case follow that up with \"exactly as it should be\" which implies that there are some negative effects to chill-filtering whisky.

\n\n

What are the effects (positive and negative) of Chill-Filtering whisky?

\n", "OwnerUserId": "5296", "LastActivityDate": "2019-01-25T10:27:00.230", "Title": "What's the effect of Chill-filtering on Whisky?", "Tags": "whiskey", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4959"}} +{ "Id": "4959", "PostTypeId": "1", "AcceptedAnswerId": "4960", "CreationDate": "2016-04-19T11:10:37.977", "Score": "11", "ViewCount": "969", "Body": "

In the Scottish whisky market there has been a level of controversy over the last couple of years relating to \"Non Age Statement\" (a.k.a NAS) whisky.

\n\n

Several of the leading distillers now have NAS whisky in their line-ups for example Glenlivet Founders Reserve or Macallan Gold .

\n\n

This has led to critism of the distillers that they're trying to pass off younger spirit at a premium price.

\n\n

I was wondering what the pros and cons of NAS whiskies are?

\n", "OwnerUserId": "5296", "LastActivityDate": "2018-11-06T01:59:33.597", "Title": "What are the pros and cons of \"Non Age Statement\" Whisky", "Tags": "whiskey", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4960"}} +{ "Id": "4960", "PostTypeId": "2", "ParentId": "4959", "CreationDate": "2016-04-19T14:56:36.287", "Score": "9", "Body": "

It would seem like you hit the nail on the head:

\n\n

The main benefit would be that distillers can put out whisky that's younger and still charge a higher price.

\n\n

In the Scotch market age isn't just a sign of quality, it's also a sign of status. Rich people will spend a lot of money on bottles that are as old as 25 to 50 years, even if there is a very minimal difference in the actual flavour of the tipple. This means that an age statement can lend itself to a lot of profitability, or lack thereof.

\n\n

By excluding age statements that allows distillers to put out product faster, and not have to correlate their pricing model with age necessarily.

\n\n

The cons to a distiller would be very minimal as the average consumer doesn't think too much about this type of thing, knowledge about whisky is typically very low. The only real con is to a consumer that may be getting fleeced by marketing tactics.

\n", "OwnerUserId": "938", "LastActivityDate": "2016-04-19T14:56:36.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4961"}} +{ "Id": "4961", "PostTypeId": "2", "ParentId": "4923", "CreationDate": "2016-04-19T15:41:30.973", "Score": "2", "Body": "

When I don't have ice to chill a beer, I put a napkin around the bottle and wet it in the sink and then put it into the freezer. In my experience, this way takes less time to chill a beer.

\n", "OwnerUserId": "5294", "LastEditorUserId": "8580", "LastEditDate": "2019-05-20T08:15:13.937", "LastActivityDate": "2019-05-20T08:15:13.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4963"}} +{ "Id": "4963", "PostTypeId": "2", "ParentId": "4956", "CreationDate": "2016-04-20T04:51:57.107", "Score": "5", "Body": "

Guinness can taste slightly different and have a different head based on where it's coming from. A big factor in this is how long the beer you're getting has been in the keg. People in Ireland drink Guinness a lot more than in the states, so kegs are replaced more frequently i.e. fresher beer. This is why if you go to a bar in Ireland and not a lot of people are drinking Guinness, you shouldn't get one.

\n\n

Another possible reason you've heard this is that most people visit Dublin when they're in Ireland and have a pint at the Guinness store house. They ensure all the beer there is top of the line and it really is much better there than any other place I've had it.

\n", "OwnerUserId": "5345", "LastActivityDate": "2016-04-20T04:51:57.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4965"}} +{ "Id": "4965", "PostTypeId": "1", "AcceptedAnswerId": "4968", "CreationDate": "2016-04-21T03:15:07.353", "Score": "0", "ViewCount": "453", "Body": "

Well, after living in Germany for a couple of months, i understood that the flavor is everything.\nUsually people say that a great Beer should be cold, well, i think that's not the main issue. In your opinion what are the things that makes a good Beer? \nCan you name your favorite? So we can have like a List of Great Beers to taste.

\n", "OwnerUserId": "5350", "LastActivityDate": "2016-04-21T09:05:52.793", "Title": "The things that makes a good beer be a great beer", "Tags": "flavor", "AnswerCount": "2", "CommentCount": "0", "ClosedDate": "2016-05-01T00:59:45.630", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4966"}} +{ "Id": "4966", "PostTypeId": "2", "ParentId": "4965", "CreationDate": "2016-04-21T08:43:24.353", "Score": "1", "Body": "

My favourate Beer of all time is: Sublime Chaos by Anarchy Brewery\n\"Sublime

\n\n

I would say that This is my favorite beer for a few reason

\n\n
    \n
  1. Rich Coffee Flavoring
  2. \n
  3. Not to heavy (for a stout)
  4. \n
  5. Smells amazing
  6. \n
\n\n

I think when it comes down to the perfect beer it all comes down to an individuals preference some like a nice golden beer some like a wheat beer I personally love a stout or a porter

\n\n

For me tho a good beer is one that taste amazing, smells amazing and is a pleasure to drink not just drinking for drinking sake it has to be a beer you have a good time drinking

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-04-21T08:43:24.353", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4967"}} +{ "Id": "4967", "PostTypeId": "2", "ParentId": "4956", "CreationDate": "2016-04-21T08:56:56.350", "Score": "4", "Body": "

There are a few questions here, so let me address them individually:

\n\n

Guinness Draft, the \"standard\" Guinness is not always brewed in Ireland, so that may be one reason for a different taste in Ireland than in US. As gannolly commented, the age of the beer also affects the taste, as well as the cleanliness of the beerline (if the beer is on tap).

\n\n

Guinness has a few beers, one of their biggest beers is a Foreign Extra Stout. This is brewed in various counties. This is a higher ABV, roastier beer. I think it has double the ABV of a \"standard\" Guinness.

\n\n

One other important fact is emotions. If I am sitting in the Guinness Brewery, looking out over Dublin, drinking a fresh, perfectly poured Guinness, I am in a very happy place. This happiness will affect my overall experience of the beer. If you take that same keg, keep it cool and fly it overnight to the US and taste it there, it will still be good, but it will not be as good, because you are missing the experience. This said, the beer can also be just as good, because you remember the feeling of drinking that beer in Dublin.

\n\n

Here are links to the various Guinness Breweries and the beers that are brewed there.\nhttp://www.ratebeer.com/brewers/st-jamess-gate-diageo/13/\nhttp://www.ratebeer.com/brewers/guinness-cameroon/13088/\nhttp://www.ratebeer.com/brewers/guinness-nigeria/3194/\nhttp://www.ratebeer.com/brewers/guinness-ghana/5070/

\n", "OwnerUserId": "984", "LastActivityDate": "2016-04-21T08:56:56.350", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4968"}} +{ "Id": "4968", "PostTypeId": "2", "ParentId": "4965", "CreationDate": "2016-04-21T09:05:52.793", "Score": "1", "Body": "

A Great Beer is an opinion. Sure, you can look at RateBeer or BeerAdvocate and see the best beers according to votes, but does that really make it the best beer?

\n\n

A Budweiser can be the best beer in the world on a warm Saturday, but it will not score highly when you are sipping it whilst lying next to a large fire on a cold night.

\n\n

A Westvleteren 8 is a phenomenal beer, but I would not like it, served at 4C on a hot day.

\n\n

Your own likes will affect if a beer is great. If you do not like sour beers, then a beer like Cantillon Gueze might be a horrible beer for you, but others will rate it as one of the best beers in the world.

\n", "OwnerUserId": "984", "LastActivityDate": "2016-04-21T09:05:52.793", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4969"}} +{ "Id": "4969", "PostTypeId": "2", "ParentId": "4958", "CreationDate": "2016-04-21T09:44:05.540", "Score": "2", "Body": "
\n

The main reason to chill filter a whisky is actually purely cosmetic

\n
\n\n

Chill filtering is a process that makes sure that a whiskey won't go cloudy if water or ice is added to it.

\n\n

It is mainly only done as people don't want to see a cloudy whiskey so it is done a a cosmetic touch to make the whiskey more appealing.

\n\n

Although if a whiskey is above 46% this process is not necessary as the alcohol level will stop the cloudiness from happening.

\n\n

It is causing a bit of bother with whiskey distillers as people want a natural organic whiskey so they don't want it to go through the process of chill filtering but they also want a nice clear whiskey.

\n\n

For more information see Here

\n", "OwnerUserId": "5078", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-25T10:27:00.230", "LastActivityDate": "2019-01-25T10:27:00.230", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4970"}} +{ "Id": "4970", "PostTypeId": "1", "CreationDate": "2016-04-22T00:53:24.277", "Score": "5", "ViewCount": "108", "Body": "

When I make mulled wine (wine heated with anise stars, citrus, and spices) I use Rex Goliath because at $6 a bottle, it's the cheapest thing I can get my hands on. But is there a better way?

\n\n

What style of wine is most suitable, and will I get better results from a more drinkable wine?

\n", "OwnerUserId": "5328", "LastActivityDate": "2016-04-22T03:09:20.427", "Title": "What characteristics make a suitable wine for mulling?", "Tags": "wine mulling", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4971"}} +{ "Id": "4971", "PostTypeId": "2", "ParentId": "655", "CreationDate": "2016-04-22T00:56:26.073", "Score": "2", "Body": "

I just went through four Hitachinos, and I can say for sure - they are solidly carbonated, but nothing I would call undrinkable. I've definitely had - and enjoyed - more carbonated beers. I've also had them before (bottle and poured at a bar) and never had the overcarbonation problem you describe.

\n", "OwnerUserId": "5328", "LastActivityDate": "2016-04-22T00:56:26.073", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4972"}} +{ "Id": "4972", "PostTypeId": "1", "AcceptedAnswerId": "4975", "CreationDate": "2016-04-22T02:02:55.063", "Score": "4", "ViewCount": "4366", "Body": "

I know that white wines are usually served chilled and drier or full-bodied reds are served at room temperature. For an upcoming gathering I'll be serving some lighter, sweeter reds (one is called a \"red moscato\", for example), alongside whites and other reds. At what temperature should I serve them? If chilled, would the same temperature as for whites (like rieslings) be suitable?

\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2016-06-03T14:34:18.193", "LastActivityDate": "2016-06-03T14:34:18.193", "Title": "Should lighter red wines be served chilled?", "Tags": "temperature red-wine", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4973"}} +{ "Id": "4973", "PostTypeId": "2", "ParentId": "4970", "CreationDate": "2016-04-22T03:09:20.427", "Score": "1", "Body": "

\"Mulled wine is a seasonal staple but although it's easy to make it's also easy to spoil.

\n\n

You can mull white wine but most people prefer a red. It needs to be inexpensive, obviously, but that doesn’t mean it should be undrinkable so don’t just chuck in the tail ends of bottles you may have hanging round the kitchen. And you don’t want a wine that’s too heavily oaked though that’s relatively unlikely if it’s cheap.

\n\n

There’s a fair amount of inexpensive own-label Corbières I’ve noticed lately which would fit the bill perfectly or try a basic Portuguese red. Most recipes add water as well which brings down the cost and stops guests getting too plastered but adjust the amount to the strength of your wine.

\n\n

Whole spices work better than ground ones otherwise you can get an unpleasant powdery sensation as you drink. Cinnamon is probably the most popular spice but you could also use cloves, cardamom (lightly crush a few pods) ginger and nutmeg. Some recommend star anise but use sparingly if you don't want your mulled wine to taste of aniseed.

\n\n

Most recipes call for sugar but you might want to add a little less than they suggest if your wine is particularly soft and fruity or if you add port.\"

\n\n

Personally, I am very fond of cinnamon in my mulled wines at Christmas time.

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-04-22T03:09:20.427", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4974"}} +{ "Id": "4974", "PostTypeId": "2", "ParentId": "4972", "CreationDate": "2016-04-22T12:28:10.060", "Score": "1", "Body": "
\n

Sauvignon Blanc, Chardonnay and sweet wines like Moscato are best\n served after 20 minutes after pulling from the refrigerator

\n
\n\n

So keep the wine chilled and remove and let it stand before serving

\n\n

source

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-04-22T12:28:10.060", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4975"}} +{ "Id": "4975", "PostTypeId": "2", "ParentId": "4972", "CreationDate": "2016-04-22T12:35:43.837", "Score": "6", "Body": "

\"Wine experts advise that white wines be served at 45 to 55 degrees Fahrenheit, light reds at about 60 degrees and more complex reds at \"room temperature\" or 65 to 70 degrees. [Remember, the phrase \"room temperature\" predates the days of central heat and air conditioning, so it generally refers to the \"cellar\" temperature of an earlier era.]

\n\n

Chilling helps preserve and highlight fresh, fruity flavors of varieties like Riesling, Pinot Gris and Gewürztraminer. Chardonnay, on the other hand, though white, is more complex, is fermented and aged in oak barrels and thus is usually served at the upper end of the 'white' scale.

\n\n

Full-bodied Cabernets should be served in the 70 degree range. The warmer temperature allows the complexity of intense reds to come through as they are swirled, sipped and savored. Lighter reds like chambourcin or merlot are less complex, so are best appreciated just slightly chilled.\nFull-bodied Cabernets should be served in the 70 degree range. The warmer temperature allows the complexity of intense reds to come through as they are swirled, sipped and savored.

\n\n

In planning a festive gathering, consider several ways to attain the \"correct\" wine temperature. Refrigeration will decrease a bottle's temperature 4 to 5 degrees each half hour in the first 60-90 minutes. After that, temperatures will drop 2-3 degrees per half hour. Riesling should be chilled for 4 or 5 hours, a chardonnay for 1-2 hours, merlot for an hour and cabernets for a half hour or less. If time is short, a freezer will drop the temperature about 6-8 degrees every fifteen minutes. However, it is best to set a kitchen timer in the event the party is so festive that you forget and find a broken bottle of very fine wine in your freezer the next morning.\"

\n\n

Sweet Moscato and Moscato d'Asti wines are very good served chilled on their own as a refreshing summertime wine.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5384", "LastEditDate": "2016-05-12T11:51:23.663", "LastActivityDate": "2016-05-12T11:51:23.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4978"}} +{ "Id": "4978", "PostTypeId": "2", "ParentId": "4956", "CreationDate": "2016-04-26T01:31:03.313", "Score": "2", "Body": "

In foreign countries, a particular brand of beer is often produced under a licence to a local brewer.

\n\n

The accuracy with which these local brewers reproduce the original beer varies greatly.

\n\n

For example, Australians noticed a change in the local Guinness when the local licensee changed from CUB to Lion recently: http://www.news.com.au/national/south-australia/lion-brews-the-first-guinness-in-south-australia-in-40-years/story-fndo4dzn-1226508692750

\n", "OwnerUserId": "5364", "LastActivityDate": "2016-04-26T01:31:03.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4979"}} +{ "Id": "4979", "PostTypeId": "1", "AcceptedAnswerId": "4981", "CreationDate": "2016-04-27T17:19:11.420", "Score": "6", "ViewCount": "296", "Body": "

I'm planning on having some friends over next week, and since I really enjoy grilling I plan to make some good steaks for them. They like wines, I personally would just drink a cold beer considering the heat of the grilling and that we reach high temperatures this time of the year. And well the issue is that I know nothing about wines and how to combine them with different meals. But for the sake of not having a too broad question, I'd like to know which wine could go best with a steak and why.

\n", "OwnerUserId": "5144", "LastActivityDate": "2017-03-02T22:47:03.547", "Title": "How to know which wine goes with which type of food", "Tags": "wine", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4980"}} +{ "Id": "4980", "PostTypeId": "2", "ParentId": "4979", "CreationDate": "2016-04-27T17:57:51.810", "Score": "1", "Body": "

I kind of like a Zinfandel but any darker red. Just google \"wine pairing with grilled steak\". The Best Wine Pairings for Grilled Steak

\n", "OwnerUserId": "4903", "LastActivityDate": "2016-04-27T17:57:51.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4981"}} +{ "Id": "4981", "PostTypeId": "2", "ParentId": "4979", "CreationDate": "2016-04-28T02:40:27.590", "Score": "3", "Body": "

From Classic American Steak and Wine Pairings.

\n\n

Best Wines to Drink with Steak

\n\n

Cabernet Sauvignon

\n\n

\"The king of red wines, Cabernet Sauvignon is often the number one choice for steak and wine pairings. Beef steak has lots of strong flavor from the meat itself and from smoke, marinade, sauce, or pepper, so it calls for choosing a wine that is also full-bodied. Cabernet Sauvignon’s robust fruit tastes and powerful flavors can stand up to most any steak. The tannins in Cabernet Sauvignon (coming mainly from the red skin of the grape) and relatively high alcohol levels also help cut through the fat of the steak, making the wine taste smoother and less bitter… and the steak more flavorful.\"

\n\n

California Zinfandel

\n\n

\"Zinfandel has moderate tannins and high acidity, making it a fitting match with steaks that contain relatively good amounts of fat. Rib Eye, T-Bone or Porterhouse steaks are ideal partners for Zinfandel. A little less refined than Cabernet Sauvignon, Zinfandel has a characteristically bold grapey spiciness and thick richness on the pallet.\"

\n\n

Malbec

\n\n

\"Malbec is an up and coming red wine that is definitely steak friendly. In fact, Malbec is the number one consumed red wine in Argentina where it’s considered the ideal wine to pair with beef. Malbec is a versatile, rich and food-friendly red wine that may break with tradition but won’t break the bank. Check out Malbec wines from Argentina or Chile. You won’t be disappointed.\"

\n\n

Other Good Red Wine Pairings with Steak

\n\n

\"The classic wine choices to pair with grilled steaks are big, bold red wines, especially California Zinfandel, Cabernet Sauvignon and Malbec. Merlot, Syrah (Shiraz from Australia), Sangiovese, Chianti and Pinot Noir are also good choices and will produce softer red wine and steak pairings, which you may prefer depending on the steak, the doneness you prefer and whatever else you are serving.\"

\n\n

Rosés, Blush Wine and Sparkling Wines

\n\n

\"Not to be forgotten, a crisp chilled Rosé wine or a bubbly Sparkling Wine (especially brut or rosé) is almost always an enjoyable pairing with steak and other grilled fare. Just be sure to chill them in the refrigerator or on ice for several hours before serving. In fact, we recommend also chilling your red wines to avoid any “hot wine” influence on the taste of the steaks.\"

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-04-28T02:40:27.590", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4983"}} +{ "Id": "4983", "PostTypeId": "1", "AcceptedAnswerId": "5029", "CreationDate": "2016-04-28T19:16:52.277", "Score": "9", "ViewCount": "416", "Body": "

I've been testing out different Scotches for the last few years and usually find a pretty strong correlation between price point and quality. When I pay more the Scotch almost always offers a better drinking experience up to a point.

\n\n

That said, recently I bought an Aberlour 12 at about 65 cdn and found it to be very similar in character to a Dalmore 12 which I bought for a much higher price a few months ago. For that reason I'm characterizing the Aberlour as a high value Scotch. It's priced reasonably and is a bit better of a Scotch than it's price point would suggest.

\n\n

So I wonder what examples of Scotches people would recommend that are superior than their price point would suggest.

\n", "OwnerUserId": "938", "LastEditorUserId": "9887", "LastEditDate": "2019-11-21T19:38:24.957", "LastActivityDate": "2019-11-21T19:38:24.957", "Title": "Examples of high value Scotches", "Tags": "scotch price quality", "AnswerCount": "6", "CommentCount": "9", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4984"}} +{ "Id": "4984", "PostTypeId": "2", "ParentId": "4983", "CreationDate": "2016-04-29T20:14:11.357", "Score": "4", "Body": "

I'll start by saying that what I'm suggesting isn't technically a scotch recommendation, but it is a good tip for whisky, rye, and similar spirits.

\n\n

One of the more underrated genres of whiskey is \"Bottled in Bond\" type whiskey, bourbon, and rye. I've found that many of these spirits provide excellent value for the money.

\n\n

For example:

\n\n
    \n
  • Old Forester
  • \n
  • Heaven Hill
  • \n
  • Very Old Barton
  • \n
  • Rittenhouse Rye
  • \n
\n\n

You can read more about what Bottled in Bond means, and its history, at Wikipedia's Bottled In Bond page.

\n", "OwnerUserId": "3671", "LastActivityDate": "2016-04-29T20:14:11.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4987"}} +{ "Id": "4987", "PostTypeId": "2", "ParentId": "4983", "CreationDate": "2016-05-03T03:53:06.233", "Score": "2", "Body": "

I drink my Scotch neat -- too peaty/smokey and I gotta use an ice cube. Johnnie Walker Black is my go-to (~$74/1.75L at Costco in WA state).

\n\n

Picked up some Kirkland Signature 16-year Highland Single Malt Scotch Whisky this evening (~$62/750mL in WA state) and it is very nice. :)

\n\n

The Balvenie Doublewood is probably my favorite, but it ain't cheap -- and they don't have it at Costco. :P

\n", "OwnerUserId": "241", "LastActivityDate": "2016-05-03T03:53:06.233", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4988"}} +{ "Id": "4988", "PostTypeId": "2", "ParentId": "38", "CreationDate": "2016-05-03T17:01:38.087", "Score": "10", "Body": "

I have never seen anything solid backing up any rhyme that encourages a particular order.

\n\n

When it comes to intoxication, there are two things that are definitely relevant:

\n\n
    \n
  • The total amount of alcohol consumed
  • \n
  • How fast the alcohol is absorbed
  • \n
\n\n

As far as I am concerned, the rest is hearsay and folklore.

\n\n

There may be some auxiliary \"explanations\", like people who mix types being more likely to drink more overall, and people drinking different types of alcohol at different rates at different stages of intoxication, but these are not chemical qualities.

\n\n

Here's one NYT article backing this up. I'm having a hard time finding credible scientific articles about intoxication.

\n", "OwnerUserId": "793", "LastActivityDate": "2016-05-03T17:01:38.087", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4989"}} +{ "Id": "4989", "PostTypeId": "2", "ParentId": "38", "CreationDate": "2016-05-03T22:59:32.200", "Score": "3", "Body": "

This seems to more myth than fact. I am not finding anything scientific that CO2 causes faster absorption.

\n\n

If that was the case you would see carbonated fitness drinks for faster absorption.

\n\n

There are studies that Champagne go to the head faster but it also has a lot of sugar.

\n\n

The more like causality is people that mix also just plain drink more.

\n\n

For me personally I like a shot (or two) of tequila first to get a buzz and then sip beer. I am more likely to burn (most) of it off by the time I go to bed. If you have a belly full of beer there is just a volume of liquid for the body to process and hard liquor on top is just more liquor. You can get stupid with a few beer and then just get even way more stupid with shots as you are numb and the beer dilutes the alcohol so you don't feel the boom. Shots early and you have more immediate and clear feedback you are over drinking.

\n\n

As for wine it has about the same effect on me and the alcohol difference is not that great. I just don't like the taste of mixing them in one evening.

\n\n

There are studies that higher percentage drinks are absorbed faster and it make sense as the body is processing a smaller volume for the alcohol.

\n", "OwnerUserId": "4903", "LastActivityDate": "2016-05-03T22:59:32.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4990"}} +{ "Id": "4990", "PostTypeId": "1", "AcceptedAnswerId": "5008", "CreationDate": "2016-05-04T02:32:41.997", "Score": "3", "ViewCount": "471", "Body": "

Is there any confirmed documentation on the origins of the sake bomb?

\n\n
\n

The sake bomb or sake bomber is a beer cocktail made by pouring sake into a shot glass and dropping it into a glass of beer. (Wikipedia)

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "43", "LastEditDate": "2016-05-05T01:51:07.120", "LastActivityDate": "2016-05-17T22:24:13.003", "Title": "Is there any documentation on the origins of the Sake Bomb?", "Tags": "beer-cocktails sake", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4994"}} +{ "Id": "4994", "PostTypeId": "7", "CreationDate": "2016-05-09T21:28:05.777", "Score": "0", "Body": "

Beer, Wine & Spirits Stack Exchange is a question and answer site for alcoholic beverage aficionados and those interested in beer, wine, or spirits. It's built and run by you as part of the Stack Exchange network of Q&A sites. With your help, we're working together to build a library of detailed answers to every question about alcoholic beverages.

\n", "OwnerUserId": "-1", "LastEditorUserId": "143", "LastEditDate": "2021-07-13T11:17:23.677", "LastActivityDate": "2021-07-13T11:17:23.677", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"4995"}} +{ "Id": "4995", "PostTypeId": "7", "CreationDate": "2016-05-09T21:28:36.090", "Score": "0", "Body": "
    \n
  • Specific issues with beer, wine or spirits
  • \n
  • Real problems or questions that you’ve encountered
  • \n
\n", "OwnerUserId": "-1", "LastEditorUserId": "971", "LastEditDate": "2016-05-09T21:28:36.090", "LastActivityDate": "2016-05-09T21:28:36.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4996"}} +{ "Id": "4996", "PostTypeId": "7", "CreationDate": "2016-05-09T21:28:48.397", "Score": "0", "Body": "
    \n
  • Anything not directly related to beer, wine or spirits
  • \n
  • Questions that are primarily opinion-based
  • \n
  • Questions with too many possible answers or that would require an extremely long answer
  • \n
\n", "OwnerUserId": "-1", "LastEditorUserId": "971", "LastEditDate": "2016-05-09T21:28:48.397", "LastActivityDate": "2016-05-09T21:28:48.397", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4998"}} +{ "Id": "4998", "PostTypeId": "2", "ParentId": "4983", "CreationDate": "2016-05-10T22:28:04.303", "Score": "6", "Body": "

It depends if you like the smokier/peatier whiskies such as Talisker, or prefer the smoother whiskies. I find the former generally overpriced but that's me. A good example of the latter is Auchentoshan 12 year old. Easy drinking (is that a bad thing?), with no overpowering flavour but flavoursome all around and smooth bite (an oxymoron?) at the end. I saw this for $65 on a Canadian website so I believe it fits into your Aberlour category.

\n", "OwnerUserId": "4550", "LastActivityDate": "2016-05-10T22:28:04.303", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"4999"}} +{ "Id": "4999", "PostTypeId": "2", "ParentId": "4716", "CreationDate": "2016-05-10T22:52:29.377", "Score": "1", "Body": "

I have been to two places that had beer blend (or beer \"cocktail\") menus: Cafe Belge (now defunct I think), a small restaurant chain in Kent, UK, and a pub in Montreal. The former had hundreds of Belgian beers and one blend of note was Blackforest Gateau, a mix of a chocolate beer and either Mort Subite cherry or Lindeman's Cherry Kriek. The latter place served their own microbrews, with a dash of something non-alcoholic. Mine was their regular ale (an IPA or golden ale)with whisky and maple syrup. A suitable mix to remind me of Canada.

\n", "OwnerUserId": "4550", "LastActivityDate": "2016-05-10T22:52:29.377", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5001"}} +{ "Id": "5001", "PostTypeId": "1", "AcceptedAnswerId": "5002", "CreationDate": "2016-05-11T09:42:44.923", "Score": "5", "ViewCount": "200", "Body": "

As everyone knows you are supposed to let Red wine breathe before drinking. I do this every time, but I do not really understand why.

\n\n

What does letting a red wine breathe do and why do I only need to let a red wine breathe?

\n\n

Can anybody please explain the reason for this?

\n", "OwnerUserId": "5078", "LastEditorUserId": "5707", "LastEditDate": "2016-07-27T07:06:35.703", "LastActivityDate": "2016-07-27T07:06:35.703", "Title": "Letting it 'breathe'", "Tags": "red-wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5002"}} +{ "Id": "5002", "PostTypeId": "2", "ParentId": "5001", "CreationDate": "2016-05-11T12:49:35.697", "Score": "7", "Body": "

Allowing red wines to breathe for a short time allows the wine to oxidize, soften the flavors and release aromas. doing this is a proper wine glass is best.

\n\n

Allowing wine to breathe has the following information on this subject:

\n\n
\n

Allowing a wine to “breathe” is simply a process of exposing it to air for a period of time before serving. Exposing wine to air for a short time, or allowing it to oxidize, can help soften flavors and release aromas in a way similar to swirling the wine in your glass. Young red wines, especially those that are high in tannin, such as Cabernet Sauvignon, most Red Zinfandel, Bordeaux and many wines from the Rhône Valley, actually taste better with aeration because their tannins soften and the wine becomes less harsh. Another method of aerating a young, tannic red wine is to roughly decant it into another container, which exposes more of the wine's surface to air than simply removing the cork from the bottle. Uncorking a bottle and letting it sit undisturbed for period of time actually does very little to let the wine breathe as only a small percentage of the wine is in contact with air. A much better suggestion is aerating the wine in your glass or in a wine decanter. A decanter is defined as any vessel other than the original bottle that will hold the contents of the wine and allow for air to mix with the wine within. Usually, these are broad-bottomed glass or crystal containers.

\n \n

Wine and air may have a negative effect on each other. To simplify, let us consider the following:

\n \n

• Wine poured from a bottle into a glass and swirled is positive since the air mixture allows aromas to be displayed

\n \n

• Wine that has had a brief exposure to air is positive since it allows wine to breathe similar to stretching its legs after being cooped up in the bottle for so many years. This exposure has a positive effect on the wine after 25 to 30 minutes. Intensely tannic or younger reds may need up to a few hours. In general, most red and white wines will improve within the first half hour of opening the bottle.

\n \n

• Extended exposure to air has a negative effect on the wine. After a day, the wine may obtain a vinegary smell or taste. Red wines and sweet white wines may last a little longer due to the natural preservatives of tannins and sugar. Refrigeration may be used to extend the life of white wine.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2016-05-11T12:49:35.697", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5005"}} +{ "Id": "5005", "PostTypeId": "1", "AcceptedAnswerId": "5091", "CreationDate": "2016-05-15T22:25:38.643", "Score": "8", "ViewCount": "2067", "Body": "

I received a bottle of Highland Park Einar. It's one of the 6 bottles released of the Warrior series. Given there is no age statement, would anyone of you who tried it be able to tell what's the approximate age of this scotch? Does it even matter in this case?

\n\n

Also: I have read it has been developed by the marketing department, not by the distiller. Does that mean in general anything in regards of the quality of the whisky?

\n", "OwnerUserId": "5431", "LastActivityDate": "2016-06-14T09:43:25.163", "Title": "Highland Park Einar: estimated age", "Tags": "whiskey", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5006"}} +{ "Id": "5006", "PostTypeId": "1", "AcceptedAnswerId": "5011", "CreationDate": "2016-05-15T23:20:48.243", "Score": "4", "ViewCount": "564", "Body": "

I'm confused by the whole idea of IBUs. I see a lot of IPAs that are rated in the 40s or 50s for IBU, but in practice they are much more bitter than stouts in the 80+ range. Shouldn't the IPAs have a higher bitterness rating? What's the point of the rating?

\n", "OwnerUserId": "5328", "LastEditorUserId": "5078", "LastEditDate": "2016-07-28T14:38:03.297", "LastActivityDate": "2016-07-28T14:38:03.297", "Title": "What's the point of IBUs if hoppier beers have lower IBU than stouts?", "Tags": "ibu", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5007"}} +{ "Id": "5007", "PostTypeId": "2", "ParentId": "3417", "CreationDate": "2016-05-16T06:13:06.593", "Score": "0", "Body": "

Headaches from draft beer could be caused by a sensitivity to tyramine. People with this food and beverage allergy should be aware of the consequences of what happens when consuming foods high in tyramine. HealthLine explains why you may have to say no to draft beer:\nhttp://www.healthline.com/health/tyramine-free-diets

\n", "OwnerUserId": "5433", "LastActivityDate": "2016-05-16T06:13:06.593", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5008"}} +{ "Id": "5008", "PostTypeId": "2", "ParentId": "4990", "CreationDate": "2016-05-17T22:19:12.800", "Score": "1", "Body": "

Take a look at this article: WHERE THE HELL THE SAKE BOMB CAME FROM: A LESSON IN IRONY

\n\n

From the article:

\n\n
\n

A few sources suggest that sake bombs were actually invented by American soldiers occupying Japan in the years following World War II.

\n
\n\n

The \"sources\" mentioned are this additional article at Los Angeles Magazine: An Ode to the Sake Bomb

\n", "OwnerDisplayName": "user5437", "LastEditorDisplayName": "user5437", "LastEditDate": "2016-05-17T22:24:13.003", "LastActivityDate": "2016-05-17T22:24:13.003", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5010"}} +{ "Id": "5010", "PostTypeId": "2", "ParentId": "361", "CreationDate": "2016-05-18T03:08:44.543", "Score": "7", "Body": "

The steins with their lids seem to have come about as a result of the \nbubonic plague to serve as sanitary measure and thus keep flies and other insects (fleas) out of the beer.

\n\n
\n

From about 1340 until 1380, a bubonic plague, or Black Death, killed more than 25 million Europeans! As horrible as this historic event was, it prompted tremendous progress for civilization. And, of interest here, it is also responsible for the origin of the beer stein.

\n \n

Recall from above that the distinction between a mug and a stein is the hinged lid. This lid was originally conceived entirely as a sanitary measure. During the summers of the late 1400s, hoards of little flies frequently invaded Central Europe. By the early 1500s, several principalities in what is now Germany had passed laws requiring that all food and beverage containers be covered to protect consumers against these dirty insects. The common mug also had to be covered, and this was accomplished by adding a hinged lid with a thumblift. This ingenious invention was soon used to cover all German beverage containers while still allowing them to be used with one hand. - A Brief History of Beer Steins.

\n
\n\n

For more information one should read The Beer Stein Book: A 400 Year History.

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-05-18T03:08:44.543", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5011"}} +{ "Id": "5011", "PostTypeId": "2", "ParentId": "5006", "CreationDate": "2016-05-18T18:55:17.550", "Score": "8", "Body": "

IBU is a measurement of the chemical concentration of iso-alpha acids, not the perceived bitterness. Malty tastes do suppres the perception of hop bitterness. See wikipedia on beer bitterness 1 and its literature list.

\n\n

A heavily malty beer, which a stout is, requires way more chemical hop bitternes to achieve the same perceived bitterness as a light pilsner.

\n\n

Excuse me going anecdotal, but at one time, friends and me brewed an ale with an unholy amount of hops (150g @ 11% for 22l). When it came to hop additions, we decided to just dump in all the hop bags from the freezer. This ended up to be around 100 IBU after correction for ageing.

\n\n

Now, quite clearly, the resulting light ale was on the very edge of being consumable, but with some aging and getting used to it, it became a very very good ale, which all the hoppy people loved.

\n\n

The same amount of hops in an irish stout would probably be \"meh\".

\n", "OwnerUserId": "5439", "LastEditorUserId": "5440", "LastEditDate": "2016-05-19T19:09:22.447", "LastActivityDate": "2016-05-19T19:09:22.447", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5013"}} +{ "Id": "5013", "PostTypeId": "1", "AcceptedAnswerId": "5014", "CreationDate": "2016-05-19T08:38:33.790", "Score": "7", "ViewCount": "821", "Body": "

Whenever I'm out in a bar I always see bottles of ale or ale on a pump but I have never seen a bar that serves ale from a regular tap why is this ?

\n\n

Why serve ale from a Pull Pump, instead of a Beer Tap?

\n\n

Is there a reason for this?

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-05-20T08:00:04.030", "LastActivityDate": "2016-05-21T21:40:08.003", "Title": "Tap it or Pump it!", "Tags": "serving preparation-for-drinking", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5014"}} +{ "Id": "5014", "PostTypeId": "2", "ParentId": "5013", "CreationDate": "2016-05-21T21:40:08.003", "Score": "2", "Body": "

Collating Darwin and jalynn's answers and some experience running a real ale bar:

\n\n

In the UK, real ales will always be served from a hand pump, as per the definition from CAMRA:

\n\n
\n

Real ale is a beer brewed from traditional ingredients (malted barley, hops water and yeast), matured by secondary fermentation in the container from which it is dispensed, and served without the use of extraneous carbon dioxide.

\n
\n\n

But you will always see Carlsberg, Budweiser, Heineken, Guinness, Stella etc pumped using CO2.

\n\n

If you haven't seen them, it must be down to the pubs you frequent :-)

\n", "OwnerUserId": "187", "LastActivityDate": "2016-05-21T21:40:08.003", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5015"}} +{ "Id": "5015", "PostTypeId": "1", "AcceptedAnswerId": "5019", "CreationDate": "2016-05-23T10:39:19.523", "Score": "33", "ViewCount": "292843", "Body": "

I was wondering if anybody could give me the differences between a whiskey and bourbon, as I was in a conversation the other day and we were talking about Jack Daniels.

\n\n

It is a bourbon but a lot of people still call it a whiskey. We got into a lot of different discussions about it, such as where it's made (USA vs. UK) and what goes into it (different barley) but we couldn't all agree on one reason.

\n\n

So can anybody tell me what the difference between these drinks is?

\n", "OwnerUserId": "5078", "LastEditorUserId": "5467", "LastEditDate": "2016-05-24T22:56:36.683", "LastActivityDate": "2017-09-15T00:05:19.737", "Title": "Difference between Whiskey and Bourbon?", "Tags": "whiskey bourbon", "AnswerCount": "6", "CommentCount": "2", "FavoriteCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5016"}} +{ "Id": "5016", "PostTypeId": "5", "CreationDate": "2016-05-23T10:48:03.317", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-05-23T10:48:03.317", "LastActivityDate": "2016-05-23T10:48:03.317", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5017"}} +{ "Id": "5017", "PostTypeId": "4", "CreationDate": "2016-05-23T10:48:03.317", "Score": "0", "Body": "Red wine is a type of wine made from dark-coloured grape varieties. The actual colour of the wine can range from intense violet, typical of young wines, through to brick red for mature wines and brown for older red wines", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-05-24T22:56:11.810", "LastActivityDate": "2016-05-24T22:56:11.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5019"}} +{ "Id": "5019", "PostTypeId": "2", "ParentId": "5015", "CreationDate": "2016-05-23T13:24:57.527", "Score": "36", "Body": "

Bourbon is a type of whiskey, whereas not all whiskies are bourbons!

\n\n
\n

Bourbon is a type of whiskey that gets its name from Bourbon County, Kentucky, where it originated. Bourbon tends to be amber-colored, and a little sweeter and heavier in texture than other whiskeys.

\n
\n\n

What make a bourbon a bourbon and not just an ordinary whiskey? The following is from Men's Journal: What, Exactly, Is the Difference Between Bourbon and Whiskey?

\n\n
\n

The most popular form of American whiskey is bourbon, which has its own specific definition.

\n \n

\"Bourbon needs to be produced in America and made from 51 percent corn, and whisky does not,\" says Maker's Mark Master Distiller Greg Davis. Bourbon also needs to be stored in new charred-oak barrels, whereas whiskey barrels do need to be oak but not new or charred. \"Lastly, to be called bourbon, the liquid needs to be distilled to no more than 160 proof and entered into the barrel at 125.\" For other whiskies the liquid must be distilled to no more than 190 proof. David notes that this isn't just common practice — \"it's actual bourbon law.\"

\n \n

What Makes a Bourbon: A Cheat Sheet

\n \n

•Must be made in the United States.

\n \n

•Must contain 51 percent corn.

\n \n

•Must be aged in new oak charred barrels.

\n \n

•Must be distilled to no more than 160 proof and entered into the barrel at 125 proof.

\n \n

•Must be bottled at no less than 80 proof.

\n \n

•Must not contain any added flavoring, coloring or other additives.

\n
\n\n

The following is taken from Bourbon vs. Whiskey:

\n\n
\n

Somewhat like champagne isn't champagne unless it's made in Champagne, France, Bourbon is not actually \"Bourbon\" if it is made outside the USA, even though other whiskeys may adhere to the same recipe and distillation guidelines.

\n \n

Tennessee Whiskey

\n \n

The legal requirements for whiskey to be called Tennessee Whiskey are that the whiskey should be:

\n \n

-distilled in Tennessee

\n \n

-made from at least 51% corn

\n \n

-filtered through maple charcoal, and

\n \n

-aged in new, charred oak barrels.

\n \n

This is the process by which Jack Daniel's is manufactured. The company is the largest whiskey producer in Tennessee and wields an outsize influence on liquor laws in the state; they lobbied the state legislature to create such stringent requirements for labeling Tennessee Whiskey. Other whiskey producers in the state, including UK-based Diageo that owns Tennessee's No. 2 whiskey distiller George Dickel, oppose these criteria and are lobbying to have them loosened.

\n
\n\n

Some consider Tennessee Whiskey a Bourbon, while most do not. The fact remains that both Tennessee Whiskey and Jack Daniel's are filtered through maple charcoal making them a different product.

\n\n

Addendum

\n\n

What is scotch?

\n\n
\n

The main difference between scotch and whisky is geographic, but also ingredients and spellings. Scotch is whisky made in Scotland, while bourbon is whiskey made in the U.S.A, generally Kentucky. Scotch is made mostly from malted barley, while bourbon is distilled from corn. If you’re in England and ask for a whisky, you’ll get Scotch. But in Ireland, you’ll get Irish whiskey (yep, they spell it differently for a little colour).

\n
\n\n

How long should Scotch Whisky be aged?

\n\n
\n

It is not possible to lay down any precise age as being the best for a particular whisky. Generally speaking, Malt Whiskies require longer to mature fully than Grain Whiskies. UK and EU law insist that Scotch Whisky should be at least three years old. However, it is the practice of the trade to mature for substantially longer than the legal minimum.

\n
\n\n

What is rye?

\n\n
\n

Rye whisky, like its name suggests, is a whiskey that is distilled from at least 51% rye. What is rye? Rye is a type of grass that is a member of the wheat tribe and closely related to barley.

\n
\n\n

Canadian whisky is simply a rye whisky.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-05-24T22:55:39.267", "LastActivityDate": "2016-05-24T22:55:39.267", "CommentCount": "13", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5021"}} +{ "Id": "5021", "PostTypeId": "2", "ParentId": "5015", "CreationDate": "2016-05-23T17:13:57.510", "Score": "5", "Body": "

Wikipedia is a great resource.

\n\n
\n

The Federal Standards of Identity for Distilled Spirits (27 C.F.R. 5) state \n that bourbon made for U.S. consumption[18] must be:

\n \n
    \n
  • Produced in the United States[19]
  • \n
  • Made from a grain mixture that is at least 51% corn[20]
  • \n
  • Aged in new, charred oak barrels[20]
  • \n
  • Distilled to no more than 160 (U.S.) proof (80% alcohol by volume)[20]
  • \n
  • Entered into the barrel for aging at no more than 125 proof (62.5% alcohol by volume)[20]
  • \n
  • Bottled (like other whiskeys) at 80 proof or more (40% alcohol by volume)[21]
  • \n
\n
\n\n

Jack Daniel's

\n\n
\n

The product meets the regulatory criteria for classification as a straight \n bourbon, though the company disavows this classification and markets it simply \n as Tennessee whiskey rather than as Tennessee bourbon.

\n
\n", "OwnerUserId": "5457", "LastActivityDate": "2016-05-23T17:13:57.510", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5022"}} +{ "Id": "5022", "PostTypeId": "1", "CreationDate": "2016-05-24T04:17:54.167", "Score": "9", "ViewCount": "47973", "Body": "

I have heard that we should not drink milk products after we drink rum or whiskey. I'm not sure.
\nBut curd and buttermilk is always in my dinner. Can you make it clear?
\nWhat happens in the stomach when milk products and alcohol meet?

\n", "OwnerUserId": "5468", "LastEditorUserId": "9887", "LastEditDate": "2020-01-29T10:36:47.670", "LastActivityDate": "2020-09-29T22:29:17.583", "Title": "What happens if I drink buttermilk after 3-5 drinks rum or whiskey (60ml each)?", "Tags": "health whiskey alcohol-level rum", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5023"}} +{ "Id": "5023", "PostTypeId": "2", "ParentId": "5015", "CreationDate": "2016-05-24T04:23:26.107", "Score": "7", "Body": "

Corn.

\n\n

The differences between those drinks (\"made for U.S. consumption\"), and the difference between whiskey and bourbon are two separate questions (the former has been well answered).

\n\n

Beverage manufacturers can hem and haw all they want about the nomenclature of their products, but that does not change the dictionary's definitions of the words:

\n\n
\n

whiskey : a spirit distilled from malted grain, especially barley or rye.
\n early 18th century: abbreviation of obsolete whiskybae, variant of usquebaugh

\n
\n\n
\n\n
\n

bourbon : a straight whiskey distilled from a mash having at least 51 percent corn in addition to malt and rye.
\n mid 19th century: named after Bourbon County, Kentucky, where it was first made.

\n
\n", "OwnerUserId": "5467", "LastActivityDate": "2016-05-24T04:23:26.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5025"}} +{ "Id": "5025", "PostTypeId": "2", "ParentId": "5005", "CreationDate": "2016-05-24T13:04:02.357", "Score": "2", "Body": "

From what I can gather on the whiskey it is bottled at 40% which is low for a scotch

\n\n

so taking this into consideration I would have a guess at this whiskey being around the 10-12 year old mark but nobody can really be certain as all 6 of the Warrior series did not have an age on the bottle

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-05-24T13:04:02.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5026"}} +{ "Id": "5026", "PostTypeId": "1", "AcceptedAnswerId": "5027", "CreationDate": "2016-05-24T14:50:59.177", "Score": "9", "ViewCount": "320", "Body": "

I was looking for some new beers to try and I came across some really, and I mean really, strong beers and here are a few examples:

\n\n
    \n
  1. Sink in the Bismark - AVB: 40%
  2. \n
  3. End of History - AVB: 55%
  4. \n
  5. Armageddon - AVB: 65%
  6. \n
  7. Snake Venom - AVB: 67.5%
  8. \n
\n\n

My question being how do they get beer so strong?

\n\n

These beers are stronger than some spirits! How is it possible to make these?

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-06-14T07:33:01.627", "LastActivityDate": "2016-06-20T13:59:02.500", "Title": "How do they get beer so strong?", "Tags": "abv", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5027"}} +{ "Id": "5027", "PostTypeId": "2", "ParentId": "5026", "CreationDate": "2016-05-24T16:33:27.020", "Score": "10", "Body": "

Primarily through the use of freeze distillation. After the beer is brewed, using the normal process, the temperature is brought down below the freezing point of water, but above the freezing point of alcohol, so some portion of the water in the beer freezes into ice and can then be removed. What remains has a far higher concentration of alcohol than what can be achieved via brewing alone.

\n\n

Some beers such as Sam Adams Utopias do attain quite high levels of alcohol through the use of carefully engineered strains of yeast, though nothing like the percentages in the beers you list...Only in the high 20s ABV. Beyond that point, we haven't yet cultivated yeast that can live and continue to produce alcohol so cheating, if you will, is required.

\n", "OwnerUserId": "37", "LastActivityDate": "2016-05-24T16:33:27.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5028"}} +{ "Id": "5028", "PostTypeId": "2", "ParentId": "4936", "CreationDate": "2016-05-24T17:29:27.267", "Score": "3", "Body": "

Generally, the longer it's barrel aged, the more drinkable it is. Anejo tequila is aged longest (I believe at least a year, but keep me honest). Reposado is aged a bit less (6 months or so), and Blanco is generally not aged for any significant time.

\n\n

You can usually see it in the color of the tequila as well, (though many cheap tequilas are pretty amber in color, but certainly not aged very long or well, so this isn't a great measure of how good it is). Blancos, as their name suggests, tend to be clear in color, Anejos can have a very deep, nearly brown color. Reposados start to show some of the characteristics of a good tequila (pepper, etc), and Anejos can be downright complex.

\n\n

I suggest that you don't drink Blancos straight. Reposados can be good sipped and are great mixed, and are a good price point. Most Anejos would be wasted as a mixed drink, and should be sipped.

\n", "OwnerUserId": "3905", "LastActivityDate": "2016-05-24T17:29:27.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5029"}} +{ "Id": "5029", "PostTypeId": "2", "ParentId": "4983", "CreationDate": "2016-05-24T17:37:04.253", "Score": "4", "Body": "

Glenmorangie is a 10-year highland single-malt scotch that outperforms its price point (currently $36 at Total Wine), in my opinion.

\n", "OwnerUserId": "3905", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T01:52:36.420", "LastActivityDate": "2019-08-28T01:52:36.420", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5030"}} +{ "Id": "5030", "PostTypeId": "2", "ParentId": "3385", "CreationDate": "2016-05-25T23:14:10.530", "Score": "1", "Body": "

My favorite place to fill up a growler is Hopdogma near Half Moon Bay. It's worth the drive up from San Jose or down from San Francisco on a beautiful day. You can see the ocean from the bar as well and it's a great place to have a pint!

\n", "OwnerUserId": "5478", "LastActivityDate": "2016-05-25T23:14:10.530", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5031"}} +{ "Id": "5031", "PostTypeId": "1", "AcceptedAnswerId": "5033", "CreationDate": "2016-05-26T08:01:01.330", "Score": "5", "ViewCount": "2467", "Body": "

I recently purchased a new pewter Tankard with a glass bottom and a silver shilling encased between the two bits of glass.

\n\n

After a little bit of research, I discovered that this was one of the ways recruiters would trick people into joining the British Army or Navy, but there is also a lot of places that say this is just a legend!

\n\n

Does anybody know the true origins of the shilling in the bottom of the tankard and is that why they started to produce tankards with glass bottoms so people could see if they did have a shilling in them?

\n", "OwnerUserId": "5078", "LastEditorUserId": "5064", "LastEditDate": "2016-05-27T06:59:25.453", "LastActivityDate": "2020-06-24T22:54:47.427", "Title": "The King's Shilling", "Tags": "history serving", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5032"}} +{ "Id": "5032", "PostTypeId": "2", "ParentId": "5031", "CreationDate": "2016-05-26T10:43:11.467", "Score": "2", "Body": "

When you joined the army the final part of recruitment was to be paid a shilling. When the recruiters came to a village they would go to the local bar to try to persuade young men to join. One way to do this was to put a shilling in the tankard. I'm not sure if that is the reason for glass bottom tankards though, anyone rich enough to own one would probably be to old to fight. Another story is the glass bottom was so you could see a punch coming when you had the tankard raised.

\n\n

Personally I think it is just so you can see if the beer is cloudy.

\n", "OwnerUserId": "4394", "LastActivityDate": "2016-05-26T10:43:11.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5033"}} +{ "Id": "5033", "PostTypeId": "2", "ParentId": "5031", "CreationDate": "2016-05-26T13:16:45.730", "Score": "4", "Body": "

The origins of the King's Shilling seems to have appeared about the time of the War of 1812, because of the need for recruitment was so necessary due to the fact that the English were already at war with France.

\n\n
\n

Recruiting parties scoured the countryside and city streets for able-bodied soldiers. In his arsenal of weapons, the recruiting Sergeant offered any perspective recruit a bounty of over two month’s worth of wages to enlist. Some were offered the option to enlist for limited time of service, usually a 7-year term, and receive a smaller bounty, but most chose the other option: service for life. Calculating one’s options in life must have been difficult for the recruit in a noisy, smoke-filled Ale House after consuming a number of gills of rum, happily provided by a member of the recruiting party. While the recruiting prospect drank endless rounds from the punch bowl, his ears were filled with stories of an easy life as a soldier, quick promotion and how women to could not help but be drawn to a man in a red coat.

\n \n

The members of a recruiting party were all quite motivated in convincing say a young weaver or labourer to join as each was paid handsomely for each recruit they brought before the army surgeon for inspection and got attested by a Justice of the Peace. If the potential recruit hesitated to enlisted, deception was applied. A recruiting sergeant recounted:

\n \n

…your last recourse was to get him drunk, and then slip a shilling in his pocket, get him home to your billet, and next morning swear he enlisted, bring all your party to prove it, get him persuaded to pass the doctor. Should he pass, you must try every means in your power to get him to drink, blow him up with a fine story, get him inveigled to the magistrates, in some shape or other, and get him attested; but by no means let him out of your hands.

\n
\n\n

Why the expression To Take The King's Shilling:

\n\n
\n

The expression 'to take the king's shilling', meant to sign up to join the army. Rather like with the 'prest' money for the 'impressed' man, a bonus payment of a shilling was offered to tempt lowly paid workers to leave their trade (an average daily wage during the Napoleonic period was 2p (at 12p to a shilling, this represented six days wages in one go). Once the shilling had been accepted, it was almost impossible to leave the army.

\n \n

Since the army was not seen as an attractive career, recruiting sergeants often had to use less than honest methods to secure their 'prey', such as getting the recruitee drunk, slipping the shilling into his pocket and then hauling him before the magistrate the following morning (still hungover) to get him to accept the fact that he was now in the army. Sometimes the 'King's shilling' was hidden in the bottom of a pewter tankard (having drunk his pint, the unfortunate drinker found that he had unwittingly accepted the King's offer). As a result, some tankards were made with glass bottoms. Other recruits came from the courts, where a criminal's sentence could be commuted to service in the army - still the case (apparently) with the Blackwatch Regiment.

\n \n

In fact the bounty for joining the army was much larger than a shilling. New recruits received £23.17s.6d, but out of this they were obliged to buy their uniform - a not inconsiderable expence.

\n
\n\n

Here is a picture of the King's Shilling Tankard in question:

\n\n

\"King's

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-05-26T13:16:45.730", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5034"}} +{ "Id": "5034", "PostTypeId": "1", "AcceptedAnswerId": "5035", "CreationDate": "2016-05-26T13:39:10.300", "Score": "7", "ViewCount": "3597", "Body": "

During a conversation a friend of mine mentioned something about \nBottom fermentation and I did not fully understand what this was. I understand when something is fermented, but what is the difference when talking about bottom fermentation?

\n\n

Does this process have a effect of the type of drink produced or taste it has ?

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-05-27T13:08:22.930", "Title": "What does “bottom fermented” mean?", "Tags": "brewing", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5035"}} +{ "Id": "5035", "PostTypeId": "2", "ParentId": "5034", "CreationDate": "2016-05-26T18:05:14.683", "Score": "10", "Body": "

\"Bottom fermentation\" is one of the two main types of fermentation which take place during beer production; the other being \"top fermentation\". A third less common type would be spontaneous fermentation (a natural beer fermentation process taking place in the wild). Typically, only one fermentation process occurs during production (either bottom, top, or spontaneous fermentation). It basically describes what happens to the yeast during fermentation- some yeast float to the top of the liquid during fermentation, while some types of yeast sink to the bottom. Which type of fermentation takes place, depends on the type of yeast used in the process. So to answer your question, if it effects the type of drink (and taste), the answer is yes. It's not so much whether the yeast sink to the bottom or float to the top that affects the taste/style, but it is rather due to the type of yeast which determines what will happen to during fermentation (float to top/sink to bottom). For instance, lager strains of yeast typically float to the bottom.

\n\n

From Beeradvocate.com: \n\"Some of the lager styles made from bottom-fermenting yeasts are Pilsners, Dortmunders, Märzen, Bocks, and American malt liquors.\"

\n\n

\"Top-fermenting yeasts are used for brewing ales, porters, stouts, Altbier, Kölsch, and wheat beers.\"

\n\n

A more in-depth summary can be seen at the Beer Advocate's Yeast Guide.

\n", "OwnerUserId": "5482", "LastEditorUserId": "5064", "LastEditDate": "2016-05-27T13:08:22.930", "LastActivityDate": "2016-05-27T13:08:22.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5036"}} +{ "Id": "5036", "PostTypeId": "2", "ParentId": "589", "CreationDate": "2016-05-27T09:33:26.220", "Score": "-1", "Body": "
\n

While the names might differ, this is the key principle: there’s a\n name for a large (425ml) and small (285ml) size in every state. Most\n (but not all states) use schooner for the larger size, but the options\n for the smaller one vary considerably:

\n
\n\n

there is no reason that I can find to why they have different measures but i have found a really good source of information to help understand what size beer to order

\n\n

here is the handy guide for buying your beer

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-05-27T09:33:26.220", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5037"}} +{ "Id": "5037", "PostTypeId": "2", "ParentId": "3386", "CreationDate": "2016-05-27T09:37:35.433", "Score": "2", "Body": "

Although this is a very late answer I have found a good site that labels 3 good brewery's in Pune

\n\n
    \n
  • The 1st Brewhouse
  • \n
  • TJ’s Brew Works
  • \n
  • Flambos
  • \n
\n", "OwnerUserId": "5078", "LastActivityDate": "2016-05-27T09:37:35.433", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5038"}} +{ "Id": "5038", "PostTypeId": "1", "AcceptedAnswerId": "5043", "CreationDate": "2016-05-27T10:06:05.547", "Score": "6", "ViewCount": "920", "Body": "

Is there any differences in the mainstream company lagers?

\n\n

I often see people go into bars and just order a pint of lager, even though there are many different lagers available at the bar. This leads me to believe that most of the mainstream lagers don't actually taste that different from each other.

\n\n

As I don't drink lagers — I tend to stick to cask/real ales — lagers all taste similar to me anyways.

\n\n

So is there really any difference with these companies' lagers?

\n\n

P.S.
\nBy mainstream mean Fosters, Carling, Carlsberg, etc...

\n", "OwnerUserId": "5078", "LastEditorUserId": "5441", "LastEditDate": "2016-06-03T17:25:27.700", "LastActivityDate": "2016-06-03T17:25:27.700", "Title": "Are different mainstream Lagers really all that different?", "Tags": "lager", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5039"}} +{ "Id": "5039", "PostTypeId": "5", "CreationDate": "2016-05-27T10:30:48.517", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-05-27T10:30:48.517", "LastActivityDate": "2016-05-27T10:30:48.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5040"}} +{ "Id": "5040", "PostTypeId": "4", "CreationDate": "2016-05-27T10:30:48.517", "Score": "0", "Body": "Lager is a type of beer that is conditioned at low temperatures, normally in cold storage at the brewery, before being delivered to the consumer. It may be pale, golden, amber, or dark.", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-05-27T15:05:46.177", "LastActivityDate": "2016-05-27T15:05:46.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5041"}} +{ "Id": "5041", "PostTypeId": "2", "ParentId": "5038", "CreationDate": "2016-05-27T12:40:29.340", "Score": "7", "Body": "

Most generic lagers have subtle differences, but in general as you say they are usually very similar.

\n\n

To be frank, though, this is something I find with just about any style of beer. For instance, if I'm buying an imperial stout from any given brewery I can reasonably expect what the beer is going to taste like for the most part. The only thing that really brings it down below my standard is if it's just not a quality beer.

\n\n

In the same way generic lagers are an equivalent style and have a similar purpose, to be non-offensive and give people the 'beer' taste that they expect. So if you're drinking a Canadian, to a Bud, to a Sapporo you can expect them to be pretty similar.

\n\n

The one additional thing I'll say, though, is that when beer falls into the realm of 'craft' you usually see a higher range of flavour within a style, than with generics, though. This is because the very purpose of a generic lager is not to stand out as to gain mass appeal.

\n", "OwnerUserId": "938", "LastActivityDate": "2016-05-27T12:40:29.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5042"}} +{ "Id": "5042", "PostTypeId": "1", "CreationDate": "2016-05-27T15:00:04.323", "Score": "5", "ViewCount": "680", "Body": "

I'm sick of buying infused spirits (usually advertised in the U.S. as flavored vodkas) and discovering that they have added sugar (and often, apparently, glycerin).

\n\n

I have scoured labels and asked in stores and never found any way of determining whether a liquor is a pure distillate or whether it has substantial additives (other than water and flavor).

\n\n

In the U.S. is there any way to determine this before acquiring a particular bottle?

\n", "OwnerUserId": "5486", "LastEditorUserId": "5064", "LastEditDate": "2016-05-29T02:29:12.323", "LastActivityDate": "2016-05-29T02:29:12.323", "Title": "How can I determine whether infused spirits contain sugar (before buying)?", "Tags": "additives liquor", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5043"}} +{ "Id": "5043", "PostTypeId": "2", "ParentId": "5038", "CreationDate": "2016-05-27T15:33:43.750", "Score": "2", "Body": "

I think the short answer to whether mainstream lagers taste different is no, not really. But this depends on how you define mainstream lagers. Different lager styles definitely taste different, but the reason mainstream lagers all taste the same is because they're all pretty much the same style of lager- American lager, and are all probably brewed in a similar fashion (what those in the industry call \"macro brews\").

\n\n

For instance, coors light, bud light, keystone light are all the same style of lager, just different brands of the same brew.

\n\n

But to taste the difference between different styles of lagers, try a budweiser and compare it to a Pilsner Urquell (it's a Euro pilsner- another lager style). The bud will taste light, bready and slightly sweet, while the pilsner will taste crisp, somewhat floral, and slightly bitter on the finish (and definitely way better imho).

\n\n

Since craft beers are made in small batches with brewmasters experimenting with different flavours through use of various hops (flavouring agents), I'd recommend trying craft lagers if you want to experience the difference lager styles and flavours within a style. A brooklyn lager definitely tastes different/better than a Budweiser, even though they're both of the American Lager style.

\n", "OwnerUserId": "5482", "LastActivityDate": "2016-05-27T15:33:43.750", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5044"}} +{ "Id": "5044", "PostTypeId": "2", "ParentId": "5042", "CreationDate": "2016-05-28T00:51:05.087", "Score": "4", "Body": "

There is no way to determine if a particular flavored vodka has added sugar or glycerin!

\n\n

Unless one can find a particular website of a certain vodka, which states that there is no added sugar or glycerin the chances are that you will have to taste the product yourself in order to know.

\n\n

The following information is from Drink Skool:

\n\n
\n

If you’re confused, don’t be angry. Clearly the U.S. government is struggling with the issue as much as you are. Today’s science is capable of measuring imperfections in a spirit. So rather than insisting that 190 proof is an adequate minimum to guarantee quality in vodka, other metrics might have been considered in the TTB’s rule-making. For instance, some successful brands add sugar or glycerin to their vodkas to “smooth” them out. Never mind that these spirits throw any standard cocktail recipe completely out of balance. The larger question is: why do they need to add these softeners? What are they covering up? If they focused upon good raw ingredients and clean distillation they could achieve the same result. But perhaps that’s asking too much; it always comes back to economics.

\n \n

Other countries are demanding that producers note upon the label any additions such as sugar or glycerin; the TTB hasn’t wised up yet. It will probably be a while before those additives are visible on the vodka labels, but until then, taste the stuff yourself. If it tastes sweet, it probably is, and you may want to alter any cocktail recipes that you’re working from.

\n
\n\n

Absolut Raspberri is just one example of a flavoured vodka that does not contain added sugar!

\n\n
\n

Absolut Raspberri is made exclusively from natural ingredients, and unlike some other flavored vodkas, it doesn’t contain any added sugar. It’s rich and intense with the fresh and fruity character of ripened raspberries.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2016-05-28T00:51:05.087", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5048"}} +{ "Id": "5048", "PostTypeId": "5", "CreationDate": "2016-05-31T10:18:19.297", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-05-31T10:18:19.297", "LastActivityDate": "2016-05-31T10:18:19.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5049"}} +{ "Id": "5049", "PostTypeId": "4", "CreationDate": "2016-05-31T10:18:19.297", "Score": "0", "Body": "Whisky or whiskey is a type of distilled alcoholic beverage made from fermented grain mash. Various grains (which may be malted) are used for different varieties, including barley, corn (maize), rye, and wheat. Whisky is typically aged in wooden casks, generally made of charred white oak.", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-06-02T15:21:33.260", "LastActivityDate": "2016-06-02T15:21:33.260", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5050"}} +{ "Id": "5050", "PostTypeId": "5", "CreationDate": "2016-05-31T10:19:03.813", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-05-31T10:19:03.813", "LastActivityDate": "2016-05-31T10:19:03.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5051"}} +{ "Id": "5051", "PostTypeId": "4", "CreationDate": "2016-05-31T10:19:03.813", "Score": "0", "Body": "Bourbon whiskey is a type of American whiskey: a barrel-aged distilled spirit made primarily from corn.", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-06-02T15:21:35.603", "LastActivityDate": "2016-06-02T15:21:35.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5052"}} +{ "Id": "5052", "PostTypeId": "5", "CreationDate": "2016-05-31T10:21:07.967", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-05-31T10:21:07.967", "LastActivityDate": "2016-05-31T10:21:07.967", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5053"}} +{ "Id": "5053", "PostTypeId": "4", "CreationDate": "2016-05-31T10:21:07.967", "Score": "0", "Body": "Tequila is a regional specific name for a distilled beverage made from the blue agave plant. ", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-06-02T15:21:30.200", "LastActivityDate": "2016-06-02T15:21:30.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5054"}} +{ "Id": "5054", "PostTypeId": "5", "CreationDate": "2016-05-31T10:22:33.087", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-05-31T10:22:33.087", "LastActivityDate": "2016-05-31T10:22:33.087", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5055"}} +{ "Id": "5055", "PostTypeId": "4", "CreationDate": "2016-05-31T10:22:33.087", "Score": "0", "Body": "Sake, often spelled saké in English, is a Japanese rice wine made by fermenting rice that has been polished to remove the bran. Unlike wine, in which alcohol (ethanol) is produced by fermenting sugar that is naturally present in grapes, sake is produced by a brewing process more like that of beer, where the starch is converted into sugars before being converted to alcohol.", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2016-06-02T15:21:27.090", "LastActivityDate": "2016-06-02T15:21:27.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5056"}} +{ "Id": "5056", "PostTypeId": "1", "CreationDate": "2016-06-01T19:01:10.793", "Score": "2", "ViewCount": "116", "Body": "

Having watched a few episodes of the Discovery Channel reality-show \"Moonshiners,\" I'm somewhat surprised about a number of things shown on there relating to making alcohol.

\n\n

I've been a hobby winemaker for about a decade, and I'm assuming that if one produces a TV show about a topic, then one has hired at least a consultant to get the most striking facts approximately right. But I'm really wondering here.

\n\n
    \n
  • Setting up mash means dropping some corn and water into an ugly barrel, and add a sack full of sugar (like... 25 kilograms?), this gives you alcohol ready to distill in two, at most three days. Old barrel with wooden lid, no fermentation lock needed.
    \nIn winemaking, while adding sugar is often frowned upon anyway, regardless of what you do, you generally try hard not to get the sugar contents too high at the beginning since that inhibits fermentation. Using any old barrel for fermentation is... well, something you can probably do, but would one want to?

  • \n
  • 20 liters distilled give 8 liters of 50-55% moonshine. Since alcohol does not appear out of nowhere, this means the mash must necessarily have 20% of alcohol. That's quite steep for a random mix of stuffs in an old barrel. My yeast usually tolerates 16-18% at most. Admitted, there are special high-alcohol yeasts as well as \"turbo\" yeasts, but they make no mention of any such thing.

  • \n
  • You get mash ready to distill in two days (20% in 2 days, that's, well... wow) but if you heat it up to around 70°C (so, basically killing the yeast!), you can do it in hours, not days.

  • \n
  • Using a \"booster\" which is basically a second cooling spiral in a box, doubles the amount of alcohol you get out. As does a cooling spiral in the main tank.\nSince the booster cannot possibly create alcohol out of nowhere, does that mean that one normally operates at below 50% efficiency?

  • \n
  • Making the distill from copper is useful because it absorbs the large amounts of sulfur dioxide that are generated during fermentation. More copper, more good.
    \nIn winemaking, if you get noticeable amounts of sulfur dioxide, it means you fucked up the fermentation (except when making fruit wine from oranges, there it's pretty common).

  • \n
  • Malted corn needs no yeast for fermentation, and you get no headaches from it that way. I'm inclined to believe the opposite as far as headaches go, since no yeast means you run a wild fermentation. In winemaking, this is normally something that you absolutely want to avoid if you can help it. Wild fermentation, and rapid, ultra-high alcohol production?

  • \n
  • Moonshine sells for 25-30 dollars per liter. Not sure about alcohol prices in the USA, but I can buy alcohol legally (and not made from river water in a dirty barrel) for that amount of money here.

  • \n
\n\n

So, is there anything in there which (apart from running when police shows up) is even remotely realistic?

\n", "OwnerUserId": "5502", "LastEditorUserId": "22", "LastEditDate": "2016-06-02T14:53:47.540", "LastActivityDate": "2016-06-03T00:52:53.823", "Title": "Moonshiners (TV series)", "Tags": "liquor", "AnswerCount": "0", "CommentCount": "0", "ClosedDate": "2016-06-15T14:27:27.313", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5057"}} +{ "Id": "5057", "PostTypeId": "1", "CreationDate": "2016-06-02T06:31:22.863", "Score": "6", "ViewCount": "1360", "Body": "

I'm not familiar with the bar scene - I have been drinking mostly at home so that I don't have to worry about driving afterwards. However, recently I found a nice bar in the area I moved to and would like to try going out once in a while. What type of drink should I order if I want to hangout at the bar for one hour after 11 pm? I see many folks getting cocktails like such as margaritas and martinis, but is it against the norm to order beer, wine, or shots?

\n\n

I do not plan to have dinner. The bar is mellow and catered to young adults - the clientele is older than freshman college students.

\n", "OwnerUserId": "5503", "LastActivityDate": "2017-05-30T06:31:57.167", "Title": "Type of drink to order at a bar", "Tags": "liquor", "AnswerCount": "9", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5058"}} +{ "Id": "5058", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2016-06-02T07:11:44.563", "Score": "2", "Body": "

This really just comes down to personal preference if you can haply sit and drink a stout all night, or a larger, or even cocktails it all comes down to how you handle the alcohol. It is certainly not against the norm to order a beer wine or shots. Bars cater for the many not the few, so if you want to drink beer all night drink beer all night, don't be affected with what people around you are drinking.

\n\n

Even cocktail bars that I have been to still serve a variety of different drinks so don't be worried about ordering a beer

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-06-02T07:11:44.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5059"}} +{ "Id": "5059", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2016-06-02T11:38:29.113", "Score": "0", "Body": "

You can drink what you want, but usually there are some social rules. If you don't fancy cocktails, in a young adult type of bar (25-35 years old) wine is perfectly acceptable. If you order beer, order something better than regular beer, as import beer. And if you are not alone, shots are alright as well.

\n", "OwnerUserId": "5505", "LastActivityDate": "2016-06-02T11:38:29.113", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5060"}} +{ "Id": "5060", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2016-06-02T15:24:19.533", "Score": "11", "Body": "

Order what you like. Drink what you like. Life is too short to drink what someone else wants or expects you to. If people care what you're drinking at this bar, then I question why you'd want to be there.

\n", "OwnerUserId": "3905", "LastActivityDate": "2016-06-02T15:24:19.533", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5061"}} +{ "Id": "5061", "PostTypeId": "5", "CreationDate": "2016-06-02T15:24:32.117", "Score": "0", "Body": "

Wikipedia defines hops as following:

\n\n
\n

Hops are the flowers (also called seed cones or strobiles) of the hop plant Humulus lupulus.2 They are used primarily as a bittering, flavouring and stability agent in beer, to which they, beyond bitterness, impart floral, fruity or citrusy flavours and aroma;3 though they are also used for various purposes in other beverages and herbal medicine. The hop plant is a vigorous, climbing, herbaceous perennial, usually trained to grow up strings in a field called a hopfield, hop garden (nomenclature in the South of England), or hop yard (in the West Country and U.S.) when grown commercially. Many different varieties of hops are grown by farmers around the world, with different types used for particular styles of beer.

\n
\n\n

\"Hop

\n\n

Hop flower in a hop yard in the Hallertau, Germany

\n", "OwnerUserId": "-1", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T15:09:43.233", "LastActivityDate": "2018-09-29T15:09:43.233", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5062"}} +{ "Id": "5062", "PostTypeId": "4", "CreationDate": "2016-06-02T15:24:32.117", "Score": "0", "Body": "Hops are the flowers of the hop plant Humulus lupulus. They are used primarily as a flavoring and stability agent in beer, to which they impart bitter, zesty, or citric flavours.", "OwnerUserId": "5078", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T15:09:43.233", "LastActivityDate": "2018-09-29T15:09:43.233", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5063"}} +{ "Id": "5063", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2016-06-02T17:02:51.860", "Score": "7", "Body": "

You should drink anything you like - but if you intend to have one drink and nurse it for an hour, there are some considerations for optimizing the experience.

\n

Ice cubes are not nice cubes

\n

Most of your typical highballs (shot of liquor topped up with a soft drink) are served "on the rocks" - with as much ice as the establishment thinks it can get away with. The longer you hold your drink, the more of the ice will melt and dilute the beverage.

\n

The same goes for beers that will typically be consumed cool, like IPAs or lagers. Watch out for American Adjunct Lagers (Bud, Coors) in particular - you do not want to drink those warm.

\n

On the other hand, darker beers are often served at what's called cellar temperature, so it's no big deal if you let them stand for a bit.

\n

Try stronger flavours

\n

A lager or a sweet white wine is as drinkable as juice or water, meaning that it will not last too long. Go for a red wine or strong beer - I recommend Belgian quadrupels, barleywine, stouts (especially Imperial or barrel-aged) and Imperial/Double IPAs. As an added bonus, these are not typically consumed ice-cold. For mixed drinks, lowballs (cocktails that are mostly liquor) are a good choice. Order them neat or straight (no ice) to avoid dilution. Can't go wrong with an Old Fashioned or Sazerac.

\n

Variety can be nice

\n

Drinking the same thing all night can be a little dull. If a bar has a good selection of beers, it will offer a flight - 4-6 small glasses with different beers. This typically costs as much as, or slightly more than, one pint of beer. It will also help you pick a beer in the future, since you get to sample a whole bunch.

\n", "OwnerUserId": "5328", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2016-06-02T17:02:51.860", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5066"}} +{ "Id": "5066", "PostTypeId": "1", "AcceptedAnswerId": "5067", "CreationDate": "2016-06-04T05:00:28.600", "Score": "9", "ViewCount": "1359", "Body": "

Could anyone tell me what is the name of the cocktail with largest number of layers in a layered drink and in which order the various liqueurs are poured into it?

\n\n
\n

A layered (or \"stacked\") drink, sometimes called a pousse-café, is a kind of cocktail in which the slightly different densities of various liqueurs are used to create an array of colored layers, typically two to seven. - Wikipedia.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-06-27T22:07:19.950", "LastActivityDate": "2019-06-27T22:42:37.497", "Title": "What is the name of the cocktail with the greatest number of layers in a layered drink and which order are the various liqueurs poured?", "Tags": "cocktails layered-drinks", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5067"}} +{ "Id": "5067", "PostTypeId": "2", "ParentId": "5066", "CreationDate": "2016-06-05T15:02:34.907", "Score": "3", "Body": "

The most layers I have seen (and drunk) is the Pousse Cafe No. 1 - with 6 layers.

\n\n

\"enter

\n\n

It has equal measures of 6 liqueurs and spirits:

\n\n
    \n
  • Grenadine
  • \n
  • Maraschino
  • \n
  • Creme De Menthe
  • \n
  • Creme De Violette
  • \n
  • Yellow Chartreuse
  • \n
  • Brandy
  • \n
\n\n

Pouring uses the usual layer process - pour down the back of a spoon...very gently, so you don't mix with the previous layer.

\n\n

Pic from epicurious.com

\n", "OwnerUserId": "187", "LastActivityDate": "2016-06-05T15:02:34.907", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5068"}} +{ "Id": "5068", "PostTypeId": "2", "ParentId": "862", "CreationDate": "2016-06-06T16:13:19.837", "Score": "1", "Body": "

I put a teaspoon or a fork in the bottle. \nEmpirically it works, but I don't know exactly what physics laws are involved. \nThis method will allow you to keep carbonation longer.

\n", "OwnerUserId": "5523", "LastActivityDate": "2016-06-06T16:13:19.837", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5069"}} +{ "Id": "5069", "PostTypeId": "2", "ParentId": "862", "CreationDate": "2016-06-06T17:16:51.673", "Score": "2", "Body": "

I buy growlers and as soon as I open one I will pour what I am not going to drink into containers I can top off. It easily keeps for 2-3 days in the fridge. Even at 7 days it is just a bit flat.

\n\n

A bigger air gap lets more CO2 escape.

\n\n

I will drink directly out of the canteen to not lose more CO2 on a second pour. And pour carefully the first time. It may be me but I think a pouring into a chilled canteen has less head.

\n\n

For small you can use kids canteens - this is 12 oz and you can get a regular lid
\n\"enter

\n", "OwnerUserId": "4903", "LastActivityDate": "2016-06-06T17:16:51.673", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5071"}} +{ "Id": "5071", "PostTypeId": "1", "CreationDate": "2016-06-06T19:39:15.977", "Score": "10", "ViewCount": "9417", "Body": "

Wine was a cornerstone of ancient Roman cuisine and most Romans (including children and slaves) drank it every single day.

\n\n

In the past 2000 years, both grape cultivars and winemaking itself have evolved significantly. Is there a modern wine, commercially available today, that is intended to resemble ancient Roman wine as closely as possible?

\n", "OwnerDisplayName": "user47224", "LastActivityDate": "2016-06-09T01:19:14.660", "Title": "Is there a modern wine that is designed to resemble ancient Roman winemaking?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5072"}} +{ "Id": "5072", "PostTypeId": "1", "CreationDate": "2016-06-07T15:25:47.507", "Score": "6", "ViewCount": "327", "Body": "

I am trying to make a gin martini and I would like to know what is the best type of gin to use for doing so.

\n", "OwnerUserId": "5529", "LastEditorUserId": "5078", "LastEditDate": "2016-06-09T16:51:57.040", "LastActivityDate": "2016-06-11T13:23:25.267", "Title": "What is the best type of gin to use in a gin martini?", "Tags": "recommendations preparation-for-drinking gin", "AnswerCount": "1", "CommentCount": "3", "ClosedDate": "2016-06-30T09:04:43.133", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5073"}} +{ "Id": "5073", "PostTypeId": "1", "AcceptedAnswerId": "5081", "CreationDate": "2016-06-08T06:52:39.293", "Score": "5", "ViewCount": "1017", "Body": "

The title is already the question.

\n\n

How is it that I sleep well after drinking beer but I sleep terrible after drinking vodka?

\n\n

I am talking about 2 - 3 German 5,5% beer and about 100 - 200 ml vodka.

\n", "OwnerUserId": "5530", "LastEditorUserId": "43", "LastEditDate": "2016-06-16T02:47:02.017", "LastActivityDate": "2016-06-16T02:47:02.017", "Title": "How is it that I sleep well after drinking beer, but I sleep terrible after drinking vodka?", "Tags": "health german-beers vodka", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5074"}} +{ "Id": "5074", "PostTypeId": "2", "ParentId": "5073", "CreationDate": "2016-06-08T11:59:01.633", "Score": "0", "Body": "

Your body takes a while to break down alcohol that is in your bloodstream. I believe it is 1 hour per 3%.

\n\n

During this period you will not rest, as your body is still hard at work.

\n", "OwnerUserId": "984", "LastActivityDate": "2016-06-08T11:59:01.633", "CommentCount": "9", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5075"}} +{ "Id": "5075", "PostTypeId": "2", "ParentId": "3503", "CreationDate": "2016-06-09T01:00:54.613", "Score": "0", "Body": "

Answering myself. I didn't remember the beer very well as of the time I posted the question, and now I've had it again.

\n\n

I turns out this beer is actually an english barleywine, even mentioned by BJCP style-guide as an example of the style. And, as so, it's (very) well-suited for aging, considering its high ABV, melanoidins and beta acids levels (english hops are high in beta acids, which age well, in opposition to popular most popular american hops).

\n\n

I'll get some bottles for my cellar.

\n", "OwnerUserId": "4338", "LastActivityDate": "2016-06-09T01:00:54.613", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5076"}} +{ "Id": "5076", "PostTypeId": "2", "ParentId": "5071", "CreationDate": "2016-06-09T01:19:14.660", "Score": "4", "Body": "

The Romans learned their love of wines from the Greeks. In fact Greek wine was highly praised by the Romans and incorporated viticulture into their own culture, thanks to the Greeks. The white Retsina or Resinated wine of the ancient Greeks is still produced in Greece and is locally very popular.

\n\n

There are a few wineries in Europe, notable Italy that make a claim (loosely) of producing a truly Roman wine, but interpretation is still left to the reader.

\n\n

First of all, there is the Cesanese Wine

\n\n
\n

Cesanese could have been the local wine of ancient Rome.

\n \n

•It’s quite possible that Cesanese was the red wine of ancient Rome because the grape is quite old and existed in the region during pre-Roman times.

\n \n

•However, there is no physical records to prove this, just ampelography (the study of grapes).

\n \n

•Evidence of Cesanese dates back to the 1400s from agricultural contracts that were preserved in local monasteries.

\n \n

•There are only about 1500 acres of Cesanese vineyards left around Rome and the province of Frosinone in Lazio, Italy.

\n
\n\n

A second possibility is Frascati Wine:

\n\n
\n

The Romans referred to it as the Golden Wine both for its color and its value. It has become embedded in the cultural and economic traditions of the city. In fact, in 1450, there were 1,022 taverns in Rome. Producers of Frascati owned almost all of the taverns. It has been said that Frascati is the most often mentioned wine in Italian literature. Pope Gregori XVI, in the first part of the 18th century, said it was his favorite wine.

\n \n

The wines made in close proximity to Rome are collectively known as Castelli Romani, nine communes that produce wine in the Alban Hills, which are just south of Rome. The vineyards range from 200 to 1,000 feet in altitude. The Soils are well drained and volcanic. The Mediterranean provides some influence but the climate is more affected by the hills. Of these, Frascati is the most famous. It has historically had a widespread reputation as an inexpensive and serviceable white wine served in the cafés of Rome. The potential, however, is there to really improve the wines.

\n
\n\n

Mas des Tourelles offers some unique “Archeological Roman Wines”:

\n\n
\n

These wines are only available in France (and in few quantities in Germany).\n As many people contacted us to have informations on the way to buy and taste these wines in the US, you should know that it is hard to export wines without having a registered importer. It need also that this company can after deal with a reseller that can work with all the states.

\n \n

Mulsum

\n \n

Like testifying the passages of Pline the eldest, the blend of wine, honey and a certain number of plants ans spices (cinnamon, pepper, thyme ect...) are usedin making this famous wine, which was often served to the « gustatio » (before the meal as an aperitif).

\n \n

However, it also accompanies filet of duck with figs, small quails with grapes and pine kernels, very spicy dishes, Roquefort or chocolate fondant. To serve at 14°.

\n \n

Turriculae

\n \n

Made exactly according to the writings of Lucius Columelle, it displays the tastes of the Romans as far as dry wine is concerned. The addition of seawater, fenugrec, defrutum (grape juice concentrated to boiling point) ect..., during the vinification makes an amazing and complex wine. Roman dishes, such as oysters ans smoked fish, are wonderful with our wines of recent years.

\n \n

However, in the years of 2746 - 2747, you will be able to serve it with fried foie gras or cakes with nuts. To serve at 18°. « The fenugrec confers it to the particular « vin Jaune » taste and it has a detectable smell due to the notes of nuts and almonds. The taste of the Turriculae proves to be rich and supple with a round prune flavoured finish.\n (La Revue des Vins de France - Mai 1999)

\n \n

Carenum

\n \n

This sweet wine, described by Palladius, is produced by fermenting very mature grapes with plants, quince and defrutum. A delicately viscous and silky wine notes of quince and subtle aromas of crystallised peaches, it is a wonderful accompaniment with “foie gras” and fruit tarts.

\n \n

To serve at 14°. « The wine is of an amber colour, and its smell hesitates between peach and caramel. These smoky and caramel notes are also present in its mellowt taste. It makes a very nice aperitif ».\n (La revue des Vins de France - Mai 1999)

\n
\n\n

To make things a little more interesting it could be noted that Italian Scientists have planted vineyards with the aim of making wine using techniques from classical Rome described by Virgil.

\n\n
\n

Archeologists in Italy have set about making red wine exactly as the ancient Romans did, to see what it tastes like.

\n \n

At the group's vineyard, which should produce 70 litres at the first harvest, modern chemicals will be banned and vines will be planted using wooden Roman tools and will be fastened with canes and broom, as the Romans did.

\n \n

Instead of fermenting in barrels, the wine will be placed in large terracotta pots – traditionally big enough to hold a man – which are buried to the neck in the ground, lined inside with beeswax to make them impermeable and left open during fermentation before being sealed shut with clay or resin.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2016-06-09T01:19:14.660", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5078"}} +{ "Id": "5078", "PostTypeId": "1", "AcceptedAnswerId": "5082", "CreationDate": "2016-06-10T12:44:59.320", "Score": "12", "ViewCount": "2246", "Body": "

I'm not a wine man but I believe the general rule is to keep the cork wet, although the story is entirely different with whisky due to the effect of its high alcohol content breaking down the cork.

\n\n

If the rule for whisky is to store the bottle upright, will it not suffer the same fate as wine stored upright? Assuming I open a number of bottles for enjoyment rather than waxing the seal for longevity, how can I make my spirits last?

\n\n

Edit: for clarification, this question is focused on whisky that comes with a cork and by extension what to do with the cork, not whisky storage in general.

\n", "OwnerUserId": "5538", "LastEditorUserId": "5538", "LastEditDate": "2016-06-15T23:20:04.400", "LastActivityDate": "2016-06-15T23:20:04.400", "Title": "How can I keep Whisky from corking over time?", "Tags": "storage whiskey", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5080"}} +{ "Id": "5080", "PostTypeId": "2", "ParentId": "954", "CreationDate": "2016-06-10T18:23:26.637", "Score": "4", "Body": "

Blake's makes a mango habanero hard cider called El Chavo. It's not insanely spicy, but it's got some heat and good flavor.

\n\n

https://untappd.com/b/blake-s-hard-cider-company-el-chavo/759928

\n\n

They've also actually just come out with an imperial version of this stuff called El Chapo\n that's aged in tequila barrels.

\n", "OwnerUserId": "1323", "LastEditorUserId": "1323", "LastEditDate": "2016-06-29T16:02:18.493", "LastActivityDate": "2016-06-29T16:02:18.493", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5081"}} +{ "Id": "5081", "PostTypeId": "2", "ParentId": "5073", "CreationDate": "2016-06-10T21:29:15.540", "Score": "2", "Body": "

Hangovers

\n\n

Primary causes are dehydration and toxins built up in your system from the impurities in the alcohol you've been drinking, but in my personal experience and research sugar content can also contribute.

\n\n
    \n
  1. Dehydration
  2. \n
\n\n

Alcohol makes people urinate more, which raises the chances of dehydration occurring. Dehydration can give the individual that sensation of thirst and lightheadedness.

\n\n
    \n
  1. Impurites
  2. \n
\n\n

Most alcoholic beverages contain small amounts of chemicals\nother than ethanol as a by-product of the materials used\nin the fermenting process (e.g., grains and wood casks). Congeners\nare complex organic molecules with toxic effects including\nacetone, acetaldehyde, fusel oil, tannins, and furfural.

\n\n

Spirits have these in higher quantities than beer or wine due to the distillation process.

\n\n
    \n
  1. Sugar content
  2. \n
\n\n

Depending on what specific brands you are drinking and/or what you are mixing with high sugar content can cause you to have a sugar crash contributing to the hangover feelings.

\n\n
    \n
  1. Quality
  2. \n
\n\n

In my personal experience the mornings after indulging with top shelf spirits are notably better than those done on a budget. Bargain spirits tend to be cut with grain alcohol and balanced with corn syrup contributing to the issue, but in general higher priced spirits tend to be more highly refined (Vodka for example tends to have more filtration the more expensive it is).

\n\n

References

\n\n

http://www.medicalnewstoday.com/articles/5089.php

\n\n

http://onlinelibrary.wiley.com/doi/10.1111/j.1530-0277.2009.01116.x/full

\n", "OwnerUserId": "5539", "LastActivityDate": "2016-06-10T21:29:15.540", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5082"}} +{ "Id": "5082", "PostTypeId": "2", "ParentId": "5078", "CreationDate": "2016-06-10T21:42:13.547", "Score": "6", "Body": "

Hard spirits naturally degrade over time once opened

\n\n

You've already opened the bottle because you wanted to actually enjoy the drink, here are step you can take to help ensure the slow and unstoppable flavor degradation takes as long as possible.

\n\n
    \n
  1. Store out of the light in a cool and dry place.
  2. \n
\n\n

A good general rule of thumb for just about any type of alcohol is to store the bottles in a cool, dry, and dark location this will prevent any fluctuation in the environment from causing changes and prevent UV radiation from getting in.

\n\n
    \n
  1. Keep the bottle completely sealed.
  2. \n
\n\n

Whiskey and other spirits will not mature like a wine in a bottle over time, in fact using an open cork will likely contribute to the breakdown of the flavor as the spirit will have more opportunity to oxidize. A proper rubber stop/cork will do the job just fine.

\n\n

If you are looking to \"age\" a whiskey your best bet would be to store it in a small used whiskey cask or in a sealed class bottle with whiskey cask staves added. Both will allow the whiskey to absorb more flavors over time.

\n", "OwnerUserId": "5539", "LastActivityDate": "2016-06-10T21:42:13.547", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5083"}} +{ "Id": "5083", "PostTypeId": "2", "ParentId": "5072", "CreationDate": "2016-06-11T13:23:25.267", "Score": "2", "Body": "

According to Vinpair here are The 9 Best Gins To Use In A Martini! This list is not in order of best to worst. However, it does offer gin recommendations for various types of gin. Their number one all around recommendation is in fact Greylock.

\n\n

1. Plymouth

\n\n
\n

Plymouth is technically both a style and a brand – how’s that for pizzazz? Plymouth is remarkably gentle. It has a sweet, delicate nose and a woodsy, lemony body. You might even get a bit of cinnamon bark on the palate. The finish is quite smooth, making Plymouth ideal for the bare bones martini. If the idea of drinking a cocktail that’s basically straight liquor freaks you out, Plymouth is a great gin to start with. It’s so welcoming, the first few sips of your martini might evolve into gulps. Drink cautiously.

\n
\n\n

2. Bombay Sapphire

\n\n
\n

This is about as old timey as it gets. Savory, agreeable, and wonderfully cohesive, Bombay Sapphire is a gin that was born to hang out in a martini. While this low-key gin runs the risk of getting lost in fruitier cocktails, it rests perfectly alongside vermouth to create a balanced martini. Sapphire’s traditional botanicals (like coriander and grains of paradise) latch onto one another to make something great. Think of Sapphire as the perfect chocolate chip cookie: it seems simple, but one taste of a failed contender tells you it ain’t.

\n
\n\n

3. Citadelle BEST ON A BUDGET

\n\n
\n

If you’re at a great bar and ask for a basic gin cocktail off-menu, there’s a good shot you’ll be tasting Citadelle. This French gin is a great quality purchase. Plenty of orange and overall citrus give Citadelle a nice burst of fruitiness without being fruit forward per se. While there are some floral notes to work with here, Citadelle really straddles the line between unique and eccentric, making it a great choice for a more aromatic, flavor-packed martini. Plus, at around $25, you don’t have a lot to lose.

\n
\n\n

4. Euphrosine #9

\n\n
\n

All right, so Euphrosine #9 isn’t exactly traditional. In fact, it’s like you took the floral notes in Citadelle and pumped them up a notch (or three). Still, there’s enough palatable sweetness to make Euphrosine #9 a happy martini gin. If you’re looking for a martini that’s on the sweeter side, reach for this NOLA-born pick from producer Atelier Vie. You’ll pick up on hibiscus, berries, and sweet iced tea. Dare we say it, there’s something rather flirtatious about Euphrosine.

\n
\n\n

5. The Botanist

\n\n
\n

Hey, here’s something from Islay that isn’t Scotch! Bruichladdich crafts this interesting gin, which is made from thirty-one botanicals, twenty-two of which are native to Islay. While that may seem like an overwhelming amount of botanicals when compared to the standard seven or eight, The Botanist holds itself together surprisingly well. This is a complex gin, with a floral nose and an herbal palate. We get chamomile, mint, and citrus zest. Because this gin is so layered, you might want to add even less vermouth than usual. When it comes to your standard martini, The Botanist will really do all the talking, and in this case, that’s okay.

\n
\n\n

6. Gin Mare

\n\n
\n

Do you prefer your martinis dirty? Then use Gin Mare. Seriously, this Spanish gin seems to be genetically engineered for a dirty martini. In a rare instance where branding fits product, Gin Mare is a Mediterranean gin made with olives, thyme, and rosemary amongst other herbs. The viscosity of the gin, combined with its garden-fresh taste, makes it the ideal spirit for a martini with just a hint of olive tartness. With this spicy yet still contained gin, you’ll feel like you’re going beyond a basic martini. Gin Mare is a great example of how a spirit can be both contemporary and classic at the same time.

\n
\n\n

7. Terroir

\n\n
\n

Made from the gorgeous distillery at St. George’s Spirits, Terroir gin uses local Douglas fir. Unsurprisingly, Terroir gin was created as an homage to California’s natural resources. While drinking “fir” might put you off at first, it seems that the plant works to intensify the juniper, giving us a gin that has classic pine notes. This gin has a generous layer of crisp juniper bite, yet there’s a certain earthiness to it that prevents it from being too harsh or simplistic. Expect grassy notes, moss, tree sap, and of course, a heavy coat of juniper to round this all up. Like Bombay Sapphire, this gin is as solid as a California redwood.

\n
\n\n

8. Greylock BEST OVERALL

\n\n
\n

This mighty gin from Berkshire Mountain Distillers has received tons of praise – and rightfully so. Straightforward, London Dry, and clean as a whistle, Greylock is a fantastic martini gin. Spicy licorice combined with lemon peel, black pepper, and a touch of cooking spice make Greylock both approachable and complex. Greylock will add lip-smacking flavor to your martini while still boasting enough unique spiciness to make your cocktail truly special. A hint of sugar-coated juniper berry will give way to just enough sweetness to make your martini quaffable as can be. This is an A+ gin for making martinis – we guarantee your guests will be happy with this crowd-pleaser.

\n
\n\n

9. Dorothy Parker

\n\n
\n

Named after satirical poet and general snark icon Dorothy Parker, this gin from New York Distilling Company would make Ms. Parker proud. Similar to Euphrosine #9, the floral nose is rich with hibiscus, elderflower, pear, and cranberries. The juniper peaks its head around on the blooming palate and the finish, which is zesty. While this is half a world away from Greylock, it’s perfect if you’re looking to whip up a martini that’s a little lighter, bubblier, and of course, a bit more tart – like Ms. Parker herself.

\n
\n\n

Recommendation are always a hard subject to put across to others because what one person may enjoy, another may find less than favorable!

\n\n

Town and Country Magazine offers their 5 of the Best Gins for a Classic Martini.

\n\n
    \n
  1. Boodles

  2. \n
  3. Tanqueray

  4. \n
  5. St. George

  6. \n
  7. Aviation

  8. \n
  9. Berkshire Mountain Distillers Greylock

  10. \n
\n\n

Personally I am a fan of Beefeater as is seen here from The Best Gin for a Martini!

\n\n
    \n
  1. Ford's Gin

  2. \n
  3. Beefeater

  4. \n
  5. Bombay Dry

  6. \n
  7. Plymouth Gin

  8. \n
  9. Bombay Sapphire

  10. \n
\n", "OwnerUserId": "5064", "LastActivityDate": "2016-06-11T13:23:25.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5084"}} +{ "Id": "5084", "PostTypeId": "1", "AcceptedAnswerId": "5086", "CreationDate": "2016-06-12T14:08:49.817", "Score": "7", "ViewCount": "320", "Body": "

The other day, I was in a specialty wine store and noticed several bottles of wines priced between $500 and $5,000!

\n\n

Is there any way of knowing (historically or otherwise) that a particular exorbitantly priced bottle of wine is a well flavored wine? Or is this simply a marketing strategy?

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-06-13T23:18:42.930", "Title": "Is there any proof that a $1,000 bottle of wine is a good wine?", "Tags": "buying wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5085"}} +{ "Id": "5085", "PostTypeId": "2", "ParentId": "5084", "CreationDate": "2016-06-12T17:38:28.927", "Score": "2", "Body": "

There is no proof for any bottle of wine. You can open it and it has gone bad.

\n\n

Good is subjective. Well flavored is subjective. Flavor is more about the grape. If you don't like a Cabernet Sauvignon then you are not going to like an expensive Cabernet Sauvignon.

\n\n

There are numerous reviews and point systems.

\n\n

A vineyard will have a reputation.

\n\n

The wine buyer at the store has the reputation of the store to protect.

\n\n

Restaurants will sample the wine before putting it on the menu.

\n\n

Yes wine snobs know the difference and they LOVE to talk about wine.

\n\n

If you are not a wine connoisseur you might not know the difference between a $40 and $400. But you would probably prefer the $40 over over the $4 of the same grape.

\n\n

In a free market supply and demand establish the price and wine is a liquid (that is an economics term) commodity. Even a small run will have a set of knowledgeable buyers.

\n\n

Yes they may have just slapped a price on it as a marketing ploy. Does not mean the market will bite. For sure you don't need to bite. There are many reviews available. If you want to get into higher priced wines then find reviewers / publications you trust.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-06-13T23:18:42.930", "LastActivityDate": "2016-06-13T23:18:42.930", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5086"}} +{ "Id": "5086", "PostTypeId": "2", "ParentId": "5084", "CreationDate": "2016-06-13T12:34:39.850", "Score": "9", "Body": "

There are many wines which are for sale at many thousands of pounds/dollars that no-one will ever drink, and that are not expected to have a good taste at all - they are simply priced there through scarcity.

\n\n

A rare item is going to demand a higher price from an interested buyer than a commodity item.

\n\n

While I may be able to tell the difference between a £10 bottle and a £200 bottle, I may in many cases prefer the £10 (and this has proved to be the case often enough that when I used to sell wines I used to sell based on what the customer liked previously, Not some description of the nose and palate that is upwards of 50% subjective and arbitrary)

\n\n

Upwards of £200 there is almost no quality/taste difference, and upwards of £1000 the customer is solely paying for exclusivity, and the opportunity to drink or offer a glass no-one else can, or just to hold it as an investment.

\n", "OwnerUserId": "187", "LastActivityDate": "2016-06-13T12:34:39.850", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5087"}} +{ "Id": "5087", "PostTypeId": "1", "CreationDate": "2016-06-14T02:29:16.623", "Score": "4", "ViewCount": "60", "Body": "

I made wine last fall (2015) September and racked it one time. After that\nI left it in the carboys. It stopped fermenting and cleared. I never bottled it, it's still in there with the airator top on it. Is it safe to bottle. It looks good and doesn't smell. I followed the directions to ferment it and racking it.

\n", "OwnerUserId": "5545", "LastEditorUserId": "5078", "LastEditDate": "2016-06-14T13:57:18.713", "LastActivityDate": "2016-08-15T22:29:49.723", "Title": "muscadine wine fermenting", "Tags": "bottling wine fermentation", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5088"}} +{ "Id": "5088", "PostTypeId": "1", "AcceptedAnswerId": "5090", "CreationDate": "2016-06-14T07:26:10.547", "Score": "23", "ViewCount": "24358", "Body": "

I am a big fan of the peatier Scotch whiskies, such as Octomore, Lagavulin, Laphroaig and Talisker, but aside from describing them as \"really peaty\" or \"wow, so much smoke\" it can be incredibly difficult to describe a particular whisky to someone who hasn't drunk it.

\n\n

Is there a scale, so I can just say, \"That's a 7\" and be understood?

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2016-06-14T07:42:08.580", "LastActivityDate": "2017-03-30T16:57:47.657", "Title": "Is there a peatiness scale for whiskies", "Tags": "whiskey", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5089"}} +{ "Id": "5089", "PostTypeId": "1", "AcceptedAnswerId": "5100", "CreationDate": "2016-06-14T07:32:14.680", "Score": "5", "ViewCount": "965", "Body": "

While out at my local I always like to try new beers, and as I was going through a few different beers and I noticed that almost all of them all had varying temperatures. Some where ice cold whilst some were warmer I understand that this is on purpose but I'm not sure why?

\n\n

So why is it that some beers are served Cold and why are some served Warm?

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-06-15T07:10:13.677", "Title": "Why are some beers warm and some cold?", "Tags": "serving ale", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5090"}} +{ "Id": "5090", "PostTypeId": "2", "ParentId": "5088", "CreationDate": "2016-06-14T07:41:48.737", "Score": "23", "Body": "

There is a way peatiness or smokiness is measured scientifically: the phenol count in parts per million (PPM) however this isn't as useful as it sounds, as different phenols taste and smell different. Using the phenol measurement you can chart some examples as follows:

\n\n
    \n
  • Ardbeg - 55
  • \n
  • Laphroaig - 40
  • \n
  • Lagavulin - 35
  • \n
  • Caol Ila - 30
  • \n
  • Talisker - 25
  • \n
  • Highland Park - 20
  • \n
\n\n

Of more use is a chart such as this one from malts.com, which gives a simple way to visualise where a particular whisky sits, and the distance between that whisky and others the drinker may have tried previously.

\n\n

\"enter

\n\n

Or this one in the Scotch Whisky Experience in Edinburgh:

\n\n

\"enter

\n\n

(Look at how high Talisker sits on the charts, compared with its position on the phenol measurement...)

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2017-03-30T16:57:47.657", "LastActivityDate": "2017-03-30T16:57:47.657", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5091"}} +{ "Id": "5091", "PostTypeId": "2", "ParentId": "5005", "CreationDate": "2016-06-14T09:43:25.163", "Score": "1", "Body": "

No Age Statement (NAS) Scotch Whiskies give you only one item of information you can rely on - they are at least 3 years old (otherwise they can not be called Whisky)

\n\n

The 40% gives you no useful information - in the Warrior range you have:

\n\n
    \n
  • Svein - 40% - 40Euro
  • \n
  • Einar - 40% - 53Euro
  • \n
  • Harald - 40% - 75Euro
  • \n
  • Sigurd - 43% - 150Euro
  • \n
  • Ragnavald - 44.6% - 400Euro
  • \n
  • Thorfinn - 45.1% - 1000Euro
  • \n
\n\n

(Taken from somersetwhisky.com)

\n\n

Those first 3 are all 40% alcohol but are very different blends from different casks.

\n\n

There higher end of this range is likely to be older, and higher quality, and the Thorfinn has a specified 60% first fill cask (hence its colour and rich flavour) but they will each have whisky from casks of a variety of ages from 3 years and upwards, chosen in order to give the end product the required characteristics.

\n\n

As with all whiskies - try the ones you can and go with the ones you like :-)

\n", "OwnerUserId": "187", "LastActivityDate": "2016-06-14T09:43:25.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5092"}} +{ "Id": "5092", "PostTypeId": "1", "AcceptedAnswerId": "5094", "CreationDate": "2016-06-14T12:46:24.817", "Score": "9", "ViewCount": "2650", "Body": "

I've noticed that on the label on some whiskey bottles it say \"distilled 2010 | bottled 2016\"

\n\n

Is a Whiskey in that case then categorized as a six-year-old whiskey or one-year-old (or zero) whiskey?

\n\n

I'm getting a daughter this year and I would love to buy a bottle of whiskey from the year she is born (which of cause if this year, 2016) but the only whiskey I can find is where it's bottled 2016.

\n", "OwnerUserId": "5548", "LastActivityDate": "2016-06-18T00:27:28.897", "Title": "Whiskey: Year is it from distilled or bottled?", "Tags": "whiskey age", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5093"}} +{ "Id": "5093", "PostTypeId": "2", "ParentId": "5089", "CreationDate": "2016-06-14T13:25:41.603", "Score": "4", "Body": "

I don't think anyone would deliberately or professionally serve warm beer, if by warm you mean something close to body temperature. Generally speaking, cask ale (as opposed to pressurised keg beer) is served, in the UK at least, and according to CAMRA's website, at cellar temperature: 12-14 C (54-57 F), whereas lager and keg beer is usually served much colder.

\n\n

So much for the purist. My preference is always for cask ale to be served cool, but not cold, so that the flavours can be properly appreciated. Good quality lager should be served colder, and I prefer Czech pilsners at around 6-8 C - about the same temperature as you'd want white wine to be. But on a burning hot day in the African sunshine (where I'm from), there is nothing as refreshing as an ice-cold (and I mean ice-cold) ordinary mass-market lager, straight out of the bottle. You can't distinguish tastes as readily at those temperatures. Refreshment is the key there: you don't really care about taste in those circumstances (if you did you'd be drinking something else).

\n", "OwnerUserId": "5481", "LastActivityDate": "2016-06-14T13:25:41.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5094"}} +{ "Id": "5094", "PostTypeId": "2", "ParentId": "5092", "CreationDate": "2016-06-14T13:37:30.777", "Score": "9", "Body": "

The bottle you are talking about will be 6 years old: it ages from the day of distillation and it will stop aging once it has been bottled (properties can change but for all intents and purposes it has stopped aging once it has been bottled)

\n\n

I would even go on to say that it will pretty much be impossible to find a whiskey that is from this year as they will need some time to distill and bottle. I would say the earliest you will be able to get a whiskey distilled in 2016 would be about 4 years from now as whiskey takes time to make, so be patient you will be able to get a bottle from 2016 just not yet.

\n", "OwnerUserId": "5078", "LastEditorUserId": "49", "LastEditDate": "2016-06-18T00:27:28.897", "LastActivityDate": "2016-06-18T00:27:28.897", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5095"}} +{ "Id": "5095", "PostTypeId": "2", "ParentId": "5092", "CreationDate": "2016-06-14T14:08:16.297", "Score": "3", "Body": "

You can buy a cask of newly made whisky.

\n\n

Arran whisky offers a newly barreled whisky, price includes insurance and 10 years of bond storage. It's £1850 for 200 liters. After 10 years they'll bottle it at £30 per 12 bottle crate and you can sell it or drink it.

\n", "OwnerUserId": "4394", "LastEditorUserId": "5078", "LastEditDate": "2016-06-14T15:17:48.667", "LastActivityDate": "2016-06-14T15:17:48.667", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5097"}} +{ "Id": "5097", "PostTypeId": "2", "ParentId": "5088", "CreationDate": "2016-06-14T20:38:20.093", "Score": "8", "Body": "

The problem is, even if there were an objective measure of \"smokeiness\", there are different sorts of smoke tastes.

\n\n

Usually TCP (\"phenol\") content is the numeric measure of how smokey a given Scotch is, ranging from 0 pmm or close to it, up to around 170 pmm (Octomore).

\n\n

However, there are a number of problems with that measurement being used. The biggest is that TCP only measures a specific component of smoke flavor, and in fact one of somewhat less importance. TCP is responsible for the sharp, chemical smoke flavor. However, polycyclic aromatics are responsible for the majority of \"smoke\" flavor. In fact, many fuels, such as wood, create relatively low proportions of TCP compared to peat. As such, it is more of a ballpark figure, and even then only if you are discussing alcohols smoked with the same fuels.

\n\n

Because of those different compounds, the actual nature of smoke flavors vary wildly depending on the fuel and its origin, not just how much of it is used. Here are some examples of how I would classify the smoke flavor of various alcohols:

\n\n
    \n
  1. Laphraoig: Cigar smoke
  2. \n
  3. Ardbeg: Bonfire, \"iodine\"
  4. \n
  5. Highland Park: Bacon
  6. \n
  7. Octomore: Chemical, biting
  8. \n
  9. Vita (Mezcal, not Scotch): A forest fire
  10. \n
\n\n

As implied by the terminology I chose, it can be difficult to separate the smoke taste from the other tastes involved. There is even disagreement as to what constitutes \"smoke\"/\"peatiness\" - are \"iodine\" and/or \"phenol\" part of it, or entirely separate? If they are separate, can people reasonably separate them in tasting?

\n\n

I am skeptical how useful a number could possibly be with the wide variety of smoke flavors to discuss. It's not just that the number would amalgamate many distinct flavors, it's also that different people are differently sensitive to the varying flavor compounds and might find the numbers ill-represent their actual experience because of that.

\n\n

As such, any number you might come up with is going to have a wide margin of error, since no one is going to agree on how \"smokey\" a given alcohol is.

\n\n

It is of course theoretically possible to generate a number based on analysis of many different flavor compounds. However, that has not been done, and likely will not be. Even if it was, people would still have differing sensitivities. The closest you are likely to get is TCP ppm measurements and arbitrary numbers offered by reviewers.

\n", "OwnerDisplayName": "user5483", "LastActivityDate": "2016-06-14T20:38:20.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5098"}} +{ "Id": "5098", "PostTypeId": "2", "ParentId": "5089", "CreationDate": "2016-06-14T22:03:18.780", "Score": "0", "Body": "

I don't know if you know what sake is sake is traditional wine that served hot I have experience cold and hot it a lot taster when it hot try some go to a Japanese store ask them u want to try hot sake

\n", "OwnerUserId": "5561", "LastEditorUserId": "5078", "LastEditDate": "2016-06-15T07:10:13.677", "LastActivityDate": "2016-06-15T07:10:13.677", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5100"}} +{ "Id": "5100", "PostTypeId": "2", "ParentId": "5089", "CreationDate": "2016-06-15T02:30:17.250", "Score": "4", "Body": "

Why is it that some beers are served Cold and why are some served Warm?

\n\n

At what temperature should a beer be served can be answered by the following statement:

\n\n
\n

Most beers have an ideal serving temperature. There’s a chart below outlining which styles are served at what temperature, but as a general rule the temperature at which to serve a beer is correlated to the strength of the beer. As beers go up in alcohol, they are generally drunk at a warmer temperature. This is because stronger beers often are sipped slowly, and enjoyed for their complexity of flavor and aroma while weaker beers are often consumed for refreshment. For no style is this more apparent than American macro lagers, which are generally drunk so cold that you can’t taste them. There’s a reason those big brewers want people to drink their beers at tongue-numbing temperatures. As they warm up, they don’t taste very good. - The Craft Beer Temple.

\n \n

Very Cold: 35-40 degrees

\n \n

•American Adjunct Lagers (“Macros”)

\n \n

•Malt Liquors

\n \n

•Light or low alcohol beers

\n \n

Cold: 40-45 degrees

\n \n

•Pilsner

\n \n

•Light-bodied lagers

\n \n

•Kolsch

\n \n

•Belgian Wit

\n \n

•Hefeweizen

\n \n

•Berliner weisse

\n \n

•American Wheat

\n \n

Cool: 45-50 degrees

\n \n

•American Pale Ales

\n \n

•Medium-bodied lagers

\n \n

•India Pale Ale (IPA)

\n \n

•Porters

\n \n

•Alt

\n \n

•Irish Stouts

\n \n

•Sweet Stout

\n \n

Cellar Temp: 50-55 degrees

\n \n

•Sour Ales

\n \n

•Lambic/Gueuze

\n \n

•English Bitter

\n \n

•Strong Ales

\n \n

•Baltic Porters

\n \n

Blockquote•Bocks

\n \n

•Scotch Ales

\n \n

•Belgian Ales

\n \n

•Trappist Ales

\n \n

Warm: 55-60 degrees

\n \n

•Imperial Stouts

\n \n

•Belgian Quads

\n \n

•Belgian Strong Ales

\n \n

•Barley Wines

\n \n

•Old Ales

\n \n

•Dopplebock

\n \n

•Eisbock

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2016-06-15T02:30:17.250", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5101"}} +{ "Id": "5101", "PostTypeId": "2", "ParentId": "5078", "CreationDate": "2016-06-15T16:32:10.940", "Score": "1", "Body": "

You should not keep the cork wet. The high alcohol content of most distilled spirits will begin to dissolve the cork, which is highly undesirable. They should always be stored upright. This applies to metal screw tops as well, as metal catalyzes the breakdown of organic compounds.

\n\n

To improve the lifespan, the best thing you can do is keep the bottle in a cool, dark place. While it is true oxidation cannot happen without air, it is far slower without energy present, and reducing light-heat is much easier than removing air.

\n\n

If you are able to keep the bottle in complete dark and below ~70F, it will last far longer. I store mine in a cabinet in my kitchen, and I have an Islay Scotch that has been open for 4 years and shows no signs of degrading, despite smoke being among the most easily destroyed flavors.

\n\n

Always void sunlight. UV will quickly degrade the flavor of spirits. While the glass of most bottles blocks some UV, any getting through is extremely harmful.

\n\n

Something else that can be done is to transfer partially filled bottles into smaller bottles. If you have half of a 0.750L, you might transfer it into 0.375L. This would reduce surface area and the amount of air in the bottle.

\n\n

If you are committed to preserving a bottle that you do not often use, wine stores sell cans of Xenon which can be sprayed into bottles. The Xenon is heavier than air and covers the surface, preventing oxygen from coming in contact with the liquid. However, this is fairly expensive and will not prevent forms of heat/light degradation other than oxidation

\n", "OwnerDisplayName": "user5483", "LastActivityDate": "2016-06-15T16:32:10.940", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5102"}} +{ "Id": "5102", "PostTypeId": "5", "CreationDate": "2016-06-15T18:16:53.530", "Score": "0", "Body": "

Gin is a spirit which derives its predominant flavor from juniper berries. Gin is the main ingredient in many classic cocktails such as the Martini, Gimlet, and Tom Collins.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:43:39.983", "LastActivityDate": "2016-06-16T02:43:39.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5103"}} +{ "Id": "5103", "PostTypeId": "4", "CreationDate": "2016-06-15T18:16:53.530", "Score": "0", "Body": "Gin is a spirit which derives its predominant flavor from juniper berries. Gin is the main ingredient in many classic cocktails such as the Martini, Gimlet, and Tom Collins. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:42:31.183", "LastActivityDate": "2016-06-16T02:42:31.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5104"}} +{ "Id": "5104", "PostTypeId": "5", "CreationDate": "2016-06-15T18:20:40.363", "Score": "0", "Body": "

Cocktails refer to mixed drinks, consisting typically of gin, whiskey, rum, vodka, or brandy, with different admixtures, as vermouth, fruit juices, or flavorings, usually chilled and frequently sweetened.

\n\n

When a mixed drink contains only a distilled spirit and a mixer, such as soda or fruit juice, it is a highball; many of the International Bartenders Association Official Cocktails are highballs. When a cocktail contains only a distilled spirit and a liqueur, it is a duo and when it adds a mixer, it is a trio. Additional ingredients may be sugar, honey, milk, cream, and various herbs

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:43:26.140", "LastActivityDate": "2016-06-16T02:43:26.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5105"}} +{ "Id": "5105", "PostTypeId": "4", "CreationDate": "2016-06-15T18:20:40.363", "Score": "0", "Body": "Cocktails refer to mixed drinks, consisting typically of gin, whiskey, rum, vodka, or brandy, with different admixtures, as vermouth, fruit juices, or flavorings, usually chilled and frequently sweetened.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:42:22.587", "LastActivityDate": "2016-06-16T02:42:22.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5106"}} +{ "Id": "5106", "PostTypeId": "5", "CreationDate": "2016-06-15T18:22:39.943", "Score": "0", "Body": "

Covering various drinking and serving glasses. What glass should be used to server which type of cocktail, wine or beer.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:44:02.220", "LastActivityDate": "2016-06-16T02:44:02.220", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5107"}} +{ "Id": "5107", "PostTypeId": "4", "CreationDate": "2016-06-15T18:22:39.943", "Score": "0", "Body": "Covering various drinking and serving glasses. What glass should be used to server which type of cocktail, wine or beer. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:43:03.357", "LastActivityDate": "2016-06-16T02:43:03.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5108"}} +{ "Id": "5108", "PostTypeId": "5", "CreationDate": "2016-06-15T18:40:42.067", "Score": "0", "Body": "

Relating to guidelines and practices for serving beer, wine and spirits.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:42:44.607", "LastActivityDate": "2016-06-16T02:42:44.607", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5109"}} +{ "Id": "5109", "PostTypeId": "4", "CreationDate": "2016-06-15T18:40:42.067", "Score": "0", "Body": "Relating to guidelines and practices for serving beer, wine and spirits. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:42:39.793", "LastActivityDate": "2016-06-16T02:42:39.793", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5110"}} +{ "Id": "5110", "PostTypeId": "5", "CreationDate": "2016-06-15T18:51:42.790", "Score": "0", "Body": "

Vodka is a distilled beverage composed primarily of water and ethanol, sometimes with traces of impurities and flavorings. Vodka is the main ingredient in many classic cocktails such as the Bloody Mary, Moscow Mule, and White Russian.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:42:07.773", "LastActivityDate": "2016-06-16T02:42:07.773", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5111"}} +{ "Id": "5111", "PostTypeId": "4", "CreationDate": "2016-06-15T18:51:42.790", "Score": "0", "Body": "Vodka is a distilled beverage composed primarily of water and ethanol, sometimes with traces of impurities and flavorings. Vodka is the main ingredient in many classic cocktails such as the Bloody Mary, Moscow Mule, and White Russian. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T02:42:53.997", "LastActivityDate": "2016-06-16T02:42:53.997", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5112"}} +{ "Id": "5112", "PostTypeId": "2", "ParentId": "3207", "CreationDate": "2016-06-16T15:00:12.727", "Score": "1", "Body": "

If You do enjoy Grimbergen Blanche You should definitely try out some Blanc 1664. It is light white beer - cold one is best choice at hot summer!

\n\n

As for me, the one in the bottle is better (like all of the beers).

\n\n

The taste of this beer is not suitable for everyone, some of my friends argues with \"how could you drink this ?\". I really do love the rich fruit taste and the lightness of the beer itself.

\n\n

Recommending to try.

\n\n

\"Blanc

\n", "OwnerUserId": "5568", "LastEditorUserId": "5569", "LastEditDate": "2016-06-16T15:18:40.263", "LastActivityDate": "2016-06-16T15:18:40.263", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5113"}} +{ "Id": "5113", "PostTypeId": "5", "CreationDate": "2016-06-16T15:11:21.167", "Score": "0", "Body": "

Relating to peers produced in Germany or beers produced following the German purity laws.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:18:30.683", "LastActivityDate": "2016-06-16T15:18:30.683", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5114"}} +{ "Id": "5114", "PostTypeId": "4", "CreationDate": "2016-06-16T15:11:21.167", "Score": "0", "Body": "Relating to peers produced in Germany or beers produced following the German purity laws. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:18:00.650", "LastActivityDate": "2016-06-16T15:18:00.650", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5115"}} +{ "Id": "5115", "PostTypeId": "5", "CreationDate": "2016-06-16T15:23:05.463", "Score": "0", "Body": "

Questions about the bottling process.

\n\n

This can include questions about bottling beer, Wine and spirits

\n", "OwnerUserId": "5539", "LastEditorUserId": "5078", "LastEditDate": "2016-06-16T15:29:30.723", "LastActivityDate": "2016-06-16T15:29:30.723", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5116"}} +{ "Id": "5116", "PostTypeId": "4", "CreationDate": "2016-06-16T15:23:05.463", "Score": "0", "Body": "Questions about the bottling process for beer, wine, or spirits.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:27:42.683", "LastActivityDate": "2016-06-16T15:27:42.683", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5117"}} +{ "Id": "5117", "PostTypeId": "5", "CreationDate": "2016-06-16T15:24:15.173", "Score": "0", "Body": "

Questions about bottles themselves or how bottle properties affect the beverages within.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:27:36.980", "LastActivityDate": "2016-06-16T15:27:36.980", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5118"}} +{ "Id": "5118", "PostTypeId": "4", "CreationDate": "2016-06-16T15:24:15.173", "Score": "0", "Body": "Questions about bottles themselves or how bottle properties affect the beverages within. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-16T15:27:49.807", "LastActivityDate": "2016-06-16T15:27:49.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5119"}} +{ "Id": "5119", "PostTypeId": "5", "CreationDate": "2016-06-16T15:32:30.043", "Score": "0", "Body": "

About how beer, wine, or spirits are aged to reach their finished state or about how to age one yourself after purchase.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-17T07:14:44.257", "LastActivityDate": "2016-06-17T07:14:44.257", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5120"}} +{ "Id": "5120", "PostTypeId": "4", "CreationDate": "2016-06-16T15:32:30.043", "Score": "0", "Body": "About how beer, wine, or spirits are aged to reach their finished state or about how to age one yourself after purchase. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-17T07:11:31.083", "LastActivityDate": "2016-06-17T07:11:31.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5121"}} +{ "Id": "5121", "PostTypeId": "5", "CreationDate": "2016-06-16T15:33:14.093", "Score": "0", "Body": "

Ale is a type of beer brewed using a warm fermentation method, resulting in a sweet, full-bodied and fruity taste. Historically, the term referred to a drink brewed without hops.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-17T07:10:30.020", "LastActivityDate": "2016-06-17T07:10:30.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5122"}} +{ "Id": "5122", "PostTypeId": "4", "CreationDate": "2016-06-16T15:33:14.093", "Score": "0", "Body": "Ale is a type of beer brewed using a warm fermentation method, resulting in a sweet, full-bodied and fruity taste. \r\n\r\nUse this tag when asking questions about Ale", "OwnerUserId": "5539", "LastEditorUserId": "5078", "LastEditDate": "2016-06-17T07:11:17.333", "LastActivityDate": "2016-06-17T07:11:17.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5123"}} +{ "Id": "5123", "PostTypeId": "5", "CreationDate": "2016-06-16T15:33:58.660", "Score": "0", "Body": "

Trappist beer is brewed by Trappist breweries. Eleven monasteries

\n\n
    \n
  • 6 in Belgium
  • \n
  • 2 in Netherlands
  • \n
  • 1 in Austria
  • \n
  • 1 in Italy
  • \n
  • 1 in United States
  • \n
\n\n

currently brew beer and sell it as Authentic Trappist Product.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5078", "LastEditDate": "2016-06-17T07:13:40.587", "LastActivityDate": "2016-06-17T07:13:40.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5124"}} +{ "Id": "5124", "PostTypeId": "4", "CreationDate": "2016-06-16T15:33:58.660", "Score": "0", "Body": "Trappist beer is brewed by Trappist breweries. Eleven monasteries — six in Belgium, two in the Netherlands and one each in Austria, Italy and United States — currently brew beer and sell it as Authentic Trappist Product.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-17T07:11:44.507", "LastActivityDate": "2016-06-17T07:11:44.507", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5125"}} +{ "Id": "5125", "PostTypeId": "2", "ParentId": "5087", "CreationDate": "2016-06-16T21:29:25.080", "Score": "1", "Body": "

If the aerator top is still working, meaning that no air has gotten to the wine, you should still be able to bottle it. The best way to know is to taste it. If it tastes right, you should be fine.

\n", "OwnerUserId": "5570", "LastActivityDate": "2016-06-16T21:29:25.080", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5126"}} +{ "Id": "5126", "PostTypeId": "2", "ParentId": "3207", "CreationDate": "2016-06-17T12:48:22.897", "Score": "0", "Body": "

You can also give a try to:

\n\n
    \n
  • Edelweiss
  • \n
  • Brasserie du mont Blanc \"La blanche\"
  • \n
\n\n

Besides, I wouldn't say likje

\n", "OwnerUserId": "5572", "LastActivityDate": "2016-06-17T12:48:22.897", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5128"}} +{ "Id": "5128", "PostTypeId": "5", "CreationDate": "2016-06-17T20:32:13.640", "Score": "0", "Body": "

Deposits or Sediment is the solid material that settles to the bottom of any wine or beer container, such as a bottle, vat, tank, cask, or barrel.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:29:32.157", "LastActivityDate": "2016-06-18T00:29:32.157", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5129"}} +{ "Id": "5129", "PostTypeId": "4", "CreationDate": "2016-06-17T20:32:13.640", "Score": "0", "Body": "Questions about deposits or sediment at the bottom of a beer or wine bottle. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:29:38.813", "LastActivityDate": "2016-06-18T00:29:38.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5130"}} +{ "Id": "5130", "PostTypeId": "5", "CreationDate": "2016-06-17T20:34:31.057", "Score": "0", "Body": "

Scotch whisky, often simply called Scotch, is malt whisky or grain whisky made in Scotland. Scotch whisky must be made in a manner specified by law.

\n

All Scotch whisky was originally made from malted barley. Commercial distilleries began introducing whisky made from wheat and rye in the late 18th century. Scotch whisky is divided into five distinct categories: single malt Scotch whisky, single grain Scotch whisky, blended malt Scotch whisky (formerly called "vatted malt" or "pure malt"), blended grain Scotch whisky, and blended Scotch whisky.

\n

All Scotch whisky must be aged in oak barrels for at least three years. Any age statement on a bottle of Scotch whisky, expressed in numerical form, must reflect the age of the youngest whisky used to produce that product. A whisky with an age statement is known as guaranteed-age whisky.

\n", "OwnerUserId": "5539", "LastEditorUserId": "11599", "LastEditDate": "2020-11-23T19:27:25.977", "LastActivityDate": "2020-11-23T19:27:25.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5131"}} +{ "Id": "5131", "PostTypeId": "4", "CreationDate": "2016-06-17T20:34:31.057", "Score": "0", "Body": "Scotch whisky, often simply called Scotch, is malt whisky or grain whisky made in Scotland. ", "OwnerUserId": "5539", "LastEditorUserId": "11599", "LastEditDate": "2020-11-23T19:27:21.603", "LastActivityDate": "2020-11-23T19:27:21.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5132"}} +{ "Id": "5132", "PostTypeId": "5", "CreationDate": "2016-06-17T20:41:35.673", "Score": "0", "Body": "

Imperial IPAs (also referred to as Double IPAs) are a stronger, very hoppy variant of IPAs that typically have alcohol content above 7.5% by volume. The Imperial usage comes from Russian Imperial stout, a style of strong stout originally brewed in England for the Russian Imperial Court of the late 1700s; though Double IPA is often the preferred name.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-20T23:51:14.900", "LastActivityDate": "2016-07-20T23:51:14.900", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5133"}} +{ "Id": "5133", "PostTypeId": "4", "CreationDate": "2016-06-17T20:41:35.673", "Score": "0", "Body": "Imperial IPAs (also referred to as Double IPAs) are a stronger, very hoppy variant of IPAs that typically have alcohol content above 7.5% by volume. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:57.400", "LastActivityDate": "2016-06-20T06:56:57.400", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5134"}} +{ "Id": "5134", "PostTypeId": "1", "AcceptedAnswerId": "5153", "CreationDate": "2016-06-17T20:42:33.413", "Score": "12", "ViewCount": "625", "Body": "

I know that, in general, Scottish whiskey is peaty because of the way they dry the malt with peat smoke while Irish whisky is not because they use unpeated malt. Is the difference legally established in these two countries or is it convention? Can an Irish distillery make Scottish whiskey and vice versa?

\n", "OwnerUserId": "5571", "LastActivityDate": "2019-05-24T20:39:50.027", "Title": "Whiskey - Irish vs. Scottish", "Tags": "whiskey", "AnswerCount": "2", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5135"}} +{ "Id": "5135", "PostTypeId": "5", "CreationDate": "2016-06-17T20:45:44.927", "Score": "0", "Body": "

Questions about alcoholic beverages sold and severed in cans.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:23.693", "LastActivityDate": "2016-06-20T06:56:23.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5136"}} +{ "Id": "5136", "PostTypeId": "4", "CreationDate": "2016-06-17T20:45:44.927", "Score": "0", "Body": "Questions about alcoholic beverages sold and severed in cans.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:29.240", "LastActivityDate": "2016-06-20T06:56:29.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5137"}} +{ "Id": "5137", "PostTypeId": "5", "CreationDate": "2016-06-17T20:49:26.333", "Score": "0", "Body": "

A beer cocktail is a cocktail that is made by mixing beer with a distilled beverage or another style of beer. In this type of cocktail, the primary ingredient is beer. Beer cocktails include the Black and Tan, Boilermaker, and Sake Bomb.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:28:59.860", "LastActivityDate": "2016-06-18T00:28:59.860", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5138"}} +{ "Id": "5138", "PostTypeId": "4", "CreationDate": "2016-06-17T20:49:26.333", "Score": "0", "Body": "A beer cocktail is a cocktail that is made by mixing beer with a distilled beverage or another style of beer. In this type of cocktail, the primary ingredient is beer. Beer cocktails include the Black and Tan, Boilermaker, and Sake Bomb. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:54.867", "LastActivityDate": "2016-06-20T06:56:54.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5139"}} +{ "Id": "5139", "PostTypeId": "5", "CreationDate": "2016-06-17T20:50:39.023", "Score": "0", "Body": "

Imperial stout, also known as Russian imperial stout or imperial Russian stout, is a strong dark beer or stout in the style that was brewed in the 18th century by Thrale's brewery in London, England for export to the court of Catherine II of Russia. In 1781 the brewery changed hands and the beer became known as Barclay Perkins Imperial Brown Stout. When the brewery was taken over by Courage the beer was renamed Courage Imperial Russian Stout (IRS). It has a high alcohol content, usually over 9% abv.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-20T23:51:51.323", "LastActivityDate": "2016-07-20T23:51:51.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5140"}} +{ "Id": "5140", "PostTypeId": "4", "CreationDate": "2016-06-17T20:50:39.023", "Score": "0", "Body": "Imperial stout, also known as Russian imperial stout or imperial Russian stout, is a strong dark beer or stout. It has a high alcohol content, usually over 9% abv.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:55:56.003", "LastActivityDate": "2016-06-20T06:55:56.003", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5141"}} +{ "Id": "5141", "PostTypeId": "5", "CreationDate": "2016-06-17T20:52:28.603", "Score": "0", "Body": "

The process of heating wine or other beverages with spices, to be served hot.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-20T23:51:48.277", "LastActivityDate": "2016-07-20T23:51:48.277", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5142"}} +{ "Id": "5142", "PostTypeId": "4", "CreationDate": "2016-06-17T20:52:28.603", "Score": "0", "Body": "The process of heating wine or other beverages with spices, to be served hot. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:29:07.360", "LastActivityDate": "2016-06-18T00:29:07.360", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5143"}} +{ "Id": "5143", "PostTypeId": "5", "CreationDate": "2016-06-17T20:53:56.433", "Score": "0", "Body": "

Weizenbier or Hefeweizen, in the southern parts of Bavaria usually called Weißbier (literally \"white beer\", but the name is believed to come from Weizenbier (\"wheat beer\"), which is how it is still called in some regions), is a Bavarian beer in which a significant proportion of malted barley is replaced with malted wheat. By German law, Weißbiers brewed in Germany must be top-fermented. Specialized strains of yeast are used which produce overtones of banana and clove as by-products of fermentation. Weißbier is so called because it was, at the time of its inception, paler in color than Munich's traditional brown beer. It is well known throughout Germany, though better known as Weizen (\"Wheat\") outside Bavaria. The terms Hefeweizen (\"yeast wheat\") or Hefeweißbier refer to wheat beer in its traditional, unfiltered form. The term Kristallweizen (crystal wheat), or kristall Weiß (crystal white beer), refers to a wheat beer that is filtered to remove the yeast and wheat proteins which contribute to its cloudy appearance.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:28:45.340", "LastActivityDate": "2016-06-18T00:28:45.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5144"}} +{ "Id": "5144", "PostTypeId": "4", "CreationDate": "2016-06-17T20:53:56.433", "Score": "0", "Body": "Weizenbier or Hefeweizen is a Bavarian beer in which a significant proportion of malted barley is replaced with malted wheat. By German law, Weißbiers brewed in Germany must be top-fermented.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:27:12.723", "LastActivityDate": "2016-06-18T00:27:12.723", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5145"}} +{ "Id": "5145", "PostTypeId": "5", "CreationDate": "2016-06-17T20:57:34.517", "Score": "0", "Body": "

A keg is often constructed of aluminum or steel. It is commonly used to store, transport, and serve beer. Other alcoholic or non-alcoholic drinks, carbonated or non-carbonated, may be housed in a keg as well. Such liquids are generally kept under pressure. Kegs come in various sizes.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-20T23:51:30.103", "LastActivityDate": "2016-07-20T23:51:30.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5146"}} +{ "Id": "5146", "PostTypeId": "4", "CreationDate": "2016-06-17T20:57:34.517", "Score": "0", "Body": "A keg is often constructed of aluminum or steel. It is commonly used to store, transport, and serve beer. Other alcoholic or non-alcoholic drinks, carbonated or non-carbonated, may be housed in a keg as well. Such liquids are generally kept under pressure. Kegs come in various sizes. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:19.803", "LastActivityDate": "2016-06-20T06:56:19.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5147"}} +{ "Id": "5147", "PostTypeId": "5", "CreationDate": "2016-06-17T21:05:25.033", "Score": "0", "Body": "

Lambic is a type of beer brewed in the Pajottenland region of Belgium southwest of Brussels and in Brussels itself at the Cantillon Brewery. Lambic beers include Gueuze and Kriek lambic.

\n\n

Unlike most beers, which are fermented with carefully cultivated strains of brewer's yeast, lambic is fermented spontaneously by being exposed to wild yeasts and bacteria native to the Zenne valley in which Brussels lies. This process gives the beer its distinctive flavor: dry, vinous, and cidery, usually with a sour aftertaste.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-20T23:51:32.637", "LastActivityDate": "2016-07-20T23:51:32.637", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5148"}} +{ "Id": "5148", "PostTypeId": "4", "CreationDate": "2016-06-17T21:05:25.033", "Score": "0", "Body": "Lambic is a type of beer brewed in the Pajottenland region of Belgium southwest of Brussels and in Brussels itself at the Cantillon Brewery. Lambic beers include Gueuze and Kriek lambic. Known for its distinctive flavor: dry, vinous, and cidery, usually with a sour aftertaste.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-18T00:27:46.510", "LastActivityDate": "2016-06-18T00:27:46.510", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5149"}} +{ "Id": "5149", "PostTypeId": "5", "CreationDate": "2016-06-17T21:06:00.203", "Score": "0", "Body": "

Shandy is beer mixed with a soft drink, such as carbonated lemonade, ginger beer, ginger ale, or apple juice or orange juice. The proportions of the two ingredients are adjusted to taste, usually half-and-half.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-20T23:51:22.090", "LastActivityDate": "2016-07-20T23:51:22.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5150"}} +{ "Id": "5150", "PostTypeId": "4", "CreationDate": "2016-06-17T21:06:00.203", "Score": "0", "Body": "Shandy is beer mixed with a soft drink, such as carbonated lemonade, ginger beer, ginger ale, or apple juice or orange juice. The proportions of the two ingredients are adjusted to taste, usually half-and-half. ", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:57:08.620", "LastActivityDate": "2016-06-20T06:57:08.620", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5151"}} +{ "Id": "5151", "PostTypeId": "5", "CreationDate": "2016-06-17T21:09:50.237", "Score": "0", "Body": "

Questions about Skunking and how to prevent it. Skunking is a process in which a beer's flavor is degraded due to light exposure.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:17.067", "LastActivityDate": "2016-06-20T06:56:17.067", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5152"}} +{ "Id": "5152", "PostTypeId": "4", "CreationDate": "2016-06-17T21:09:50.237", "Score": "0", "Body": "Questions about Skunking and how to prevent it. Skunking is a process in which a beer's flavor is degraded due to light exposure.", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-06-20T06:56:26.523", "LastActivityDate": "2016-06-20T06:56:26.523", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5153"}} +{ "Id": "5153", "PostTypeId": "2", "ParentId": "5134", "CreationDate": "2016-06-18T03:16:27.517", "Score": "13", "Body": "

Legally, a Scotch Whisky is a distilled spirit made in Scotland from cereals, water and yeast and has been matured for a period of not less than three years (The Scotch Whisky Regulations 2009).

\n\n

An Irish Whiskey is distilled in Ireland and aged for a minimum of three years in oak barrels.

\n\n

Thus an Irish distillery can not produce a Scottish whisky!

\n\n

However our question does not end here because the Scotch Whisky Regulations 2009 define five categories of Scotch Whisky:

\n\n
\n

•Single Malt Scotch Whisky: A Scotch Whisky distilled at a single distillery using only malted barley.

\n \n

•Single Grain Scotch Whisky: A Scotch Whisky distilled at a single distillery.

\n \n

•Blended Scotch Whisky: A blend of one or more Single Malt Scotch Whiskies with one or more Single Grain Scotch Whiskies.

\n \n

•Blended Malt Scotch Whisky: A blend of Single Malt Scotch Whiskies which have been distilled at more than one distillery.

\n \n

•Blended Grain Scotch Whisky: A blend of Single Grain Scotch Whiskies which have been distilled at more than one distillery.

\n
\n\n

But some Scotch Whiskies have a smoky flavor which originates from the peat fire over which the green malt is dried, prior to grinding and mashing.

\n\n

Hold on for one moment, \"in Ireland, whiskeys distilled at Cooley are only distilled twice, and they make smoky whiskeys there too (Connemara).\"

\n\n

Thus the question as what the differences are between an Irish Whiskey and a Scotch whisky, other than how one spells whiskey remains a question of geography!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5619", "LastEditDate": "2019-05-02T07:46:14.367", "LastActivityDate": "2019-05-02T07:46:14.367", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5154"}} +{ "Id": "5154", "PostTypeId": "1", "CreationDate": "2016-06-20T00:26:09.393", "Score": "4", "ViewCount": "1504", "Body": "

In ancient Russia the way to measure \"proper\" strong spirits was to burn it - if the volume decreased by half than it was considered right one. How can I convert this into modern days alcohol percentage? Also, as a side note, how accurate this conversion would be? I mean which factors besides actual alcohol percentage would affect the process - ambient temperature? humidity? atmospheric pressure? And to which degree: +-1%? 5%?

\n", "OwnerUserId": "5576", "LastEditorUserId": "5064", "LastEditDate": "2016-06-20T06:56:36.210", "LastActivityDate": "2016-06-20T17:44:45.137", "Title": "Burned volume to alcohol percentage", "Tags": "history alcohol-level vodka", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5155"}} +{ "Id": "5155", "PostTypeId": "2", "ParentId": "5154", "CreationDate": "2016-06-20T08:48:11.293", "Score": "1", "Body": "

There are a lot of different factors that provide the alcohols percentage,

\n\n
\n

It's not really the liquid burning. It's the vapors that catch fire.\n Higher proof equals more vapor, depending on temperature. source

\n
\n\n

So burning alcohol is not a guaranteed way of finding out the percentage as whilst cooking wine will 'flame on' despite being low percentage and this is all to do with the vapor of the alcohol. Sure a High proof alcohol will catch fire easier but that will only tell you that it is a high proof alcohol not the percentage in it. A low proof vodka can ignite if a flame is held to it as the change in temperature will make it produce more vapor and it will ignite

\n\n

(Please don't try and set fire to alcohol if you don't need to it can course spillage that will then cause an out of control fire and we don't want any of you guys to start burning up on us now )

\n", "OwnerUserId": "5078", "LastActivityDate": "2016-06-20T08:48:11.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5156"}} +{ "Id": "5156", "PostTypeId": "2", "ParentId": "5026", "CreationDate": "2016-06-20T13:59:02.500", "Score": "1", "Body": "

Number 3 and number 4 in your list is actually getting its high ABV by adding pure ethanol. The brewery didn't admit this at first, but eventually they admitted to be adding ethanol to get the high ABVs. Sadly, I can't find the blog post where they admit this at the moment.

\n", "OwnerUserId": "217", "LastActivityDate": "2016-06-20T13:59:02.500", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5157"}} +{ "Id": "5157", "PostTypeId": "2", "ParentId": "5154", "CreationDate": "2016-06-20T17:38:36.937", "Score": "0", "Body": "

You don't define \"burn\" and I don't find a reference.

\n\n

Is burn distill or literally burn.

\n\n

Fire requires heat, oxygen, and fuel.

\n\n

Flash point is the temp it will burn with an external ignition source. The flash point is a function of temp. Not much effected by humidity.

\n\n
The flash points of ethanol wt % concentrations[102]\nwt %    Temperature\n10%     49 °C (120 °F)\n20%     36 °C (97 °F)\n30%     29 °C (84 °F)\n40%     26 °C (79 °F)\n50%     24 °C (75 °F)\n60%     22 °C (72 °F)\n70%     21 °C (70 °F)\n80%     20 °C (68 °F)\n90%     17 °C (63 °F)\n96%     17 °C (63 °F)\n
\n\n

Even at the flash point it will not generate enough heat to continue burning once the external ignition source is removed.

\n\n

Burn off would be hard to gauge and I don't think any alcohol (for human consumption) would burn 1/2 off at room temperature.

\n\n

Give 1/2 is the threshold it is more like they just boiled the alcohol off in a pot. The boiling point of alcohol is 173 F. Just stop when the temp get to 173F. 50% would be 100 proof. Yes some water boils off even at 173 and some alcohol is left behind. But it is about a wash. I would say the margin of error would be like 5%. If you did a true batch distillation would be within 1%.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-06-20T17:44:45.137", "LastActivityDate": "2016-06-20T17:44:45.137", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5158"}} +{ "Id": "5158", "PostTypeId": "1", "AcceptedAnswerId": "5159", "CreationDate": "2016-06-21T12:16:33.427", "Score": "5", "ViewCount": "352", "Body": "

Whilst on my search for new beers I found a beer called

\n\n

Niugini Ice Beer

\n\n

This is a Ice beer and I'm not to sure about what an ice beer is.

\n\n

Can somebody give my a explanation to what an Ice beer is?

\n", "OwnerUserId": "5078", "LastEditorUserId": "6255", "LastEditDate": "2018-07-19T09:44:55.230", "LastActivityDate": "2018-07-19T09:44:55.230", "Title": "What is Ice Beer?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5159"}} +{ "Id": "5159", "PostTypeId": "2", "ParentId": "5158", "CreationDate": "2016-06-21T12:33:21.237", "Score": "5", "Body": "

Ice beer is brewed using a technique known as fractional freezing, or freeze distillation. It's rooted in the tradition of German Eisbock style, though in an Eisbock the technique is used to considerably concentrate the alcohol (alcohol percentages in the final product can range from 10%, to over 50%) whereas when a modern mild lager-based Ice beer probably doesn't gets only a small increase in ABV. The one you link to in the question, for instance, is only 5.2% alcohol.

\n\n

The process involves bringing the beer down to a temperature below the freezing point of water so that ice crystal form, and then drawing those crystals out. This process is repeated until the beer reaches the desired strength, and in the case of Ice beer, that's probably not many times. The goal is that when you remove the crystals, the remaining drink is both more alcoholic and has more pronounced flavors, and you can allegedly remove impurities, as I suppose they may serve as nucleation sites for the crystal formation.

\n", "OwnerUserId": "37", "LastActivityDate": "2016-06-21T12:33:21.237", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5161"}} +{ "Id": "5161", "PostTypeId": "1", "CreationDate": "2016-06-21T17:24:14.940", "Score": "4", "ViewCount": "78", "Body": "

I am wondering if the Zlatopramen lemon 1.9% is still available in the Czech Republic (in supermarkets, liquor stores, bars et cetera).

\n", "OwnerUserId": "5582", "LastEditorUserId": "5064", "LastEditDate": "2016-06-22T07:02:02.370", "LastActivityDate": "2017-04-06T17:16:31.120", "Title": "Is Zlatopramen lemon 1.9% still available in the Czech Republic?", "Tags": "distribution", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5162"}} +{ "Id": "5162", "PostTypeId": "1", "AcceptedAnswerId": "6253", "CreationDate": "2016-06-22T01:23:59.253", "Score": "7", "ViewCount": "217", "Body": "

I am looking for a red wine recommendation. The Roman Rituale of the Catholic Church has a special blessing which is reserved for the Feast of St John the Apostle (December 27). The actual blessing for the wine can be found on this site (page 312).

\n

Why is wine associated with St. John?

\n
\n

It is an old custom to drink of “St. John’s Love” by blessing wine on his feast day, December 27th. According to legend St. John drank a glass of poisoned wine without suffering harm because he had blessed it before he drank. The wine is also a symbol of the great love of Christ that filled St. John’s heart with loyalty, courage, and enthusiasm. - Gnostic Devotions.

\n
\n

Our Pastor is okay with the idea but has set down a few desirable traits he would like to see with the wine. The Wine should have the following characteristics:

\n

1.The wine should be red, as a symbolic color of St John's martyrdom. Non-red wines will be considered too.

\n

2.The price range should be no more than $20.00 a bottle.

\n

3.The label should be modest and if possible make some sort of reference to St John if possible or some other religious theme, if a St John theme cannot be found.

\n

Any recommendations would be greatly appreciated!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-01-15T16:30:26.237", "LastActivityDate": "2021-01-15T16:30:26.237", "Title": "Red Wine recommendation for the Feast of St John the Apostle!", "Tags": "recommendations red-wine tradition", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5164"}} +{ "Id": "5164", "PostTypeId": "1", "AcceptedAnswerId": "5188", "CreationDate": "2016-06-22T13:57:19.460", "Score": "10", "ViewCount": "908", "Body": "

I thought this would make for an interesting question because Westvleteren 12 has now earned a mythic ethos. They've given their product a mystique that's driven up demand to a huge degree, and caused people to go to great lengths to get their hands on it.

\n\n

That said, after having a few of them, and then comparing to the plentiful Rochefort 10 that I can find in most liquor stores around my city, I don't see a heck of a lot of difference between the two beers. So what I wonder is what features of Westvleteren 12 actually distinguish it from a Rochefort 10? Not necessarily why it's better, but in what ways and to what degree they are actually different beers.

\n\n

Some leading questions:

\n\n
    \n
  1. Does the brewing process differ?
  2. \n
  3. Do ingredients differ?
  4. \n
  5. Anything else?
  6. \n
\n", "OwnerUserId": "938", "LastActivityDate": "2016-07-05T18:02:18.700", "Title": "Distinguishing features between Rochefort 10 and Westvleteren 12", "Tags": "trappist", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5165"}} +{ "Id": "5165", "PostTypeId": "1", "CreationDate": "2016-06-22T14:27:08.767", "Score": "6", "ViewCount": "930", "Body": "

Unfortunately I don't have a basement or a different room where it's between 10-15 degrees. Since it's summer, the temperature in the house is between 20 and 25 degrees. All of my beers are stored in a closet where it is 23 degrees at the moment. I have 3 year old Orvals, Barleywines, IPAs and some other beers. Is this going to damage the beer? Or shouldn't I worry about it?

\n", "OwnerUserId": "5587", "LastEditorUserId": "6255", "LastEditDate": "2018-11-20T10:30:30.897", "LastActivityDate": "2018-11-20T10:30:30.897", "Title": "How bad is it to storage beer at 20 to 25 degrees celsius?", "Tags": "storage", "AnswerCount": "1", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5166"}} +{ "Id": "5166", "PostTypeId": "2", "ParentId": "5165", "CreationDate": "2016-06-22T16:43:01.503", "Score": "2", "Body": "

According to this non pasturized <45°F (<7.2°C)
\nAnd even then a shelf life of 60 - 90 days

\n\n

It might be time for a party

\n\n

Beer Storage

\n\n

As for wine cooler. For shelf life the colder the better as long as you don't freeze.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-06-22T17:03:45.423", "LastActivityDate": "2016-06-22T17:03:45.423", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5167"}} +{ "Id": "5167", "PostTypeId": "2", "ParentId": "3385", "CreationDate": "2016-06-23T02:06:45.450", "Score": "2", "Body": "

It's not quite the South Bay but close. I've seen them fill growlers that do not have their name on them.

\n\n

Steelhead Brewing Company

\n\n

333 California Dr

\n\n

Burlingame, CA 94010

\n\n

United States

\n\n

If you like IPAs or APAs, the Bombay Bomber and the Double Play are worth a try.

\n", "OwnerUserId": "5593", "LastEditorUserId": "5064", "LastEditDate": "2016-06-23T07:03:35.337", "LastActivityDate": "2016-06-23T07:03:35.337", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5168"}} +{ "Id": "5168", "PostTypeId": "1", "AcceptedAnswerId": "6446", "CreationDate": "2016-06-24T12:45:59.093", "Score": "6", "ViewCount": "405", "Body": "

This is more of a hypothetical question!

\n\n

Disclaimer: I have no intention of doing home distillation in any form whatsoever.

\n\n

In most countries home distillation of any alcohol products is illegal.

\n\n
\n

It is only legal in New Zealand. Some European countries turn a blind eye to it, but elsewhere it is illegal, with punishment ranging from fines to imprisonment or floggings.

\n \n

Australians - You can possess a still of <5L capacity, but not produce spirits from it.

\n \n

[In Bulgaria,] you can take your fermented fruits to a special facility and distill them without paying any tax if you are registered as home producer. Registration is free. The only limitation is that you can distill up to 1000l of fermented fruits and of course you need to pay for the time you are using the still (it can take about 200 litres at a time). - Home Distillation of Alcohol.

\n
\n\n

That said, how can one make a homemade still for making spirits at home safely?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-06-25T21:47:11.503", "LastActivityDate": "2019-08-28T00:51:55.277", "Title": "How can I make a home distillation set up, safely?", "Tags": "distillation", "AnswerCount": "6", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5169"}} +{ "Id": "5169", "PostTypeId": "2", "ParentId": "5168", "CreationDate": "2016-06-24T20:13:46.037", "Score": "2", "Body": "

The biggest risk during distillation is boiling over the pot and having flammable liquid run into an open flame.

\n\n

I've heard of stills in the NW United States that use steam as a heat source instead of some sort of open flame. I'm not sure of the logistics, the creation of the steam might be in another room for example and pumped into the room with the still.

\n", "OwnerUserId": "5593", "LastActivityDate": "2016-06-24T20:13:46.037", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5170"}} +{ "Id": "5170", "PostTypeId": "2", "ParentId": "5168", "CreationDate": "2016-06-25T04:35:16.430", "Score": "2", "Body": "

Don't do it in your home.

\n\n

Set it up 40+ feet from you home in the open or covered shed with open walls. I have a BS in chemical engineering but an alcohol still is pretty basic. Creating the mash is the harder part.

\n\n

There are many kits on the Internet. Don't get in a hurry and heat it too fast.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-06-25T11:50:35.783", "LastActivityDate": "2016-06-25T11:50:35.783", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5171"}} +{ "Id": "5171", "PostTypeId": "1", "AcceptedAnswerId": "5172", "CreationDate": "2016-06-25T16:31:52.407", "Score": "4", "ViewCount": "14263", "Body": "

Is it okay to eat raw oysters and drink alcohol at the same time? I have heard different stories as to whether it is truly a good idea to do this. Some people say that it is not bad, others say that the alcohol can be dangerous with the bacterium (Vibrio vulnificus) contained in shellfish, while some people have told me that the alcohol can actually kill the bacterium contained in shellfish.

\n\n

Is it safe to drink alcohol and eat raw oysters? If it is okay what drinks go well with oysters?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5575", "LastEditDate": "2016-07-01T00:12:18.440", "LastActivityDate": "2021-05-23T18:03:31.083", "Title": "Is it safe to consume alcohol while eating raw oysters?", "Tags": "health pairing", "AnswerCount": "4", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5172"}} +{ "Id": "5172", "PostTypeId": "2", "ParentId": "5171", "CreationDate": "2016-06-25T17:24:52.807", "Score": "8", "Body": "

I do this about once a month and can confirm that it's more than safe, it's delicious. In fact during the 19th century half of London lived on porter and oysters!

\n\n

I'd recommend oyster stouts, London porters or champagne with them. Stouts and porters are particularly traditional in London

\n", "OwnerUserId": "909", "LastActivityDate": "2016-06-25T17:24:52.807", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5174"}} +{ "Id": "5174", "PostTypeId": "2", "ParentId": "99", "CreationDate": "2016-06-27T01:35:57.440", "Score": "1", "Body": "

Home brew here: I do German Hefeweitzen, or wheats. No preservatives. Did a dark one, went overboard on the dark malt, used 4 times as much as I should. Got something that tasted like a Guiness out of it. Not bad, but not what I was looking for in a dark German wheat. Put the bottles away in a dedicated fridge, a year ago.

\n\n

Oh my god, the sugars built up! Just tried it for the first time tonight, to see if it was spoiled. I am now going to brew this one as my \"one year old\", as a special recipe.

\n\n

Yes, you can age a good, quality beer, at least under refrigeration. I am just learning about this. I am just consuming my one-year-old bottle of medium Hefe that I brewed last summer (my favorite recipe), and it is knocking a punch in terms of good flavors.

\n", "OwnerUserId": "5599", "LastActivityDate": "2016-06-27T01:35:57.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5176"}} +{ "Id": "5176", "PostTypeId": "1", "AcceptedAnswerId": "5177", "CreationDate": "2016-06-28T14:06:17.837", "Score": "9", "ViewCount": "153", "Body": "

Last night, after moving some heavy stones around, I poured myself a nice Berliner Weisse (style) into a glass I don't use regularly. Initially there was a nice head on it but to my disappointment it broke down in a matter of seconds. I'm pretty certain this was a result of detergent residue in the glass.

\n\n

I take pains to hand wash my beer glasses without detergent but some members of my household are not always cognizant of the damage this causes. Once the detergent residue is on the glass, is there any method that can remove it? I think that in the past I've found that wiping firmly and rinsing will eventually remove it but that means many flat beers along the way.

\n", "OwnerUserId": "5457", "LastActivityDate": "2016-06-28T16:30:51.497", "Title": "Removing detergent residue from glassware", "Tags": "glassware head", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5177"}} +{ "Id": "5177", "PostTypeId": "2", "ParentId": "5176", "CreationDate": "2016-06-28T16:30:51.497", "Score": "7", "Body": "

Generally, washing and rinsing properly first time should mean this problem doesn't happen.

\n\n

If it does, vinegar is an excellent residue remover.

\n\n
    \n
  • Rinse the glass fully in clean water (no soap).
  • \n
  • Rub the glass with a small sponge soaked in vinegar
  • \n
  • Rinse again
  • \n
\n\n

That should solve the problem.

\n", "OwnerUserId": "187", "LastActivityDate": "2016-06-28T16:30:51.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5178"}} +{ "Id": "5178", "PostTypeId": "1", "CreationDate": "2016-06-29T17:11:15.050", "Score": "5", "ViewCount": "80", "Body": "

Mercifully, brewers label their beers with the style - lager, IPA, Hefeweisse, etc. But for whatever reason, the makers of hard ciders don't share the sentiment, and every single bottle will just call itself \"cider\" or if you're lucky \"apple cider.\"

\n\n

This is something of an issue because I really like sweet ciders, and can't stand sour ones. But as far as I can tell, the bottle never reveals what type the cider is, and I have to open it and take a drink before I know if I will like it or not.

\n\n

So what are the styles of cider, and how can I recognize them (and avoid the ones I don't like)?

\n", "OwnerUserId": "5328", "LastActivityDate": "2016-07-01T15:26:34.567", "Title": "Are there styles of cider? How to distinguish them before opening the bottle?", "Tags": "cider", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5179"}} +{ "Id": "5179", "PostTypeId": "1", "AcceptedAnswerId": "5180", "CreationDate": "2016-06-30T14:26:05.277", "Score": "8", "ViewCount": "562", "Body": "

I recently turned 21 (5 days) and I am trying to find some beer that I actually enjoy drinking. Currently I drink liquor like Jack + Coke and things like that. Any ideas on how to broaden my horizons when it comes to beer without just going out and buying random 6 packs?

\n\n

Thanks,

\n", "OwnerUserId": "5612", "LastEditorUserId": "43", "LastEditDate": "2016-06-30T15:19:27.080", "LastActivityDate": "2016-08-26T20:13:04.260", "Title": "Advice for finding the right beer for me", "Tags": "style", "AnswerCount": "6", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5180"}} +{ "Id": "5180", "PostTypeId": "2", "ParentId": "5179", "CreationDate": "2016-06-30T15:17:34.373", "Score": "5", "Body": "

If you can purchase variety packs or cases of individual bottles where you live, that's a great way to explore -- get a couple each of a bunch of different things and use a site like RateBeer to keep track of your opinions. (I chose RateBeer because you can use it to assign a simple rating of 1-5 stars, which is good for a first approximation.)

\n\n

You should be aware of the different major styles of beers. While you shouldn't dismiss an entire style based on one beer (maybe it was just that one that's not to your taste), if you find that you don't like most of the IPAs you taste or you tend to like most of the stouts, then you probably want to back off of the former and try more of the latter. RateBeer (and also BeerAdvocate) shows the styles for individual beers, and you can search -- on those sites or in your store -- for more of those or similar styles.

\n\n

If you can only buy beer by the 6-pack -- do you have beer-drinking friends? Get together with a couple other people, buy one 6-pack per person, and swap bottles around. Where I live, until very recently, beer could only be sold in full cases, and I joined a group of people to buy mixed cases using this approach.

\n", "OwnerUserId": "43", "LastActivityDate": "2016-06-30T15:17:34.373", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5181"}} +{ "Id": "5181", "PostTypeId": "1", "CreationDate": "2016-06-30T22:15:29.207", "Score": "3", "ViewCount": "212", "Body": "

I found a case of Scottish beer / bitter that I had forgotten about, it is out of date by 7 months, which normally would not stop me but it tastes watery. My question is can I re-ferment it or add something to resurrect it?

\n", "OwnerUserId": "5616", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-28T12:55:33.090", "LastActivityDate": "2019-01-28T12:55:33.090", "Title": "I have a crate of out of date beer/bitter by 6 months, tastes watery, can I resurrect it in some way?", "Tags": "ingredients age", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5182"}} +{ "Id": "5182", "PostTypeId": "1", "CreationDate": "2016-07-01T00:31:27.757", "Score": "8", "ViewCount": "2676", "Body": "

This beer used to be available from the LCBO but now outside of Kegs or going to a bar it doesn't seem that I can get it anymore. Does anyone know the best way I could get a hold of it?

\n", "OwnerUserId": "5575", "LastActivityDate": "2017-10-26T22:42:53.903", "Title": "Where can I buy Liefmans Fruitesse In Ontario?", "Tags": "distribution", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5184"}} +{ "Id": "5184", "PostTypeId": "2", "ParentId": "5178", "CreationDate": "2016-07-01T15:26:34.567", "Score": "1", "Body": "

There are different cider styles. BJCP cider style guidelines lists several distinct styles.

\n\n

However, many commercial ciders like Angry Orchard don't list a style beyond their brand names.

\n", "OwnerUserId": "5165", "LastActivityDate": "2016-07-01T15:26:34.567", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5185"}} +{ "Id": "5185", "PostTypeId": "2", "ParentId": "50", "CreationDate": "2016-07-02T16:44:48.463", "Score": "0", "Body": "

I have read a lot on this and keep finding it's a myth. I am a raging alchy and drink beer all the time. I get this bud from Walgreen's and they have a horrible stocking procedure, I know for sure the beer is cold, then they let it get warm, then refridge it (the cans are always sweating). It's been 5 times I've drank this bud from them and all the time my stomach kills me from it. I think it, for some reason, creates more gas (lot of foam in my stomach, feeling like I have to burp, but cannot). I drink the same amount of beer on any given day from a good distributor and have no problems.

\n\n

Side note to add, the beer also has a lemony taste to it, so I don't know exactly the chemical reaction,but I'm positive that going from cold to room temp, then cold again screws the beer.

\n", "OwnerUserId": "5622", "LastEditorUserId": "6111", "LastEditDate": "2017-04-21T13:53:43.587", "LastActivityDate": "2017-04-21T13:53:43.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5186"}} +{ "Id": "5186", "PostTypeId": "1", "CreationDate": "2016-07-02T19:35:09.650", "Score": "6", "ViewCount": "112", "Body": "

I have a simple question. If you taste or read about wine, you encounter all kinds of flavours: butter, cherry, thyme etc. etc. But the grapes have never been in touch with butter, for example. Where does the variety of tastes come from? How can the grapes develop so many different flavours that remind real world stuff?

\n\n

Thanks!

\n", "OwnerUserId": "5623", "LastActivityDate": "2016-08-23T19:42:46.093", "Title": "Wine and variety of flavours", "Tags": "wine red-wine fermentation", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5187"}} +{ "Id": "5187", "PostTypeId": "2", "ParentId": "5186", "CreationDate": "2016-07-03T04:26:38.123", "Score": "3", "Body": "

As for butter

\n\n

Many white wines undergo a process that causes them to take on buttery flavors (which sometimes come across as buttered popcorn or even butterscotch). That process is called malo-lactic fermentation, and here's the quick take on how it works. Just after the grapes are made into wine, a special type of beneficial bacteria is added to the wine. That bacteria converts one of the acids in wine (malic) to another type of acid (lactic). The two acids feel different on the tongue. Malic acid is very sharp (it's the acid in a Granny Smith apple); lactic acid is fairly soft (it's the acid in milk). Most Chardonnay's go through malo-lactic fermentation and are therefore soft and buttery. (Taken from Why Do Wines Taste Buttery?).

\n", "OwnerUserId": "4903", "LastEditorUserId": "5064", "LastEditDate": "2016-07-06T00:20:02.433", "LastActivityDate": "2016-07-06T00:20:02.433", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5188"}} +{ "Id": "5188", "PostTypeId": "2", "ParentId": "5164", "CreationDate": "2016-07-05T17:12:44.683", "Score": "2", "Body": "

1) While largely the same (make wort, ferment, bottle/keg) the two beers you list are made by different companies. Therefore, you can assume they will at least claim they have proprietary brewing methods. There is a reason why people try cloning beers with some successes but mostly fails.

\n\n

2) Most definitely just look at This Westvleteren 12 Clone Recipe and instruction* compared to This Rochefort Trappistes 10 Clone Recipe**.

\n\n

3) If you want to learn about the subtleties in beer and what types of hops/yeast/adjunct additions/etc influence beer and their flavors - pick a topic and branch out. There are SO MANY THINGS that can change the flavor of a beer for better and for worse. There are courses and schools to help (google local beer eductaion)... Or, if you aren't sure where to start look at sites like Cicerone Certidications (think Wine Sommelier, or The Beer Judge Certification Program.

\n\n

*Information taken from first link

\n\n

Ingredients:

\n\n
12.5 lbs Dingemann's Belgian Pilsner\n2.00 lbs Dingemann's Belgian Pale\n0.10 lbs Belgian Debittered Black\n0.15 lbs Belgian Special B\n3.00 lbs D-180 Candi Syrup (The Candi Syrup, Inc. D-180 syrup NOT the D2 syrup from darkcandi. Only the D-180 will produce an authentic Westy 12)\n8.0 gallons (filtered)\nBrewers Gold 1.00oz 60 min\nHersbrucker 1.00oz 30 min\nStyrian Goldings 1.00oz 15 min\nWhite Labs WL530 & Westmalle strain (2.0 liter starter)\n1 cap of servomyces\n2 tsp gypsum\n\nAdding 2 liters of yeast is clearly incorrect. We couldn't contact the author of the recipe so here is the recommended yeast from another site.\n\nWyeast 3787 and White Labs WLP 530 (both Westmalle Strains) should be added right away\n\nWyeast 1388 (Duvel) and White Labs 550 (Le Chouffe) should be added on day 3\n\nWyeast 3787 and White Labs WLP 530 (both Westmalle Strains) should be added right away\n\nWyeast 1388 (Duvel) and White Labs 550 (Le Chouffe) should be added on day 3\n
\n\n

Additional Instructions\nPrimary Ferment: 7 days\nSecondary Ferment: Until FG is reached

\n\n

Beer Profile\nOriginal Gravity: 1.090\nFinal Gravity: 1.012\nAlcohol by Vol: 10.21%\nRecipe Type: all-grain\nYield: 5.00 Gallons

\n\n

THE MASH AND BOIL:

\n\n

Use 2 tsp Gypsum in mash water. Initial protein rest at 138F for 30 minutes. Low decoction saccharification at 152F 30 minutes. High decoction saccharification at 156F for 30 minutes. 90 minute boil. 1 cap of Servomyces 10 minutes before flameout. Add 3 lbs D-180 Candi Syrup, Inc Belgian style candi yrup 3 minutes prior to flame-out. Note: you will not get the flavor of a true Westvleteren 12 unless you use this particular syrup. It is out of this world!

\n\n

FERMENTATION:

\n\n

Chill wort to 65F. Pitch yeast starter. Let rise to 83F over 5 days and bottom heat until gravity is 1.018, (can be up to 2 weeks). Agitate if necessary to invigorate yeast. Decant to glass secondary. Let ferment for 2 more weeks in glass at 65-70F. Move to cooler rack location and let ferment 8 more weeks.

\n\n

BOTTLING:

\n\n

Create a fresh stir-plate 2 liter yeast pitch using high quality Pils wort. Decant to 500ml. Boil 152 grams dextrose with 1 pint water. Cool and add to bottling fermenter. Decant ale to bottling fermenter and pitch yeast. Stir well then stir well again :) Bottle leaving 1 inch from top of long neck. Let prime for 3 weeks at 78-80F. Move to cellar temps and let chill for 6 months at 55-60F. Drink after 6 months to 1 year.

\n\n

**Information taken from second link\nIngredients:

\n\n

12lb Belgian Pilsner

\n\n

1lb Flaked Wheat

\n\n

1.125lb CaraVienne

\n\n

1.125lb CaraMunich

\n\n

0.25lb Carafa III

\n\n

2.25lb D2 Belgian Candi Syrup

\n\n

1.5lb Amber Belgian Candi Syrup

\n\n

6 AAU Styrian Goldings (80min)

\n\n

4 AAU Hallertauer Hersbrucker (10min)

\n\n

0.5oz Coriander (10min)

\n\n

Servomyces (10min)

\n\n

Irish Moss (10min)

\n\n

Wyeast 1762

\n\n

Decoction mash\n122 (rest 10 min)\n153 (rest 60 min)\n170 (mashout)

\n\n

Recipe Volume: 5.5 gallons\nBoil Time: 90 min\nOG: 1.098\nFG: 1.014\nABV: 11.2%\nIBU: 27\nSRM: 44

\n\n

Additional information:\nPitch yeast at 68, let rise to 73, when fermentation is near complete, rack to secondary, cold condition for 6+ weeks, repitch yeast and add sugar and bottle condition.

\n\n

Here is what I know about Rochefort 10 and some notes regarding this recipe:

\n\n
    \n
  • Pilsner and belgian caramel malts are the grains used (according to BLAM and Sean Paxton). CaraVienne and CaraMunich are two possible belgian caramel malt choices. They only use one belgian caramel malt but which one they use is a secret so I figured it would be best to use a little of each (Sean Paxton does the same in his clone).
  • \n
  • Carafa III is used mainly for some color (the candi syrup isn't dark enough alone) and for some aroma and body and flavor stability.
  • \n
  • It isn't possible to get the real light and dark candy sugar used by Rochefort and I feel that D2 and amber candi syrup are the highest quality and closest we can get.
  • \n
  • Sugars are reportedly 20% of the fermentables (as they are in my recipe)
  • \n
  • Rochefort says they use wheat starch (used to be corn) which should add some dryness and some head retention and body. Sean Paxton says it is about 5% of the fermentables (as it is my recipe).
  • \n
  • Sean Paxton claims they use 3 step mash is used with a protein rest at 122 and a saccharification rest in the \"mid-low 150s\". 153 seemed to be a good number in the mid-low 150s.
  • \n
  • While Rochefort likely doesn't use a decoction mash, I've found that decoction mashes give better efficiency, better flavor, and better fementability for a minimal amount of additional effort.
  • \n
  • The bittering hops are the \"traditional belgian hops\". I'm guessing Styrian Goldings. The flavor hops are a German hop. I'm guessing Hallertauer Hersbrucker. The hops are fairly subtle in this beer so those guesses are likely close enough if they aren't correct.
  • \n
  • Rochefort centrifuges and bottles rather quickly but since most homebrewers don't have access to a centrifuge, 6 weeks of cold conditioning should suffice.
  • \n
  • A starter should be used, but should be slightly under-pitched in order to get the yeast to produce the desire esters.
  • \n
  • Still not sure on the amount of flavor hops vs bittering hops but IBUs should be 27 according to BLAM.
  • \n
  • I'm tempted to pitch colder at 65 and let rise to 80 as I do with Westmalle yeast but I'm not sure if that will work with Rochefort yeast or if I'll get horrible fusel alcohols. For now, I'll try 68-73 as Rochefort does.
  • \n
  • Rochefort ferments beers on top of older beers. I wonder if this is possible to replicate by starting with pitching into just 1/4 of the wort and adding an additional 1/4 more wort each day for three days. Probably not worth experimenting with this on the first attempt but might help with attenuation.
  • \n
\n\n

Sorry for the different formatting- the recipes came from different sites with different standards.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2016-07-05T18:02:18.700", "LastActivityDate": "2016-07-05T18:02:18.700", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5189"}} +{ "Id": "5189", "PostTypeId": "2", "ParentId": "3451", "CreationDate": "2016-07-05T20:43:16.043", "Score": "1", "Body": "

Young in terms of establishments - Micropubs \"traditionally\" have to adhere to certain \"standards\":

\n\n

There is only one room
\nGenerally too small to have a bar
\nNo Televisions
\nNo Juke Boxes
\nNo manufactured (think commercialized) beer
\nNo lagers! (Literally is a dirty word - think yelling a racial slur among the people associated with that slur)
\nNo spirits (usually just Wine, Ale, Cider - though soft drinks and water can be supplied for children and DDs)

\n\n

The focus is to shun electronics (outside of electricity) focus on social interactions and ales (and maybe sometimes pub snacks).

\n\n

This seems to be a very United Kingdom centered movement (as I havent heard of this in the US).

\n", "OwnerUserId": "22", "LastActivityDate": "2016-07-05T20:43:16.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5190"}} +{ "Id": "5190", "PostTypeId": "2", "ParentId": "5179", "CreationDate": "2016-07-06T15:13:39.527", "Score": "1", "Body": "

Figuring out the \"right\" beer can be very difficult. Something that helps tremendously is learning what gives the beer the flavors you like. \"I really like that hint of banana in the Belgian beer! Awesome! That is a by-product of a specific type of yeast inherent to Belgian beers. Oh... Oh ::bleck:: that beer is like washing my tongue in bitter-water. Well, that beer might have a lot of hops added to it (or a hop that is known for having high alpha-acid levels).

\n\n

Look around locally. There is a craft beer store near me that has wine tastings on Fridays and beer tastings on Saturdays. Sometimes there are themes (I got to meet the creator of Duck-Rabbit!) and sometimes it is a hodgepodge of beers. You could also look up your local Homebrewer's Clubs. Homebrewers like talking about beer (especially their beer) and will often let you sample it to give them feedback.

\n", "OwnerUserId": "22", "LastActivityDate": "2016-07-06T15:13:39.527", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5191"}} +{ "Id": "5191", "PostTypeId": "2", "ParentId": "5179", "CreationDate": "2016-07-06T17:38:57.213", "Score": "2", "Body": "

It's a tough question. When I was getting into craft beer it was an organic process: I'd try something new, see if I liked it, then I'd try something else, and the process would continue.

\n\n

Eventually my exploration became intentional: I wasn't that familiar with different styles, I just tried as many new beers as I could, and eventually found my niche.

\n\n

In retrospect, if I could do it all over again with some guidance I'd want to have some understanding of styles. In general you have your dark ales stouts/porters/imperials, your lights standard lager/pilsner, your pale ales, your wheat ales, some fruity beers, some spiced beers, and whatever I'm missing.

\n\n

So what you could do to start is do some research and find a good example of 4-5 different styles that interest you and that are available locally, and get an idea of which type of beer you like. After you figure out the type of beer you're interested in you could buy more examples of those styles and find which ones you like best.

\n\n

A few notes that I'd keep in mind though:

\n\n
    \n
  1. Going from generic drinks to more 'complex' beers can be a challenge to the taste buds. At first try you might find some beers off putting, but after a while they grow on you. For that reason it'd also be smart to ease into beers with heavier flavour, until you're ready to approach them with an open mind and a palate that's used to new flavours. Try some balanced IPAs, wheat ales, some pilsners, maybe something sweet if you like first, go from there.
  2. \n
  3. I've always found the beer I drink changes with the seasos. What goes best in cold weather isn't the same thing that goes best in warm weather. So that could affect your judgement of what you try
  4. \n
\n", "OwnerUserId": "938", "LastActivityDate": "2016-07-06T17:38:57.213", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5192"}} +{ "Id": "5192", "PostTypeId": "2", "ParentId": "5171", "CreationDate": "2016-07-06T18:45:42.220", "Score": "1", "Body": "

If you enjoy wine, melon de bourgogne (aka Muscadet) or a chablis are a classic pairing for oysters. I also enjoy champagne or a Spanish txakoli with oysters.

\n", "OwnerUserId": "5637", "LastActivityDate": "2016-07-06T18:45:42.220", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5193"}} +{ "Id": "5193", "PostTypeId": "2", "ParentId": "5168", "CreationDate": "2016-07-07T00:25:00.240", "Score": "2", "Body": "

The Illegality issue is rooted in the sale of illegal substances AND/OR not paying Taxes on substances used. The BIG issue for anyone is Fire and Explosion. These problems kill or maim people and destroy property.

\n\n

However, edification is useful:\nThese two Google Search Links should be a good start to orient your understanding of the distillation of solvents.

\n\n

Drinking alcohol is ethanol. Ethanol is a Solvent in the realm of chemistry.

\n\n

(1) Laboratory Solvent Distillation\nhttps://www.google.com/search?q=Laboratory+Solvent+Distillation

\n\n

(2) since i don't have 10 reputation points i can not hyperlink the second Search for you... so you will be forced to do it yourself:} \"Laboratory Solvent Tower Distillation\"

\n", "OwnerUserId": "5508", "LastActivityDate": "2016-07-07T00:25:00.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5194"}} +{ "Id": "5194", "PostTypeId": "1", "CreationDate": "2016-07-08T10:44:21.007", "Score": "2", "ViewCount": "107", "Body": "

On www.cellartracker.com you can declare which wines you have purchased and their vintage, etc. There is also a \"drinkability\"/\"drinking window\" field where you can recommend when a particaular wine should be opened. This is a valuable feature for vintage wines but for non-vintage it is completely useless unless specifying which year the wine was bottled/cellared.

\n\n

What is the recommendation when adding NV wines to my cellar?\nIs to create a new wine (based on the existing NV wine) and add the designation (Mise en Cave 20xx)? Has this been discussed?

\n", "OwnerUserId": "5643", "LastEditorUserId": "5064", "LastEditDate": "2016-07-09T16:31:01.277", "LastActivityDate": "2016-07-22T11:47:01.080", "Title": "Drinkability for NV wines in Cellartracker", "Tags": "cellaring", "AnswerCount": "0", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5196"}} +{ "Id": "5196", "PostTypeId": "2", "ParentId": "5179", "CreationDate": "2016-07-10T15:30:03.717", "Score": "0", "Body": "

I will advice to you, firstly, to find right place, where you could buy beer on tap.

\n\n

As you might know, preservatives are used in canned goods.

\n\n

The same way beer on tap differ from 6 packs. Think what is better, a raw pineapple or canned pineapple.

\n\n

The second advice is - don't mix different beer. Never drink more than 3 different types of beer in one day. I have a dirty experience with it. 6 different bottles, only 3 liters, what can be easy? This was a black letter day in my life... Such huge hangover might be only after 1 litter of Vodka and 0.7 litter of rum after... Bad experience...

\n\n

The third advice - a snack. Use food as a major companion of your alco-trips...

\n\n

All of this three advices will safe you from hangovers and safe your health.

\n\n

Cheers!

\n", "OwnerUserId": "5648", "LastActivityDate": "2016-07-10T15:30:03.717", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5197"}} +{ "Id": "5197", "PostTypeId": "2", "ParentId": "5015", "CreationDate": "2016-07-12T19:41:16.813", "Score": "-3", "Body": "

To be considered a Kentucky Straight Bourbon it must be made in Bourbon County Kentucky. All others are a Whiskey.

\n", "OwnerUserId": "5651", "LastActivityDate": "2016-07-12T19:41:16.813", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5198"}} +{ "Id": "5198", "PostTypeId": "1", "AcceptedAnswerId": "5207", "CreationDate": "2016-07-13T04:19:18.157", "Score": "6", "ViewCount": "66589", "Body": "

With the legalization of moonshine in many US states I've been wondering what are the big differences between Moonshine and Vodka?

\n\n

Both are clear spirits made from whatever grains/starches are available. Both can be fairly high proof.

\n\n

Is it all just an Appalachian that is tied to their origin?

\n", "OwnerUserId": "4637", "LastEditorUserId": "8506", "LastEditDate": "2019-04-05T12:26:30.373", "LastActivityDate": "2019-04-05T12:26:30.373", "Title": "What's the difference between Vodka and Moonshine?", "Tags": "spirits vodka differences", "AnswerCount": "5", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5199"}} +{ "Id": "5199", "PostTypeId": "2", "ParentId": "5198", "CreationDate": "2016-07-13T09:20:17.523", "Score": "3", "Body": "
\n

Moonshine is any alcohol that is made illegally. It is usually make in\n small batches

\n
\n\n

In most cases if you are able to buy 'Moonshine' from a store it is generally not real moonshine

\n\n

I believe that it's called moonshine because it was illegal to make, so it was usually distributed at night time under the moonlight hence the name 'Moonshine'. It was popular to make as they could produce a high % drink very quickly but in most places there is a legal amount of time you have to distill an alcohol for. Moonshiners did not adhere to these rules hence why the drink was illegal.

\n\n

In places where moonshine has been legalized I would not consider it moonshine anymore as that just means they have allowed the distillers to bottle after any time they want in the processes instead of giving a set time for minimum distillation .

\n\n

There are some legal Moonshine distilleries that label their alcohol as moonshine but most of these are playing on the growing trend of moonshine as all of these are still legit distilleries. They pay all the taxes and ship out there product so this is perfectly legal and they call it moonshine. While this is not a original moonshine, as it is all legal. Moonshine can be any really high proof alcohol but once that alcohol is sold and distributed legally it just becomes the same as any-other spirit and loses the true nature of being moonshine.

\n\n

source

\n", "OwnerUserId": "5078", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-25T10:27:35.020", "LastActivityDate": "2019-01-25T10:27:35.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"5200"}} +{ "Id": "5200", "PostTypeId": "1", "AcceptedAnswerId": "6231", "CreationDate": "2016-07-14T02:18:05.760", "Score": "6", "ViewCount": "4125", "Body": "

I have done a little home-brewing (with friends) and have made or helped make several meads over the years -- enough to prompt this question but not enough to provide sufficient data to answer it.

\n\n

Some of our meads have kept well for several years. Others have started to go off after six months or a year (but were fine before that). The meads are bottled in capped (usually) 12oz brown bottles stored in a dark basement, and it doesn't seem to be about individual bottles. This seems to be a case of \"some recipes keep longer than others\". I'd like to know what properties contribute to this.

\n\n

So far, the batch that has kept well for the longest (over 10 years now! I've been saving the last few bottles...) was very high-gravity for a mead; it's strong, sweet, and very smooth. But another moderately-high-gravity mead degraded after a year or so, and lower-gravity ones have sometimes lasted longer. So it seems like there must be other factors at play; it doesn't seem to be as simple as \"stronger (or sweeter) meads keep longer\".

\n\n

Our production techniques have been about as consistent as home-brewing can be -- same equipment, same general process, same cellars, same fastidiousness about sanitation. Varieties of honey and yeast have varied, and of course recipes have too.

\n\n

This is not a home-brewing question; I'm not asking specifically how to make long-lived mead. Rather, I'm asking what characteristics allow a mead to age longer without going off, which also helps me decide what to drink.

\n\n

I know that commercial meads exist, by the way, but I have never encountered one.

\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2016-07-15T17:17:35.953", "LastActivityDate": "2016-08-12T17:10:19.343", "Title": "What properties help mead to age without skunking?", "Tags": "aging mead", "AnswerCount": "2", "CommentCount": "7", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5201"}} +{ "Id": "5201", "PostTypeId": "2", "ParentId": "5198", "CreationDate": "2016-07-14T14:07:03.240", "Score": "1", "Body": "

Moonshine derives (supposedly) its name from transporting it at night to avoid detection.

\n\n

Moonshine was made a lot in the mountains because of the inaccessibility of where the mountain-folk would hide the Stills and the abundance of fresh mountain springs. They could also make the moonshine high proof to maximize cost/drunk ratio (I know it sounds close minded but not a ton of reasons to buy high proof alcohol).

\n\n

Liquor is measured in proof which is just 2x the alcohol % listed - 40% Vodka is 80Proof. There is not commercial grade 200 proof moonshine mainly because of physics.

\n\n
\n

This is because ethanol is not an ordinary mixture, it’s an azeotrope. Instead of boiling purely and separately at two different temperatures, its vapor will form a certain proportion. Steam from alcohol is 95.57 percent alcohol. Get a pot of 95.57 percent ethanol boiling and the steam will be 95.57 percent ethanol right down until the last drop evaporates.\n Source

\n
\n\n

There are probably other moonshiners across the country; but, the origin is steeped in the Appalachian Mountains. Junior Johnson (a NASCAR Driver) started his own line of spirits and has \"moonshine.\" They aren't over 100 proof though...

\n", "OwnerUserId": "22", "LastActivityDate": "2016-07-14T14:07:03.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5202"}} +{ "Id": "5202", "PostTypeId": "1", "AcceptedAnswerId": "5204", "CreationDate": "2016-07-14T14:47:49.063", "Score": "7", "ViewCount": "545", "Body": "

Being a huge fan of vinegar, I recently wondered if there are any actual known cocktail recipes/drinks that involve vinegar as an ingredient, preferably as a significant ingredient contributing perceivably to the drink's taste.

\n\n

While there are drinks with a more spicy/hearty flavour, like Bloody Mary, I never heard of a cocktail involving vinegar and wonder if it would even work together with alcohol from a flavour-perspective. I could imagine the best targets to be spirits with a rather low-profile taste of their own, like vodka.

\n", "OwnerUserId": "5460", "LastActivityDate": "2016-07-17T08:07:59.657", "Title": "Are there drinks/cocktails involving vinegar?", "Tags": "flavor ingredients cocktails", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5203"}} +{ "Id": "5203", "PostTypeId": "2", "ParentId": "5171", "CreationDate": "2016-07-14T15:19:40.143", "Score": "4", "Body": "

You are confusing the issue with alcohol and raw oysters. Alcoholism can lead to liver damage which can predispose folks towards a dangerous Vibrio infection. So folks with liver damage (including alcohol abusers) should avoid raw oysters due to the risk of vibrio. Alcohol itself has no affect on Vibrio. The low alcohol content in beer won't sterilize anything anyway (it is the boiling wort part of the MAKING of beer that made beer a \"healthy\" option in the olden days :)

\n\n

Vibrio vulnificus Health Education Kit Fact Sheet

\n", "OwnerUserId": "3744", "LastEditorUserId": "5064", "LastEditDate": "2016-07-15T03:54:21.533", "LastActivityDate": "2016-07-15T03:54:21.533", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5204"}} +{ "Id": "5204", "PostTypeId": "2", "ParentId": "5202", "CreationDate": "2016-07-14T17:45:12.467", "Score": "6", "Body": "

There is a whole class of drinks called Shrubs

\n\n

Shrubs usually involve a base syrup made from vinegar and fruits and spices and then mixed with a spirit.

\n\n

Shrub syrups are available online in a variety of flavors and there are plenty of recipes out there too for creating your own Shrubs at home.

\n\n

My experience with and what I would define as a example Shrub would involve a shrub syrup, fresh fruit muddled in it with a spirit and then mixed, topped off with crushed ice and soda water.

\n", "OwnerUserId": "5539", "LastEditorUserId": "5539", "LastEditDate": "2016-07-14T17:58:05.267", "LastActivityDate": "2016-07-14T17:58:05.267", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5206"}} +{ "Id": "5206", "PostTypeId": "2", "ParentId": "5202", "CreationDate": "2016-07-17T08:07:59.657", "Score": "0", "Body": "

Yes, there are mixed drinks including vinegar or any other acidulated drink (usually called Shrub). Before adding to a drink as an ingredient, vinegar is often mixed/infused with fruits, spices, herbs.

\n", "OwnerUserId": "5667", "LastActivityDate": "2016-07-17T08:07:59.657", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5207"}} +{ "Id": "5207", "PostTypeId": "2", "ParentId": "5198", "CreationDate": "2016-07-19T09:39:52.010", "Score": "10", "Body": "

Generally, when people refer to \"moonshine\" and they are referring to what can be purchased legally, they are really referring to \"white whiskey\" (a.k.a. un-aged whiskey), or whiskey that has not been aged in an oak barrel.

\n\n

Most whiskey is fermented from either all-corn, or corn and an other grain (like rye), but there are some boutique type whiskeys that use other grains like quinoa, spelt, flax, etc. Technically any grain can be used to make whiskey, but it doesn't become \"whiskey\" until it has been placed in an oak barrel. There are only a few other \"rules\" like the proof at which it is distilled. Whiskey has to come out of the still at 95% ABV (190 Proof) and then cut with water to nothing lower than 40% ABV (i.e. 80 Proof or higher).

\n\n

Vodka can be made from corn, but unlike whiskey, it can be made from really anything that can be fermented. Some of the most common starts for Vodka are potatoes, wheat, rye, and a few other grains, but Vodka can be made from virtually anything else that can ferment like grapes (Ciroc vodka), tomatoes, cucumbers, donuts, you name it. I have seen almond vodka and even milk vodka (as in vodka fermented from almonds and from milk respectively). Vodka has to come out of the still at >95% ABV, but as long as it is cut with water to at the minimum of 80 poof (40% ABV) or higher, it's vodka. No matter what it started with.

\n\n

The same exact corn \"vodka\" can be called whiskey it is comes out at the 95% ABV and then is placed in oak barrels. Note that I wrote \"placed\" and not \"aged\" in oak. Whiskey has no age requirement, so the \"white whiskeys\" you see that do not read \"moonshine\" have at least touched oak. If you see that the label reads \"moonshine whiskey\", it has touched oak too, if it just reads \"moonshine\" and has not ever touched an oak barrel, then technically is it strong grain vodka, but \"moonshine\" sounds more renegade I suppose. Corn \"vodka\" that comes out of the still at 96%ABV or higher, but doesn't touch oak is still Vodka, but technically could also be called \"Moonshine\".

\n\n

Whiskey can be called \"bourbon\" if it is made in the USA, from 51% corn. It has to come out of the still at no more than 160 proof/80%ABV and it goes into the barrel at 125 Proof (62.5%ABV), and it has to be in the oak for at least 4 years in bonded warehouses under the U.S. government record. Thanks to the Bottle-in-bond Act of 1897.

\n", "OwnerUserId": "5676", "LastEditorUserId": "5078", "LastEditDate": "2016-07-19T09:51:41.320", "LastActivityDate": "2016-07-19T09:51:41.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5208"}} +{ "Id": "5208", "PostTypeId": "2", "ParentId": "5200", "CreationDate": "2016-07-19T20:17:03.220", "Score": "1", "Body": "

Even though you think this is a issue with certain types of mead during aging, I can't help but think you are just dealing with contamination that is turning some batches foul. I've never read of any type of mead that WORSENS with proper aging. So either you just don't like dry mead (maybe try carbonating it?) or you have contamination ruining your mead independent of what type it is. Alas, it is hard to find commercial meads to see what you actually like. Chaucers is wretched. I've seen some Scandinavian meads (like Vikings Blod) but they are pricey ($30+ for a bottle) so I've only tried a few. Maybe there is a mead brewers gathering near where you live?

\n\n

From The Meadery

\n\n
\n

Your Mead was great when bottled, but the taste has changed\n dramatically for the worse after only a few weeks? What you probably\n have is a vinegar infection. Smell the Mead and look for any hint of\n an aspirin or vinegar smell. If you catch it right away, you can often\n save a batch by treating it with sulfite tablets, but the odds are not\n very good. You can only stop further damage, not reverse what has\n already occurred. Worse, if a vinegar infection got into your Mead,\n it's undoubtedly living in your brewing system somewhere. Go after it\n with a vengeance. Sanitize everything post haste, maybe even throwing\n out all of your siphon hoses (acetobacteria loves to hide there). Make\n sure there is a good seal on your air-locks.

\n \n

If you have done all of this, and your Mead still tastes terrible\n after six months, try again. Examine all of your sanitation\n procedures, especially bottle washing. Make sure that any herbs or\n raisins or whatever that you might have added were not a source of\n bacterial infection. Most foul tastes are the result either of\n sterilizer contamination or bacterial infection. If you used an exotic\n ingredient, such as papaya peel, maybe you should try a new recipe.\n Maybe aging will solve the problem, maybe not. At a meadmakers\n gathering back in 1986 there was a Mead that everyone agreed had been\n the meanest they had ever tasted just the year before, but which had\n improved dramatically after a year of aging.

\n
\n\n

Oh, and another possibility that might slowly degrade your taste, from the same site:

\n\n
\n

You don't want the Mead to sit on the sediment for too long,\n especially in a warm climate, because the spent yeast will begin to\n feed on the sediment (a process called autolysis), and this will give\n your Mead an unpleasant taste. If your Mead takes a long time to\n ferment, rack it every month or so if it keeps throwing sediment.

\n
\n\n

In this case you make be bottling too soon, or adding too much sediment when you do bottle.

\n", "OwnerUserId": "3744", "LastEditorUserId": "3744", "LastEditDate": "2016-07-19T20:25:12.057", "LastActivityDate": "2016-07-19T20:25:12.057", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5209"}} +{ "Id": "5209", "PostTypeId": "2", "ParentId": "5181", "CreationDate": "2016-07-20T08:49:43.793", "Score": "1", "Body": "

I seriously doubt it. What happens over time is that chemicals giving the taste decays, and you cannot magically make them appear. You could perhaps add something to give it taste, but then, is it still beer?

\n\n

Refermenting (could be done by adding sugar) will give carbon dioxide and alcohol, but not more taste.

\n", "OwnerUserId": "5679", "LastActivityDate": "2016-07-20T08:49:43.793", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5210"}} +{ "Id": "5210", "PostTypeId": "2", "ParentId": "839", "CreationDate": "2016-07-21T19:36:22.527", "Score": "4", "Body": "

There are a number of reasons why you may perceive Becks as more bitter.

\n\n

Firstly, some of the bitterness you are perceiving is a factor of the beer's age. Beers like Becks, Heineken, Amstel, Yuengling, Miller/Coors/Budweiser, etc. aren't as strongly hopped as IPAs. Nonetheless, hops are still the primary flavoring agent in these beers.

\n\n

Some background first. Hops are flowers. Their bitter flavor comes from the release of the flower's alpha acids, which are among the most prominent resins and volatile oils within the flower itself. These alpha acids are extremely sensitive to oxygen and begin to break down upon exposure to oxygen -- even the trace amounts inside a sealed bottle or keg.

\n\n

Thus, any beer relying on hops as a primary flavoring agent is essentially \"on the clock\" from the time it's brewed. When fresh (<30 days after bottling/kegging), these hops taste as they were intended. As time progresses, the hop flavors fade and are replaced by a skunky hop flavor which some people (myself included) perceive as being overly bitter. Advanced palates can distinguish between these flavors, but it's often difficult to separate them without proper training.

\n\n

Additionally, most mass-market beers (including all of the above) are pasteurized. Anything that's been pasteurized will have a shelf life. General guidelines are to avoid anything older than ~90 days for pasteurized beer, and try to find <30 days when possible. I check bottling dates religiously before making a purchase.

\n\n

Note that some types of unpasteurized beer (Ex: traditional Belgian lambic) actually improve with age and can be cellared under proper conditions for upwards of 30 years!

\n\n

Another reason is due to the Heineken flavor profile itself. Just as alpha acids are sensitive to oxygen, the malted grain in beer is quite sensitive to direct sunlight. Even 15-20 minutes of exposure to the sun can irreparably skunk a beer. This is why most beer bottles are dark in color and 6pk holders have high cardboard sides.

\n\n

Even though both Becks and Heineken are sold in green bottles, which allow significantly more light through than dark bottles, the Heineken flavor profile is decidedly more skunky. And that's not to say it's bad; it's simply part of the flavor profile they have nurtured. This skunky malt flavor is the dominant flavor in Heineken, and it frequently masks some of the underlying hop bitterness -- including bitterness from aged hops.

\n\n

If you want to see what this flavor tastes like, grab two cans of Bud/Miller/Coors Light. Pour one into a clear glass and put it in direct sunlight for 15-20 minutes. Pour the other one at the same time but leave it in an opaque container shielded from sunlight. It's a pretty distinctive flavor.

\n\n

Finally, everyone's tastebuds perceive flavors a little differently. It's entirely possible that another person tasting the same two beers from the exact same bottles comes to a different conclusion about bitterness.

\n\n

In short, there are a number of factors at play here, and it may require a bit of effort to isolate them. But hey, that's the fun part!

\n", "OwnerUserId": "5688", "LastActivityDate": "2016-07-21T19:36:22.527", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5211"}} +{ "Id": "5211", "PostTypeId": "2", "ParentId": "637", "CreationDate": "2016-07-21T21:50:36.743", "Score": "1", "Body": "

This, \"The idea here is that you are extracting calcium carbonate from the shells, which helps reduce the tannic astringency that can result from the roasted grains used in stouts.\" from John, was most helpful and logical. Understanding how chemistry functions in brewing becomes logical once you ponder the explanation. Thanks, John.

\n", "OwnerUserId": "5508", "LastActivityDate": "2016-07-21T21:50:36.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5213"}} +{ "Id": "5213", "PostTypeId": "1", "CreationDate": "2016-07-23T01:46:52.637", "Score": "5", "ViewCount": "1147", "Body": "

I am trying to think of what US brewed beer tastes most similar to a Weihenstephaner Hefeweissbier...

\n", "OwnerUserId": "5691", "LastActivityDate": "2016-08-24T12:38:59.863", "Title": "What is a comparable beer to Weihenstephaner Hefeweissbier?", "Tags": "taste brewing recommendations german-beers foam", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5215"}} +{ "Id": "5215", "PostTypeId": "2", "ParentId": "5001", "CreationDate": "2016-07-24T22:17:59.953", "Score": "4", "Body": "

As above, the exposure to air, or more precisely, oxygen in the air, gives rise to subtle changes in the aromatic composition of the wine due to oxidation. To do this in the bottle i. e. to simply uncork or unscrew the bottle and leave it is virtually pointless. The surface area of the wine exposed, coupled with the poor gas-liquid transfer means any change would in all likelihood, be undetectable. There would be more aeration occurring by the simple act of pouring the wine into a glass. The best method is to swirl the wine in a vessel. A wide decanter is best, but leave settling time (of solids) for older wines. A wide wineglass (where the glass is about the width of a bottle) also works. Ideally, one would pour the wine into decanter where the volume of wine places the liquid level at the widest part of the vessel. A good swirl maximises aeration /oxidation. Give it time before pouring without the temperature rising too much above the ideal. Then, pouring from decanter to glass aerates further. This method is especially true for red wines. For white wines, more effective aeration is enacted by sucking the wine through the front teeth with air (almost slurping but only once the wine is in the front part of the mouth) while sipping from the glass. For tannic reds, this method can leave a \"furry\" feeling on the teeth however.

\n", "OwnerUserId": "4550", "LastActivityDate": "2016-07-24T22:17:59.953", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5216"}} +{ "Id": "5216", "PostTypeId": "2", "ParentId": "3386", "CreationDate": "2016-07-25T07:35:37.983", "Score": "0", "Body": "

I would also add another place to the list. \n(In order I prefer to visit)

\n\n
    \n
  • The 1st Brewhouse
  • \n
  • Effingut (Most of the time they have 8 varieties on tap)
  • \n
  • TJ's Brew works (I dont find them that impressive)
  • \n
  • Flambos
  • \n
\n", "OwnerDisplayName": "user5698", "LastActivityDate": "2016-07-25T07:35:37.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5217"}} +{ "Id": "5217", "PostTypeId": "2", "ParentId": "5181", "CreationDate": "2016-07-25T19:18:39.420", "Score": "0", "Body": "

Could pour it into something like this and infuse it with more hops or adjuncts.

\n", "OwnerUserId": "1547", "LastActivityDate": "2016-07-25T19:18:39.420", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5218"}} +{ "Id": "5218", "PostTypeId": "2", "ParentId": "3464", "CreationDate": "2016-07-26T15:09:14.993", "Score": "1", "Body": "

They are brewing it actively and there's information on the deranke.be website at http://www.deranke.be/en/bier/xxx-bitter

\n\n

\"a

\n", "OwnerUserId": "5705", "LastActivityDate": "2016-07-26T15:09:14.993", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5219"}} +{ "Id": "5219", "PostTypeId": "2", "ParentId": "5181", "CreationDate": "2016-07-26T15:44:16.177", "Score": "0", "Body": "

If it's not a beer with a high alcohol percentage (say 7%+) I'd just throw it out, life's too short to drink stale beer.

\n\n

Otherwise you can test several bottles. You might get lucky with a few, not every bottle in the same case ages at the same rate, certainly if it's one with fermentation on the bottle.

\n\n

tip: If you hear a hiss when opening the bottle, it's safe to taste. I never trust a bottle that's silent when opening as it almost guarantees that it's gone bad.

\n", "OwnerUserId": "5705", "LastActivityDate": "2016-07-26T15:44:16.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5220"}} +{ "Id": "5220", "PostTypeId": "2", "ParentId": "5213", "CreationDate": "2016-07-26T17:03:23.643", "Score": "2", "Body": "

You can find a discussion about it here.

\n\n

A couple of US brewed beers that arise from it are Sierra Nevada Kellerweis and Sly Fox Royal Weiss; but if you'd prefer a more easy-going (and usually cheaper solution), I'd go with Gösser Dark - although it's not make in the US (but in Austria) it's widespread across the country.

\n", "OwnerUserId": "5706", "LastActivityDate": "2016-07-26T17:03:23.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5222"}} +{ "Id": "5222", "PostTypeId": "1", "CreationDate": "2016-08-01T00:58:55.700", "Score": "3", "ViewCount": "723", "Body": "

Ultimately, I would love to know how the folks over at\nSeedlip have managed to make a distilled beverage with no alcohol. What would the process roughly consist of if sugar isn't used?

\n\n

Any insight would be greatly appreciated.

\n", "OwnerUserId": "5718", "LastActivityDate": "2016-08-01T13:09:57.600", "Title": "Non-Alcoholic Distillation", "Tags": "non-alcoholic", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"5223"}} +{ "Id": "5223", "PostTypeId": "2", "ParentId": "5222", "CreationDate": "2016-08-01T07:04:10.077", "Score": "3", "Body": "

They just don't ferment to create any alcohol in the first place. Pretty sure it is just aromatic waters. Distillation to intensify some flavors.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-08-01T13:09:57.600", "LastActivityDate": "2016-08-01T13:09:57.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6224"}} +{ "Id": "6224", "PostTypeId": "2", "ParentId": "3421", "CreationDate": "2016-08-04T12:41:22.423", "Score": "2", "Body": "

In Germany there is a famous comic book beer called Bölkstoff.\nThey also began producing it but nowadays it's rare, but you can get it online.

\n\n

\"Bölkstoff

\n\n

There are films about Werner where he drinks this specific beer.

\n\n

Rötger Feldmann is the author of these comic books and films. You can find info here and here much more on the German wikipedia page.

\n\n

If you have further questions about the films or the beer, feel free to ask.

\n", "OwnerUserId": "5734", "LastEditorUserId": "5734", "LastEditDate": "2016-08-05T11:31:38.337", "LastActivityDate": "2016-08-05T11:31:38.337", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6225"}} +{ "Id": "6225", "PostTypeId": "2", "ParentId": "605", "CreationDate": "2016-08-07T01:20:19.530", "Score": "1", "Body": "

I am now drinking a beer from a keg from last weekend. I left the beer keg inside my storage with door open and it's been warm this week (100°F). Five days later the beer tastes almost same exept that the beer foam has gone which in my opinion the beer foam gives it a better taste.

\n", "OwnerUserId": "5743", "LastEditorUserId": "5064", "LastEditDate": "2017-01-28T04:53:31.407", "LastActivityDate": "2017-01-28T04:53:31.407", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6227"}} +{ "Id": "6227", "PostTypeId": "2", "ParentId": "4595", "CreationDate": "2016-08-09T19:09:49.820", "Score": "5", "Body": "

Your liver processes alcohol at a fixed rate (what that rate is depends on your tolerance, current liver function, what medications you are taking, and some genetics). So eating some food, particularly foods that absorb fluids like bread, will slow down the rate of alcohol absorption into your bloodstream, allowing your liver more time to metabolize the alcohol.

\n\n

So for a fixed amount of alcohol, drinking on a full stomach will make you FEEL less drunk because you spread out the alcohol absorption over time so your liver has more time to metabolize it.

\n\n

However, you can still saturate your livers ability to metabolize alcohol by ingesting high volumes of alcohol and the absorptive ability of the food in your stomach is limited (unless you vomit it out) so it is FAR from reliable technique to drink but avoid becoming intoxicated or hungover since you are still absorbing all the ingested alcohol, just over a slightly longer period of time.

\n", "OwnerUserId": "3744", "LastActivityDate": "2016-08-09T19:09:49.820", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6228"}} +{ "Id": "6228", "PostTypeId": "2", "ParentId": "5022", "CreationDate": "2016-08-11T21:37:49.283", "Score": "8", "Body": "

The acidity (ph) of ethanol is relatively neutral (roughly equivalent to water), so milk and creams will typically mix fine with ethanol. In fact, it's the basis of many popular alcoholic beverages, like and "egg nog" (which is a spirit, a whole egg, cream, and simple syrup), or the White Russian (vodka, coffee liqueur and milk).

\n

Milk or cream-based beverages can become curdled, but it requires a high level of acidity (e.g. lime juice) to be introduced prior to consumption. It's why the "cement mixer" shot becomes curdled (the combination of cream in the "Irish Cream" and lime juice). If you are not familiar, do not try to drink a cement mixer "shot", it is typically considered a really bad prank to pull on an unsuspecting victim. See "Cement Mixer"

\n

Even though buttermilk is slightly more acidic than regular milk or creme, it's not enough to cause a reaction like curdling (unless you add the aforementioned high level of acid). Plus, milk already curds somewhat on its own in the stomach.

\n

There is a popular myth that drinking buttermilk (or regular milk) prior to alcohol consumption has preventative benefits (i.e. "hangover cure"). However, there is no scientific evidence that supports the claim that drinking any type of milk (even buttermilk) before consuming alcohol does anything to stave off or reduce hangovers.

\n

Conversely, it is well known that alcohol consumption slows digestion and reduces the absorption of nutrients, especially those found in milk. This is because alcohol reduces the secretion of digestive enzymes, which are what break down food in the stomach, including milk proteins and sugars. Alcohol also increases acid levels in the stomach, but it doesn't typically cause major negative side effects when consumed in moderation unless there is already another medical factor present.

\n

High levels of milk or creams, followed by excessive alcohol intake can produce effects similar to lactose intolerance because the milk sugars are not digested well and move into the intestines. Once excess sugars are in the intestines, the bacteria there consume the sugars and produce large amounts of gas. High levels of sugar in the intestines also cause more-than-normal amounts of water to be drawn into the intestines...a.k.a. "diarrhea".

\n

As long as you aren't eating cheese curd sandwiches, made with flourless (i.e. all-cheese) cheese bread, with 5 slices of cheese and cheese soup, followed by high levels of alcohol, you should be fine. Moderation with all things is the key.

\n

Note: If you are diabetic, you run the risk of much higher levels of milk sugars going into the intestines and should consult a physician, because prolonged sugars in the intestines and stomach can lead to gastritis or even ulcers.

\n", "OwnerUserId": "5676", "LastEditorUserId": "5676", "LastEditDate": "2020-09-29T22:29:17.583", "LastActivityDate": "2020-09-29T22:29:17.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6229"}} +{ "Id": "6229", "PostTypeId": "2", "ParentId": "4700", "CreationDate": "2016-08-11T21:45:15.713", "Score": "1", "Body": "

Craft Beer Association of Hong Kong\nhttp://www.cbahk.org/

\n\n

Link to several of the craft brewers in Hong Kong:\nhttp://www.cbahk.org/brewers

\n\n

\"Hong Kong's Best Craft Beer Bars\"\nhttp://beertopiahk.com/pages/bars

\n", "OwnerUserId": "5676", "LastActivityDate": "2016-08-11T21:45:15.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6231"}} +{ "Id": "6231", "PostTypeId": "2", "ParentId": "5200", "CreationDate": "2016-08-12T17:10:19.343", "Score": "2", "Body": "

One of the biggest determinants in how well a mead or beer or wine will age is oxidation. The only time that oxygen is beneficial is when your must or wort (IDK the currect term for unfermented mead) has cooled and you are ready to pitch the yeast. Oxygen at this point will help the yeast to multiply. But when the liquid is hot prior to cooling, and after fermentation is complete, you should be careful to minimize the amount of oxygen you are adding to it. Always stir gently and avoid splashing when racking and bottling.

\n\n

You use the word \"skunking\" in the title. True skunking (as opposed to staling or oxidation) is caused by a chemical reaction between hop extract and light. If you are adding hops to any meads, be sure to protect the bottles from light by storing them in a dark place, preferably in a box. Sunlight and florescent lights are particularly harmful.

\n", "OwnerUserId": "381", "LastActivityDate": "2016-08-12T17:10:19.343", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6232"}} +{ "Id": "6232", "PostTypeId": "1", "AcceptedAnswerId": "6233", "CreationDate": "2016-08-12T23:12:32.503", "Score": "4", "ViewCount": "99", "Body": "

I wondered about the alcohol in a beer and it was not on the can. Neither were ingredients or calories. Why does beer not have to list that stuff but food does? This is Texas.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4045", "LastEditDate": "2016-09-04T07:27:31.720", "LastActivityDate": "2016-09-04T07:27:31.720", "Title": "Beer label alcohol", "Tags": "ingredients", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6233"}} +{ "Id": "6233", "PostTypeId": "2", "ParentId": "6232", "CreationDate": "2016-08-14T20:43:56.423", "Score": "2", "Body": "

I found a great article that explains all the details, but basically, the big brewers won't be forced into divulging all their ingredients by the government.

\n\n

Read this to understand it in more detail: Why Ingredients Don't Appear on Beer Labels.

\n", "OwnerUserId": "5764", "LastEditorUserId": "5064", "LastEditDate": "2016-08-16T01:48:42.747", "LastActivityDate": "2016-08-16T01:48:42.747", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6234"}} +{ "Id": "6234", "PostTypeId": "2", "ParentId": "4667", "CreationDate": "2016-08-15T19:22:33.127", "Score": "0", "Body": "

I heard this from someone in 1993 and his explanation was it changes the boiling point (which still didn't explain how it made the beer stronger).

\n", "OwnerUserId": "5768", "LastActivityDate": "2016-08-15T19:22:33.127", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6235"}} +{ "Id": "6235", "PostTypeId": "1", "AcceptedAnswerId": "6238", "CreationDate": "2016-08-17T00:03:38.637", "Score": "14", "ViewCount": "1353", "Body": "

I drink mixed drinks infrequently, so it takes me a while to go through a bottle of rum, whisky, or vodka. Thus far I haven't noticed a problem with, say, a two-year-old (opened) bottle of any of these, but on the other hand, if they were degrading slowly I might not notice. Does the flavor of hard liquors change over time after the bottle has been opened? (Assume it is tightly recapped after use.) And are there any safety considerations?

\n", "OwnerUserId": "43", "LastActivityDate": "2016-08-20T00:34:09.580", "Title": "Does hard liquor keep forever?", "Tags": "age spirits", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6236"}} +{ "Id": "6236", "PostTypeId": "2", "ParentId": "6235", "CreationDate": "2016-08-17T08:19:43.107", "Score": "4", "Body": "

It depends on where and how long you store them.

\n\n

In a cabinet or in a showcase with glass windows, the light is affecting the aging and changing progress.\nI made experiences with 15 year old Whiskeys, Bourboun and Scotch which were very much affected because they were opened before(to the point where it wasn't drinkable anymore).

\n\n

In your case, it is important how long you store your bottle, if it is under one or two years, from my experience, you should be fine because high percentage beverages last very long.

\n\n

As a reference, the same goes for wine but in a much lesser quantity of time.

\n\n

I hope this helps you a bit.

\n", "OwnerUserId": "5734", "LastActivityDate": "2016-08-17T08:19:43.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6238"}} +{ "Id": "6238", "PostTypeId": "2", "ParentId": "6235", "CreationDate": "2016-08-17T18:14:29.853", "Score": "11", "Body": "

I have never head of safety concerns, especially if the bottle is properly recapped, but what often is an issue is oxidization, and exposure to sunlight.

\n\n

It happens much more slowly to liquors than to things like foods or wines, but every time you open the bottle you let oxygen get in, especially so the first opening, which will affect it though its really only slightly. The sunlight has similar affects on the spirits, to a similar magnitude (i.e. not very much).

\n\n

Vodka for example should be fine nearly indefinitely if properly kept, but whiskeys, gins, tequilas, rums, and the more complex liquors will degrade (again, only slightly and slowly). I've heard people say they can taste changes in 3-4 months, others years, but even if you have a bottle around for a year or two I really wouldn't have any concerns (I'm kinda skeptical of the 3-4 month people)

\n\n

I've had whiskeys and rums left around for 4-5 years after opening. They weren't great spirits themselves, but there was nothing unpalatable about them.

\n\n

If you are concerned, I would just keep your spirits in a cool, dry, dark space and then you probably don't have to give it a second thought.

\n", "OwnerUserId": "5771", "LastEditorUserId": "5771", "LastEditDate": "2016-08-17T18:19:58.737", "LastActivityDate": "2016-08-17T18:19:58.737", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6239"}} +{ "Id": "6239", "PostTypeId": "1", "AcceptedAnswerId": "6244", "CreationDate": "2016-08-17T18:42:53.993", "Score": "7", "ViewCount": "23515", "Body": "

I have heard a lot about corona in terms of its taste and being the great alcoholic beverage !! It is worth the hype or just a fad ?

\n", "OwnerUserId": "5778", "LastActivityDate": "2020-03-01T07:20:50.387", "Title": "What is so special about corona beer?", "Tags": "specialty-beers", "AnswerCount": "6", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6240"}} +{ "Id": "6240", "PostTypeId": "2", "ParentId": "6239", "CreationDate": "2016-08-18T03:42:34.040", "Score": "4", "Body": "

I wouldn't even call it a fad, it's a cheap drink that's light and not too alcoholic. I think more than anything, Americans are attracted to it's Mexican/fiesta advertising and they just feel like it makes a moment more festive.

\n\n

Disclaimer: Not a Corona fan.

\n", "OwnerUserId": "5779", "LastActivityDate": "2016-08-18T03:42:34.040", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6241"}} +{ "Id": "6241", "PostTypeId": "1", "CreationDate": "2016-08-19T01:00:56.953", "Score": "3", "ViewCount": "101", "Body": "

A lot of Iranians would gladly push away their teetotal laws, and it's evident from the latest alcohol craze which makes me realize there are probably more and more Iranian rummers present in our society, doing God's job, or lack thereof.

\n\n

I want to know what sort of yeast do you use? I want to brew myself some mead. In a large barrel. What should be the ratio of water and honey, and also, what yeast should I use? Where can I get brewer's yeast?

\n\n

Thanks a lot.

\n", "OwnerUserId": "5788", "LastActivityDate": "2016-08-30T01:10:24.847", "Title": "Any Iranian rummers here? What yeast do you use?", "Tags": "yeast mead", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6242"}} +{ "Id": "6242", "PostTypeId": "2", "ParentId": "6235", "CreationDate": "2016-08-19T12:25:29.503", "Score": "8", "Body": "

Wow, your question bring back memories.

\n\n

My grandfather collected bottle of various hard liquors while in the military (World War II) and had them in a liquor cabinet in the basement. After the war, he stopped drinking and there in his cabinet where was a large number of bottles that were almost all opened, yet I would guess were at least 75% full. Occasionally we would have some at Christmas or some other occasions and they seemed quite fine to us back in the day. Some of his bottles were decades old.

\n\n

But in reality how long will hard liquor remain good?

\n\n
\n

There's no need to replace those decades-old bottles of gin and whisky. Distilled spirits like vodka, rum, whisky, tequila and gin don't ever spoil — even after opening. The taste, color or aroma may fade over time, but it'll hardly be noticeable. Keep the bottles tightly closed and store them in a cool area away from direct heat or sunlight. - Forever foods: 10 cooking staples that can outlast you

\n
\n\n

How Long Do Spirits Last?

\n\n
\n

Spirits

\n \n

The easiest class of booze to keep, sprits will generally last forever—although that statement comes with a couple of caveats.

\n \n

Spirits are usually high enough in proof that their alcohol content will preserve them indefinitely. Of course, because of that same alcohol content, you need to be sure to store them in a cool place. Above a radiator is not the right answer.

\n \n

Spirits do not \"get better\" in the bottle; they do not generally develop additional flavors in glass. For a spirit to age in the sense that we mean when talking of aged spirits, they need to age in wood. Glass doesn't impart additional flavor or aroma.

\n \n

Two things will happen to spirits in glass, however: oxidation and evaporation. As the booze reacts with oxygen, its flavors diminish over time. For short periods, this effect is subtle. Keep an open bottle of bourbon around a couple of months, and you probably won't notice any difference. Store it for years, though, and you might find it tastes a little flatter than when it was brand new.

\n \n

A small amount of evaporation from the bottle is inevitable and unavoidable; to make sure it stays just a small amount, though, remember what I said before: keep the booze in a cool place.

\n \n

But say you have a special bottle, something you want to keep around for a long time, and sip slowly over years. How can you protect the stuff inside? The simple answer is, transfer it into a smaller bottle. A few remaining ounces of that perfect single-malt, stored in its original bottle, will continue to react with the oxygen that fills up the bottle. A smaller vessel simply has less room for that spirit-snuffing oxygen.

\n \n

Now, is this necessary? Probably only if you're a collector or true spirits enthusiast. I doubt most drinkers would notice. - How Long Do Spirits Last? by Michael Dietsch

\n
\n\n

For further reading please see:

\n\n

Does Liquor Ever Expire?

\n\n

How long does liquor last?

\n\n

9 Foods That Last Forever

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-08-20T00:34:09.580", "LastActivityDate": "2016-08-20T00:34:09.580", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6243"}} +{ "Id": "6243", "PostTypeId": "2", "ParentId": "6239", "CreationDate": "2016-08-19T14:24:58.530", "Score": "3", "Body": "

My greatest like of Corona is the fact that it's a light bear and that it pairs very well with lime. This way in the summer when it's how, it is a very refreshing beer and easy to drink. Also this is the way it's marketed, a \"summer party\" beer so it fits its role well.

\n", "OwnerUserId": "5796", "LastActivityDate": "2016-08-19T14:24:58.530", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6244"}} +{ "Id": "6244", "PostTypeId": "2", "ParentId": "6239", "CreationDate": "2016-08-19T15:26:17.603", "Score": "9", "Body": "

There are a few main things contributing to this 'hype'.

\n\n

Firstly is the addition of the lime. It adds the citric acidity that pairs well with the light beer and gives it a unique zing that you don't find in other easily available beers.

\n\n

Secondly, its a light beer that is easy and pleasurable to drink. It may not have rich notes that some love, or special characteristics, but what it gains is wide appeal and a product that you can't really hate, even if you don't absolutely love it. It is a very refreshing beer to drink when compared to a heavier lager or IPA.

\n\n

Finally, is the marketing / ambiance it embodies. This is very likely a smaller contributing factor, but often one recalls having a nice corona on the beach as they relaxed, or correlate the beer to that image in their head, so it has that mental factor as well.

\n\n

It comes down to the fact that reviews and 'class' aside, you should be drinking the beers you enjoy, and for many non-connoisseurs Corona fits that bill very well.

\n", "OwnerUserId": "5771", "LastActivityDate": "2016-08-19T15:26:17.603", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6245"}} +{ "Id": "6245", "PostTypeId": "1", "AcceptedAnswerId": "6247", "CreationDate": "2016-08-22T17:20:43.493", "Score": "8", "ViewCount": "351", "Body": "

Ok, so I'm 17 and only recently started drinking.\nI'm experimenting and learning, I'm looking to drink for nothing but pleasure, no exaggerations or excesses.

\n\n

So, you look at a label and you see x% alcohol, which means, well what it means.

\n\n

And what I intend to know is how much actual \"pure\" alcohol would be safe to drink on a daily basis, so I can do the math and find out how much of each drink I can drink in a day and stay as healthy as I've ever been.

\n\n

(I'm ~1.6m tall, and weigh ~57Kg)

\n\n

Thank you.

\n", "OwnerUserId": "5807", "LastEditorUserId": "5807", "LastEditDate": "2016-08-22T17:27:43.437", "LastActivityDate": "2019-03-29T10:36:37.867", "Title": "How much actual alcohol is safe to drink per day?", "Tags": "drinking", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ClosedDate": "2020-04-25T04:58:13.697", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6246"}} +{ "Id": "6246", "PostTypeId": "2", "ParentId": "6239", "CreationDate": "2016-08-22T19:06:33.940", "Score": "5", "Body": "

Corona used to be a cheap Mexican Beer available in the US. When its popularity fell a little bit, the company's marketing wing decided to provide provocative ads and increase the price. Americans bought that (the marketing) and Corona now is a \"desired\" beer in the US.

\n\n

That's my take based entirely on personal observation and this: http://www.aef.com/pdf/effie/corona_2006.pdf

\n\n

Corona is not the first to use this marketing approach, gold schnapps did the same thing and were somewhat successful, though they didn't have the windfall that Corona had.

\n\n

Remember Gold Schnapps? It used to be a cheap schnapps, with enticing and interesting \"gold\" flakes drifting slowly through the drink.

\n\n

The new Gold Schnapps is more expensive and the companies accentuate the \"gold\" flakes...I haven't looked, but I'll bet this marketing also worked.

\n", "OwnerUserId": "5808", "LastActivityDate": "2016-08-22T19:06:33.940", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6247"}} +{ "Id": "6247", "PostTypeId": "2", "ParentId": "6245", "CreationDate": "2016-08-22T21:07:31.740", "Score": "4", "Body": "

The CDC suggests no more than 2 drinks a day as moderate drinking.

\n\n

The National Institute on Alcohol Abuse and Alcoholism suggests no more than 4 drinks per day, and no more than 7 drinks per week, to stay at a low risk for an alcohol use.

\n\n

At 17 your brain is still developing and imbibing alcohol runs the very real risk of affecting that development. Drink in moderation.

\n\n

In response to the below comment, a single drink technically does vary but about 45ml / 1.5oz of spirit (e.g. vodka), a 5oz glass of wine, or a 12oz beer.

\n\n

When I say it varies, different locations have different measurements. Check out this page:

\n\n

Standard drink (Wikipedia)

\n", "OwnerUserId": "5771", "LastEditorUserId": "5064", "LastEditDate": "2019-03-29T10:36:37.867", "LastActivityDate": "2019-03-29T10:36:37.867", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6248"}} +{ "Id": "6248", "PostTypeId": "2", "ParentId": "6239", "CreationDate": "2016-08-23T00:22:09.030", "Score": "4", "Body": "

My two cents - Corona is an accessible beer (both geographically and taste-wise). You can get it anywhere, and it doesn't contain any of the strong flavors that come with liberal use of hops, malt or yeast (such as found in the IPA, stout, or Belgian varieties).

\n\n

Lagers are generally easy-drinking, and when paired with a great marketing campaign and a little wedge of lime, makes for a beer that almost anyone can drink 3 or 4 of.

\n", "OwnerUserId": "3905", "LastActivityDate": "2016-08-23T00:22:09.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6249"}} +{ "Id": "6249", "PostTypeId": "2", "ParentId": "5186", "CreationDate": "2016-08-23T19:42:46.093", "Score": "2", "Body": "

There are several categories of organic compounds that are responsible for aromas - esters, ketones, and aldehydes are the most notable.

\n\n

Esters are formed when an alcohol and an acid combine; creating esters is a common laboratory experiment in high-school chemistry - I remember making peppermint and banana. This is the actual compound responsible for making peppermint smell like peppermint; the way we synthesized it in the lab isn't necessarily the way the peppermint plant makes it, but the result is identical.

\n\n

A similar process happens during fermentation and aging of wine: the acids and alcohols present combine to form the compound that makes a cherry smell like a cherry, a thyme sprig smell like thyme, etc.

\n\n

Just to be clear, most fermented beverages are going to have some of these aroma compounds as byproducts of fermentation. But grapes are notable in that they produce many more different acids than other fruits. So the range of possible aroma compounds is greater in wine than in, for example, cider - since apples don't have the variety of acids that grapes do, and can't make as many different esters.

\n", "OwnerUserId": "5817", "LastActivityDate": "2016-08-23T19:42:46.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6250"}} +{ "Id": "6250", "PostTypeId": "5", "CreationDate": "2016-08-24T03:38:36.997", "Score": "0", "Body": "

Mead is an ancient beverage that consists of honey and water fermented to create an alcoholic beverage. There are many sub-categories of mead that can be defined by what additions are made to the fermentation.

\n\n
    \n
  • Traditional - Water and Honey in different ratios to produce a dry to sweet beverage.
  • \n
  • Melomel - Fruit juice and Honey. Specialty categories are:\n\n
      \n
    • Cyser - apple juice and honey
    • \n
    • Pyment - grape juice and honey
    • \n
  • \n
  • Metheglin - Water, spices, and honey.
  • \n
  • Braggot - Barley sugars and honey.
  • \n
\n", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2016-08-25T10:14:24.153", "LastActivityDate": "2016-08-25T10:14:24.153", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6251"}} +{ "Id": "6251", "PostTypeId": "4", "CreationDate": "2016-08-24T03:38:36.997", "Score": "0", "Body": "Pertaining to the fermenting of honey or where honey is the primary sugar in the alcoholic beverage.", "OwnerUserId": "4637", "LastEditorUserId": "4637", "LastEditDate": "2016-08-25T10:14:27.917", "LastActivityDate": "2016-08-25T10:14:27.917", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6252"}} +{ "Id": "6252", "PostTypeId": "2", "ParentId": "5213", "CreationDate": "2016-08-24T12:38:59.863", "Score": "1", "Body": "

Erdinger Urweisse and Erdinger Hefeweissbier should also be close. Both are brewed in Erding (roughly 15 miles from Weihenstephan), but reportedly available throughout the world.

\n", "OwnerUserId": "5822", "LastActivityDate": "2016-08-24T12:38:59.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6253"}} +{ "Id": "6253", "PostTypeId": "2", "ParentId": "5162", "CreationDate": "2016-08-24T13:07:35.373", "Score": "2", "Body": "

Ken, as you requested in your response to my comment, I post this as an answer:

\n\n

Despite not fulfilling the first criteria, I suggest considering St John's Commandaria, a sweet desert wine made in Cyprus from white grapes.

\n\n

From: A legendary wine

\n\n
\n

The Commandaria wine of today still bears the name of this area [Grande Commandaria, Limassol District], for the Knights of St John gave this name to the wine not only because it was produced in the villages that constituted the Order’s fief - the Commanderie - but also because knighthood was then held in high esteem among the Catholic countries of Western Europe and among pilgrims who, on their way to the Holy Land, stopped at Cypriot harbors for provisioning - which of course included the sweet Commandaria wine.

\n
\n\n

\"St

\n\n

The bottles are generally available for less than 20$ and bear what I believe is called the cross of St John. I have been lucky enough to have been introduced to its long history and the wine itself by a local enthusiast in Cyprus. I've also been impressed by its quality, which I consider outstanding for the price. It also would be an excellent sip after a good lunch or dinner, and as desert wine is typically drunk in smaller quantities than 'normal' red or white wine, the limited supply from a blessed bottle can be shared among more people.

\n", "OwnerUserId": "5822", "LastEditorUserId": "5064", "LastEditDate": "2018-06-30T11:41:15.417", "LastActivityDate": "2018-06-30T11:41:15.417", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6254"}} +{ "Id": "6254", "PostTypeId": "2", "ParentId": "5179", "CreationDate": "2016-08-24T15:34:42.707", "Score": "0", "Body": "

Beer is a bit like real estate. Location, location, location. Move to Czech Republic or Germany would be my number 1 recommendation and then try try try (in moderation of course). A very good indication is lack of supply. This most often means demand from other drinkers is high. For example it is over a month since I've been able to buy a crate of my local favourite (Tegernseer Helles).

\n", "OwnerUserId": "5824", "LastActivityDate": "2016-08-24T15:34:42.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6257"}} +{ "Id": "6257", "PostTypeId": "2", "ParentId": "725", "CreationDate": "2016-08-26T07:49:58.300", "Score": "1", "Body": "
    \n
  • There seems to be much \"science\" that would document that warm beer has zero capability to prevent a cold.
  • \n
  • The question really asks why people \"believe\" that warm beer is successful in doing the job of preventing or helping the immune system of a physical body successfully deal with a cold.
  • \n
  • That \"science\" has so far failed to identify \"why\" warm beer or chicken soup is perceived by people as producing salutatory results is a failure of scientific vision.
  • \n
\n\n

I would wonder this. \n - Is the immune system supported by the oils, liquid, and vitamins in chicken soup? If so, how is this accomplished. \n - Is the immune system supported by warm beer somehow? If so, how is the\n accomplished.

\n\n

I wonder if adding heat alone so the body can devote more of its energy to the immune system helps fight off the flue virus that produces the thing we call a cold. I wonder if the presence of herbs in beer helps the immune system in a way we do not yet pay attention to, or understand. Could it be, that at a vibrational level of frequencies, \"home remedies\" function successful to accomplish something that \"science\" does not yet understand. I do know that the Pentagon has used frequency science to deal with health issues via research done by Sharry Edwards per: Sound Health Options.

\n", "OwnerUserId": "5508", "LastEditorUserId": "5064", "LastEditDate": "2017-01-12T22:17:02.957", "LastActivityDate": "2017-01-12T22:17:02.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6258"}} +{ "Id": "6258", "PostTypeId": "2", "ParentId": "5179", "CreationDate": "2016-08-26T20:13:04.260", "Score": "0", "Body": "

Love the Question! Here's some things I've done to try new beers, without breaking the bank:

\n\n
    \n
  1. \"Beer flights\" are an easy way to start. Lots of pubs offer them.

  2. \n
  3. When your buddy orders a new beer say \"hey, can I try that?\" (Dump him if he says \"no\")

  4. \n
  5. Find a pub with a ton of beer on tap, and go check 'em out a night they run beer specials. Our pub has 120 on tap and Friday nights they are 1/2 price. Try something new. If you don't like it, give it away.

  6. \n
  7. Many waiters/waitresses know their beers, ask them for a suggestion.

  8. \n
  9. Find a \"Self-Serve\" beer pub. You can pour as much or as little as you want. Pay by the ounce.

  10. \n
  11. Throw yourself a beer tasting party. Everyone brings a six-pack. You each get to try a bunch of beers. You could use \"Wine tasting cards\", we used 1-5 point system on a white board.

  12. \n
\n\n

You might start with the lighter beer categories like pilseners and ales. When you find a good one note the category. You like Jack & Coke huh, maybe try some of the \"fruity\" beers.

\n", "OwnerUserId": "5835", "LastActivityDate": "2016-08-26T20:13:04.260", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6259"}} +{ "Id": "6259", "PostTypeId": "1", "AcceptedAnswerId": "6260", "CreationDate": "2016-08-27T14:31:12.000", "Score": "4", "ViewCount": "84", "Body": "

Some regions around Frankfurt are famous for their wines. When I was in Frankfurt last time, I tried their Apple wine and simply loved it. This time, I will be in Frankfurt for a longer period and would like to try some more of their famous wines. I have not tried any special wines before and most probably will not spend a lot on wines. So please suggest something for a beginner within budget that is available in Frankfurt main city area.

\n", "OwnerUserId": "5836", "LastEditorUserId": "5064", "LastEditDate": "2016-08-28T04:19:22.050", "LastActivityDate": "2016-08-29T17:55:20.073", "Title": "Must try wines in Frankfurt region", "Tags": "recommendations wine germany", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6260"}} +{ "Id": "6260", "PostTypeId": "2", "ParentId": "6259", "CreationDate": "2016-08-29T17:55:20.073", "Score": "4", "Body": "

I would spend your limited time and money just tasting wines from one region. Nahe is a smaller wine region just west of Frankfurt, and I've found the wines there to be good quality, with individual charm (in other words, without the sense that they are mass-produced). More info here

\n\n

By all means, talk to locals: the people you're visiting, the clerk in your hotel. That's almost always a great way to discover something.

\n", "OwnerUserId": "5817", "LastActivityDate": "2016-08-29T17:55:20.073", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6261"}} +{ "Id": "6261", "PostTypeId": "1", "CreationDate": "2016-08-29T21:43:50.123", "Score": "7", "ViewCount": "2768", "Body": "

Bitters are known to have medicinal qualities.

\n\n

I've never used them beyond making killer cocktails... But, I've noticed that orange bitters, in particular, will imbue me with an added vigor or gusto, at times. I've heard certain bitters can be consumed for stomach and headaches but, I've never been able to replicate the affect.

\n\n

What added physiological or psychological sensations have any of you noticed when consuming bitters? Which bitters have you consumed for what particular ailment(s)?

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-08-28T02:07:58.977", "Title": "Does anyone here still use bitters as medicine? Which ones do you use and for what ailments?", "Tags": "history health spirits", "AnswerCount": "10", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6262"}} +{ "Id": "6262", "PostTypeId": "1", "CreationDate": "2016-08-29T23:04:16.307", "Score": "2", "ViewCount": "4198", "Body": "

Guinness, absinthe, and ouzo have never given me a hangover even after those rare nights of extreme consumption... Now, I do usually consume absinthe in the traditional way (with equal parts water) but, I've been truly amazed to wake up with no hangover after doing the, again extreme, things that I've done to my body with the stuff previously. On the other hand, even when it's of excellent quality I experience hangover-like symptoms after drinking white and sparkling wines, and when I drink vodka.

\n\n

Are some alcoholic beverages known to be least likely to cause hangovers? If so, what characteristics of the drinks affect this?

\n", "OwnerUserId": "5847", "LastEditorUserId": "43", "LastEditDate": "2016-09-11T02:51:46.610", "LastActivityDate": "2019-01-28T12:55:12.083", "Title": "Which beverages are least likely to give one a hangover? What induces hangover on a drink-to-drink basis?", "Tags": "hangover", "AnswerCount": "5", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6263"}} +{ "Id": "6263", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2016-08-30T01:04:42.223", "Score": "3", "Body": "

When I tended bar, I had several regulars who would drink club soda with a couple splashes of bitters to calm an upset stomach. But it never did anything for me personally.

\n\n

I don't know if it's purely a psychological effect or a your-mileage-may-vary situation.

\n", "OwnerUserId": "5817", "LastActivityDate": "2016-08-30T01:04:42.223", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6264"}} +{ "Id": "6264", "PostTypeId": "2", "ParentId": "6241", "CreationDate": "2016-08-30T01:10:24.847", "Score": "2", "Body": "

Bread yeast is very close to brewers yeast.

\n\n

There is a mead recipe you can search-up: \"Joes ancient orange mead\", which does specify using bread yeast, rather than specific mead yeast. Many home brewers make this with good levels of success.

\n\n

Failing that, you can grow naturally-occurring yeast from the skins of fresh and dried fruits (e.g.: grapes). We used to do this as kids to carbonate ginger beer soft drink (aka: soda).

\n", "OwnerUserId": "5160", "LastActivityDate": "2016-08-30T01:10:24.847", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6265"}} +{ "Id": "6265", "PostTypeId": "1", "AcceptedAnswerId": "6267", "CreationDate": "2016-08-30T16:52:23.850", "Score": "5", "ViewCount": "110", "Body": "

In the US where I live, fall brings beers labelled \"Oktoberfest\", usually Bavarian Märzenbiers. I like this style and look forward to it.

\n\n

This year it happens that I'm going to be passing through Munich a few days before the start of their Oktoberfest. It'd be great to be able to sample Oktoberfest beers fresh out of the tap where they're made, rather than waiting for whatever makes it across the Atlantic to me later. Am I likely to find any Oktoberfest beers in the Munich airport in the week before the festival, or is that date the \"debut\" and I'll just have to settle for other German beers when I'm there?

\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2016-08-30T20:02:32.007", "LastActivityDate": "2016-09-16T14:36:06.863", "Title": "Are Oktoberfest beers available in Germany before the official start of the festival?", "Tags": "german-beers germany", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6266"}} +{ "Id": "6266", "PostTypeId": "1", "CreationDate": "2016-08-30T17:52:55.023", "Score": "8", "ViewCount": "1197", "Body": "

I've successfully made a black raspberry liqueur, and am doing a similar process now with fresh figs. Has anybody done that? What have your experiences been?

\n\n

Recipe:

\n\n
    \n
  • 1.5 cups vodka (I'm using Tito's)
  • \n
  • 1.5 - 2 cups fig puree
  • \n
\n\n

Combine figs and vodka, shake well, store in refrigerator. Shake daily, after 2-3 weeks strain well, and add simple syrup to taste.

\n", "OwnerUserId": "5817", "LastActivityDate": "2018-07-01T19:33:16.987", "Title": "Any experience making fig liqueur?", "Tags": "liquor spirits", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6267"}} +{ "Id": "6267", "PostTypeId": "2", "ParentId": "6265", "CreationDate": "2016-08-30T20:04:13.257", "Score": "2", "Body": "

I'm not sure if you will find any Oktoberfest beer at the airport but they are available several weeks before \"official\" start in big groceries or beer shops. Hacker-Pschorr Oktoberfest Märzen, Paulaner Oktoberfest and Löwenbräu Oktoberfestbier were already available three weeks ago even in nothern Germany.

\n", "OwnerUserId": "4742", "LastActivityDate": "2016-08-30T20:04:13.257", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6268"}} +{ "Id": "6268", "PostTypeId": "1", "AcceptedAnswerId": "6279", "CreationDate": "2016-08-31T12:02:53.563", "Score": "4", "ViewCount": "391", "Body": "

I do not have much options in beer variety and therefore I need some good cocktail of beer with vodka/tequila or some other good choice to make it good for a party.

\n\n

Is there any way to mix things up?

\n", "OwnerUserId": "5860", "LastEditorUserId": "5064", "LastEditDate": "2016-08-31T12:15:09.067", "LastActivityDate": "2021-01-05T15:55:56.117", "Title": "Beer cocktail recommendation", "Tags": "recommendations beer-cocktails vodka", "AnswerCount": "5", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6269"}} +{ "Id": "6269", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2016-08-31T20:40:13.820", "Score": "2", "Body": "

I have episodes of heartburn, usually from eating beef or potatoes and I find it very soothing to drink a splash of bitters in club soda. I make homemade bitters with ginger, grapefruit, gentian root, and several spices that seem to be the most effective. Bitter herbal liqueurs are popular in Europe for before or after a meal to stimulate the appetite or aid digestion.

\n\n

Gentian root is one of the most common bitter agents. While I don't know of any clinical studies, gentian root has been used in herbal medicine for centuries to treat digestive issues. It makes sense from an evolutionary perspective because bitter compounds are mostly found in plants and are often more or less poisonous. If the body produces more digestive enzymes in response to bitter flavors, the extra enzymes can neutralize the poison or extract more nutrition from the plant material. It's certainly not totally effective, salivary enzymes won't save you from hemlock poisoning, but it could reduce the ill effects of mild poisons.

\n", "OwnerUserId": "5862", "LastActivityDate": "2016-08-31T20:40:13.820", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6270"}} +{ "Id": "6270", "PostTypeId": "2", "ParentId": "6268", "CreationDate": "2016-09-01T02:49:40.077", "Score": "1", "Body": "

In the UK, I never came across a \"beer cocktail\", certainly not one spiked with strong spirits (hard liquor in AmE) like vodka or tequila. I'm somewhat surprised (British understatement) that the OP needs to do this to a good glass of beer in order to \"make it a good party\" [sic]. Doing this is just as likely to ruin the enjoyment of the vodka/tequila and vice-versa the beer. Such adulteration of these two mutually exclusive beverages is an abomination. Evidently the hoped for effect of spiking beer in this way is to encourage inebriation among the party goers. Not the sort of thing that makes a \"good party\" in my experience. Beer \"cocktails\" of a more benign kind in the UK also include a \"shandy\", traditional beer to which non-alcoholic fizzy lemonade is added. In the UK, another beer cocktail of sorts is the \"Black & Tan\", a fifty-fifty mixture of traditional beer or pale ale with dark porter or stout (typically Guinness) I think the Scots got it right when they embraced the \"beer-chaser\", a pint of traditional beer ordered with a wee dram of Scotch (whiskey) on the side, served separately in a glass tot. A beer \"cocktail\" of this kind, drunk in tandem with each other, is so much more appealing than throwing hard liquor in with a good beer and vice versa.

\n", "OwnerUserId": "5816", "LastEditorUserId": "5816", "LastEditDate": "2016-09-01T04:35:44.843", "LastActivityDate": "2016-09-01T04:35:44.843", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6271"}} +{ "Id": "6271", "PostTypeId": "2", "ParentId": "6262", "CreationDate": "2016-09-02T06:14:00.347", "Score": "2", "Body": "

I used to work with a group of Russians. They introduced me to Wodka and told me that Wodka will never give you a hangover if you stick to Wodka only - and don't drink any other alcoholic beverages shortly before, in between or after. The reasoning was that hangovers feel like they do not so much because of the alcohol, but because of impurities. Good Wodka consists of extremely little impurities (a large part of it is just alcohol and water) and thus apparently is less likely to cause a hangover.

\n\n

I found this to be true, provided the Wodka is of reasonable quality (Stolichnaya seemed to work well in this respect) and enough water is taken to avoid dehydration.

\n", "OwnerUserId": "5822", "LastActivityDate": "2016-09-02T06:14:00.347", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6272"}} +{ "Id": "6272", "PostTypeId": "2", "ParentId": "6262", "CreationDate": "2016-09-02T12:08:54.583", "Score": "3", "Body": "

Two things have to be considered:

\n\n
    \n
  • The first, as Lying Dog said, is impurities. In fact, if they give taste, they also give you hangover
  • \n
  • The second, much more important is the fact that alcohol is diuretic. Once drunk, the alcohol is converted into several substances (in several steps) by your liver. The problem is once the last substances cannot be converted into anything useful, it will be ejected from your body. How ? By urinating. But urinating requires water. The problem is that if you do not drink water as much as needed, your body will take it from where it can, including from your brain. Now think about a sponge left without water inside and you'll have a good idea of what your brain looks like after a night, inducing hangover the next morning.
  • \n
\n\n

To answer your question, yes, Vodka is the most efficient alcohol to avoid hangover. But you can also avoid it by drink enough water while drinking alcohol (typically, if I'm at a party where I drink a lot of alcohol, I drink a pint of water after 2 or 3 beers)

\n", "OwnerUserId": "5654", "LastActivityDate": "2016-09-02T12:08:54.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6274"}} +{ "Id": "6274", "PostTypeId": "2", "ParentId": "6262", "CreationDate": "2016-09-05T12:08:02.160", "Score": "2", "Body": "

I have voted to close, as this is entirely opinion based. The only hangover I have ever had was from my stag do - and it was caused by drinking everything all at once.

\n\n

I can happily drink any spirits, beers, cocktails or wines with no ill effects the next day - but I have 2 friends who get bad hangovers from Vodka.

\n\n

There is no single answer.

\n", "OwnerUserId": "187", "LastActivityDate": "2016-09-05T12:08:02.160", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6277"}} +{ "Id": "6277", "PostTypeId": "1", "AcceptedAnswerId": "6311", "CreationDate": "2016-09-10T12:55:43.260", "Score": "6", "ViewCount": "298", "Body": "

How do I find my favorite wine? Obviously if I go drinking every bottle I can get my hands on I'd find one but I can't. Also, I already know the general feel of the wine I'd like; i.e. dry, sweet, etc. My question is, what are the things I should think about when trying to find my favorite wine?

\n", "OwnerUserId": "5889", "LastEditorUserId": "5078", "LastEditDate": "2016-09-12T07:26:55.013", "LastActivityDate": "2019-08-27T12:54:57.673", "Title": "How can I find my favorite wine?", "Tags": "wine", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6278"}} +{ "Id": "6278", "PostTypeId": "2", "ParentId": "995", "CreationDate": "2016-09-10T13:23:19.300", "Score": "1", "Body": "

Try to make a tea out of the hops.\nPut a flower or a pellet in a mug,\nPour boiling water over it,\nWait for 10 minutes,\nTaste,\nMake notes.

\n\n

Try to get hold of some samples of hops at local or regional (home)brewers.\nMost likely they will be happy to help out a fellow brewer.

\n", "OwnerUserId": "5890", "LastActivityDate": "2016-09-10T13:23:19.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6279"}} +{ "Id": "6279", "PostTypeId": "2", "ParentId": "6268", "CreationDate": "2016-09-11T03:07:20.143", "Score": "3", "Body": "

A few fairly popular (and very different) beer cocktails are:

\n\n
    \n
  • The Boilermaker or Depth Charge
    \nThe original English version was a mix of draught and brown, but it's more recently been popularised in Australia and the USA as a pint of beer with a shot of spirit (usually whisk[e]y) in it. If the shot is poured in, it's a Boilermaker. If the entire shot glass is dropped into the pint glass, it's a Depth Charge. Take care as this can make you very drunk more quickly than you expect (some may consider this a feature, but I'm trying to post responsible advice here).
    \nUseful when: you want to make your beer (or your spirits) more interesting.

  • \n
  • The Black Velvet
    \nEqual parts stout and champagne served inna champagne flute. The stout is floated on top for a striking visual effect.
    \nUseful when: you want to add some class to your beering.

  • \n
  • The Michelada
    \nLager spiced up with lime juice, salt and hot sauce. There are many variations, some including things like clam juice, tomato juice, worcestershire sauce or chilli flakes. It's kind of like a Bloody Mary in beer form.
    \nUseful when: you want to treat a hangover.

  • \n
  • The Shandy
    \nEqual parts beer and a softer drink, usually lemonade.
    \nUseful when: you don't really like beer or lemonade but there's not much else on offer.

  • \n
\n", "OwnerUserId": "5893", "LastActivityDate": "2016-09-11T03:07:20.143", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6281"}} +{ "Id": "6281", "PostTypeId": "2", "ParentId": "6277", "CreationDate": "2016-09-12T07:20:59.420", "Score": "2", "Body": "

For me, the most important thing to select the wine I like/dislike is grape variety. You'll have to do some research and try some different grapes in order to know what you like and dislike.

\n\n

Country and region can also have an influence. You'll also need to do some research for this.\nFor myself, I don't really like Bordeaux and Italian wines.

\n\n

So you'll have som tasting to do. Try to write down what you liked and what you didn't like and it'll become clear what you're favourite style might be.

\n", "OwnerUserId": "4327", "LastActivityDate": "2016-09-12T07:20:59.420", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6282"}} +{ "Id": "6282", "PostTypeId": "2", "ParentId": "995", "CreationDate": "2016-09-13T18:01:00.863", "Score": "2", "Body": "

Water does a fair job of dissolving the aromatic compounds in hops but the resinous or oily compounds will dissolve better in ethanol. To get a really clean extract of hops, steep fresh or dry hops in vodka or neutral grain spirits, then filter and dilute with water for tasting. The straight extract can be overwhelming. A really good extract will be a milky yellow color.

\n\n

Also, try adding the extract to an un-hopped beer to to see how the flavor changes when mixed with other ingredients. When hops are boiled in the wort during brewing, the heat can cause chemical reactions between the aromatics and other ingredients, giving the brew a slightly different flavor than the uncooked flavor of the extracts.

\n\n

We grow hops and my husband loves IPAs so he makes these hop extracts to mix with beer and cocktails.

\n", "OwnerUserId": "5862", "LastActivityDate": "2016-09-13T18:01:00.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6283"}} +{ "Id": "6283", "PostTypeId": "1", "AcceptedAnswerId": "6287", "CreationDate": "2016-09-14T07:45:51.607", "Score": "5", "ViewCount": "30403", "Body": "

I always heard that Jagermeister is very healthy for you and is a great digestive ,is all this true?Would a shot of Jagermeister make me more healthier or would the alcohol just be damaging me in time?\n

This is my first question on this site so sorry if I didn't formulated it quite well.

\n", "OwnerUserId": "5905", "LastActivityDate": "2020-11-24T17:05:13.040", "Title": "Is Jagermeister healthy for you?", "Tags": "health drinking", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6284"}} +{ "Id": "6284", "PostTypeId": "2", "ParentId": "212", "CreationDate": "2016-09-15T05:21:05.457", "Score": "5", "Body": "

Typically, it seems people expect single, double and triple to mean higher alcohol content. But that is not exactly true.

\n\n

You have single and double bocks with the same alcohol content. Take Weihensthephaner for example (a respected 1000-year old monastic brewery): Weihenstephaner Korbinian is a double with 7.4% ABV. Weihenstephaner Vitus is a single bock with a higher ABV of 7.7%. In this case, the single has a higher ABV than the double.

\n\n

More grains and more sugar do not equal more alcohol. The strain of yeast and temperature determine the survivability. Some yeast can live at high alcohol levels. You can feed them all the sugar and grains and they will still die and stop fermentation (producing alcohol) when the alcohol level 'limit' is reached.

\n\n

The eisbock gets a higher ABV by freezing the beer and removing ice. This removal of water is how the alcohol content is increased. Again, most yeast cannot reach 12% (which one typically finds in an eisbock).

\n\n

The single, double, triple label has to do with the strength of the beer overall, including nutrition (calories) and taste. Remember, these 'doppels' were created for sustenance.

\n\n

Careful with the word 'stronger' when talking about bocks. It can mean more malty, darker, fuller, not just higher alcohol level.

\n", "OwnerUserId": "5912", "LastActivityDate": "2016-09-15T05:21:05.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6285"}} +{ "Id": "6285", "PostTypeId": "2", "ParentId": "6277", "CreationDate": "2016-09-15T05:52:03.093", "Score": "4", "Body": "

1) Take a wine-tasting course. You will learn how different foods affect the flavour of wines. It really does make a difference (you will be astonished). You will also (hopefully) learn how to analyse wines (without being pretentious) and make useful notes.

\n\n

2) Travel. Travel as much as you can and drink the local wines. If you find something that you really like and can afford to buy some, do so. You will never find your \"favourite wine\" by working your way systematically through your local wine shop.

\n\n

3) Remember that wines change. One of the best wines that I ever tasted was a certain 1996 Amarone (Recioto della Valpolicella), and I was fortunate enough to be able to buy a case of it. However, once it was gone, it was gone. Later vintages (from the same producer) were not nearly as good.

\n\n

4) Time passes. The wines that you love will be associated with treasured memories and inevitably belong to the past. You can never step into the same river twice. Such is the beauty of wine (and life).

\n", "OwnerUserId": "5888", "LastEditorUserId": "5888", "LastEditDate": "2016-09-22T13:04:08.140", "LastActivityDate": "2016-09-22T13:04:08.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6286"}} +{ "Id": "6286", "PostTypeId": "2", "ParentId": "6262", "CreationDate": "2016-09-16T07:07:34.627", "Score": "0", "Body": "

I can drink you a bottle of 80 degrees Stroh but have nothing from it the next day,because I follow 2 rules:\n

1. Drink a lot of water when drinking heavy(NOT Coca-Cola or other stuff,just WATER)\n

2. Never combine hard drinks like Vodka with Absinthe

\n", "OwnerUserId": "5905", "LastActivityDate": "2016-09-16T07:07:34.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6287"}} +{ "Id": "6287", "PostTypeId": "2", "ParentId": "6283", "CreationDate": "2016-09-16T11:14:46.047", "Score": "10", "Body": "

I'm no expert but I’ll give it a shot:

\n\n

Jägermeister and other herbal liqueurs do contain herbal essences that probably have some effect on your body. But not in any medicinal quality, otherwise it couldn't be sold as food in the EU by law. There are strict rules (e.g. Directive 2001/83/EC).

\n\n

In general the usefulness of digestifs for the digestion is heavily discussed (there are opinions that the alcohol takes away any positive effect the herbs might have). But I don't have any reliable sources at hand.

\n\n

And the alcohol is unhealthy, no doubt.

\n\n

So from a medicinal point of view: stay away from digestifs and stop eating too much so you won't need any digestion-helper.

\n\n

From a recreational or culinary point of view: If you enjoy the taste, a digestif is a great closure of a good meal and the psychological effect of \"believing it helps\" works sometimes.

\n\n

And i personally like the taste and drink it recreationally and not just as digestif.

\n", "OwnerUserId": "5532", "LastEditorUserId": "5064", "LastEditDate": "2020-03-07T20:02:34.683", "LastActivityDate": "2020-03-07T20:02:34.683", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6288"}} +{ "Id": "6288", "PostTypeId": "1", "AcceptedAnswerId": "6291", "CreationDate": "2016-09-16T14:29:42.560", "Score": "6", "ViewCount": "614", "Body": "

I am living in Germany and know at least 2 people that do it. But why would you take the risk if you could just buy very good beer at your local stores?

\n", "OwnerUserId": "4109", "LastEditorUserId": "5064", "LastEditDate": "2016-09-17T13:06:58.563", "LastActivityDate": "2016-09-19T14:11:41.027", "Title": "Why do people brew their own beer?", "Tags": "brewing", "AnswerCount": "5", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6289"}} +{ "Id": "6289", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2016-09-16T14:33:13.847", "Score": "3", "Body": "

I use it when my thorat is hurting. But I also like it just by the taste of it. My favorite one is called \"Hopfenbitter\"

\n\n

example

\n", "OwnerUserId": "4109", "LastActivityDate": "2016-09-16T14:33:13.847", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6290"}} +{ "Id": "6290", "PostTypeId": "2", "ParentId": "6265", "CreationDate": "2016-09-16T14:36:06.863", "Score": "0", "Body": "

You can even buy the Löwenbräu beer easily on Amazon so YES you can buy it.\nbeer Amazon

\n", "OwnerUserId": "4109", "LastActivityDate": "2016-09-16T14:36:06.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6291"}} +{ "Id": "6291", "PostTypeId": "2", "ParentId": "6288", "CreationDate": "2016-09-16T14:55:52.627", "Score": "8", "Body": "

Hobby

\n\n

Some people do it as a pleasurable hobby. You might also ask why someone would build furniture if they could buy it, or why they play a musical instrument if they can just listen to the radio.

\n\n

Personal Taste

\n\n

You may like a particular style of beer that isn't popular. And, especially in Germany, you may want to make a style of beer that you can't buy in the store - one that has other flavor ingredients, so it doesn't comply with the beer purity laws.

\n", "OwnerUserId": "5817", "LastActivityDate": "2016-09-16T14:55:52.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6292"}} +{ "Id": "6292", "PostTypeId": "2", "ParentId": "6288", "CreationDate": "2016-09-16T15:25:19.377", "Score": "2", "Body": "

You ask a great question. I think a great reason to do it is to learn. I like the answer 'Personal Taste' above. If you already know what you like you can make it. But, if you're just playing around brewing you can come up with tastes you never thought of. You might even like your own recipe.

\n", "OwnerUserId": "5889", "LastActivityDate": "2016-09-16T15:25:19.377", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6293"}} +{ "Id": "6293", "PostTypeId": "2", "ParentId": "6288", "CreationDate": "2016-09-16T21:27:37.307", "Score": "5", "Body": "

Hello from the homebrew community. There are many reasons to brew yourself, and the first reason is because you can. This question is the same as \"why bake your own bread?\", \"why grow your own food?\", \"why start your own business?\" Because you can!

\n\n

There is something primal and fundamentally connected to nature about brewing, and being able to harness a fungus to produce alcohol. Not only this, but something spectacularly human about being able to produce something by yourself, and brewing beer and wine is surprisingly easy. Consider that you then get to drink something you made and the satisfaction of being self-reliant in this respect.

\n\n

The satisfaction of self-improvement and being able to share your creations with others can't be put into words. You most certainly can buy beer, but you absolutely can't buy the beer I make. Also, mine costs a fraction of the price that you pay others to make for you.

\n\n

I hope I have answered your question. We brew because we can, because yeast is freely available to all, and because it improves our skills and human capital. Most of all, just like any trade, whether it be a carpenter, a butcher, or a chef.... we get to enjoy the fruits of our labour of love.

\n", "OwnerUserId": "5916", "LastEditorUserId": "5916", "LastEditDate": "2016-09-16T21:33:23.960", "LastActivityDate": "2016-09-16T21:33:23.960", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6294"}} +{ "Id": "6294", "PostTypeId": "2", "ParentId": "6288", "CreationDate": "2016-09-18T02:11:41.047", "Score": "3", "Body": "

Because its a lot of fun! I always feel like a mad scientist when I'm boiling up the wort on the stove adding ingredients, especially when adding the hops. Its quite amazing to watch the yeast consuming the sugars and making the alcohol, yes you can see it!

\n\n

Homebrew is healthy for you. It is a living beverage. All the yeast, enzymes and vitamins are all there for you just like nature intended. Large commercial brewers filter most of this out and some even have to add back in the carbonation.

\n\n

Homebrew is not dangerous, the worst that will happen is bacteria will spoil the beer's taste. There is no documented case of contaminated beer that has killed anyone. The theory is since the yeast micro-organism already 'lives' in the beer they create an environment that is not favorable to other micro-organisms.

\n\n

Finally if you are not old enough to buy alcohol, usually you can buy the ingredients and make it yourself. The brew shop I frequent is very close to a large college campus. Coincidence? I think not.

\n", "OwnerUserId": "5920", "LastActivityDate": "2016-09-18T02:11:41.047", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6295"}} +{ "Id": "6295", "PostTypeId": "2", "ParentId": "6288", "CreationDate": "2016-09-19T14:11:41.027", "Score": "3", "Body": "

It's exactly as with food.

\n\n

By cooking* at home, my wife and I can always get the food** that we want, exactly the way we want it. There is a chance of us screwing up and ending up with bad food**, but with practice that doesn't happen very often. There is some food** that we are not well equipped or trained to make, but that we happily buy from professionals. And it's cheaper to do your own cooking* than to buy everything ready-made, if you discount the cost of labour and appliances.

\n\n

If you want to exclusively have food** that someone else makes, that's your choice, and modern society can provide. But I think cooking* at home really is rather sensible.

\n\n

*brewing

\n\n

**beer

\n", "OwnerUserId": "793", "LastActivityDate": "2016-09-19T14:11:41.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6296"}} +{ "Id": "6296", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2016-09-20T01:48:51.440", "Score": "2", "Body": "

Angostura bitters and club soda is a regular drink in my house. I find that it calms my stomach and just generally makes me feel better. I like to use a heavy dose of bitters--usually like 8-10 dashes--per 8 oz of soda.

\n\n

Fernet is also a real godsend for digestive ailments, but be warned that it's very, very bitter.

\n", "OwnerUserId": "5929", "LastActivityDate": "2016-09-20T01:48:51.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6297"}} +{ "Id": "6297", "PostTypeId": "1", "AcceptedAnswerId": "6299", "CreationDate": "2016-09-20T09:59:17.337", "Score": "11", "ViewCount": "1323", "Body": "

Occasionally, I catch myself having a beer or two too much. Which of course can cause hangovers. I was wondering what one can do to prevent this? Or what can be done if it's already too late.

\n", "OwnerUserId": "5931", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T02:01:47.310", "LastActivityDate": "2019-08-28T02:02:25.610", "Title": "What to do against hangovers?", "Tags": "hangover", "AnswerCount": "7", "CommentCount": "4", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6299"}} +{ "Id": "6299", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2016-09-20T11:48:50.833", "Score": "12", "Body": "

Drinking less is the obvious solution.

\n\n

But you can also reduce the causes:

\n\n

One cause for a hangover are the metabolic products of the fusel alcohols (unwanted alcohols) in your drinks. First your body metabolizes the ethanol and then the fusel alcohols. That's why drinking alcohol helps against a hangover as if gives the body some more ethanol to work on and thus reduces the toxins of the fusel alcohols. That's why a Bloody Mary is a well known hangover cure.\nSo try reducing the amount of fusel alcohols you consume by choosing high quality drinks that have less of them.

\n\n

Another cause is dehydration and lack of electrolytes. So start hydrating yourself before, while and after you consume alcohol. And to keep the water in your body, make sure, you add enough electrolytes to bind the water. In russia and other slavic countrys there is a culture of eating salty (electrolytes and increasing thirst), sour (helps making you thirsty) and fatty (proteins and delays alcohol absorbtion) food along with drinking. In a way it's like having a hangover breakfast while drinking.

\n\n

All of this can be done when you wake up with a hangover: drinking some alcohol as \"hair of the dog\" (this will reduce the symtoms but increase the time you feel them but won't fix anything!), eating a rich breakfast, drinking lots of water (tea, juice, ...) and maybe pop a blood-thinner like ASS (Aspirin).

\n", "OwnerUserId": "5532", "LastActivityDate": "2016-09-20T11:48:50.833", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6300"}} +{ "Id": "6300", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2016-09-20T12:24:35.673", "Score": "10", "Body": "

One time in the past an old friend of mine suggested something cleverly simple:

\n\n

Drink lots of water before going to bed and you won't have as much of a hangover.

\n\n

Really, it is that simple. It works for me since then.

\n\n

To have an even smaller hangover, drink in between three drinks, one glass of water (here in Germany you can get tap water for free in pubs).

\n\n

The effect is really impressive.\nI already experimented with spirits and beer and sometimes a mixed beer like \"Radler\" in between can help, too.

\n\n

Try it out and tell me if it works for you too.

\n", "OwnerUserId": "5734", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T02:02:25.610", "LastActivityDate": "2019-08-28T02:02:25.610", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6301"}} +{ "Id": "6301", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2016-09-20T14:06:35.790", "Score": "2", "Body": "

When I have a nasty cough or a cold I drink Jägermeister to soothe the sore throat and to keep me from coughing every five seconds. I find it cools my throat and makes it less itchy. This works really well for me, a lot better than actual cough medicine.

\n", "OwnerUserId": "5933", "LastActivityDate": "2016-09-20T14:06:35.790", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6306"}} +{ "Id": "6306", "PostTypeId": "1", "CreationDate": "2016-09-23T23:21:11.977", "Score": "8", "ViewCount": "274", "Body": "

I like sour beers and am curious what makes them sour. What's the process that results in the range of sourness?

\n", "OwnerUserId": "5948", "LastEditorUserId": "5078", "LastEditDate": "2016-09-26T07:25:54.180", "LastActivityDate": "2016-09-27T07:36:10.510", "Title": "What makes sour beers sour?", "Tags": "taste brewing sour-beer", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6307"}} +{ "Id": "6307", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2016-09-23T23:23:14.943", "Score": "3", "Body": "

Isotonic sport drinks do it for me, hangovers have a lot to do with dehydration - it's a good way to rehydrate :) Vitamin C is good too, and lots of it - Berocca is amazing for hangovers. If it's a bad hangover, the best way is to drink loads of water, like 4 liters. Will soon go away after that! Bloody mary is the best way but that's a dangerous road to go down!

\n", "OwnerUserId": "5949", "LastEditorUserId": "8580", "LastEditDate": "2019-05-17T08:08:46.347", "LastActivityDate": "2019-05-17T08:08:46.347", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6309"}} +{ "Id": "6309", "PostTypeId": "2", "ParentId": "4906", "CreationDate": "2016-09-24T09:36:18.887", "Score": "5", "Body": "

As Anon mentions above, you're probably thinking of Smithwick's with a Guinness head, rather than the other way around — Guinness has a creamier head, which I think is the reason why people order it.

\n\n

It is not, by any stretch a Black and Tan — and yes, the name would be seen as offensive by most in Ireland and I have never heard ordered by locals (this is a sure way to spot a tourist) — which, as far as I know, is normally made with a larger or pale ale (Smithwick's is a red ale), and whose ratio is more like 50:50. It would look something like this:

\n\n

\"Disgusting

\n\n

Smithwick's with a Guinness head is just that — the proportion of Guinness in the drink is just the head, i.e. maybe a inch on the top of the glass. The pint of Smithwick's is poured as normal, with a small amount of Guinness added at the very end, which sits on top of the pint giving it a head of stout. Adding too much Guinness at this stage will cause the beers to mix, and will ruin the pint.

\n\n

Can't find a picture of it, but it will basically look like a pint of Smitwick's with a creamer (look and texture) head, and taste as such.

\n\n

As a barman in a country pub for a couple of years during college, I had a couple of regulars who used to order it. It's not particularly common, but neither is it unusual — any barman should know what you want and be able to serve it.

\n", "OwnerUserId": "5952", "LastActivityDate": "2016-09-24T09:36:18.887", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6310"}} +{ "Id": "6310", "PostTypeId": "2", "ParentId": "6306", "CreationDate": "2016-09-25T16:07:12.730", "Score": "4", "Body": "

From the Wiki page on Sour Beer:

\n\n

\"[S]our beers are made by intentionally allowing wild yeast strains or bacteria into the brew. Traditionally, Belgian brewers allowed wild yeast to enter the brew naturally through the barrels or during the cooling of the wort in a coolship open to the outside air – an unpredictable process that many modern brewers avoid.

\n\n

The most common agents used to intentionally sour beer are Lactobacillus, Brettanomyces, and Pediococcus. Another method for achieving a tart flavor is adding fruit during the aging process to spur a secondary fermentation or contribute microbes present on the fruit's skin.\"

\n", "OwnerUserId": "5847", "LastActivityDate": "2016-09-25T16:07:12.730", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6311"}} +{ "Id": "6311", "PostTypeId": "2", "ParentId": "6277", "CreationDate": "2016-09-27T06:39:44.710", "Score": "2", "Body": "

I think you have to be able to find the wine that best matches your tastes. it took me several months to sample different types of different regions. I am Italian, and here we assure you that there are many varieties of wines. I did courses, I just chose what I liked best. in my case my favorite wine is Amarone! we are not made equal, then a wine that you can enjoy, for others maybe not enthuse. I apologize for the translation from Italian to English, they are not very good! I hope to been helpful.

\n", "OwnerUserId": "5958", "LastEditorUserId": "5958", "LastEditDate": "2016-09-27T09:03:15.303", "LastActivityDate": "2016-09-27T09:03:15.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6312"}} +{ "Id": "6312", "PostTypeId": "2", "ParentId": "6306", "CreationDate": "2016-09-27T07:36:10.510", "Score": "1", "Body": "

Try to see if this site you can find all the info you need\n6 Tips on How to Brew Sour Beers

\n", "OwnerUserId": "5958", "LastActivityDate": "2016-09-27T07:36:10.510", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6313"}} +{ "Id": "6313", "PostTypeId": "1", "AcceptedAnswerId": "6339", "CreationDate": "2016-10-01T03:27:28.747", "Score": "7", "ViewCount": "2652", "Body": "

A family member will soon be travelling to Cuba and has offered to bring me back some alcohol.

\n\n

The obvious choice is Rum, but considering it's easy enough to get Cuban rum in Canada, I'd like to know if there are other spirits that originate from Cuba.

\n", "OwnerUserId": "5942", "LastActivityDate": "2016-10-13T07:43:24.543", "Title": "What spirits are made in Cuba?", "Tags": "spirits", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6314"}} +{ "Id": "6314", "PostTypeId": "1", "AcceptedAnswerId": "6371", "CreationDate": "2016-10-01T14:35:51.783", "Score": "10", "ViewCount": "3798", "Body": "

We all know that the some Trappist monasteries produce their famous Trappist beer. A little less know fact is that the Carthusian monks at the Grande Chartreuse in France produces their world famous Chartreuse liqueur.

\n\n

My question is quite simple: Are there any other Catholic monasteries or Religious Orders that produce any other alcoholic beverages available to be bought by the general public?

\n\n

I am not asking for alcoholic beverages that are named after some Religious Order or personage like Frangelico.

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-01-23T16:51:06.317", "Title": "Alcohol producing Catholic monasteries?", "Tags": "breweries distilleries", "AnswerCount": "4", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6315"}} +{ "Id": "6315", "PostTypeId": "1", "AcceptedAnswerId": "6316", "CreationDate": "2016-10-01T14:44:05.923", "Score": "11", "ViewCount": "22470", "Body": "

I drink tea. I had a thought about putting something into it. What good alcohol can I think about putting into the tea?

\n", "OwnerUserId": "5889", "LastEditorUserId": "5064", "LastEditDate": "2016-10-01T15:46:22.653", "LastActivityDate": "2020-08-13T00:27:21.323", "Title": "What alcohol would go good with tea?", "Tags": "taste recommendations drinking", "AnswerCount": "12", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6316"}} +{ "Id": "6316", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-01T16:09:34.733", "Score": "7", "Body": "

Irish whiskey is one I like to do with tea. In fact I like to make an Irish coffee by substituting the coffee with a strong black tea.

\n\n

Try it! I am rather fond of it.

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-10-01T16:09:34.733", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6317"}} +{ "Id": "6317", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-01T23:22:09.737", "Score": "6", "Body": "

Gunfire is a classic British rum and black tea cocktail, with a German equivalent in the Jagertee. Two European great powers can't be wrong - go with the rum!

\n", "OwnerUserId": "5328", "LastActivityDate": "2016-10-01T23:22:09.737", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6318"}} +{ "Id": "6318", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-02T11:42:31.247", "Score": "2", "Body": "

My father sometimes adds Rum to it.

\n\n

Preferably German Strohrum (straw rum).\"Here

\n", "OwnerUserId": "5734", "LastActivityDate": "2016-10-02T11:42:31.247", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6319"}} +{ "Id": "6319", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-02T14:34:27.517", "Score": "4", "Body": "

Wild Turkey American Honey is excellent with most kinds of tea including black, green, and orange pekoe. Throw in a squeeze of lemon for an delicious, easy to make, and modern twist on the Hot Toddy.

\n\n

Wild Turkey American Honey

\n\n

Another alcohol that pairs well with tea is tea flavored vodka. There are lots of different brands of this such as Firefly and Jeremiah Weed, and typically in bars they are paired with iced tea, they work equally well with hot tea.

\n\n

Finally, Fireball or other Cinnamon Whiskeys go well with Tea also, but they can often overpower less potent teas.

\n", "OwnerUserId": "5969", "LastEditorUserId": "5064", "LastEditDate": "2016-10-02T23:50:16.823", "LastActivityDate": "2016-10-02T23:50:16.823", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6320"}} +{ "Id": "6320", "PostTypeId": "2", "ParentId": "6268", "CreationDate": "2016-10-02T14:50:30.140", "Score": "1", "Body": "

Not exactly beer, but a Spiked Apple Cider (like Redd's, Angry Orchard, or Bold Rock) mixed with a shot of Fireball Cinnamon Whiskey is delicious. As an added bonus, neither of the ingredients are particularly potent, as such, most people can have 1 or 2 and not be completely hammered.

\n\n

This drink is sometimes called Angry Balls, Apple Beer Bomb, Double Spiked Cider, Redd Balls, or a Dicken's Cider. It works as a drop shot or a cocktail and unlike most other beer cocktails the ingredients create a proper flavor fusion. While delicious year 'round. This cocktail has a distinct autumn appeal.

\n\n

In a drink that may appear offensive to some, Guinness(other stouts work too) mixes well with ice cream, for a beer milkshake or beer float. Throw in Bailey's, Kahlua, and/or Vodka with the beer and vanilla ice cream to make an Irish Mudslide. The combination of Guinness with ice cream creates a sort of malted flavor. Without other liquors, a Guinness shake is not particularly strong and this suits itself well to a dessert drink.

\n\n

Finally, a fairly popular drink using non alcoholic ginger beer would be a Moscow Mule. Vodka + non alcoholic Ginger Beer + lime juice.\nThis works well with an Alcoholic Ginger Beer like Crabbie's, but be mindful that a glass of crabbies with a shot of vodka is roughly equivalent to drinking two glasses of beer. Replacing Vodka with lower proofed alcohol like Lemoncello or even flavored vodkas(like Whipped Vodka - kinda like a cream soda with ginger beer) can allow for people to have multiples of these.

\n", "OwnerUserId": "5969", "LastEditorUserId": "5969", "LastEditDate": "2016-10-02T14:58:00.787", "LastActivityDate": "2016-10-02T14:58:00.787", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6321"}} +{ "Id": "6321", "PostTypeId": "1", "AcceptedAnswerId": "6322", "CreationDate": "2016-10-03T16:26:24.387", "Score": "5", "ViewCount": "4797", "Body": "

I noticed that a beer in the bottle tastes one way and the same beer served to me in a cup elsewhere tastes different. First, I thought the temperature difference would cause the taste difference, but no. I also thought that the cup the beer was served in would change the taste, but no. I tried this a couple of times and couldn't figure out what was causing the taste difference.

\n", "OwnerUserId": "5889", "LastActivityDate": "2016-10-05T16:36:37.593", "Title": "What would cause the same beer to taste different", "Tags": "taste", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6322"}} +{ "Id": "6322", "PostTypeId": "2", "ParentId": "6321", "CreationDate": "2016-10-03T20:56:46.427", "Score": "3", "Body": "

There are several things going on here.

\n\n

1) Temperature absolutely plays a difference in beer taste.

\n\n

Too Cold

\n\n
\n

The biggest issue with beer served too cold is the way the temperature masks many flavors and aromas. The cold temperature slows the volatilization of aromatic compounds causing them to linger in the beer. When these compounds are not released, it dramatically changes the apparent flavor and aroma of the beer, sometimes to the point where it may come across as thin and tasteless. (American Homebrewers Association).

\n
\n\n

Too Hot

\n\n
\n

Warm beer, on the other hand, does allow for more of the flavors and aromas to come to the forefront, but as beer approaches room temperature the sensations from hop bitterness and carbonation can decrease, which can lead to an almost flat-tasting experience. (American Homebrewers Association).

\n
\n\n

So here are suggested temperatures for serving various types of beer.

\n\n

....................Beer ................................. Suggested Temperature

\n\n

American Mainstream Light Lagers............... 33° – 40° F / 1° – 5° C

\n\n

Pale Lagers, Pilsners ................................... 38° – 45° F / 3° – 8° C

\n\n

Cream & Blonde Ales ...................................40° – 45° F / 5° – 8° C

\n\n

Nitro Stouts ...................................................40° – 45° F / 5° – 8° C

\n\n

Belgian Pale Ales, Abbey Tripels ..................40° – 45° F / 5° – 8° C

\n\n

Wheat Beers ................................................40° – 50° F / 5° – 10° C

\n\n

Lambics .......................................................40° – 50° F / 5° – 10° C

\n\n

Dark Lagers .................................................45° – 50° F / 7° – 10° C

\n\n

American Pale Ales & IPAs .........................45° – 50° F / 7° – 10° C

\n\n

Stouts, Porters ............................................45° – 55° F / 7° – 13° C

\n\n

Strong Lagers .............................................50° – 55° F / 10° – 13° C

\n\n

Real & Cask Ales ...................................... 50° – 55° F / 10° – 13° C

\n\n

Belgian Dubbels .........................................50° – 55° F / 10° – 13° C

\n\n
    \nData from Tasting Beer by Randy Mosher.
\n\n

2) Glassware makes a HUGE difference. The shape allows for nucleation sites, temperature control of beer, aromatic release/retention. (See /user/MDMA's full response to my question about glassware and beer here)

\n\n

3) What type of beer is it? If it is a nano brewery, it could be several things (wild yeast, inconsistency in brewing process, fermentation time, bourbon barrels stored in, etc.).

\n\n

4) What was your drinking environment the first time/subsequent times you drank? Have you ever eaten somewhere for the first time while starving and with good friends you haven't seen in a while? That food will forever be amazing in your mind. You go back years later with a normal appetite and people you see regularly and the experience can be very different.

\n", "OwnerUserId": "22", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T13:00:11.050", "LastActivityDate": "2016-10-05T16:36:37.593", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6323"}} +{ "Id": "6323", "PostTypeId": "2", "ParentId": "6321", "CreationDate": "2016-10-04T04:52:46.160", "Score": "1", "Body": "

There's a good chance it's got to do with UV light. The chemical compound in hops that makes them bitter (isohumulones) can produce something called 3-MBT (3-methylbut-2-ene-1-thiol) when sunlight hits it. 3-MBT will make your beer taste skunky. A noticeable change in flavor will start to occur really quickly, within seconds of direct sunlight. If the bottle you had was green or clear, those allow light in, so they're susceptible to this effect. If the cup of beer you had came from a keg....the almighty keg is impervious. Additionally, any beer that you drink outside can be affected. Bitter beers like IPAs will suffer faster and more noticeably because they have more isohumulones. Though, this doesn't happen to all beers. Some of the bigger breweries, like Miller, use a stabilized hop extract that won't produce MBT.

\n\n

The takeaway, if you don't like the skunk, drink beer from dark bottles or cans when outside. And more importantly, if some beer snob irritates you, give them hell for destroying the flavor profile of their expensive beer.

\n", "OwnerUserId": "5974", "LastEditorUserId": "5974", "LastEditDate": "2016-10-04T04:58:07.047", "LastActivityDate": "2016-10-04T04:58:07.047", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6324"}} +{ "Id": "6324", "PostTypeId": "2", "ParentId": "6321", "CreationDate": "2016-10-04T12:04:57.607", "Score": "0", "Body": "

Pouring the beer is going to lose some of the carbonation.

\n\n

Also you smell the beer more in a glass.
\nAnd it enter the mouth differently from a glass.
\n\"enter

\n\n

On a hot day cheap beer I like it in can. A nice darker beer I will drink from a (chilled) glass.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-10-04T13:19:54.663", "LastActivityDate": "2016-10-04T13:19:54.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6326"}} +{ "Id": "6326", "PostTypeId": "1", "AcceptedAnswerId": "6352", "CreationDate": "2016-10-06T02:17:18.660", "Score": "8", "ViewCount": "217", "Body": "

Are there any reasonably common beers that are made using a triple (or other) decoction mash? I'm interested in trying some but have had some trouble finding examples.

\n\n

I would imagine there have to be at least a couple of breweries in Germany that still do decoction mashing, but are there any beers that make their way to the US?

\n", "OwnerUserId": "4935", "LastEditorUserId": "6042", "LastEditDate": "2016-10-24T19:37:03.357", "LastActivityDate": "2016-12-15T12:57:12.633", "Title": "Commercial beers made using a (triple) decoction mash?", "Tags": "german-beers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6327"}} +{ "Id": "6327", "PostTypeId": "1", "AcceptedAnswerId": "6328", "CreationDate": "2016-10-06T16:59:19.700", "Score": "6", "ViewCount": "510", "Body": "

How can I improve on a cheap bottle of bubbly wine? I thought of a few ideas myself but instead of wasting it I thought I'd ask. BTW, by improving I mean make it taste better.

\n", "OwnerUserId": "5889", "LastEditorUserId": "6042", "LastEditDate": "2016-10-27T10:34:25.570", "LastActivityDate": "2019-08-28T02:12:42.977", "Title": "How can I improve the flavor of a cheap bottle of sparkling wine?", "Tags": "taste wine", "AnswerCount": "4", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6328"}} +{ "Id": "6328", "PostTypeId": "2", "ParentId": "6327", "CreationDate": "2016-10-06T20:21:49.210", "Score": "5", "Body": "

Make a kir royale with it.

\n\n

Add a small amount of a strong, fruity liqueur to the bottom of the glass, such as creme de cassis or framboise (Chambord is one brand name). Then gently add the sparkling wine.

\n\n

Often, cheap sparkling wine is not very palatable because it is bitter: the strong fruit flavors of the liqueur will mask this.

\n", "OwnerUserId": "5817", "LastActivityDate": "2016-10-06T20:21:49.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6329"}} +{ "Id": "6329", "PostTypeId": "1", "CreationDate": "2016-10-07T11:21:19.933", "Score": "7", "ViewCount": "168", "Body": "

Seeking online sources where companies offer free labels for their products (beer, wine or other spirits)?

\n\n

A few years ago I discovered that Crown Royal offers free custom made labels (restriction do apply). The labels fit right over the original labels in such a way that no one could tell the the original one were still on the bottle. I had much fun buying some Crown Royal with custom labels put in them at Christmas time. The looks we got when they read the labels were truly amazing.

\n\n

My question is quite simple: Are there any other breweries or alcohol producing companies that offer free labels online for their alcoholic beverages?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-10-10T16:08:07.200", "LastActivityDate": "2016-11-20T23:48:12.500", "Title": "Seeking online sources where companies offer free labels for their products (beer, wine or other spirits)?", "Tags": "breweries distilleries", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6330"}} +{ "Id": "6330", "PostTypeId": "1", "AcceptedAnswerId": "6332", "CreationDate": "2016-10-09T12:51:18.033", "Score": "4", "ViewCount": "158", "Body": "

How would you make a light beer taste more like a dark beer? In other words, if you like light beer better than dark beer but you think that light beer could use more taste, what could you add or is there such a beer out there?

\n", "OwnerUserId": "5889", "LastActivityDate": "2016-10-09T15:13:29.537", "Title": "Regarding light beers and dark beers: how would you make a light beer taste more like a dark beer?", "Tags": "taste specialty-beers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6332"}} +{ "Id": "6332", "PostTypeId": "2", "ParentId": "6330", "CreationDate": "2016-10-09T14:01:13.687", "Score": "6", "Body": "

It depends upon what you think a dark beer tastes like because there is a wide range of shades of dark, and a wide range of flavors that come with dark. The amber beers can have tastes of caramel and dark fruits like raisins. Stouts, like a Guinness, will have roasty flavors, and those and porters can have hints of chocolate and coffee.

\n\n

The easiest is probably to add a little dark beer to your light beer, like you have with a half and half. The downside here is that you open two beers when you only want to drink one, but you could always save the mix-in beer in the fridge. You could also add come coffee, a tablespoon at a time, and see if you like it. Or, you could cut it with, not a dark beer, but an amber colored one like an Irish Red, or a Mexican lager like a Negra Modelo, if you don't want too much of a \"dark\" flavor.

\n\n

If you really want to do it \"right\" and you live near a home-brew shop, pick up some caramel malt, like a crystal 40 or 60, make a little tea with it in some warm water, and add that to the beer. That's basically what goes on in the brewing process.

\n", "OwnerUserId": "4725", "LastActivityDate": "2016-10-09T14:01:13.687", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6333"}} +{ "Id": "6333", "PostTypeId": "1", "AcceptedAnswerId": "6335", "CreationDate": "2016-10-09T18:26:30.933", "Score": "4", "ViewCount": "215", "Body": "

When fermenting wine in a steel tank, should one put on the lid or should one leave it open?

\n\n

Now as I understand, if it's open to oxygen, the yeast will multiply much faster and so the fermentation could kick on really fast.

\n\n

But can the yeasts still multiply if the lid is on (with a pumped up silicon tube but I left 20 cm or so air between the must and the lid)?

\n", "OwnerUserId": "5973", "LastActivityDate": "2016-11-16T22:05:35.120", "Title": "Wine fermentation in steel tank", "Tags": "wine fermentation", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6334"}} +{ "Id": "6334", "PostTypeId": "2", "ParentId": "6327", "CreationDate": "2016-10-10T13:41:31.473", "Score": "2", "Body": "

Try half sparkling wine and half oude gueuze or oude kriek = match made in heaven.

\n", "OwnerUserId": "4327", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T02:12:42.977", "LastActivityDate": "2019-08-28T02:12:42.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6335"}} +{ "Id": "6335", "PostTypeId": "2", "ParentId": "6333", "CreationDate": "2016-10-11T03:48:23.513", "Score": "3", "Body": "

Your biggest worry with an open fermentor is contamination. \nIf you've added potassium or sodium metabisulfide to the wine must, you should be safe against most wine spoiling bacteria. However, it is advisable to cover the fermentation vessel. See this post about open fermentation.

\n", "OwnerUserId": "4637", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2016-10-11T03:48:23.513", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6336"}} +{ "Id": "6336", "PostTypeId": "1", "AcceptedAnswerId": "6340", "CreationDate": "2016-10-11T11:26:43.997", "Score": "7", "ViewCount": "2342", "Body": "

I want to make a cocktail which uses Yellow Chartreuse. I happen to have a quarter-bottle of Green Chartreuse in the back of the cabinet. I know the green variety is stronger and the yellow somewhat sweeter. I'm thinking I'll use a little less, increase the (other) sweeter ingredients, and maybe pick a stronger base liquor to balance better. Will this result in something mostly like the original cocktail, or will it be more like a whole new thing (for better or worse)?

\n", "OwnerUserId": "5998", "LastActivityDate": "2016-10-13T14:07:56.213", "Title": "Can I substitute Green Chartreuse for Yellow?", "Tags": "cocktails", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6337"}} +{ "Id": "6337", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2016-10-11T22:01:04.707", "Score": "2", "Body": "

Another option is to make your own malt vinegar. You can just put a piece of cheesecloth over the top (with the cap removed), or you could add a little vinegar mother, like from the bottom of a \"natural\" bottle of vinegar, and it will turn it to vinegar for you.

\n", "OwnerUserId": "4725", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2016-10-11T22:01:04.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6338"}} +{ "Id": "6338", "PostTypeId": "2", "ParentId": "6313", "CreationDate": "2016-10-12T23:26:11.550", "Score": "1", "Body": "

Try Old Havana Whisky From Cuba.

\n\n
\n

Description: Cuban Whisky - Malt 100% - Clear glass - Tall bottle - Red & gold label - White cap.

\n
\n\n

\"Old

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-10-12T23:26:11.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6339"}} +{ "Id": "6339", "PostTypeId": "2", "ParentId": "6313", "CreationDate": "2016-10-13T07:43:24.543", "Score": "4", "Body": "

I think your best option is a Guayabita de Pinar. It's a spirit made with tiny guava fruits, it's nice and sweet. I'd choose the one made by La Occidental. Here's a good picture of it from flikr.

\n\n

Otherwise Aguardiente de Cuba is an option. Aguadiente means firewater, and it's not nearly as friendly as the Guayabita. My understanding is that it's related to rum in the way that mescal is to tequila. Funky. I'd only go for it if you have a decent amount of cocktail experience and you'd like to experiment. Ron Santero makes the most popular bottle.

\n\n

Aside from that, you might consider something like a local soda, or some Coca-Cola. Coke changes the recipe depending on where it's shipped, so if you want to drink a proper Cuba Libre ask for some.

\n", "OwnerUserId": "5974", "LastActivityDate": "2016-10-13T07:43:24.543", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6340"}} +{ "Id": "6340", "PostTypeId": "2", "ParentId": "6336", "CreationDate": "2016-10-13T10:27:17.063", "Score": "7", "Body": "

You cannot substitute green for yellow Chartreuse without changing the basic character of the cocktail. Both varieties are very strong flavors, but different characters. As the Chartreuse is nearly 25% of the ingredients you can't hide the difference.

\n\n

If you make a Green Jacket instead of a Yellow Jacket you'll end up with something more vegetable tasting and less sweet. It may taste good or it may not, there's no way to predict. You could try dropping the green Chartreuse to 1/2 an ounce and adding a dash of honey, that may get you closer. If you do use honey try mixing it in with the Chartreuse before adding it to the cocktail - you want it well blended.

\n", "OwnerUserId": "5528", "LastEditorUserId": "5528", "LastEditDate": "2016-10-13T14:07:56.213", "LastActivityDate": "2016-10-13T14:07:56.213", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6341"}} +{ "Id": "6341", "PostTypeId": "2", "ParentId": "1009", "CreationDate": "2016-10-13T14:13:40.373", "Score": "1", "Body": "

If you are a fan of BIG beers. Let me suggest the mother of all pumpkin beers, Avery's pumpKYn. I try to land a few bottles every year. It is expensive, but it is not the type of beer one drinks several bottles of. Each year, the ABV sits around 15 to 16 percent. I like to say that this is the pumpkin beer that should end every other breweries' attempts to craft a pumpkin beer. They should all stop and deem Avery the winner. It is not just a little aroma of pumpkin, it is a mouthful of thanksgiving with each sip. This beer is heavy and creamy and fills your nose with nutmeg and cinnamon. Skip a meal for this one, it will fill your stomach.

\n\n

If you want to explore a wonderful variety of this brew. I would suggest Avery's RUMPKIN, which is their pumpkin ale aged in rum barrels. This is a bit more of a kick in the mount though, as it not only get's a great deal of sweetness from the rum, it also gets a bit more alcohol too. Rum barrel aging is a unique process. So you get to try something that is likely new to you. So often, brewers use other spirit and wine barrels, but you do not see as many use rum or tequila barrels. Kudos to Avery for that.

\n\n

Both brews are priced around 10 bucks per 12oz bottle. And you will need to shop at a specialty store for them. I occasionally see them in Schnucks in Saint Louis though (which is a grocery store). They are pretty rough when they are fresh. So I like to grab a stock each year, then drink the ones I purchased the year before. Age them upright at cellar temps, IN THE DARK. I can not stress that enough.

\n\n

Hope you enjoy them.

\n", "OwnerUserId": "5211", "LastActivityDate": "2016-10-13T14:13:40.373", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6342"}} +{ "Id": "6342", "PostTypeId": "1", "AcceptedAnswerId": "6343", "CreationDate": "2016-10-14T01:30:58.523", "Score": "6", "ViewCount": "1089", "Body": "

How do you pronounce the \"Abt\" in St. Bernardus Abt 12?

\n\n

I'm interested in the proper pronunciation as well as whether there is potentially a pronunciation that may be more prevalent in the US.

\n", "OwnerUserId": "4935", "LastActivityDate": "2020-01-11T04:27:11.887", "Title": "Pronunciation of Abt (as in St. Bernardus Abt 12)", "Tags": "belgian-beers", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6343"}} +{ "Id": "6343", "PostTypeId": "2", "ParentId": "6342", "CreationDate": "2016-10-14T11:38:16.987", "Score": "6", "Body": "

Abt is abbot in Dutch. You can hear a couple people pronounce it on Forvo, but in the States I'd just say abbot. The top two examples are German. If you scroll down there is one Dutch speaker. For anyone unfamiliar with St. Bernardus or how a monk relates to a beer, it's an abbey beer.

\n\n

Additionally, the 12 in the name seems to refer to the beers gravity. In the Belgian degree system, specific gravity is converted to degrees by subtracting 1 from the number and multiplying by 100 (there's a little history on St. Bernardus if you scroll down to pg. 305). So if the final gravity is 1.012 (PDF for clone recipe), crunch the numbers and you end up with 12 degrees.

\n", "OwnerUserId": "5974", "LastEditorUserId": "5974", "LastEditDate": "2016-10-15T06:04:55.847", "LastActivityDate": "2016-10-15T06:04:55.847", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6344"}} +{ "Id": "6344", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-15T05:20:52.563", "Score": "2", "Body": "

If you like the floral taste of earl grey tea, you might enjoy adding a splash of St. Germain elderflower liqueur and a lemon twist to black tea.

\n\n

The very refreshing Rosa Mae cocktail combines black tea, gin, honey and lime.

\n\n

I'm currently sipping a hot toddy made with lemon & ginger herbal tea, honey, and a local whiskey. It's very soothing on a sore throat.

\n", "OwnerUserId": "5862", "LastActivityDate": "2016-10-15T05:20:52.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6345"}} +{ "Id": "6345", "PostTypeId": "1", "AcceptedAnswerId": "6346", "CreationDate": "2016-10-15T06:02:20.493", "Score": "5", "ViewCount": "3844", "Body": "

Some beverages go well with different foods. White wine with fish, red wine with ... Is there such a thing as beverage and smokes combinations that suit the taste buds? For example, beer with certain types of cigarettes or cigars; what kind of difference would there be and how would I aim to please? The specific smokes I had in mind are the different cigarettes, cigars. The most simple combination that came to my mind is coffee and a cigarette. But I'm interested in alcoholic beverages and smokes.

\n", "OwnerUserId": "5889", "LastEditorUserId": "5064", "LastEditDate": "2016-10-15T14:12:17.777", "LastActivityDate": "2017-01-08T13:56:21.260", "Title": "What alcohol beverage goes well with a certain type of smoking?", "Tags": "taste recommendations", "AnswerCount": "4", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6346"}} +{ "Id": "6346", "PostTypeId": "2", "ParentId": "6345", "CreationDate": "2016-10-15T14:06:59.317", "Score": "5", "Body": "

Smoke and drink like a pirate.

\n\n
\n

Rum and cigars both hail from the Caribbean, so it’s no coincidence that they work well with one another. Match the spiced and sweet molasses undertones of this full-bodied dark spirit with creamy cigar, like a flavorfully nutty and cocoa-infused Casa Magna. Yes, we know there are clear rums as well but, in all honesty, most combinations with this spirit will be subpar. - Best Cigar Pairings with Beer & Alcohol Drinks

\n
\n\n

For those into E-Cigarettes here is a suggestion:

\n\n
\n

A British e-cigarette manufacturer has a new option for those who enjoy a smoke with their favorite alcoholic beverage. London Fox recently rolled out two new e-cigarettes, the Silver and the Refresh, meant to be paired with beers, cocktails or wine. - This E-Cigarette Offers Suggested Drink Pairings.

\n
\n\n

Here is some pairings for Marijuana, for those interested and where it is legal to smoke: How To Pair Beer And Marijuana: A Match Made In Hazy Heaven.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-10-16T15:06:18.650", "LastActivityDate": "2016-10-16T15:06:18.650", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6347"}} +{ "Id": "6347", "PostTypeId": "2", "ParentId": "6345", "CreationDate": "2016-10-16T14:32:26.550", "Score": "0", "Body": "

There are lots of articles and blogs regarding tobacco and beverage pairing. These usually focus on cigars and pipe tobacco. In general, pair tobacco to alcohol in the same way one would pair food and alcohol. Fruity food pairings = fruity tobacco pairings, etc. In theory, mentholated tobacco would go with any minty food/alcohol pairings (no experience with this one.)

\n\n

Due to the mass-production of (and chemical additives in) most cigarettes, they are generally not considered. However, organic and artisan cigarettes can also achieve a nice pairing with some beverages. Personally, I enjoy a full-flavored, organic tobacco Natural American Spirit with a Guinness, when I can.

\n\n

With Marijuana, these turned up in a quick search...

\n\n

Marijuana and wine pairings.

\n\n

Interview regarding Beer and hash pairing.

\n", "OwnerUserId": "5847", "LastActivityDate": "2016-10-16T14:32:26.550", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6348"}} +{ "Id": "6348", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-17T12:28:05.433", "Score": "-2", "Body": "

I would avoid alcohol in tea, its so much better in coffee!

\n\n

I put any bad whisky (grouse etc) in plain old instant coffee with a bit of caster sugar and thats nice.

\n\n

If you want to be more adventurous then make a strong black coffee, preferably espresso and add a shot of Irish whisky, a shot of baileys (or equivalent) add one teaspoons of sugar and a little whipped cream to your taste. The result is well worth the effort! I dont personally drink caffeine so I do all this with decaf and its still amazing!

\n", "OwnerUserId": "5953", "LastActivityDate": "2016-10-17T12:28:05.433", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6349"}} +{ "Id": "6349", "PostTypeId": "2", "ParentId": "6333", "CreationDate": "2016-10-17T12:30:30.373", "Score": "1", "Body": "

I always cover with a tea towel and tie it round the rim with string, still allows it to breathe and fights off nearly all air borne infections. You are right about the fact fermentation will be faster with the lid open, be wary of the fact it can happen to fast - if its bubbling a lot then you would be better to decrease the heat that the pan is sitting on, be that a heat mat or a floor. Happy brewing!

\n", "OwnerUserId": "5953", "LastActivityDate": "2016-10-17T12:30:30.373", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6351"}} +{ "Id": "6351", "PostTypeId": "2", "ParentId": "6266", "CreationDate": "2016-10-17T17:17:28.547", "Score": "3", "Body": "

Fig liqueur completed after 4 weeks. Here are notes:

\n\n
    \n
  • A lot more work than I expected it would be to strain out the liquid.\nNext time I'll use a food processor instead of making the base puree\nby hand.
  • \n
  • It's much darker than I expected
  • \n
  • The taste is nice, a little tannic on the finish.
  • \n
  • I've successfully used it in a Collins-type cocktail - in a rocks glass, add:\n\n
      \n
    • 2 ounces fig liqueur, chilled
    • \n
    • 1.5 tbsp simple syrup
    • \n
    • juice of 1 lime wedge
    • \n
    • sparkling water to top
    • \n
  • \n
\n", "OwnerUserId": "5817", "LastActivityDate": "2016-10-17T17:17:28.547", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6352"}} +{ "Id": "6352", "PostTypeId": "2", "ParentId": "6326", "CreationDate": "2016-10-19T13:03:13.023", "Score": "5", "Body": "

Source Material Referenced below. Depending on where you are located some of these I think would be available. In Milwaukee I've seen Pilsner Urquell, De Konick, Palm, and Rodenbach.

\n\n

According to Gordon Strong, Pilsner Urquell uses triple decoction. This is actually a Czech style.

\n\n

Another article from real beer states the following beers.

\n\n
    \n
  • De Koninck
  • \n
  • Palm
  • \n
  • Rodenbach
  • \n
  • Pilsner Urquell
  • \n
\n\n

Czech Pale Lager: Style Profile

\n\n

Decoction mashing

\n", "OwnerUserId": "5145", "LastEditorUserId": "5064", "LastEditDate": "2016-12-15T12:57:12.633", "LastActivityDate": "2016-12-15T12:57:12.633", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6354"}} +{ "Id": "6354", "PostTypeId": "2", "ParentId": "4667", "CreationDate": "2016-10-19T16:00:11.920", "Score": "-1", "Body": "

As happy as the above comments may make you, ashes in your beer is not a big deal and frankly, I'm amazed at the question. I tried your experiment of adding cigarette ashes into my coffee. I have to say I was disappointed. Besides seeing the happiness on the faces around me, I can't say it made any difference in the taste. Now beer on the other hand may have a more profound taste change due to the ashes. It really depends on the kind of beer and the type of ashes. However, I do believe that if you like beer you might not even notice the ashes. For example, if I'm looking into a beer glass and something is floating inside, I would be surprised to even notice it. From the point of view of the ashes. I can only surmise that they would prefer to go into an ash tray.

\n\n

Answer: no, there is no change in taste in small amounts of ashes. The more ashes you add to the beer the more of a scratchy texture but no difference in taste. If you fill the whole beer with ashes you might find it milk shake like but bitter. If you ever try that I'd like to hear your experirences.

\n", "OwnerUserId": "5889", "LastActivityDate": "2016-10-19T16:00:11.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6355"}} +{ "Id": "6355", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2016-10-20T09:06:47.613", "Score": "3", "Body": "

Once I helped out as bartender, a girl asked for green vodka with green tea.

\n", "OwnerUserId": "6028", "LastActivityDate": "2016-10-20T09:06:47.613", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6356"}} +{ "Id": "6356", "PostTypeId": "1", "AcceptedAnswerId": "6367", "CreationDate": "2016-10-20T12:55:59.173", "Score": "6", "ViewCount": "503", "Body": "

What alcohol products go well with a particular type of coffee?

\n\n

I enjoy the odd Irish Coffee occasionally.

\n\n

Desiring to expand my coffee/alcohol combos, I would like to know what types of coffee goes well with what type of alcohol?

\n\n

Any recommendations would be greatly appreciated.

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-08-13T20:09:43.990", "Title": "What alcohol products go well with a particular type of coffee?", "Tags": "taste recommendations drinking", "AnswerCount": "5", "CommentCount": "3", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6357"}} +{ "Id": "6357", "PostTypeId": "1", "AcceptedAnswerId": "6358", "CreationDate": "2016-10-20T16:10:32.247", "Score": "5", "ViewCount": "4154", "Body": "

Based on my research it seems like mead just flat out doesn't spoil, but since I didn't see this specific question here I thought I'd throw it out there to confirm.

\n\n

I bought a bottle of mead just under a year ago, that I've had sitting in my kitchen since then. Initially it likely spent most of it's time at room temperature, and being exposed to sunlight every day. Then in the summer it would have been exposed to temperatures in the 90's and up for a few weeks.

\n\n

Before I open it and try it, I wonder if my bottle is likely to be bad? And if not, are there other ways it can spoil?

\n", "OwnerUserId": "938", "LastActivityDate": "2019-03-26T22:13:06.823", "Title": "Can mead spoil? If so, in what ways?", "Tags": "mead", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6358"}} +{ "Id": "6358", "PostTypeId": "2", "ParentId": "6357", "CreationDate": "2016-10-20T18:53:38.877", "Score": "5", "Body": "

Generally speaking, your mead is fine if you haven't opened it. Normally, commercial meaderies bottle in dark bottles (or something other than clear) which keep out the UV light. I doubt that the temperature was much of an issue. You should be able to chill your mead and enjoy it. FWIW, I'd drink it out of a wine glass made for white wine rather than the skull of an enemy. You'll be able to pick up on the subtleties of the mead this way, while the other might be more enjoyable.

\n", "OwnerUserId": "860", "LastActivityDate": "2016-10-20T18:53:38.877", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6360"}} +{ "Id": "6360", "PostTypeId": "2", "ParentId": "6357", "CreationDate": "2016-10-22T15:02:55.037", "Score": "1", "Body": "

My experience is that mead tends to go flat rather quickly after opening. I do not know how long the average bottle of mead stays in good condition before being opened, but some of the mead we drank from some of our local meaderies has been flat when being opened (all use clear bottles), but the fact that we stored the mead in our pantry tells us that the color of the bottle did not play into the fact that they went so flat. No sunlight ever reaches our pantry! When flat, it is still drinkable, but is not at all appealing. Most people would not drink it. Why this happened I do not know. Perhaps temperature had something to do with it or simply it was a bad batch of mead?

\n\n

The mead was chilled before being consumed.

\n\n

Mead, like other types of wine, come in a variety of colored bottles.

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-10-22T15:02:55.037", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6361"}} +{ "Id": "6361", "PostTypeId": "2", "ParentId": "6329", "CreationDate": "2016-10-23T14:20:39.780", "Score": "1", "Body": "

Free, just the label, can be placed over existing label

\n\n\n\n

Purchase special labeled beverages to be shipped, includes alcoholic beverage

\n\n\n\n

Not Free but still custom

\n\n
    \n
  • In Milwaukee Sprecher brewing will do this for their beer or soda. Not sure if they will ship it. I've not heard of others but I'm from Milwaukee and don't know much about what breweries outside this area will do. Sprecher's Private Labeled Beer & Soda
  • \n
\n", "OwnerUserId": "5145", "LastEditorUserId": "5145", "LastEditDate": "2016-11-20T23:48:12.500", "LastActivityDate": "2016-11-20T23:48:12.500", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6362"}} +{ "Id": "6362", "PostTypeId": "2", "ParentId": "6356", "CreationDate": "2016-10-23T14:26:56.293", "Score": "3", "Body": "

I just shove any cheap whisky (usually grouse) into espresso coffee and add a little caster sugar - thats good!

\n\n

Other combinations are espresso coffee with a shot of baileys and a shot of bourbon topped up with whipped cream and a little sugar to your taste.

\n\n

The type of coffee in my experience (which is plentiful!) dosent really make much of a difference, buy mid range espresso coffee and you can create beautiful things.

\n\n

I also add liqueur into coffee for people at work (barman - coffee liqueurs arent my thing) but theres plenty of people on youtube who will show you how to make the perfect coffee liqueur. Enjoy the beautiful combination that is coffee and alcohol.

\n", "OwnerUserId": "5953", "LastActivityDate": "2016-10-23T14:26:56.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6363"}} +{ "Id": "6363", "PostTypeId": "2", "ParentId": "6357", "CreationDate": "2016-10-23T14:42:51.870", "Score": "3", "Body": "

Aging mead is perfectly acceptable. The biggest risk you have is that it will be oxidized and that some of the flavors could become muted. For example, in my homebrewed meads spices like anise will go away after a year. If you have a traditional straight mead that may not be an issue. I would assume professionally bottled mead would have minimal oxygen to spoil the mead.

\n\n

A good primer about mead is in the bjcp 2015 mead guidlines. There is a primer at the beginning.

\n\n

2015 BJCP Mead Guidlines

\n\n

In that it states: \"Alcohol flavors (if present) should be smooth and wellaged, not harsh, hot, or solventy. Very light oxidation may be present, depending on age, but an excessive molasses, sherry like or papery character should be avoided. Aging and conditioning generally smooth out flavors and create a more elegant, blended, rounded product. All flavors tend to become more \nsubtle over time, and can deteriorate with extended \naging.\"

\n", "OwnerUserId": "5145", "LastActivityDate": "2016-10-23T14:42:51.870", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6364"}} +{ "Id": "6364", "PostTypeId": "1", "AcceptedAnswerId": "6366", "CreationDate": "2016-10-24T01:33:26.547", "Score": "9", "ViewCount": "2669", "Body": "

Is there a difference in how long a beer is considered good when running through a nitrogen system vs a co2 system?

\n", "OwnerUserId": "6039", "LastEditorUserId": "6111", "LastEditDate": "2017-06-06T21:47:05.920", "LastActivityDate": "2019-07-13T02:12:45.133", "Title": "Which gas will make a beer last longer in a keg, CO2 or nitrogen?", "Tags": "keg", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6365"}} +{ "Id": "6365", "PostTypeId": "2", "ParentId": "6364", "CreationDate": "2016-10-24T12:20:12.140", "Score": "5", "Body": "

I don't see CO2 versus nitrogen making a difference in freshness. You are probably thinking that because nitrogen is an inert (ie non-reactive) gas that is used in some packaging to extend the shelf life of some foods like fresh pasta, using it instead of CO2 would extend the life of your beer. However, beer already has significant amounts of CO2 dissolved in it so using nitrogen isn't going to keep it any fresher as a result.

\n\n

Nitrogen is used versus CO2 because some people like the texture it creates as opposed to CO2, however that's a separate topic which has already been covered in another question.

\n", "OwnerUserId": "5528", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T13:00:11.050", "LastActivityDate": "2016-10-24T12:20:12.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6366"}} +{ "Id": "6366", "PostTypeId": "2", "ParentId": "6364", "CreationDate": "2016-10-24T14:12:24.357", "Score": "4", "Body": "

I am going out on a limb and interpret "stay good" as "stay carbonated/nitrogenated." That being said, carbonation of beer has a lot to do with temperature and pressure. If you are using a kegerator, you need to pay attention to: the temperature of your beer; the distance the beer has to travel to the tap; how well insulated that line is; and how much pressure you have delivering that system. If you are trying to carbonate your home-brew with nitrogen, you will need to rack the beer into the keg and then lower the temperature before force carbonating with Nitrogen. If you're just trying to drink a nitrogenated beer, provided ideal storage conditions (little to no light, cool, undisturbed) there should be a "best by" date on the bottle somewhere.

\n

Below block-quote-information is from byo.com

\n

Why Are Nitrogen Beers Are "A Thing."

\n
\n

Traditionally, cask-conditioned English ales were served with a hand pump, or “beer engine.” The barrels in the cellar of the pub were connected to the tap faucets on the bar upstairs, and the beer was drawn up by pumping air into the barrel. These hand pumps delivered about 25 to 30 pounds per square inch (psi).

\n

Air is 78 percent nitrogen, so they were pumping beer that had a low level of carbonation with something that was mostly nitrogen.

\n

The trouble with using air to pump beer is that the remaining 21 percent of air is mostly oxygen. If a keg is going to be consumed quickly, using air is okay. But if the beer is consumed over a period of more than one day, it quickly becomes oxidized. To avoid oxidation but duplicate the effects of traditional cask ale, modern pubs pump their low-carbonation draft ales with a mixture of 75 percent nitrogen and 25 percent carbon dioxide at high pressure, about 28 to 30 psi. Homebrewers can do this too, but using nitrogen is not as easy as CO2.

\n

It’s important to understand some basics. Nitrogen doesn’t behave like CO2. Nitrogen doesn’t have the affinity for going into\nsolution like carbon dioxide does. Professional breweries “nitrogenate” their beer by chilling the beer to 32° F and forcing nitrogen into it under extremetly high pressure. Nitrogenation helps brewers re-create the smooth feel and thick head of cask ales. If you tried brewing a batch of homebrew, moving it into a keg, then pressurizing with nitrogen for a number of days, the only result would be a tap delivering very flat, high-pressure homebrew. As a safety note, most homebrew equipment is not designed to handle the pressure needed to force nitrogen into beer.

\n
\n

Information for Nitrogen-Homebrews

\n
\n

First, make sure the beer recipes you want to dispense will be good at 55° F with low carbonation. The best candidates for this treatment are traditional stouts, porters, milds, and bitters.

\n

Good hop flavor and aroma and the flavors from specialty grains are important in beers with low carbonation. If you have some of your favorite beer bottled, open one and let it sit for a couple of hours before drinking it. If it seems better that way, that recipe is a good candidate for a traditional English draft beer.

\n

To be prepared for traditional serving, a beer must have a low level of carbonation. If you are adding priming sugar when kegging, cut the amount to one-third cup of corn sugar in five gallons of beer. If you are artificially carbonating, put the keg in the refrigerator, apply 20 psi CO2 pressure and give it a shake. The next day, take the keg out of the refrigerator, let it warm up to 55° F, and draw off some beer to check; there should be some carbonation, but not much. Stir the beer with a spoon and see if some CO2 bubbles are knocked out of solution.

\n

When you feel that the beer has the proper low level of carbonation, keep it at 55° F and reduce the CO2 pressure to 5 psi to maintain it. A stick-on strip thermometer on the keg is very helpful for checking the liquid temperature.

\n
\n", "OwnerUserId": "22", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2016-10-24T18:45:39.667", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6367"}} +{ "Id": "6367", "PostTypeId": "2", "ParentId": "6356", "CreationDate": "2016-10-24T18:16:13.657", "Score": "7", "Body": "

Generally, you'll want to avoid things with brighter, more acidic fruit flavors (apple, lemon) as those will mess with the inherent acidity of the coffee (although it should be noted that cherry is sometimes used)

\n\n

Kahlua and Baileys are commonly used, as are more woodsy whiskeys. Avoid anything with carbonation, as the carbonic acid will again mess up the flavor of the coffee (beer is a no-no) and you should also avoid scotches, rye, or other peaty-earthy whiskeys.

\n\n

Also, rum is pretty good with coffee, if you're using raw sugar in your coffee - demerara and rum are best friends.

\n", "OwnerUserId": "6042", "LastEditorUserId": "6042", "LastEditDate": "2016-10-24T23:17:29.100", "LastActivityDate": "2016-10-24T23:17:29.100", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6368"}} +{ "Id": "6368", "PostTypeId": "2", "ParentId": "4844", "CreationDate": "2016-10-24T20:31:02.537", "Score": "0", "Body": "

Aside from the exclusiveness of the whole thing, there are reasons that Trappist beers aren't all shipped across the pond, and then across an entire continent.

\n\n

While I don't doubt the abilities of the brewmasters to make an excellent, viable product, beer simply doesn't survive trans-atlantic voyages too terribly well - this was, as the story goes, the reason for the rise of the IPA. Heat/cold cycles, excess motion, and all of the horrors of transporting beer over long distances have incredibly deleterious effects on the quality.

\n\n

@Arthur D and @Ken Graham are spot-on, and I would add to what they say; trust that the brewery knows best, in this case. You're on the west coast? There are some great monastic beers available from the Abbey of New Clairveaux (sp?), and you might be able to get Spencer occasionally.

\n\n

But, really... why not take a world beer trip? I heartily recommend Belgium. The beer is second to none.

\n", "OwnerUserId": "6042", "LastActivityDate": "2016-10-24T20:31:02.537", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6369"}} +{ "Id": "6369", "PostTypeId": "2", "ParentId": "6356", "CreationDate": "2016-10-24T20:54:06.657", "Score": "5", "Body": "

Rumpleminze (peppermint schnapps) and coffee and cream creates a smooth and potent alcoholic drink. Add a Godiva Chocolate Liquor for a first class-after dinner cocktail.

\n\n

Grand Marnier(something like an orange flavored brandy) goes well with both black coffee and coffee and cream. If you like your coffee black Grand Mariner adds flavor and potency without adding a lot of sweetness. Of course it goes just as well with cream, which results in something a lot like a chocolate orange.

\n\n

A Tuaca(people often describe it as tasting something like butterscotch) Macchiatto(my own recipe) is an alchololic twist on the classic coffeeshop favorite. Mix a shot of Tuaca into a shot of steamed milk. Top with Coffee. This tastes mild but packs a decent punch, and if you take the time to do it properly (\"mark it\"), it looks pretty cool. (This also tastes great with regular milk or cream.)

\n\n

A second variation on this, which is far less potent is to replace Tuaca with 1/2 a shot of Chambord and 1/2 a shot of Godiva White Chocolate Liqueur and mix thoroughly . This will an tasty adult white chocolate mocha.

\n\n

Finally, a classic cocktail combination is coffee (with or without cream) and Sambuca. Sambuca is often served with 3 coffee beans, but it works very well with an entire cup. Sambuca contributes a lithe sweetness that delicately lingers in the mouth. Avoid if you don't like Anise or Licorice.

\n\n

For a seriously potent version of Sambuca and Coffee swap out Sambuca for Absinthe(not refined). In addition to the alcohol content, Absinthe also offers a jolt akin to what caffeine provides.

\n\n

Be responsible and Enjoy!

\n", "OwnerUserId": "5969", "LastActivityDate": "2016-10-24T20:54:06.657", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6370"}} +{ "Id": "6370", "PostTypeId": "2", "ParentId": "6345", "CreationDate": "2016-10-25T13:22:44.277", "Score": "1", "Body": "

Keep in mind that smoking diminishes one's ability to taste(I'm not sure about Vaping). I haven't found any literature that explains if just only one cigarette will change your sense of taste, but anecdotally I believe it will have an effect.

\n\n

Smokers' bitter taste buds may be on the fritz

\n\n

This a large reason that smoking and drinking often go together. Alcohol tastes less potent to smokers. As an obvious result, more potent liquors like moonshine or absinthe will go do down a little easier for smokers.

\n\n

In my mind, the most classic pairing of smoke and alcohol is cognac or regular brandy and a cigar. Often people dip their cigars into brandy before drinking. Generally, this is considered a faux pas and unnecessary given modern humidors. The origin of this tradition was to add moisture to the cigar. The dipping can take from the nature flavor of the cigar. However, I recommend it for particularly cheap or unpalatable cigars, or if you don't like them at all but are smoking one anyway. Be careful though, it can be a little like putting ketchup on Filet Mignon.

\n\n

Nonetheless, The flavor of cognac/ brandy compliments cigar smoking quite nicely. You can sip them and enhance the flavors of the cigar. My preference is Grand Mariner(made from cognac and bitter orange), and a cigar, although I am not cigar aficionado so I don't have a specific cigar to recommend. The Grand Mariner flavor rests on the tongue after drinking and creates a very rich mouth feel, particularly in combination with smoke.

\n\n

Vaping seems prime for pairing with alcohol. Given the myriad flavors available, I think match flavors would be good. Consider the vape juice flavor as an ingredient in your cocktail. Jack and Coke? Try vanilla vape juice and it will be reminiscent of Vanilla Coke. Try Cake Vape and Gingerale and Vodka to create the impression of Cream Soda.

\n", "OwnerUserId": "5969", "LastEditorUserId": "5064", "LastEditDate": "2016-10-25T13:59:15.253", "LastActivityDate": "2016-10-25T13:59:15.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6371"}} +{ "Id": "6371", "PostTypeId": "2", "ParentId": "6314", "CreationDate": "2016-10-25T13:35:38.887", "Score": "5", "Body": "

There are some other Cistercian monasteries like the Abbey of New Clairvaux, which has a vineyard and produces wine. Also, Sierra Nevada produces the Ovila beers in cooperation with the abbey.

\n\n

It should be noted that the abbey can be considered a Trappist monastery, but that the beer is not sanctioned by the International Trappist Association, and is therefore not a 'trappist beer'.

\n\n

Ampleforth Abbey is a Benedictine monastery that produces beer.

\n\n

And you may be interested in this book which describes, as the title puts it, making wine under Buddhist supervision.

\n", "OwnerUserId": "6042", "LastActivityDate": "2016-10-25T13:35:38.887", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6374"}} +{ "Id": "6374", "PostTypeId": "2", "ParentId": "6327", "CreationDate": "2016-10-26T19:31:43.757", "Score": "2", "Body": "

Why, a Buck's Fiz, of course! Two parts chilled Champagne (recommend a NV from a non-Grandes Marques Champagne house) or bubbly (chilled white sparkling wine that isn't from the Champagne region) to one part freshly squeezed orange juice from oranges stored in a fridge. This is a British idea, one that is traditionally served mid-morning or even as a chaser to a good cooked breakfast with top-notch ingredients! A Christmas morning indulgence or as a libation to kick off the day on any other celebratory occasion. What's not to enjoy about that, then? (Wikipedia)

\n", "OwnerUserId": "5816", "LastEditorUserId": "5816", "LastEditDate": "2016-10-27T05:17:36.573", "LastActivityDate": "2016-10-27T05:17:36.573", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6375"}} +{ "Id": "6375", "PostTypeId": "1", "AcceptedAnswerId": "6376", "CreationDate": "2016-10-29T06:21:38.787", "Score": "8", "ViewCount": "669", "Body": "

Other than the ABV value what are the exact differences between these two strong ale styles. I have tasted a lot of them and the difference seems very hard to notice. If you make a blind tasting, what descriptors would you use to identify each of them.

\n", "OwnerUserId": "6052", "LastEditorUserId": "5064", "LastEditDate": "2016-10-31T13:36:52.437", "LastActivityDate": "2016-10-31T13:36:52.437", "Title": "What are the real differences between barley wine and old ale?", "Tags": "craft-beers", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6376"}} +{ "Id": "6376", "PostTypeId": "2", "ParentId": "6375", "CreationDate": "2016-10-31T12:57:11.633", "Score": "7", "Body": "

When considering barley wine there are two varieties recognized by the BJCP in the 2015 style guidlines.

\n\n
    \n
  1. The American version which has an emphasis on hops, IMO not as similar to old ale.
  2. \n
  3. The English version which while hoppy is also sweeter and has more fruity flavors than the American version and IMO does seem similar to old ale.
  4. \n
\n\n

If I were to compare an English barley wine to an old ale the differences among the higher end of the style seem minimal. However, I think that even on the higher end the old ale has an emphasis on the aged quality. In the smaller versions, less ABV, examples of English barely wine I think it is less malty than an old ale.

\n\n

I also found the BJCP style guidelines style comparison useful for the English barley wine and old ale because they are so similar. I've included them below for reference.

\n\n

\"Old Ale Style Comparison:\nRoughly overlapping the British Strong Ale and the lower end of the English Barleywine styles, but always having an aged quality. The distinction between an Old Ale and a Barleywine is somewhat arbitrary above 7% ABV, and generally means having a more significant aged quality (particularly from wood). Barleywines tend to develop more of a ‘mature’ quality, while Old Ales can show more of the barrel qualities (lactic, Brett, vinous, etc.).\" (From BJCP 2015 guidelines)

\n\n

\"English Barley Wine Style Comparison:\n Although often a hoppy beer, the English Barleywine places less emphasis on hop character than the American Barleywine and features English hops. English \nversions can be darker, maltier, fruitier, and feature richer specialty malt flavors than American Barleywines. Has some overlap British Old Ale on the lower end, but generally does not have the vinous qualities of age; rather, it tends to display the mature, elegant signs of age.\" (From BJCP 2015 guidelines)

\n", "OwnerUserId": "5145", "LastActivityDate": "2016-10-31T12:57:11.633", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6377"}} +{ "Id": "6377", "PostTypeId": "2", "ParentId": "4983", "CreationDate": "2016-11-04T22:26:27.210", "Score": "1", "Body": "

Balvenie Doublewood is CHEAP and harsh, unless you get the 17 year but still harsh. If you want a REAL Single Malt Scotch that is not many 100's or 1000's of dollars try the Balvenie 21 Year Portwood. It is NOT harsh, it is 96 proof, smoothest stuff I have ever had!!! It is a lot more than the Doublewood though, about $150 for 750ml but if you can at least try it once!!! I wanna try the 25 year but it's too much $ even for me and I am a Single Malt Scotch connoisseur! It costs around $500 I believe. Or hell go for the 40 year at $4000 per 750ml! They even made a very limited few bottles of 50 year aged but they cost around $63,000 per 750ml!

\n", "OwnerUserId": "6079", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T01:54:29.780", "LastActivityDate": "2019-08-28T01:54:29.780", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6378"}} +{ "Id": "6378", "PostTypeId": "2", "ParentId": "942", "CreationDate": "2016-11-06T00:47:21.753", "Score": "2", "Body": "

Okocim Beer is part of the Carlsberg group. According to Carlsbergs site it looks like they are distributed in the USA by St. Killian.

\n\n

St. Killian has a beer finder page that lets you search for bars, resturants, or stores that sell particular products by zip code. When typing in the zip code for State College, Pennsylvania, I'm not sure where you are located but this is pretty central, it shows four locations within 100 miles.

\n\n

You could put in your zip code and then select see what is near. I'd call before making the trip and see which Okocim beers they actually sell since the comments seem to suggest that some only carry O.K..

\n", "OwnerUserId": "5145", "LastEditorUserId": "5145", "LastEditDate": "2016-11-07T14:01:11.487", "LastActivityDate": "2016-11-07T14:01:11.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6379"}} +{ "Id": "6379", "PostTypeId": "2", "ParentId": "6356", "CreationDate": "2016-11-06T22:14:20.837", "Score": "3", "Body": "

I like the sweeter liqueurs like Glayva, Grand Marnier and especially Galliano with espresso. If you have a milk-based coffee, combine with a cream-based liqueur. I have never liked alcohol mixed directly in the coffee, it gives conflicting tastes. Coffee and liqueur should be sipped separately to fully enjoy each.

\n", "OwnerUserId": "6084", "LastActivityDate": "2016-11-06T22:14:20.837", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6380"}} +{ "Id": "6380", "PostTypeId": "1", "CreationDate": "2016-11-09T23:54:21.367", "Score": "7", "ViewCount": "162", "Body": "

I'm planning on making sugar wine. I want to improve the flavor by adding mint but I don't know where I can get three cups of fresh mint. If I use mint extract, or mint oil will it do the same thing?

\n", "OwnerUserId": "6092", "LastActivityDate": "2016-11-11T08:48:31.410", "Title": "Mint sugar wine", "Tags": "ingredients wine", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6381"}} +{ "Id": "6381", "PostTypeId": "2", "ParentId": "6380", "CreationDate": "2016-11-11T08:48:31.410", "Score": "6", "Body": "

Mint extract and mint oil won't do the same thing as leaves, not exactly. The flavor is different. If you infuse it with mint leaves, the flavor can have a more \"leafy\" or herbal quality, not necessarily a good thing. And infusions can change the color of your liquor, which if you're drinking it straight is not ideal. For these reasons, I'd use extract. It's also cheaper than oil, more shelf stable, and it's less concentrated which makes it easier to adjust how minty your hooch is. Just add it at the end when the kilju is finished and filtered. You can consider using peppermint extract instead of mint, which is usually a combination of peppermint and spearmint. And you might want to add a little simple syrup too.

\n", "OwnerUserId": "5974", "LastActivityDate": "2016-11-11T08:48:31.410", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6382"}} +{ "Id": "6382", "PostTypeId": "1", "AcceptedAnswerId": "6396", "CreationDate": "2016-11-14T07:23:16.507", "Score": "6", "ViewCount": "2403", "Body": "

A lecturer of mine, who is quite a beer connoisseur, mentioned boilermaker shots/cocktails when lecturing about methods of yeast fermentation. Given he's quite into beer, I'm sure when he talks about a boilermaker, he's got a particular one in mind that would go well with a shot of whiskey. I'm not quite at the same stage of knowledge, and would like some recommendations.

\n\n

Now I know you could put any whiskey and any beer together and it'd still be a boilermaker, but I'm wanting to find a pairing that works quite nicely - a dark ale and a smokey scotch? A pale ale and an Irish whiskey? As fun as it would be try every combo, I only have so much beer and so much whiskey, and could use a jump start.

\n\n

I am Australian by the way, so I might not be able to get my hands on any particularly specific recommendations.

\n", "OwnerUserId": "6023", "LastActivityDate": "2018-05-13T14:35:48.447", "Title": "Whiskey and beer recommendations for boilermaker cocktail?", "Tags": "recommendations whiskey beer-cocktails", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6383"}} +{ "Id": "6383", "PostTypeId": "1", "CreationDate": "2016-11-15T10:21:46.680", "Score": "6", "ViewCount": "224", "Body": "

Are there any problems in serving a non-cooled (without cooling) a beer, as the doctor has told me not to take any cooled products. So I used to take beer once in couple of day without cooling it. The taste is different, but are there any real problems with consuming noncooled beers?

\n", "OwnerUserId": "6105", "LastEditorUserId": "5064", "LastEditDate": "2016-11-16T12:38:48.273", "LastActivityDate": "2016-11-17T14:08:52.800", "Title": "Are there any problems in serving non-cooled beer?", "Tags": "health temperature", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6384"}} +{ "Id": "6384", "PostTypeId": "2", "ParentId": "6383", "CreationDate": "2016-11-15T10:38:19.280", "Score": "2", "Body": "

Should be just fine. Cooling or warming (in normal ranges) does not change the chemistry of beer.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2016-11-17T14:08:52.800", "LastActivityDate": "2016-11-17T14:08:52.800", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6385"}} +{ "Id": "6385", "PostTypeId": "2", "ParentId": "6383", "CreationDate": "2016-11-15T17:00:33.480", "Score": "5", "Body": "

This article has very good information on how CO2 interacts with beer.

\n\n

That being said, temperature plays a big part in the flavor of beer. Here is a the consensus of guidelines of what temperature types of beer and wine should be served.

\n\n

There should be nothing wrong with refrigerating your beer and then warming it up. I really enjoy the flavor profiles in a lot of the darker, heavier beers I pour when they warm.

\n\n

Just make sure that you clarify what temperature your fluids need to be before ingesting with your physician.

\n", "OwnerUserId": "22", "LastActivityDate": "2016-11-15T17:00:33.480", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6386"}} +{ "Id": "6386", "PostTypeId": "2", "ParentId": "6364", "CreationDate": "2016-11-15T23:27:05.247", "Score": "2", "Body": "

TL:DR;\nNot a lot of difference, but science favors carbonation for long-term storage. In a keg system, long-term storage isn't a factor, and there's no appreciable difference.

\n\n

In order to answer your question, a couple of things, first. 'Stay good'; is somewhat nebulous, but let's say that it consists of three things;\n1. Not being oxidized or lightstruck\n2. Not being infected\n3. Being pleasant to taste

\n\n

Point 1: Oxidation can be minimized by using good brewing practices, which (if you're bartending) is kinda out of your control. If you're the brewer, that's different. But oxidative compounds can be in your hops or grain, so that may still be out of your control. \nLightstruck is easy to avoid with good storage practices and brown bottles [- first google listing on beer cellaring] here, and it has good info.1.

\n\n

Point 2: Beer isn't sterile. If it were sterile, it wouldn't be good. Pasteurization can make beer nearly sterile - so close that it pretty much is sterile - but pasteurized beer generally has a shorter shelf life than beer with the right active microbes. Case in point: a pasteurized pale american lager at 3 years vs. a non-pasteurized lambic at 3 years. Or a bottle of Brett-aged beer. Lambics and wild beers have tons of microbes. Microbes do good things for stability, long-term. Or bad things, if you have bad microbes.

\n\n

The reason they stay good and don't make you sick is that the yeast, lactobacilli, pediococcus et al, alter the Ph so that hostile microbes won't grow, which leads me to the finale of point 2:

\n\n

Co2 in solution drives the Ph of the liquid down, or towards acidity. Hard science paper about that here(although you can only read the preview without membership, there's a graph in the preview that shows the effect on atmospheres of dissolved Co2 vs Ph).

\n\n

Point 3:Being pleasant to taste. Although this could be considered subjective if we got into the flavor of N vs Co2, it really just hearks to point 1: no bad taste chemicals. Good storage and good brewing make for good beer.

\n\n

I looked all over for examples of nitrogenated beer that would be considered cellar-able. I didn't find any. Does this mean that Co2 is better for the health of your beer?

\n\n

Not necessarily. In order for N to come out of solution, it needs nucleation sites, which are usually other N bubbles. Coming out of a tap, it has bubbles. With a widget, it also has bubbles, but I'd be concerned about the alcohol slowly degrading a widget, were I to store nitrogenated beer long-term. Plenty of science out there about degradation of plastic when exposed to chemicals.

\n\n

So, in the end, it's just preference - unless you're cellaring.

\n", "OwnerUserId": "6042", "LastActivityDate": "2016-11-15T23:27:05.247", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6387"}} +{ "Id": "6387", "PostTypeId": "2", "ParentId": "6382", "CreationDate": "2016-11-16T15:35:44.233", "Score": "2", "Body": "

Newcastle (Brown Ale) + Maker's Mark (Bourbon)

\n\n

Slightly inexpensive and the flavors blend pretty well. A lot of people have reservations on Newcastle though.

\n\n

Sheaf (Stout) + Laphroaig (Scotch)

\n\n

Laphroaig is the smokiest scotch I've had, and it sits nicely with a heavy stout or porter. I like a porter called Baltika number 6, but it's russian so you may not be able to get that one.

\n", "OwnerUserId": "6110", "LastActivityDate": "2016-11-16T15:35:44.233", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6389"}} +{ "Id": "6389", "PostTypeId": "2", "ParentId": "969", "CreationDate": "2016-11-16T15:48:30.693", "Score": "0", "Body": "

When I didn't like beer, I was introduced to the Shandy. Just lemonade and a wheat beer... she may start out with a lot of lemonade, but over time there will be less lemonade and more beer, as she gets used to the taste.

\n\n

You can use any beer with lemonade and achieve a similar effect. I also like pale ale, or a lager that is light (not a light beer)

\n\n

Otherwise, I have a female acquaintance that swears by Hard Root Beer. It's less alcoholic than normal beers though.

\n", "OwnerUserId": "6110", "LastActivityDate": "2016-11-16T15:48:30.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6390"}} +{ "Id": "6390", "PostTypeId": "2", "ParentId": "6383", "CreationDate": "2016-11-16T21:55:44.863", "Score": "2", "Body": "

As with all alcoholic beverages there should be no issues drinking them cold, warm or even hot. The alcohol pretty much kills any nasty things. There may be some flavor issues. Flavors are more pronounced when the liquid is warmer as the volatile compounds that make up the flavors are more easily released but that is not necessarily a good thing in terms of flavor.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-11-16T21:55:44.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6391"}} +{ "Id": "6391", "PostTypeId": "2", "ParentId": "6333", "CreationDate": "2016-11-16T22:05:35.120", "Score": "2", "Body": "

I was a professional wine maker for a few years. We always used open top fermenters on our red wines when they were fermenting on the skins, we just threw sheets or blankets over them to keep the bugs out. Of course we are talking about tons of grapes at a time. White wines you could do this too, but I would only as long as there is active fermentation and enough CO2 to keep the oxygen out. But for white wines we had a closed lid with way for the CO2 to escape easily. Sulfites will be blown out with an active fermentation so they are pretty useless while fermenting, but they need to be added as soon as fermentation is done. As long as there is active fermentation, it is very hard to oxidize your wine as most of the oxygen will be consumed by the yeast.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-11-16T22:05:35.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6392"}} +{ "Id": "6392", "PostTypeId": "2", "ParentId": "4929", "CreationDate": "2016-11-17T07:45:30.367", "Score": "0", "Body": "

Yes, I have the general simple rule you are looking for: Price.

\n\n

The cheaper a wine is (especially for Cabernet), the earler you should drink it. But there are some underlying explanations to explain why.

\n\n

Cabernet Sauvignon is built for ageing. It has very thick skin, high levels of acidity, and low sugar content. For ageing, tannins are good, acidity is good, and too much alcohol can be bad. The sugar in Cabernet Sauvignon has an alcohol potential of about 12.5%, against 14.5% for Merlot.

\n\n

Tannins and acidity need time to soften, that is why a normal Cabernet wine from a respectable winery should need 2-4 years before it can be appreaciated, and reach its peak in 5-10 years.

\n\n

The lifespan is shorter for lighter wines, for example in vintages where it rained a lot, the wine can be diluted and age a lot quicker. In these conditions the bottle may reach its peak in less than 3 years. This is also true for industrial wines who do not want to take risks and do not wait long enough for the grapes to mature, giving very light wines. If you look at Bordeaux wines, a 2010 tastes younger than a 2013. Because 2010 was hot and 2013 was very wet.

\n\n

Over the years, wineries have developed some techniques to push the ageing potential further:

\n\n
    \n
  • In the Vineyard: Planting vines in higher density (going up to 10000 plants per hectare in the Medoc region), performing green harvests, using only old vines, to get more fruit concentration.
  • \n
  • In the Wine Cellar: Some techniques are used to extract the grapes and concentrate the wine even more. Pre-fermentation cold maceration has become a popular practice for example. Or some more extreme things exist, like reverse osmosis, which is used in some top Bordeaux Chateaux to extract water out of the wine. The less water there is, and the more dry matter it has, the more ageing potentiel it gets.
  • \n
  • In the Ageing Cellar: Top red wines all over the world are aged in new oak barrels during nearly 2 years. Oak adds new types of tannins and anti-oxydants to the wine. This increases ageing potential a lot.
  • \n
\n\n

Cabernet Sauvignon is especially famous for its affinity for Oak. The Oak softens the Cabernet tannins while adding more of its own extra soft tannin flavours. This way the bottle can be opened earlier than expected but also age until later than expected !

\n\n

All these techniques make the wine more complex, and enable it to age longer. These techniques also cost a lot of money.

\n\n

Some great Cabernet Sauvignon from the Bordeaux region should only be opened starting from 20 years after bottling, but will need around 40-50 years for their most complex aromas to show.

\n\n

So in the end you got to know the techniques and terroir quality of the vineyard who produced your bottle, and the quality of the vintage. But that is usually reflected in the price of the bottle anyways.

\n", "OwnerUserId": "6113", "LastActivityDate": "2016-11-17T07:45:30.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6393"}} +{ "Id": "6393", "PostTypeId": "2", "ParentId": "4929", "CreationDate": "2016-11-17T17:10:06.770", "Score": "2", "Body": "

Being a former winemaker, Cabernet can made in a variety of styles from cheap Trader Joes Cabernet ready to drink the day you buy it, to Napa Valley cabs that won't soften up for at least a decade. In fact, I've had 20 year old cabs that were still so tannic, I don't think they would ever soften up.

\n\n

From a winemaking perspective, usually I found that wines taste flat for several months after bottling. I think the introduction of Oxygen (not necessarily a bad thing) at bottling time alters the wine for a while, but with age things start to level out. For a high quality cab, I would wait a year after bottling for things to come around and you can taste full flavors. BUT, that doesn't really mean the wine is ready to drink. Usually several years after bottling cabs start to soften their tannins and become much more approachable. Not everyone likes that though, many people like a younger fruitier wine. YMMV.

\n\n

This is for wine that is stored in a temperature controlled environment and not on your kitchen counter. Heat makes the process speed up but not necessarily in a good way.

\n\n

There are no hard and fast rules about when you drink a wine. I would error on the side of drinking sooner than later because it's possible to get vinegar or a corked wine the longer you wait. If you have several bottles of the same wine. Sample one every couple of years until you think they are ready.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-11-17T17:10:06.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6394"}} +{ "Id": "6394", "PostTypeId": "2", "ParentId": "6327", "CreationDate": "2016-11-19T16:48:30.607", "Score": "0", "Body": "

I agree that making kyr royale is a good solution.\nAlso putting some fresh and perfumed herbs in it will help. Try Lemon Balm or others that you like. Put the wine in a carafe together with some bundles of leaves, leave it in the fridge for 30 min.

\n", "OwnerUserId": "6116", "LastActivityDate": "2016-11-19T16:48:30.607", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6395"}} +{ "Id": "6395", "PostTypeId": "1", "CreationDate": "2016-11-20T23:17:59.967", "Score": "7", "ViewCount": "541", "Body": "

I had a bottle of Westvleteren XII aging in my fridge. As I was putting some other bottles next to it, I nudged it slightly and the bottle shattered violently. I'm certain that I didn't hit it with enough force to do that kind of damage, so I'm thinking that there was pressure that had built up inside the bottle.

\n\n

Is this something that's plausible? Could it mean that the beer had gone \"off\" and so I should not feel bad that my prized beer ended up as a sticky puddle?

\n", "OwnerUserId": "5328", "LastEditorUserId": "5889", "LastEditDate": "2016-11-21T17:35:42.190", "LastActivityDate": "2016-12-08T21:07:04.907", "Title": "Why would an aged beer explode?", "Tags": "aging belgian-beers", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6396"}} +{ "Id": "6396", "PostTypeId": "2", "ParentId": "6382", "CreationDate": "2016-11-20T23:45:40.813", "Score": "3", "Body": "

Having drank these when I was younger, I'd offer the opinion that beer and whisky shouldn't be mixed. The flavours, generally speaking, are usually not complementary, so the only real benefit you'll get from them is a quicker buzz.

\n\n

If you want to go ahead with a boilermaker anyway I'd recommend getting a mid-range bottle of whisky. Something with some semblance of flavour and quality, but not so good that you're wasting a good liquor by mixing it with beer. Come to think of it, this rule probably holds true when mixing with anything, although I tend to use fairly cheap whiskies for cocktails.

\n\n

In terms of specific whiskies, you could go with something like a Bulleit Bourbon or a Black Bush Irish Whisky, and if those are too pricey you could down-grade to a Wild Turkey or Crown Royal.

\n\n

The beer you choose depends much more on your taste in beer, as the flavour of beer varies much more than does the flavour of whisky. In general, if you mix with a lighter, more generic beer the flavour of the whisky will be quite strong, whereas if you go with a stronger flavoured beer the whisky will be more subtle.

\n\n

If it were me, I'd go the stronger route to mask the taste of the whisky, because when I drink a beer that's not really what I want to taste.

\n", "OwnerUserId": "938", "LastActivityDate": "2016-11-20T23:45:40.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6397"}} +{ "Id": "6397", "PostTypeId": "2", "ParentId": "6395", "CreationDate": "2016-11-21T14:42:49.563", "Score": "5", "Body": "

Not knowing much about the beer but the 30 second Google search - I will try to give insight as to why this may happen.

\n\n

I've noticed this was a Trappist beer. As such, there is probably as much yeast in there as homebrew beers that have had sugar added to carbonize the beer during the bottling process. When too much sugar is added at this step, the homebrewing community refers to the disaster that happens next as \"painting the ceiling.\" This comes from the present yeast having too much sugar to eat and over-pressurize the beer. The first time this happened to me I thought someone was shooting either in or right beside my house. I know that the Trappist Monks have been doing things a lot longer than homebrewers; but, the situation is still plausible.

\n\n

There is also a chance for glass defects. Or perhaps, the bottle was knocked over and created a stress fracture that over time gave way with your slight nudge. You could always reach out to Westvleteren XII Gurus and ask what is the best way to store the beer so this doesn't happen again. Sorry for your loss! :(

\n", "OwnerUserId": "22", "LastActivityDate": "2016-11-21T14:42:49.563", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6398"}} +{ "Id": "6398", "PostTypeId": "2", "ParentId": "6395", "CreationDate": "2016-11-21T21:17:40.307", "Score": "7", "Body": "

I've been homebrewing and winemaking for almost 25 years and there are 3 reasons why a bottle might explode.

\n\n
    \n
  1. Too much sugar for the secondary fermentation in the bottle. Homebrewers do this ALL THE TIME. Turns your beer into little hand-grenades. Sometimes fermentation is not complete and with the normal addition of sugar at bottling can cause problems. This happens frequently in high gravity beers.
  2. \n
  3. Infection - by this I mean something other than yeast was in the beer and started eating the sugar to make the carbonation in the beer. It could be a wide variety of agents from yeast to bacteria to fungus. They convert sugar to CO2 at different rates than yeast. Many times they produce more CO2 causing gushing beers and sometimes broken bottles.
  4. \n
  5. Defective bottle. 99.99% of the time bottles are built to spec, but occasionally one slips through with a defect and many times that can lead to a bottle failing. Also, bottles are sometimes dropped or banged around causing a crack.
  6. \n
\n", "OwnerUserId": "6111", "LastEditorUserId": "22", "LastEditDate": "2016-11-22T03:59:57.740", "LastActivityDate": "2016-11-22T03:59:57.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6399"}} +{ "Id": "6399", "PostTypeId": "2", "ParentId": "6382", "CreationDate": "2016-11-22T04:04:11.227", "Score": "3", "Body": "

You will find that Porters/Stouts tend to hold up to whiskey/bourbon/scotch better than others. Though, I'm sure you'll find exceptions.

\n\n

One of my favorites is New Holland's - Dragon's Milk with about 1.5-2 ounces of Crown Royal.

\n", "OwnerUserId": "22", "LastActivityDate": "2016-11-22T04:04:11.227", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6400"}} +{ "Id": "6400", "PostTypeId": "1", "CreationDate": "2016-11-24T14:55:03.990", "Score": "5", "ViewCount": "531", "Body": "

Beer yeast change over time due to new generations. It's biology. To my knowledge you can't keep the same generation of yeast alive.\nWhich should mean the taste should change or evolve over time? At least that's how I understand how different beer yeasts are created.

\n\n

Would the same brand of beer really taste and be equal over time, as in scientifically analysed and compared?

\n", "OwnerUserId": "6132", "LastActivityDate": "2016-12-10T00:42:18.967", "Title": "How do beer manufacturers keep the taste the same?", "Tags": "yeast", "AnswerCount": "3", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6401"}} +{ "Id": "6401", "PostTypeId": "2", "ParentId": "6400", "CreationDate": "2016-11-24T16:41:47.430", "Score": "3", "Body": "

I think this homebrew post has a good explanation of how brewers keep yeast strains. Homebrew yeast discussion

\n\n

White labs from San Diego also has a great slide about how they do it. White labs is the company just finished the study of the yeast domestication tree, where they analyzed the DNA of several yeast used in fermentation and determined how they are related. I've seen Chris White the founder speak at a homebrew event and it was very interesting. He has a Phd in microbiology from the university of california and sells to all sorts of professional brewers, distillers, and wine makers.

\n\n

I'll summarize the information from the references here, \nbut the bottom line is that they store samples at very cold temperatures so it's metabolism is almost shutdown and it won't evolve.

\n\n
    \n
  1. Brewers isolate there yeast in slants or plates. These are the pure strain.

  2. \n
  3. The yeast that is isolated will be stored at a very cold temperature to remain dormant and unchanging. (-80 Celsius)

  4. \n
  5. When they need to recharge because their yeast has drifted they remove a small amount from storage.

  6. \n
  7. Using petri dishes they will grow a small size they can verify is still good.

  8. \n
  9. With this small batch they will add to wort (what brewers call the sugary liquid that makes beer) and then make a large batch of yeast.

  10. \n
\n", "OwnerUserId": "5145", "LastEditorUserId": "5145", "LastEditDate": "2016-12-10T00:42:18.967", "LastActivityDate": "2016-12-10T00:42:18.967", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6402"}} +{ "Id": "6402", "PostTypeId": "1", "AcceptedAnswerId": "6410", "CreationDate": "2016-11-27T12:05:41.410", "Score": "10", "ViewCount": "8865", "Body": "

Some days ago I was walking on the street and passed by a beverage store where I saw some bottles of absinthe.

\n\n

There were green, red and blue versions, and I thought how could absinthe, a classically green colored beverage, be transformed into a totally different color; and what's more, a primary color which is supposed to be impossible to create by mixing other colors.

\n\n

I have two theories:

\n\n
    \n
  • Absinthe is always green due to the presence of Artemisia absinthium's chlorophyll. The beverage is based in and some kind of product is added in order to create a reaction to make it turn to X color.

  • \n
  • Absinthe is transparent until you add the Artemisia absinthium's chlorophyll. Somehow, you can add colorant to the transparent beverage and eliminate the chlorophyll.

  • \n
\n\n

I'm attaching an image for you to know what I'm talking about:

\n\n

These are the ones I saw

\n\n

\"Colored

\n", "OwnerUserId": "6142", "LastEditorUserId": "5064", "LastEditDate": "2017-04-12T12:22:37.897", "LastActivityDate": "2020-01-18T21:41:21.793", "Title": "How can absinthe be colored into a different colour other than green?", "Tags": "brewing ingredients colour absinthe", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6403"}} +{ "Id": "6403", "PostTypeId": "1", "AcceptedAnswerId": "6430", "CreationDate": "2016-11-28T18:34:31.360", "Score": "7", "ViewCount": "16467", "Body": "

I would be interested to know these two things:

\n\n

(1): What are the ratings in IBU of common lagers: e.g. Stella, Kronenbourg, Fosters, Becks, Heineken, San Miguel, Corona? Are there major differences?

\n\n

(2): Same question RE: Hoppyness/Hop content.

\n\n

E.g. I like Stella and not Becks. Then my friend told me that's because Stella is more bitter. However I have no way of knowing for sure... hence the question.

\n\n

I like IPAs and I hate stouts. However the differences between lagers is difficult to perceive for me.

\n", "OwnerUserId": "6146", "LastActivityDate": "2016-12-21T08:43:24.730", "Title": "What are the IBUs (bitterness units) of common lagers? Also, what are hop contents?", "Tags": "hops lager", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6404"}} +{ "Id": "6404", "PostTypeId": "2", "ParentId": "6403", "CreationDate": "2016-11-28T18:56:47.370", "Score": "2", "Body": "

Finding a compiled list of common-marketplace lagers is probably not going to happen unless someone has made a specific list like this.

\n\n

Generally, you would just search \"SPECIFIC BEER IBU\" and either the result or website where you can find the result would populate. You can also look at homebrewer clone-recipe sites like this that give you the IBUs and recipes for clones of your favorite beers.

\n\n

There are, however, sites like this that have BJCP average IBU ranges for varying styles of beer.

\n\n

For proprietary reasons, you will never know the exact make-up of hops/hop ratios in beers unless the company shares that information with their imbibers.

\n\n

If you have a good palate and understanding of what kinds of hops yield what kinds of flavors, you might be able to pick them out.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2016-11-28T20:31:35.247", "LastActivityDate": "2016-11-28T20:31:35.247", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6405"}} +{ "Id": "6405", "PostTypeId": "2", "ParentId": "6400", "CreationDate": "2016-11-28T19:10:58.590", "Score": "2", "Body": "

Macrobreweries such as Budweiser brew several gigantic vats at a time, and they blend the various vats' products to create a consistent product. They have a board of tasters at each factory to taste the batch and recommend what to blend to get the proper flavor. I know it's funny to think of Budweiser as having that kind of quality control, but they do have a specific flavor profile to protect and their drinkers are less likely to accept flavor variances than more adventurous beer drinkers and light pilsners have less of an ability to cover off flavors.

\n\n

Sources: homebrewing experience and an Q&A with a Budweiser master brewer and taster.

\n", "OwnerUserId": "6148", "LastActivityDate": "2016-11-28T19:10:58.590", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6406"}} +{ "Id": "6406", "PostTypeId": "2", "ParentId": "6400", "CreationDate": "2016-11-29T00:00:13.030", "Score": "2", "Body": "

There are really two questions here. \n1) How do breweries keep the yeast they have from evolving over time\n2) How to breweries keep a consistent flavor over time

\n\n

I'll answer the second one first...

\n\n

As to how do they keep the flavor the same all the time, year after year even though ingredients taste different from year to year? It's all about blending. They try to brew a consistent beer but it might be too hoppy or malty or strong or whatever but they will dilute, or add hop oil or blend in another beer that can adjust the flavor profile to exactly what they want. The same thing happens with Gallo and large wineries.

\n\n

As to the answer to how they keep the same yeast the same year after year. You can essentially keep yeast forever by deep freezing it. I'm sure they have a vault filled with a library of yeast which they can go back to if they ever need to whip up a batch of new yeast from the original yeast.

\n\n

I'll throw this in there too, that the taste of the major brands has evolved over the years. The Budweiser your great grandfather drank in the 1950s probably doesn't taste like the product you get now.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-11-29T00:00:13.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6407"}} +{ "Id": "6407", "PostTypeId": "2", "ParentId": "6382", "CreationDate": "2016-11-29T13:44:55.820", "Score": "2", "Body": "

Generally speaking a boilermaker is designed to get you drunk quick and mask the the potency and flavor of the whiskey in the beer. That's why you are supposed to shoot it, to get it over with. I recommend you don't use craft beers or anything above mid-grade whiskey. The special qualities and flavors that set those things apart will probably be lost. Also keep in mind that a boilermaker is particularly expensive drink even using bottom shelf liquor, be wary of spending craft beer/top shelf liquor money on a drink designed to last less than 30 seconds.

\n\n

However, for something lively or with pronounced flavor you may want to try something slightly outside of traditional.

\n\n

Angry Balls:\nDrop Cinnamon Whiskey(like Fireball) into a 1/2 glass of Spiked Apple Cider(Like Angry Orchard.\nThis is sweet and easy to drink, its known to get a party rolling

\n\n

Or perhaps one of the most famous of these kinds of drinks:\nThe Irish Car Bomb(I did not make the name up):\nDrop a shot glass with 1/2 Irish Whiskey and 1/2 Irish Cream into 1/2 pint of Guiness.
\nThis creates a flavor similar to a chocolate malt.

\n\n

If you really want a classic boilermaker I suggest going cheap.\nDrop some Old Crow into a 1/2 glass of PBR. Somehow they improve each other and make something that is actually enjoyable (by the third glass).

\n", "OwnerUserId": "5969", "LastActivityDate": "2016-11-29T13:44:55.820", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6408"}} +{ "Id": "6408", "PostTypeId": "2", "ParentId": "6402", "CreationDate": "2016-11-29T16:55:16.357", "Score": "1", "Body": "

I'll take a stab at this... Absinthe is an unregulated name unlike something like Champagne which is highly regulated name/place. With Champagne you can only use Pinot Noir, Pinot Meunier and Chardonnay in making it and it has to be grown in the Champagne region.

\n\n

Absinthe can be made by any distiller anywhere in the world. What that means is that you could put whatever you want into a bottle and call it Absinthe (within liquor regulations). True that traditional Absinthe is a green color, from wormwood, but using other herbs or plants could change it a different color. But a quick look around the web yielded several wildly colored examples called Absinthe. So, if it bugs you, only drink green Absinthe and ignore the rest.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-11-29T16:55:16.357", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6410"}} +{ "Id": "6410", "PostTypeId": "2", "ParentId": "6402", "CreationDate": "2016-11-30T11:40:40.567", "Score": "5", "Body": "

Clear Absinthe

\n\n

Absinthe is made much in the same way that many gins are. You take neutral spirits, add botanicals (wormwood and anise), and re-distill. Anything that comes out of the still will be clear. Some absinthes at this point are finished, these will be called blanche (white) or sometime la bleue. The first absinthe available in Val-de-Travers (the birthplace of absinthe) after the ban in Switzerland was lifted was a blanche. That same bottling was the driving force behind making it legal in the United States (interview of lawyer who fought the ban). It can be really good stuff. Any of these can be really easily colored.

\n\n

Green Absinthe

\n\n

Usually absinthe gets a second chance to mingle (macerate) with some herbs after it's sprung from the still, this style is known at verte. This is when it gets it's color, as well as some extra flavor and aroma. It's a more complex flavor. The color that the chlorophyll imparts is dull. If it's neon green there was food coloring added and some of these \"greener\" varieties are actually blanche at heart. Also of note is that sometimes these food colored types add sugar, to make it friendlier to less experienced drinkers (or to hide poor distillation technique as happens with vodka). There is at least one non-green bottling that I know of that is still macerated post distillation, but uses hibiscus which turns it red. These methods of coloration don't make them any less of a true absinthe, they do use wormwood (and equally important, anise).

\n\n

Czech Absinth (without the e)

\n\n

The most common non-green \"absinthe\" is so called Czech-style, also known as Bohemian style. These are not rightly called absinthe and are historically known for very low quality. Instead of distilling the botanicals in the alcohol, they are cold compounded. It's made either by mixing spirits, flavoring oils, and food coloring or by macerating the botanicals without distillation. Be wary of absinthes much over 140 proof, as they are frequently Czech-style. Do be aware that they're called Czech-style because that's where the style originated and where most of this variety still comes from, however the Czech Republic does have good examples of absinthe.

\n", "OwnerUserId": "5974", "LastEditorUserId": "5974", "LastEditDate": "2016-11-30T12:02:11.757", "LastActivityDate": "2016-11-30T12:02:11.757", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6411"}} +{ "Id": "6411", "PostTypeId": "1", "AcceptedAnswerId": "6413", "CreationDate": "2016-12-03T13:55:24.903", "Score": "9", "ViewCount": "145", "Body": "

\"mysterious

\n

I have been wondering what is this wine set element - I can't think of a use to it and Google search showed other wine sets which didn't contain it (sometimes there was bottle opener holder in its place).

\n

Here's a picture of the whole set:

\n

\"enter

\n", "OwnerUserId": "6162", "LastEditorUserId": "6255", "LastEditDate": "2021-08-12T22:34:35.527", "LastActivityDate": "2021-08-12T22:34:35.527", "Title": "What is this wine set element?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6413"}} +{ "Id": "6413", "PostTypeId": "2", "ParentId": "6411", "CreationDate": "2016-12-04T18:07:00.957", "Score": "6", "Body": "

It's a stand to hold your puller on a flat surface so it sits upright.

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2016-12-04T18:15:27.127", "LastActivityDate": "2016-12-04T18:15:27.127", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6414"}} +{ "Id": "6414", "PostTypeId": "1", "AcceptedAnswerId": "6415", "CreationDate": "2016-12-05T09:36:45.883", "Score": "5", "ViewCount": "211", "Body": "

I have a lot of 0% beer at home and I wanna make them 8%-18% alcohol. I've been said that if I add yeast and sugar to 0% beer, it will become alcoholic beer. Now I need proportion of yeast and sugar for 1 Liter beer and the process to make it happen?

\n", "OwnerUserId": "6168", "LastActivityDate": "2016-12-06T17:42:19.310", "Title": "How to brew beer at home from 0% beer, yeast and sugar?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6415"}} +{ "Id": "6415", "PostTypeId": "2", "ParentId": "6414", "CreationDate": "2016-12-05T17:33:38.473", "Score": "3", "Body": "

All Ethanol is \"natural\" in the sense that it comes from fermentation. Neutral spirits are created through distillation to concentrate the alcohol. In theory you can combine sugar, water, yeast to make something that is kind of neutral in flavor, but that will only get you to about 16-20% alcohol. So you would have to dilute the 0% beer with this 16% brew and therefore dilute the flavors of the original beer. Far more effective, would be to buy some vodka and dump that into your beer (Unless you are in a country where you can't buy it, which is what I suspect). Look up \"Sugar Wine\" recipes like this Sugar Wine recipe.

\n", "OwnerUserId": "6111", "LastEditorUserId": "5064", "LastEditDate": "2016-12-06T17:42:19.310", "LastActivityDate": "2016-12-06T17:42:19.310", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6416"}} +{ "Id": "6416", "PostTypeId": "1", "AcceptedAnswerId": "6492", "CreationDate": "2016-12-06T08:13:45.217", "Score": "8", "ViewCount": "293", "Body": "

For a kind of cocktail competition I'm running against friends, I need a cocktail around France theme, my idea is to pair a cocktail with a French cheese.

\n\n

I know that cherries do pair well with bask sheep cheese for example (we're used to eat it with black cherry jam)

\n\n

Would you have a cherry flavored cocktail to advise ? \nOr any other cheese / cocktail association ?

\n\n

Many thanks!

\n", "OwnerUserId": "6171", "LastActivityDate": "2017-01-24T10:24:08.053", "Title": "What cocktail could be paired with French cheese?", "Tags": "recommendations pairing cocktails", "AnswerCount": "6", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6417"}} +{ "Id": "6417", "PostTypeId": "2", "ParentId": "6416", "CreationDate": "2016-12-06T12:49:37.930", "Score": "4", "Body": "

My favorite French cheese is Roquefort and is often served with nuts and honey in France.

\n\n

I would like to recommend an Appletini with Roquefort along with the most authentic French bread you are able to procure in your area. The French love their fruit and fruit flavored food and drinks.

\n\n

Appletini cocktail: Vodka with dashes apple juice and apple liqueur. Serve in a classic martini glass with Roquefort, French bread and garnish with apple slices as garnish.

\n\n

This is one that I have had in France and enjoyed it very much, perhaps you would too.

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-12-06T12:49:37.930", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6418"}} +{ "Id": "6418", "PostTypeId": "1", "CreationDate": "2016-12-08T04:07:34.553", "Score": "7", "ViewCount": "2486", "Body": "

I love St. Germain, and it's become a staple at my house... but it is so damn expensive. I'd like to make a homemade version using elderflower cordial for a fraction of the price.

\n\n

St. Germain lists their ingredients as: fruit Spirit, elderflower, sugar cane.\nWhat type of fruit spirit is it? Pear / lychee?

\n", "OwnerUserId": "6180", "LastActivityDate": "2018-05-29T14:00:09.733", "Title": "What fruit spirit is in St. Germain?", "Tags": "ingredients spirits", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6419"}} +{ "Id": "6419", "PostTypeId": "2", "ParentId": "6416", "CreationDate": "2016-12-08T13:30:48.450", "Score": "3", "Body": "

Please allow me to make a second recommendation for you. This one I have not tried, but I have had the Soup au Vin with strawberries and it was absolutely great. For a twist on this blackberry wine might also go well with it (real natural blackberry wine and not the blackberry flavored ones).

\n\n

Simply pair your favorite champagne with a piece of flavorful Comte and the gentle flavored, bubbly wine will create the perfect compliment to the cheese (fromage).

\n\n

For the cocktail: Make punch by combining one bottle of pink champagne, one bottle of red wine, one 16 oz. can of frozen lemonade and one 16 oz. can of fruit punch. Garnish with fresh strawberries.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2016-12-08T16:01:56.257", "LastActivityDate": "2016-12-08T16:01:56.257", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6420"}} +{ "Id": "6420", "PostTypeId": "2", "ParentId": "6418", "CreationDate": "2016-12-08T18:06:56.510", "Score": "3", "Body": "

I think you are misunderstanding what \"fruit spirits\" are. It is essentially ethanol. Spirits (or ethanol) are derived from something fermenting. This can be sugar, fruit or grain based. Fruit based spirits are things like brandy where wine (from grapes) is distilled down to ethanol. I have a feeling this is grape based spirits. The base isn't all that important since the spirit flavors are pretty neutral.

\n\n

To make this I would get a very neutral vodka or Everclear (if you can) and start mixing in Elderflower Syrup and some sugar and experiment until you like it.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2016-12-08T18:13:03.413", "LastActivityDate": "2016-12-08T18:13:03.413", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6421"}} +{ "Id": "6421", "PostTypeId": "2", "ParentId": "6395", "CreationDate": "2016-12-08T21:07:04.907", "Score": "1", "Body": "

Any beverage that is \"bottle conditioned,\" with active yeast, has the possibility of this happening.

\n\n

In most cases, the yeast will be limited by either -

\n\n
    \n
  1. Fermentable sugars already being depleted (not all sugars are readily fermentable to brewing yeasts)
  2. \n
  3. Alcohol levels (this is the waste product of yeast) reaching levels that are toxic to the strain of yeast, and they either die or go dormant
  4. \n
\n\n

Your typical home brew will go through fermentations so case #1 applies, and then they add just a bit of corn sugar and bottle so just a bit more fermentation occurs to carbonate the beverage in the bottle.

\n\n

Other bottle conditioned brews might do an estimate of how much sugars have been used and how much remain, by measuring the specific gravity of the beer (more dense with sugars, less dense with less sugar and alcohol instead).

\n\n

If their calculations were off, and there was still more sugars that could ferment, then pressure would build beyond what was needed just to carbonate.

\n\n

I had a batch of stout where the yeast culture I used was pretty old, so it was less active than usual. The time when I thought it was done fermenting was actually not accurate because of the less lively activity, and my bottles of stout all started exploding in my basement, and I had to dump the rest of the batch out to save the bottles.

\n\n

I also had a fruit punch recipe that my uncle used for a wedding beverage, using just fruit juice, wine and champagne. He used a much better champagne than the recipe called for, so there was live yeast. When he put the leftovers back into the wine jugs and put them in the fridge, they got very \"lively\", with carbonation, more alcohol content, a bit drier, and one jug shattering from the additional fermentation.

\n", "OwnerUserId": "5976", "LastActivityDate": "2016-12-08T21:07:04.907", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6422"}} +{ "Id": "6422", "PostTypeId": "2", "ParentId": "6418", "CreationDate": "2016-12-09T13:29:32.603", "Score": "6", "Body": "

All I've seen anywhere is that the base is eau-de-vie. Eau-de-vie means different things in different places but, in France (where St. Germain hails from) it basically means any distillate. I'd venture to say, since St. Germain refuses to specify, that it's actually a blend of unaged fruit brandys. If this is the case, it almost certainly includes pear (who's distillate is pretty popular in France).... and if you mix grapes and strawberries (both grown in France) you can come close to something approximating lychee (which I doubt they would ship in). The addition of the elderflower would push the grape/strawberry even closer in that lychee direction. This is all just speculation, a whimsy to kick around over a cocktail.

\n\n

Realistically, I'd pick up a bottle of high quality syrup (Monin is popular), and use that to replace the liqueur. You want to use less in the cocktail as it's sweeter, but it'll bear the brunt of the work. You can add a cheap neutral vodka (like Smirnoff) to thin it out if you like. Don't use water to cut it, it'll change the mouthfeel and water down your cocktail. For further experimentation you can use a combination of pear brandy or schnapps (really anything clear and pear flavored) and vodka, I'd start with two parts vodka to one part pear. You'll want to mix the two because otherwise the pear will likely be too strong. Consider garnishing with an orange or lemon twist to replace the citrus in the St Germain. I wouldn't worry too much about the lychee side of things, it seems any options would run pricey. Yeah, your mix will be lacking something but, no matter what you do it won't be quite be the real McCoy.... let us know how it turns out. Cheers.

\n", "OwnerUserId": "5974", "LastActivityDate": "2016-12-09T13:29:32.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6423"}} +{ "Id": "6423", "PostTypeId": "2", "ParentId": "6416", "CreationDate": "2016-12-09T16:36:44.207", "Score": "3", "Body": "

Since you mention sheep cheese and dark fruit, I'll address that type of pairing.

\n\n

You want a cocktail that reflects the item you pair with the cheese. Start with the Luxardo cherry in a Manhattan (epicurious on Luxardo cherries). Then, think about sweetening up the otherwise stiff-but-smooth Manhattan to better complement the cheese. For example, replace the vermouth with tawny or ruby port; or, replace 0.5 ounces of the whiskey with blackberry brandy.

\n\n

In general, start with a solid principal (e.g., fruit pairing) and an established cocktail with some element of the pairing, then experiment using your palate as a guide. It may take several iterations, but that is the fun, is it not?

\n", "OwnerUserId": "6184", "LastActivityDate": "2016-12-09T16:36:44.207", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6424"}} +{ "Id": "6424", "PostTypeId": "2", "ParentId": "440", "CreationDate": "2016-12-12T20:30:54.303", "Score": "2", "Body": "

Be mindful of the variety of IPA on the US market -- the average New England IPA is a different beast than the average west coast IPA. I'll call out a few excerpts from the serious eats article Andrew Cheong quotes above:

\n\n
\n

IPAs that lean extra-heavily on bitterness can be a bit tricky to match with food, which can make the beer seem astringent.

\n
\n\n

...

\n\n
\n

...IPAs that emphasize hop flavor and aroma over bitterness...I especially like these beers when served with Indian food. Hop flavor melds wonderfully with common Indian spices like tamarind, coriander, and cardamom.

\n
\n\n

...

\n\n
\n

Mexican food mixes light and dark flavors like cilantro and refried beans, lime and roasted chilies. Those combinations make great partners for IPA with its own caramel/citrus combo. Stick with lighter-bodied beers here, since bigger brews can easily overwhelm.

\n
\n\n

My personal experience -- I predominantly drink IPA these days -- is that I haven't had a memorably bad pairing, save for once where an overly sweet cupcake clashed with the bitterness of the IPA. But that was likely an exceptionally high-IBU beer. (I suddenly feel the need to gather more data).

\n", "OwnerUserId": "6184", "LastActivityDate": "2016-12-12T20:30:54.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6425"}} +{ "Id": "6425", "PostTypeId": "2", "ParentId": "6314", "CreationDate": "2016-12-12T21:21:48.330", "Score": "3", "Body": "

Monastic alcohol production goes back a long ways. Probably as old as the Catholic church. In fact, I think that at one time in Europe you had to be part of the church just to produce alcohol.

\n\n

This page has 11 different beer producers, which are known as Trappist monasteries mostly in France and Belgium

\n\n

Here are a list of 24 Benedictine breweries in Germany

\n\n

This page lists many monastic wineries which are mostly in Burgundy and Champagne

\n\n

Remember it was Dom Perignon that \"invented\" Champagne

\n\n

Bénédictine is a liquor made in a Abbey in Normandy

\n\n

The list goes on... search on Benedictine, Trappist, Cistercians will yield a ton of results.

\n\n

So to sum it up, most of these monastic drinks are for sale to the public. That's how they raise money to keep things going, so yes you can buy most of these somewhere in the world.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-12-12T21:21:48.330", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6427"}} +{ "Id": "6427", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2016-12-18T16:07:05.017", "Score": "0", "Body": "

When you visit Bend make Crux Brewing your go to destination it's the Hogwarts of Beermaking in Bend. I would also like to suggest taking a helicopter beer tour with Big Mountain Heli Tours in Bend as well the smell of hops is awesome.

\n", "OwnerUserId": "6200", "LastEditorUserId": "5064", "LastEditDate": "2016-12-19T12:25:09.867", "LastActivityDate": "2016-12-19T12:25:09.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6428"}} +{ "Id": "6428", "PostTypeId": "2", "ParentId": "1070", "CreationDate": "2016-12-19T20:58:49.937", "Score": "0", "Body": "

Check out Fremont Brewing and a cool small place called Flying Bike Co-op brewery, a non-profit member driven brewery.

\n", "OwnerUserId": "6205", "LastActivityDate": "2016-12-19T20:58:49.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6429"}} +{ "Id": "6429", "PostTypeId": "2", "ParentId": "5015", "CreationDate": "2016-12-20T02:41:33.953", "Score": "-3", "Body": "

Irish Whiskey is distilled 3 times. Scotch Whiskey is distilled 2 times. U.S. whisky is distilled once.

\n", "OwnerUserId": "6206", "LastActivityDate": "2016-12-20T02:41:33.953", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6430"}} +{ "Id": "6430", "PostTypeId": "2", "ParentId": "6403", "CreationDate": "2016-12-21T08:43:24.730", "Score": "2", "Body": "

List of ibu's:

\n\n
    \n
  • Stella: 30
  • \n
  • Kronenbourg 1664: 20
  • \n
  • Corona: 10
  • \n
  • Fosters: 12
  • \n
  • Becks: 20
  • \n
  • Heineken: 23
  • \n
  • San Miguel: 12
  • \n
\n\n

The difference in IBU seems to come from the type of beer, Heineken en Becks are quite similar european lagers with the same ingredients(barly, yeast water and hops) while Corona uses corn and rice with much les hops.

\n\n

Grohlier already gave a good answer for the second question.

\n", "OwnerUserId": "6210", "LastActivityDate": "2016-12-21T08:43:24.730", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6431"}} +{ "Id": "6431", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2016-12-21T11:18:24.210", "Score": "2", "Body": "

Commonly known amongst bartenders, a remedy for curing the hiccups is to eat a lemon wedge doused with bitters. (In case anyone is wondering... don't eat the rind. Bleh.) Traditionally Angostura bitters are used, although it's possible that Angostura's use is due to availability, for a long time it was the only type of bitters most bars carried. A caveat though, the lemon trick is only recognized for curing hiccups induced by drinking alcohol. I say it's still worth a try, no matter the cause of the hiccups. If the flavor sounds unappealing you can put granulated sugar on the lemon in addition to the bitters. Sugar has a hidden benefit too, it's a known hiccup remedy when taken by itself... and not just the ethanol induced ones.

\n", "OwnerUserId": "5974", "LastActivityDate": "2016-12-21T11:18:24.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6432"}} +{ "Id": "6432", "PostTypeId": "1", "CreationDate": "2016-12-21T13:24:18.277", "Score": "7", "ViewCount": "523", "Body": "

Most places celebrate the Feast of the Epiphany on January 6.

\n\n

Are there any local, traditional drinks that exist that people have as a way celebrating this feast in a local and traditional manner?

\n\n

Update: I am limiting this question to wines.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5847", "LastEditDate": "2017-01-03T06:01:53.897", "LastActivityDate": "2021-04-01T08:01:42.240", "Title": "Traditional drinks for celebrating the Feast of the Epiphany?", "Tags": "history local drinking wine holidays", "AnswerCount": "2", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6434"}} +{ "Id": "6434", "PostTypeId": "1", "AcceptedAnswerId": "6436", "CreationDate": "2016-12-21T20:59:42.727", "Score": "10", "ViewCount": "136", "Body": "

Something I've recognized in the past year is that popular Asian whiskies exist. And yet, I've never purchased whisky from Asia, usually only picking up bottles out of Canada, the U.S. or Britain.

\n\n

So I wonder, what is the whisky market like across Asia, what styles of whisky are they producing, and what are some of the more popular distilleries producing medium to high quality product?

\n", "OwnerUserId": "938", "LastActivityDate": "2016-12-23T18:22:16.360", "Title": "What are the predominant styles of Whisky coming out of Asia?", "Tags": "whiskey", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6435"}} +{ "Id": "6435", "PostTypeId": "2", "ParentId": "6416", "CreationDate": "2016-12-22T16:40:57.910", "Score": "2", "Body": "

Manhattan with Brie.
\nDirty Martini with Brie.\nsounds delish.

\n", "OwnerUserId": "5889", "LastActivityDate": "2016-12-22T16:40:57.910", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6436"}} +{ "Id": "6436", "PostTypeId": "2", "ParentId": "6434", "CreationDate": "2016-12-22T18:08:48.563", "Score": "5", "Body": "

Suntory and Kavalan whiskey have really put Asian Whiskey on \"the map.\" The Yamazaki Single Malt Sherry Cask, by Suntory even won Jim Murray's Whiskey of the Year in 2015.

\n\n

The styles are the same as other distiller's, though I am sure there are a few exceptions. Nikka Coffee Grain Whiskey comes to mind. The difference - it seems - is in the craftsmanship. Whatever the Asian distillers are doing... people agree they are doing well.

\n\n

As a Yamazaki 12 owner - I highly recommend you purchase a bottle. Everyone I've ever let try it (I don't tell people when I hand it to them to avoid the \"oh I heard this is great so let me rave about it\" effect) absolutely raves about it. Even my wife, who normally hates the smell of my spirits, will sip on this neat. If the price tag scares you away, find a friend willing to share a sip or two.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2016-12-23T18:22:16.360", "LastActivityDate": "2016-12-23T18:22:16.360", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6438"}} +{ "Id": "6438", "PostTypeId": "1", "AcceptedAnswerId": "6441", "CreationDate": "2016-12-23T00:04:50.090", "Score": "4", "ViewCount": "89", "Body": "

I bought a bottle of Raventos i Blanc L'Hereu. Here is the link to official web site: Raventos i blanc.

\n\n

I am unsure whether it is Cava or just regular sparkling wine? I know, Spain has strict laws, and it defines conditions to wine manufactures. I don't see any \"Cava\" word on official web site, and even on the label of the bottle. But there are many photos in the web with older vintage (for example 2008 or 2010) and its label has \"Cava\". I am confused. Does this mean, this manufacturer cannot label his wines with \"Cava\" anymore?

\n", "OwnerUserId": "6217", "LastEditorUserId": "5064", "LastEditDate": "2016-12-23T13:11:18.260", "LastActivityDate": "2016-12-23T17:25:14.250", "Title": "Sparkling wine from Spain, is it Cava or not?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6439"}} +{ "Id": "6439", "PostTypeId": "2", "ParentId": "589", "CreationDate": "2016-12-23T03:04:34.143", "Score": "5", "Body": "

In short, it's because of taxation.

\n\n

In the Commonwealth of Australia's Parliamentary Debates of 1904 (p.8534), The Honourable Chris Watson (who went on to become the 3rd Prime Minister) made a statement about the brewers of Sydney strongly objecting to a proposal for an excise duty on beer. The sentiment amongst Sydney's brewers was that the additional cost would be difficult to pass on to the consumer, and in fact they had thus far failed to do so. In response The Honourable Alexander Poynton, said that the tax had successfully been passed from brewers to consumers in South Australia by making the glasses smaller.

\n\n

For the record, The Honourable Chris Watson expressed sadness at the notion of smaller glasses.

\n", "OwnerUserId": "5974", "LastActivityDate": "2016-12-23T03:04:34.143", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6440"}} +{ "Id": "6440", "PostTypeId": "1", "AcceptedAnswerId": "6447", "CreationDate": "2016-12-23T13:28:40.947", "Score": "7", "ViewCount": "156", "Body": "

Does anyone know of any bartenders inventing their own inventive Christmas season drinks that are sold locally in their pub or bar?

\n\n

I am looking for examples in which the bartender himself is the originator of the drink in question.

\n\n

If yes, could one explain what the drink is and if it is to symbolizes anything related to the Christmas season.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-01-02T17:43:48.597", "Title": "Do Bartenders ever make their own inventive drinks for the Christmas holidays in bars?", "Tags": "drinking bartending", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6441"}} +{ "Id": "6441", "PostTypeId": "2", "ParentId": "6438", "CreationDate": "2016-12-23T17:25:14.250", "Score": "2", "Body": "

I dug into their website and they are moving away from the Cava distinction because it is associated with cheap sparkling wine and they want to go higher end. They could call it Cava but choose not too. I would put this wine at the same level as a nice Champagne. Looks like a really nice bottle of wine!

\n\n

If you dig further on their website, you'll read this:

\n\n
\n

In 1888, Manuel Raventós Doménech created a sparkling wine in Penedés with three native varieties: Xarel•lo, Macabeu and Parellada.\n When we created CAVA in 1872, we dreamed of a World Class sparkling wine. This is why Josep Raventós Fatjó decided to innovate with Xarel.lo from the same vineyard where de la Finca comes from to this day. He understood the great potential of this grape, the mineral structure of our oldest soils and, most importantly, that to become World Class you have to be AUTHENTIC.\n After 150 years CAVA has become a volume-oriented DO lacking geographical distinction in terms of climate and terroir; it also suffers from low viticultural standards.... For this reason, in November 2012 we decided to leave the CAVA DO.\n We believe that we need to create a LOCAL, VITICULTURALLYORIENTED DO with strict controls in order to showcase our wines and help them to be better understood worldwide.

\n
\n", "OwnerUserId": "6111", "LastActivityDate": "2016-12-23T17:25:14.250", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6442"}} +{ "Id": "6442", "PostTypeId": "2", "ParentId": "6440", "CreationDate": "2016-12-23T17:40:58.673", "Score": "1", "Body": "

The short answer is probably not. Even if they thought it was original, chances are it has been done. Exceptions might include a \"twist\" on some mixed drink using a local product/ingredient rather than the nationally attainable and normally used ingredient. (Think local brewer's porter/stout to replace Guinness in a Black & Tan)

\n\n

People can be quite creative, however. Especially if you're trying to clear some aging/less-popular liquors/beers/ingredients off your shelves and out of your inventory. Because it is Christmas, they will probably name it something Christmas-y and say \"limited time only.\" While the same drink 3 months later might have a St Patrick's Day (in the US) theme.

\n", "OwnerUserId": "22", "LastActivityDate": "2016-12-23T17:40:58.673", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6443"}} +{ "Id": "6443", "PostTypeId": "1", "AcceptedAnswerId": "6955", "CreationDate": "2016-12-23T22:26:23.090", "Score": "7", "ViewCount": "507", "Body": "

Assume I know how to properly ferment grain and distill it into whisky, and that I have all the necessary equipment. If I want a \"sour mash\" whisky, how would I go about it?

\n\n

From a bit of research, it seems that the term \"sour mash\" simply describes some sort of process where the distiller saves a bit of the old mash (maybe he/she \"cultures\" it somehow, to grow enough live yeast?) and adds it to a new batch to facilitate fermentation?

\n\n

Is there anyone familiar with the process who could describe how to apply it to an existing hypothetical small-batch whisky making operation?

\n", "OwnerUserId": "6220", "LastActivityDate": "2017-07-14T01:41:53.763", "Title": "Sour Mash Whiskey", "Tags": "whiskey distillation", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6444"}} +{ "Id": "6444", "PostTypeId": "5", "CreationDate": "2016-12-23T22:37:11.800", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2016-12-23T22:37:11.800", "LastActivityDate": "2016-12-23T22:37:11.800", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6445"}} +{ "Id": "6445", "PostTypeId": "4", "CreationDate": "2016-12-23T22:37:11.800", "Score": "0", "Body": "The separation of a liquid mixture, by boiling point, into its distinct constituent components. Normally accomplished by controlled boiling and condensation in a still. ", "OwnerUserId": "6220", "LastEditorUserId": "6220", "LastEditDate": "2016-12-29T00:59:37.103", "LastActivityDate": "2016-12-29T00:59:37.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6446"}} +{ "Id": "6446", "PostTypeId": "2", "ParentId": "5168", "CreationDate": "2016-12-23T23:15:03.487", "Score": "3", "Body": "

For small-batch home distillation, hypothetically, a large (24 qt.) stainless steel stockpot makes an economical and effective pot still for 5 gal. batches. You will need a large stainless salad bowl of equal diameter, which when inverted makes an ideal lid.

\n\n

A hole in the top center of the inverted salad bowl for installation of a threaded boss, for attachment of copper tubing which will be coiled in a bucket of ice water to serve as a condenser. The seal between pot and lid is best done with a split length of silicone tubing, using bread dough to patch and seal leaks during the boil (you don't want leaks, it wastes product and could be dangerous). The lid gets clamped on during the boil with squeexe clamps, c-clamps, locking pliers, etc.

\n\n

A small hole in the lid for insertion of a thermometer, also sealed with bread dough, allows close monitoring of overhead vapor temperature. The overhead temperature indicates the composition of the vapor thus the composition of the condensate/distillate as well.

\n\n

Of course, this is for distillation of water (which is legal to do at home) but do it outside on a camping stove and keep a fire extinguisher handy nonetheless.

\n", "OwnerUserId": "6220", "LastActivityDate": "2016-12-23T23:15:03.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6447"}} +{ "Id": "6447", "PostTypeId": "2", "ParentId": "6440", "CreationDate": "2016-12-24T00:43:23.943", "Score": "3", "Body": "

Do bartenders try to do this? Yes.

\n\n

Do they advertise it as such? Yes.

\n\n

Is it truly original - as in nobody, anywhere, anytime, has ever made that drink before? Maybe.

\n\n

I used to run a bar, and my bartenders would experiment with these things for various holidays and special events. Customers want to feel special - they know you're not making the alcoholic equivalent of the Mona Lisa, but having a special drink at your local bar is fun and appealing to them.

\n\n

Once you get beyond the standard cocktails, bartenders (and bars) try to distinguish themselves with variations and twists (pun intended) to stand out in the marketplace.

\n\n

For example:

\n\n

Combine 1 part each of cinnamon-flavored (some rum) and mint-flavored (some vodka) with 2 parts of (some cream liqueur), shake well with ice, serve it in a martini glass that's been rimmed with (some flavored sugar), stick a candy-cane in it, and dust with (some spice). Call it an \"Old Saint Nick\" or a \"Naughty Rudolph\".

\n\n

Is the Old Saint Nick in XYZ Bar in Birmingham, Alabama, USA the same as the Old Saint Nick in ABC Pub in Birmingham, England? Probably not. Does anyone care? No.

\n", "OwnerUserId": "5817", "LastActivityDate": "2016-12-24T00:43:23.943", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6449"}} +{ "Id": "6449", "PostTypeId": "1", "AcceptedAnswerId": "6453", "CreationDate": "2016-12-25T04:33:24.027", "Score": "8", "ViewCount": "4074", "Body": "

Can whiskey be used to purify iffy water while out in the outdoors?

\n\n

We have all seen movies were someone uses whiskey to clean those gunshot wounds and more. But I would like to know if one could use whiskey to purify water while out in the outdoors. Could it kill germs like giardia?

\n", "OwnerUserId": "5064", "LastActivityDate": "2016-12-27T15:27:57.013", "Title": "Can whiskey be used to purify iffy water while out in the outdoors?", "Tags": "whiskey", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6450"}} +{ "Id": "6450", "PostTypeId": "2", "ParentId": "6449", "CreationDate": "2016-12-25T13:54:54.417", "Score": "0", "Body": "

Yes and no. If you use it at 100% strength it might be a good sterilizer but just a small amount in water isn't going to do much.

\n\n

Guidelines for Alcohol Sterilization

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-12-25T13:54:54.417", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6451"}} +{ "Id": "6451", "PostTypeId": "1", "AcceptedAnswerId": "6455", "CreationDate": "2016-12-26T15:40:14.523", "Score": "8", "ViewCount": "126", "Body": "

From what I googled I didn't get an answer as to why Eggnog is considered a holiday drink. Why is it associated with Christmas? Is it still a holiday drink today?

\n", "OwnerUserId": "5889", "LastEditorUserId": "43", "LastEditDate": "2016-12-26T19:15:16.997", "LastActivityDate": "2016-12-28T19:46:43.633", "Title": "Eggnog: is it really a holiday drink?", "Tags": "holidays", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6452"}} +{ "Id": "6452", "PostTypeId": "2", "ParentId": "6451", "CreationDate": "2016-12-26T19:26:07.023", "Score": "5", "Body": "

Eggnog appears in grocery stores in (at least) the US from late November through early January. Whether it's specifically a holiday drink or more generally a seasonal one is unclear.

\n\n

According to the Wikipedia page, eggnog gained its holiday association in the 18th century in the US:

\n\n
\n

The drink crossed the Atlantic to the British colonies during the 18th century. Since brandy and wine were heavily taxed, rum from the Triangular Trade with the Caribbean was a cost-effective substitute.[7] The inexpensive liquor, coupled with plentiful farm and dairy products, helped the drink become very popular in America.[13] When the supply of rum to the newly founded United States was reduced as a consequence of the American Revolutionary War, Americans turned to domestic whiskey, and eventually bourbon in particular, as a substitute.[7] Eggnog \"became tied to the holidays\" when it was adopted in the United States in the 1700s.[11] Records show that the first US President, George Washington, \"...served an eggnog-like drink to visitors\" which included \"...rye whiskey, rum, and sherry.\"[14]

\n
\n\n

The same page notes that a hot version of the drink, Tom and Jerry, is mentioned in two 20th-century Christmas-themed works of fiction, Damon Runyon's 1932 short story \"Dancing Dan's Christmas\" and Yogi Yorgesson's 1949 novelty song \"I Yust Go Nuts at Christmas\".

\n\n

There's nothing in the ingredients that is especially available during a particular time of year (unlike, say, apple cider), and yet it is not routinely available the rest of the year. I suspect this is due to combination of (a) a cultural association between eggnog and winter holidays and (b) the perception of a limited market for something with a limited shelf-life -- suppliers have decided that it won't be profitable year-round and instead promote it during a time of year that already has some traditions and anyway is more likely to have parties.

\n\n

That said, you can make your own and enjoy it in June if you like.

\n", "OwnerUserId": "43", "LastActivityDate": "2016-12-26T19:26:07.023", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6453"}} +{ "Id": "6453", "PostTypeId": "2", "ParentId": "6449", "CreationDate": "2016-12-27T15:27:57.013", "Score": "3", "Body": "

There have been studies on the effects of whiskey as a disinfectant, and it works reasonably well as so many old western stories of a splash of whisky on a bullet wound have attested, even if they probably only fictional.

\n\n

However, as Steve indicated in his answer, as a water purifier, it isn't going to do much. The ethanol concentrations that you need in order to kill bacteria roughly bottom at what you get in whiskey itself. Drop below 30% or so, and I haven't seen any study that shows any effectiveness as those levels.

\n\n

So, while you could potentially cut your whiskey with a little creek water, and after an hour or so have something that was slightly less potent and fairly safe to drink, it won't give you much in the way of what we might generally think of as purified water. For that, you'll need to stick to water purification tablets or a good filter.

\n", "OwnerUserId": "37", "LastActivityDate": "2016-12-27T15:27:57.013", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6455"}} +{ "Id": "6455", "PostTypeId": "2", "ParentId": "6451", "CreationDate": "2016-12-28T19:46:43.633", "Score": "5", "Body": "

According to The Christmas Encyclopedia it may have originated from a posset, a hot drink with eggs, milk, and some form of alcohol (more on sack posset here).

\n

Alton Brown agrees:

\n
\n

The word nog was an Old English term for ale, and a noggin was the cup from whence it was drunk.

\n

Although most Americans think of eggnog as something they get out of a milk carton during the two-week period leading up to Christmas, eggnog descends from sack posset, a strong, thick English beverage built upon eggs, milk and either a fortified wine (like Madeira) or ale. It was a highly alcoholic beverage, often served so thick it could be scooped. It was also very much an upper-class tipple, as rich folks were usually the only ones who could procure the proper ingredients.

\n
\n

My own two cents: Would you want an egg and dairy drink--hot or cold--in warm weather? Also, the tendency to get colds in winter may have meant it was made more often during cold months; and, the inclusion of mace and nutmeg is a natural fit for winter-spiced foods.

\n", "OwnerUserId": "6184", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2016-12-28T19:46:43.633", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6456"}} +{ "Id": "6456", "PostTypeId": "2", "ParentId": "5168", "CreationDate": "2016-12-28T19:53:41.977", "Score": "3", "Body": "

Speaking of safety: don't forget about methanol:

\n\n
\n

A simple (but effective) rule of thumb for this is to throw away the first 50 mL you collect (per 20 L mash used) for a reflux still. If using a potstill, make it more like 100-200 mL. Do this, and you have removed all the hazardous foreshots, including the methanol.

\n
\n", "OwnerUserId": "6184", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T00:51:55.277", "LastActivityDate": "2019-08-28T00:51:55.277", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6457"}} +{ "Id": "6457", "PostTypeId": "1", "CreationDate": "2016-12-28T21:29:11.703", "Score": "5", "ViewCount": "333", "Body": "

Is Victoria Bitter (VB) available in the U.S.? I have not been able to find it anywhere. It was fairly popular in Australia when I was there 15-plus years ago.

\n", "OwnerUserId": "6238", "LastEditorUserId": "5078", "LastEditDate": "2017-01-04T08:10:54.157", "LastActivityDate": "2017-01-04T08:10:54.157", "Title": "Availability of Victoria Bitter", "Tags": "retail-availiability", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6458"}} +{ "Id": "6458", "PostTypeId": "1", "AcceptedAnswerId": "6459", "CreationDate": "2016-12-29T15:07:36.527", "Score": "7", "ViewCount": "2117", "Body": "

I read several times in media about people who were harmed or even killed by drinking adulterated schnaps.

\n\n

What does it mean to adulterate e.g. schnaps? Why is it so dangerous? And what is the \"benefit\" of doing this?

\n", "OwnerUserId": "6243", "LastEditorUserId": "6243", "LastEditDate": "2017-02-14T09:39:05.407", "LastActivityDate": "2017-02-14T09:39:05.407", "Title": "What means to adulterate and why is it so dangerous?", "Tags": "drinking", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6459"}} +{ "Id": "6459", "PostTypeId": "2", "ParentId": "6458", "CreationDate": "2016-12-29T17:22:57.513", "Score": "6", "Body": "

To adulterate means to dilute or debase a substance. So adulterated schnapps means schnapps with something added in. Much like cocaine cut with flour, that something need not be a similar substance, but is likely to be something cheap.

\n\n

It gets worse when this adulteration is \"off the books\", because it means that a company can pass one product with the relevant consumer authority, then turn around and add whatever they want into it. That stuff might end up poisonous.

\n\n

As you can see, it's rightly considered a crime:

\n\n

\"enter

\n", "OwnerUserId": "5328", "LastActivityDate": "2016-12-29T17:22:57.513", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6460"}} +{ "Id": "6460", "PostTypeId": "2", "ParentId": "6458", "CreationDate": "2016-12-29T17:53:50.763", "Score": "1", "Body": "

The word is ADULTERATE. Which means to change, alter or transform in some way. This is not so much a problem in the USA, but many countries unscrupulous alcohol sellers will \"cut\" the ethanol with methanol or water instead. Methanol, while an alcohol, is poisonous to humans (well, I guess ethanol is too in high enough quantities). A quick search found that this is a big problem in India and Russia. The other most common way is to dilute the drink with water. The benefit of doing is this is using something that is cheaper to produce than ethanol and and stretch out your supply of legitimate alcohol and make more money.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-12-29T17:53:50.763", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6461"}} +{ "Id": "6461", "PostTypeId": "2", "ParentId": "6457", "CreationDate": "2016-12-30T19:53:06.267", "Score": "3", "Body": "

I did a quick search and it seems that the brewery's distribution channel to North America dried up years ago. So, no you can't get it from here. But from what I am reading on Beer Advocate, you should just avoid it anyways since it has an \"Awful\" rating.

\n", "OwnerUserId": "6111", "LastActivityDate": "2016-12-30T19:53:06.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6462"}} +{ "Id": "6462", "PostTypeId": "1", "CreationDate": "2016-12-30T20:50:44.963", "Score": "5", "ViewCount": "5906", "Body": "

Okay so I purchased 2 six packs of bottles each bottle containing different amounts of this whitish colored sediment at the bottom of the bottle all of which aren't expired, if shaked well will dissappear. Anyone know what it is and is it safe to drink?\"enter

\n", "OwnerUserId": "6245", "LastActivityDate": "2017-01-02T12:29:18.933", "Title": "What's this white floating sediment in my bottles of twisted tea?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6464"}} +{ "Id": "6464", "PostTypeId": "1", "AcceptedAnswerId": "6465", "CreationDate": "2017-01-01T21:44:12.293", "Score": "7", "ViewCount": "485", "Body": "

Absinthe has been said to cause insanity, permanent brain-damage and/or hallucinatory state.

\n\n

Is this accurate?

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-01-06T12:06:16.543", "Title": "Is the saying true that drinking absinthe drives a person insane?", "Tags": "history drinking absinthe", "AnswerCount": "2", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6465"}} +{ "Id": "6465", "PostTypeId": "2", "ParentId": "6464", "CreationDate": "2017-01-01T21:44:12.293", "Score": "5", "Body": "

The answer is no; drinking traditionally prepared absinthe causes no more brain-damge or insanity than any other alcoholic beverage...

\n\n
\n

...absinthe languished in exile for nearly a century, a casualty of bad publicity, special-interest lobbies and mythology. That allowed absinthe to become something of an urban legend, something to talk about in whispers, with wide eyes. Much is said about absinthe; very little of that is true.

\n \n

So let’s clear up a few misconceptions. Absinthe does not make you hallucinate. It is not wildly addictive. It will not cause you to lop off your ear, unless (possibly, on the off-chance) you are a deeply disturbed painter racked by poverty, heartbreak and mental illness. Rather, absinthe is a good drink.

\n \n

Degas’ famous 1876 painting, L’Absinthe, is a portrait of overindulgence and isolation: a woman slumped over her cafe table in front of an absinthe glass, face gone slack. In 1890, the book “Wormwood: A Drama of Paris” vilified absinthe, portraying the downward spiral that inevitably follows a drink. (Think “Reefer Madness” for fin-de-siècle Paris.) In 1905, a disturbed Swiss man, drunk on absinthe, murdered his entire family. Absinthe didn’t make him do it — any more than a bipolar who hacks up his neighbor after drinking Jamesons has been deranged by Irish whiskey.

\n \n

Environmental chemist T.A. Breaux, who has studied absinthe for 14 years, explains what led to the drink’s decline. “As absinthe became immensely popular, there was a drive to make it cheaper,” he says. “In urban areas, where they didn’t have a lot of space for distillation equipment, people made absinthes from cheap industrial alcohol, using chemicals that would induce the green color. There were people who had an interest in capitalizing on this, and they failed to make a distinction between these cheaper drinks and real absinthe. It’s a little bit like using Mad Dog as a reason to ban Bordeaux.” http://www.salon.com/2007/12/21/absinthe/

\n
\n\n

Also;

\n\n

https://youtu.be/A_FQ_glhMxw

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-01-01T21:44:12.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6466"}} +{ "Id": "6466", "PostTypeId": "2", "ParentId": "6462", "CreationDate": "2017-01-02T04:06:54.323", "Score": "3", "Body": "

If the bottles have not been tampered with, the brew is perfectly safe to drink. Sediment can be formed by several factors including ingredients, filtering, temperature, and conditioning/storage...

\n\n
\n

What are the ingredients in Twisted Tea?\n Our delicious Twisted Tea products include a malt base made from beer, tea, natural flavors, and sugar. - Twisted Tea FAQs

\n \n

After taking the firkin out of “cold storage” (should never be colder then 45 degrees F if for any appreciable length of time), you then want to bring the cask up to cellar/serving temperature of 51 – 56 degrees F. At this rising temperature, the finings are most effective in attracting yeast and together they SLOWLY sink to the bottom forming a bed of sediment. Pic(k) of the Week: Sam Adams fenced-in

\n \n

Blue Hills King's Kolsch is an imperial version of the style, packing an ABV of 7.25 percent. The beer pours a dark chestnut into a tulip glass. It's unfiltered; chunks of sediment swirl and drift slowly to the bottom. Baked bread and faint flowers form the nose. New Paulaner Bar at TD Garden; new beer offerings in the arena

\n
\n\n

You likely noticed this when you pulled a cold one out of the fridge. You are more than likely seeing some sort of combination of yeast, tea, and sugar which is corroborated by the solubility....

\n", "OwnerUserId": "5847", "LastEditorUserId": "5064", "LastEditDate": "2017-01-02T12:29:18.933", "LastActivityDate": "2017-01-02T12:29:18.933", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6467"}} +{ "Id": "6467", "PostTypeId": "2", "ParentId": "6440", "CreationDate": "2017-01-02T17:43:48.597", "Score": "1", "Body": "

I just heard about this pop-up bar in DC. It's called Miracle on 7th Street and it's only open during the holiday season. Here's the menu.

\n\n

One of their most interesting, and biggest selling, concoctions is the cookie-dough cocktail (w/ an incredibly terrible name ;)

\n\n
\n

\"SNOW ANGELS, ICE SKATING, COOKIE DOUGH & SNUGGLES\"

\n \n

Butter-Washed Vodka, Don Ciccio & Figli Coffee Liqueur, Crème de Cacao, Cookie Dough-Infused Frangelico, Milk, Salt, Cookie Dough Bites

\n
\n", "OwnerUserId": "5847", "LastActivityDate": "2017-01-02T17:43:48.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6468"}} +{ "Id": "6468", "PostTypeId": "1", "CreationDate": "2017-01-02T18:17:58.580", "Score": "5", "ViewCount": "1998", "Body": "

What are the National Drinking Holidays? And, for what respective country? i.e.: Oktoberfest for Germany

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-08-13T12:34:48.520", "Title": "Are there National Drinking Holidays?", "Tags": "drinking holidays", "AnswerCount": "5", "CommentCount": "10", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6469"}} +{ "Id": "6469", "PostTypeId": "2", "ParentId": "6468", "CreationDate": "2017-01-02T18:17:58.580", "Score": "4", "Body": "

In the United States, there are several Drinking Holidays. Here's a list from this site: (I'm highlighting some of my favorites :)

\n\n
\n

January

\n\n
National Hot Tea Month\nJanuary 1: National Bloody Mary Day\nJanuary 11: National Hot Toddy Day\nJanuary 17: National Hot Buttered Rum Day\nJanuary 17:  **National Bootlegger’s Day**\nJanuary 18: National Gourmet Coffee Day\nJanuary 24: Beer Can Appreciation Day\nJanuary 25: National Irish Coffee Day\nJanuary 31: National Hot Chocolate Day, Brandy Alexander Day\n
\n \n

February

\n\n
3rd Weekend of February: National Margarita Weekend\nFebruary 17 : National Cafe’ Au Lait Day\nFebruary 18: National “Drink Wine” Day\nFebruary 22: National Margarita Day\nFebruary 27: National Kahlua Day\n
\n \n

March

\n\n
National Caffeine Awareness Month\nMarch 3:  National Mulled Wine Day\nMarch 17: St. Patrick’s Day\nMarch 20: Bock Beer Day\nMarch 27: National World Whisky Day\n
\n \n

April

\n\n
**April 6: New Beer’s Eve\nApril 7: National Beer Day**\nApril 14: National Rum Day\nApril 17: World Malbec Day\nApril 19: National Amaretto Day\n
\n \n

May

\n\n
First Saturday in May: National Homebrew Day\nThe 3rd Monday of May and the rest of the week: American Craft Beer Week\nMay 4: National Homebrew Day, National Orange Juice Day\nMay 5: Cinco de Mayo\nMay 6:  Beverage Day\nMay 8: Have a Coke Day\nMay 13: World Cocktail Day\nMay 16: National Mimosa Day\nMay 21: World Whisky Day\nMay 25: National Wine Day\nMay 30: National Mint Julep Day\n
\n \n

June

\n\n
National Iced Tea Month\nJune 1-7: Negroni Week\nJune 4: Cognac Day\nJune 5: Moonshine Day\nJune 6: **National Give a Bum a Drink Day**\nJune 10: National Iced-Tea Day\nJune 11: National Gin Day\nJune 11: National Black Cow Day\nJune 14: Bourbon Day\nJune 19: National Martini Day\nJune 20: National Vanilla Milkshake Day\nJune 27: National Orange Blossom Day\nJune 30: National Mai Tai Day\n
\n \n

July

\n\n
National Pickle Month\nJuly 2 : National Anisette Day\nJuly 10: Pina Colada Day\nJuly 11: National Mojito Day\nJuly 14: National Grand Marnier Day\nJuly 19: National Daiquiri Day\nJuly 24: National Tequila Day\nJuly 25: National Wine and Cheese Day\nJuly 27: National Scotch Day\n
\n \n

August

\n\n
August 5: **International Beer Day**\nAugust 6: National Root Beer Float Day\nAugust 7: National IPA Day, International Beer Day\nAugust 16: National Rum Day\nAugust 20: National Lemonade Day\nAugust 21: National Sweet Tea Day\nAugust 22: National Spumoni Day\nAugust 25: National Whiskey Sour Day\nAugust 28: National Red Wine Day\nAugust 29: Lemon Juice Day\n
\n \n

September

\n\n
September 7: **National Beer Lover’s Day**\nSeptember 12 : National Chocolate Milkshake Day\nSeptember 15: National Creme de Menthe Day\nSeptember 20 : National Punch Day / Rum Punch Day\nSeptember 27: National Chocolate Milk Day\nSeptember 28: **National Drink a Beer Day**\nSeptember 29: National Coffee Day\nSeptember 29: National Mocha Day\nSeptember 30: National Mulled Cider Day\n
\n \n

October

\n\n
National Applejack Month\nSecond Weekend in October: National Kegger Weekend\nOctober 1: National Pumpkin Spice Day\nOctober 4: National Vodka Day\nOctober 7: National Frappe Day\nOctober 15: National Red Wine Day\nOctober 16: National Liqueur Day\nOctober 19: National Gin and Tonic Day\nOctober 20 : National Brandied Fruit Day\nOctober 21: National Mezcal Day\nOctober 27: **American Beer Day**\n
\n \n

November

\n\n
November 7: World Gin Day\nNovember 8 : National Cappuccino Day\nNovember 8: National Harvey Wallbanger Day\nNovember 12: National Happy Hour Day\nNovember 14: National Pickle ‘Appreciation’ Day\nNovember 18: National Apple Cider Day\nNovember 19: National Macchiato Day\nNovember 20: National Beaujolais Day\nNovember 23: National Espresso Day\n
\n \n

December

\n\n
December 3: National Peppermint Latte Day\nDecember 3: National Rhubarb Vodka Day\nDecember 5 : **Repeal of Prohibition Day**\nDecember 10: National Lager Day\nDecember 12: National Cocoa Day\nDecember 13: National Screwdriver Day\nDecember 20: National Sangria Day\nDecember 24: National Egg Nog Day\nDecember 31: National Champagne Day\n
\n
\n\n

Here is another calender and here's another.

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-01-02T18:17:58.580", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6471"}} +{ "Id": "6471", "PostTypeId": "2", "ParentId": "6432", "CreationDate": "2017-01-03T03:04:07.093", "Score": "3", "Body": "

According to the wiki that you linked:

\n\n
\n

The earliest reference to Epiphany as a Christian feast was in A.D. 361, by Ammianus Marcellinus.

\n
\n\n

So, it would be pertinent to drink wines made from Italian grapes since the feast was held within the time of the Roman Empire.

\n\n

More particularly, you might pick a grape variety from a list of ancient grapes from which the Romans, themselves, would have made wine.

\n\n

Not that it's entirely pertinent to the Feast of Epiphany, but it is apt to say here that, you might purchase your wine here: https://www.epiphanywineco.com/ :)

\n\n

As far as my quick and limited research has gone, there really isn't an 'official' wine of the feast - not really a Christian concept to have \"official alcoholic beverages,\" imho.

\n\n

As far as local traditions, the wiki you linked covers the traditions of the feast internationally but again, alcohol consumption doesn't really ever seem to be the focus...

\n\n

Also, let's not forget that the Roman's would have had beer at this feast...

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-01-03T03:04:07.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6472"}} +{ "Id": "6472", "PostTypeId": "2", "ParentId": "6468", "CreationDate": "2017-01-03T23:43:42.363", "Score": "2", "Body": "

Now there is the Newfoundland thing. You know Tibb's Eve (sometime called St Tibb's Eve) which occurs in Newfoundland and Labrador every December 23, on the eve of Christmas Eve.

\n\n
\n

Tibb’s Eve. Tipp’s Eve. Tip’s Eve. Even Tipsy Eve. It doesn’t matter what you call it – it’s December 23rd in Newfoundland and it’s time to have a drink.

\n \n

Every year on the eve of Christmas Eve people in Newfoundland get the party started. Family and friends are home from the mainland and that calls for a tipple or two. Downtown is on wheels and it’s usually a good time to catch a show. All the best bands have gigs on the go. But how did this yearly party night begin?

\n \n

In the lead up to the holidays, Advent is a sober, religious time of year. It’s all about prepping and waiting for the celebration. Denying yourself so that you can really give’r when the big day arrives. By the time Christmas actually rolls around, the good people of Newfoundland are jonesing for a drink. It used to be that they would wait until Christmas Day to imbibe but sometime in the mid-20th century people had had enough and made up the holiday of Tibb’s Eve as an excuse to crack open the bottle two days early.

\n \n

Why Tibb’s Eve?

\n \n

Why Tibb? The word is archaic slang for a promiscuous woman. Tibb was often used as the name of a loose-moraled woman in 17th century English plays – she was often the comic relief. Adults could refer to Saint Tibb, knowing it would go over the heads of kids, who thought she was a real saint. Tibb’s Eve: A Newfoundland Thing

\n
\n\n

Here is an other interesting article on Tibb's Eve: The origins of Tibb's Eve

\n\n

Merry Christmas everyone!

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-01-03T23:43:42.363", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6473"}} +{ "Id": "6473", "PostTypeId": "2", "ParentId": "6464", "CreationDate": "2017-01-06T12:06:16.543", "Score": "2", "Body": "

No, that's may be true if you prepare absinthe the wrong way, because it has Tujone. Absinthe may be dangerous if badly prepared, however today's laws are really strict (in UE at least) and you won't find \"home-made\" (that may be dangerous) absinthe sold anywhere.

\n\n

Personally I drink it sometimes with friends and we have never had problems (except, you know, we got a little bit drunk..)

\n\n

Please note that it is not raccomanded to drink it if you are not used to alcohol because it generally have 60% to 80% vol.

\n\n

See this link for some information.

\n", "OwnerUserId": "6266", "LastActivityDate": "2017-01-06T12:06:16.543", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6475"}} +{ "Id": "6475", "PostTypeId": "1", "AcceptedAnswerId": "6503", "CreationDate": "2017-01-07T01:51:56.563", "Score": "14", "ViewCount": "545", "Body": "

Historically, is there any case in which prohibition of alcohol has actually dissuaded its consumption?

\n\n

It failed miserably in the United States, for example...

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-05-12T14:13:36.713", "Title": "Has Prohibition ever worked?", "Tags": "history drinking prohibition", "AnswerCount": "4", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6476"}} +{ "Id": "6476", "PostTypeId": "2", "ParentId": "6345", "CreationDate": "2017-01-08T04:02:35.627", "Score": "3", "Body": "

A good cigar pairs well with a neat snifter of whiskey or aged bourbon. Tobacco is a naturally occurring plant, and whiskey is a byproduct of naturally occurring plants as well. What you’ll find is that each complements and enhances the flavors of the other. The flavors of the cigar will take on new, invigorated life, and the whiskey will offer you great flavors that would otherwise be too subtle without the discerning presence of the cigar.

\n\n

Beverages to Pair With Your Favorite Cigars

\n", "OwnerUserId": "6274", "LastEditorUserId": "5064", "LastEditDate": "2017-01-08T13:56:21.260", "LastActivityDate": "2017-01-08T13:56:21.260", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6477"}} +{ "Id": "6477", "PostTypeId": "1", "CreationDate": "2017-01-08T21:45:08.253", "Score": "4", "ViewCount": "76", "Body": "

As a beer lover I've enjoyed thousands of great beers over the years. In doing so I've learned a fair amount about the differences in types of beer and how they're brewed, but I'd like to take the next step and brew my own.

\n\n

There's a ton of information online regarding home-brewing, and it's hard to tell what's correct, what's good and what's nonsense. I'd prefer to attend a hands-on course to learn, taste and ask questions about the beer brewing process.

\n\n

Here is a (in-complete, unordered) list of the places I've come across:

\n\n\n\n

Has you attended the beer brewing classes available around London? If so, which do you recommend? Why?

\n", "OwnerUserId": "6275", "LastActivityDate": "2017-02-09T20:22:20.993", "Title": "Recommendations for learning how to brew beer in London?", "Tags": "brewing", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6478"}} +{ "Id": "6478", "PostTypeId": "1", "CreationDate": "2017-01-09T01:04:53.513", "Score": "3", "ViewCount": "119", "Body": "

Thinking of brewing my own beer and am interested in making some reusable labels using cling stickers - the kind you see for auto window stickers.

\n\n

Has anyone used cling labels and do they stay adhered when chilled and when the bottle has condensation?

\n", "OwnerUserId": "6275", "LastActivityDate": "2017-01-09T17:31:41.153", "Title": "Cling labels for beer bottles", "Tags": "brewing bottling", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6479"}} +{ "Id": "6479", "PostTypeId": "2", "ParentId": "6478", "CreationDate": "2017-01-09T17:31:41.153", "Score": "2", "Body": "

I think they would not make a good candidate for beer or wine bottles if you want to subject them to moisture or cold

\n\n

Static Cling Labels

\n\n
\n

Static Clings are usually made of a flexible vinyl or plastic that has a very smooth coat and will stick to clean glass surfaces utilizing the moisture in the air and on the glass to adhere to the surface. In cold weather and dry climates static clings tend to dry up, freeze and then fall off easily. The vinyl material will not retain its \"cling\" abilities for more than a year or two depending on the conditions where the cling is exposed. Some static cling options can be refreshed with soap and water, which is great for long-term use. Static Clings may need a custom quote.<

\n
\n", "OwnerUserId": "6111", "LastActivityDate": "2017-01-09T17:31:41.153", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6480"}} +{ "Id": "6480", "PostTypeId": "1", "AcceptedAnswerId": "6483", "CreationDate": "2017-01-10T00:46:33.273", "Score": "8", "ViewCount": "156", "Body": "

Heracleum or cow parsnips are high-latitude plants that can produce severe inflammation in humans. They seem like the last thing someone would want to ingest. However:

\n\n

Flora on Kamchatka: flowers and grasses:

\n\n
\n

Puchka (Heracleum dulce) is an insidious plant. Its juice has a sweet taste, but leaves blisters and sores on the skin that ache for months! ... Cossacks distilled wine that produced a strange effect: after two or three glasses a person saw wonderful dreams, but in the morning felt so miserable as if he had committed a crime.

\n
\n\n

Mansfeld's Encyclopedia of Agricultural and Horticultural Crops:

\n\n
\n

A psychoactive drink is made from the plant in Kamchatka.

\n
\n\n

While the first quote is about something like an accident, the second one seems to describe an ongoing practice. Which culture(s) used this hogweed preparation, and to what ends? Does it still exist today? Is the poisonous part of the plant avoided, and is the preparation truly psychoactive?

\n\n

(Asked previously on History.SE, -- somewhat resolved there)

\n", "OwnerUserId": "6280", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:47:53.987", "LastActivityDate": "2017-03-17T20:14:48.957", "Title": "Who made or makes spirits from poisonous Heracleum?", "Tags": "history ingredients local", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6482"}} +{ "Id": "6482", "PostTypeId": "2", "ParentId": "6477", "CreationDate": "2017-01-10T20:05:04.523", "Score": "2", "Body": "

I'll take a stab at this... I would start with a good homebrewing book and walk through the process. The Complete Joy of Homebrewing is where I started 20 years ago and it's still a great place to start.

\n\n

I was also very active in my homebrew club so I would definitely reach out to them too. You can learn so much so quickly watching someone else. I think this is where you would learn a lot about beer styles and tastes.

\n\n

I taught in the wine making program at a local community college for a couple of years. This school also had a brewing program. I would only go this route if you really, really want to be a serious brewer. You can brew really excellent beer just learning on your own or hanging out at a homebrew club.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-01-10T20:05:04.523", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6483"}} +{ "Id": "6483", "PostTypeId": "2", "ParentId": "6480", "CreationDate": "2017-01-10T22:04:59.817", "Score": "4", "Body": "

This book \"Reise Um Die Erde Durch Nord-Asien und Die Beiden Oceane ..., Part 1, Volume 3 By Adolph Erman\", available on googleBooks, which describes a trip to Russia in 1828-30 quotes yet another text \"Vergl. Opisanie semli Kamtschatiki Tsch II Str. 199\" which in turn has a more detailed description of the Kamchatskan Cossacks making a preparation of H stems with some kind of honeysuckle berries (lonicera cerulea) and warm water, and eventually distilling a spirit from it with possible hallucinogenic properties.

\n\n

The text is in German, my own German is a little rusty, and the text cannot be copied to put into google translate.

\n\n

The other text quoted is probably this A Description of Kamchatka Semi-island. V.2, published 1755:

\n\n

So I think your sources are quoting much older sources for this.

\n\n

I found another source (1779), Captain Cook's account of his own travels in Kamchatka also speaks of this plant (page 337), and has another explanation of why it was used for making spirit.

\n\n

I can't find anything recent to suggest that the practice is still current, but who knows ?

\n", "OwnerUserId": "6273", "LastActivityDate": "2017-01-10T22:04:59.817", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6484"}} +{ "Id": "6484", "PostTypeId": "2", "ParentId": "15", "CreationDate": "2017-01-11T00:52:20.037", "Score": "0", "Body": "

It's been a long time since I originally asked this question. While my contributing answer here doesn't really clear up why draught beer (maybe, maybe doesn't) taste better than bottled beer, two things are clear to me now after spending a lot of time reflecting on the difference:

\n\n

One

\n\n

As Tom pointed out in the very first comment, drinking beer (and coffee too, for that matter!) out of a small spout (bottle, travel mug, etc.) blocks your nose from inhaling the aromas of the beer. This limits the amount of flavour you can sense. Pouring the bottled beer into a glass dramatically improves its flavour because the open mouth of the glass allows you to taste and smell.

\n\n

Two

\n\n

There's an inverse relationship between perceived \"better\" taste and the volume of bottles a brewery produces (and how far they intend to distribute).

\n\n

Beer brewed at a local microbrew has a shelf-life of only a few weeks on the outside; preservatives are limited or omitted and their ingredients are typically fresh, with a comparably short self-life.

\n\n

Larger breweries distribute further distances, demand a longer shelf-life, and usually have a need to maintain a consistent taste across their entire production line and the resulting shelf-life. These breweries use high-volume equipment (an increase in the amount the beer is processed) and high-volume ingredients (preservatives in ingredients make them last longer, but may not be fresh). It also becomes increasingly difficult to quality-control when mass-producing — these breweries are less likely to take risks, and they rely on machinery to achieve consistency, often sacrificing quality.

\n\n

tl;dr: draught beer, like micro-brewed beer was never intended to last for months or years on the shelf, and thus preservatives don't need to be factored into the production, and the beer is liable to be fresher more flavourful.

\n\n

One last bonus point

\n\n

I've also noticed that at times, bottled microbrews, poured into a glass can actually taste better than their draught counterparts. Go figure ¯\\_(ツ)_/¯

\n", "OwnerUserId": "25", "LastActivityDate": "2017-01-11T00:52:20.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6486"}} +{ "Id": "6486", "PostTypeId": "1", "AcceptedAnswerId": "6487", "CreationDate": "2017-01-17T11:42:54.190", "Score": "11", "ViewCount": "379", "Body": "

I would like buy a cellar for aging wine at home, but I don't know if the white and red wine can be kept in the same cellar.

\n

Maybe at the same temperature?

\n

There are cellars refrigerated with two zones but this is not for preserving wine.

\n", "OwnerUserId": "6303", "LastEditorUserId": "5064", "LastEditDate": "2021-10-02T19:59:12.243", "LastActivityDate": "2021-10-02T19:59:12.243", "Title": "Can white wine and red wine be kept in the same cellar?", "Tags": "wine red-wine preservation", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6487"}} +{ "Id": "6487", "PostTypeId": "2", "ParentId": "6486", "CreationDate": "2017-01-17T15:21:03.143", "Score": "8", "Body": "

All wine that you want to age for a long time should be kept at the same temperature. The difference in temperatures come when you want to serve the wine. White should be served at a lower temperature than cellar temperature. Red wine, ideally, should be served at cellar temperature. What is the ideal cellar temperature? That is open to debate, but somewhere in the low 50s Fahrenheit (about 11-12 C). Humidity should be kept constant around 75% but there is no evidence you need to keep the humidity that high. You do not want to keep it at an excessively low humidity. You are trying to make sure the corks don't dry out which can cause wine leaking around the cork. You also want as little light and vibration as possible. Think of a cave as your ideal storage facility. You can read the Wikipedia article about Wine Storage

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-01-17T17:30:39.713", "LastActivityDate": "2017-01-17T17:30:39.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6488"}} +{ "Id": "6488", "PostTypeId": "1", "CreationDate": "2017-01-17T21:50:18.820", "Score": "4", "ViewCount": "94", "Body": "

Back in the 1960s and early 1970s I used to drink a jug wine called Zinbardel. They stopped making it and I haven't been able to find it since. Does anyone still make Zinbardel wine?

\n", "OwnerUserId": "6304", "LastEditorUserId": "5064", "LastEditDate": "2017-04-10T12:54:47.173", "LastActivityDate": "2017-04-10T12:54:47.173", "Title": "Availability of Zinbardel wine", "Tags": "wine", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6489"}} +{ "Id": "6489", "PostTypeId": "2", "ParentId": "6488", "CreationDate": "2017-01-18T13:05:38.903", "Score": "1", "Body": "

There is nothing called \"Zinbardel\". The only thing close is Zinfandel. Just in case I was missing something I did a google search on ZinBARdel and it had only 6 results. One of them was your question! Now if you are talking about ZinFANdel, all you have to do is go to your closest supermarket and buy a jug of Gallo Zinfandel.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-01-18T13:05:38.903", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6490"}} +{ "Id": "6490", "PostTypeId": "1", "AcceptedAnswerId": "6509", "CreationDate": "2017-01-19T19:29:10.140", "Score": "13", "ViewCount": "500", "Body": "

In the past few years I've become a whisky fan boy, buying bottles in most styles, including Scotch. This question pertains mostly to Scotch, but other styles can be included too.

\n\n

One problem I've found is that I'd like to buy more upper tier bottles (in the 100+ Canadian) range, but I'm hesitant to do so without actually sampling these whiskies first.

\n\n

This poses a problem because the city in which I live doesn't give me much opportunity to sample whiskies in this range. The end result is that I can't really know if that 150 dollar bottle is worth it, or if I'm just burning my money.

\n\n

With that in mind, I wonder if there is a common way to determine the objective quality of a bottle in this range, without actually trying the bottle first?

\n", "OwnerUserId": "938", "LastActivityDate": "2018-11-08T13:27:37.903", "Title": "How to select upper-tier whiskies without trying them first?", "Tags": "whiskey", "AnswerCount": "6", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6491"}} +{ "Id": "6491", "PostTypeId": "2", "ParentId": "6490", "CreationDate": "2017-01-19T20:41:47.850", "Score": "7", "Body": "

No. There is no \"objective\" way to map your tastes to what is in the bottle. It's purely a subjective exercise.

\n\n

There is also this website Master of Malt Samples that might be able to ship 3cl bottles to you.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-01-19T20:41:47.850", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6492"}} +{ "Id": "6492", "PostTypeId": "2", "ParentId": "6416", "CreationDate": "2017-01-23T15:04:25.873", "Score": "1", "Body": "

The competition is now over and the good news is that we won the French stage by axing everything around Normandy and it turned out really well:

\n\n

Here is the recipe we followed : \nhttp://www.1001cocktails.com/cocktails/5865/recette-cocktail-partie-au-calvados.html\n(using \"brut\" cider)

\n\n

And I bought a nice cheese from Normandy: A Pont l'évêque. We served a small toast of nice old style campaign multi cereal French cheese with a slice of Pont l'évêque.

\n\n

The cocktail and the toast were so different that they completed each other:

\n\n

Nice acidity and sugar from the cocktail thanks to the lemons (we let it infuse for 24 hours and the result was reaaally good, at some point we almost decided not adding cider nor perrier) and the fatness and strenght of the cheese surprisingly came out very well.

\n\n

Anyway thanks for your insights guys, and don't hesitate to try the recipe ;-)

\n", "OwnerUserId": "6171", "LastActivityDate": "2017-01-23T15:04:25.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6493"}} +{ "Id": "6493", "PostTypeId": "2", "ParentId": "6490", "CreationDate": "2017-01-24T00:47:50.573", "Score": "2", "Body": "

You can conduct research on these sites:

\n\n\n\n

Find what you like and then, find others who like the same. Read their reviews and try their top rated suggestions.

\n\n

Find a local pub/bar/restaurant with a good selection and try a dram before you buy.

\n\n

Join/start a whisky club and share the pain (cost) with other avid whisky scholars. Study often.

\n", "OwnerUserId": "6315", "LastActivityDate": "2017-01-24T00:47:50.573", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6494"}} +{ "Id": "6494", "PostTypeId": "2", "ParentId": "6468", "CreationDate": "2017-01-24T03:29:32.307", "Score": "2", "Body": "

Another possible answer for this question could be Drunkard's Thursday.

\n\n

It is celebrated on the Thursday before Ash Wednesday by Syrian Catholics.

\n\n
\n

Syrian Catholics have celebrated the day as \"Drunkard's Thursday\" with dolmas as the traditional food. - Fat Thursday

\n
\n\n

\"Pre-Lenten

\n\n

Pre-Lenten Holidays

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-01-24T03:29:32.307", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6495"}} +{ "Id": "6495", "PostTypeId": "2", "ParentId": "6416", "CreationDate": "2017-01-24T10:24:08.053", "Score": "2", "Body": "

In France one would expect a good red wine with the cheese.

\n\n

Maybe you can go that route with a red wine based cocktail. I don't have a proven recipe at hand but a quick google showed up with lots of results.

\n\n

Lillet Rouge (a red, French sweet vermouth) is close in taste to red wine, maybe a vodka-martini with Lillet Rouge suffices, but you would need to try.

\n", "OwnerUserId": "5532", "LastActivityDate": "2017-01-24T10:24:08.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6496"}} +{ "Id": "6496", "PostTypeId": "2", "ParentId": "6468", "CreationDate": "2017-01-26T12:38:43.800", "Score": "2", "Body": "

In The Netherlands we have Kingsday.

\n\n
\n

King’s Day may well be the best party in Holland. On 27 April, we celebrate King Willem Alexander’s birthday with music, street parties, flea markets, and fun fairs. The king himself travels through the country with his family. On the night before King’s Day, King’s Night is celebrated with music shows in The Hague and other cities and the nation’s biggest flea (‘free’) market in Utrecht.

\n
\n\n

Every city has it's own big parties and fleamarkets. Here in Groningen, king's night is very popular and probably one of the busiest nights in the bars.

\n", "OwnerUserId": "6210", "LastActivityDate": "2017-01-26T12:38:43.800", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6497"}} +{ "Id": "6497", "PostTypeId": "1", "AcceptedAnswerId": "6498", "CreationDate": "2017-01-28T07:19:14.363", "Score": "12", "ViewCount": "956", "Body": "

What, exactly, is the difference between stout, porter, schwarzbier, and other dark beers?

\n\n

Wiki descriptions:

\n\n

-Stout: dark beer made using roasted malt or roasted barley, hops, water and yeast (fairly broad description, imho...)

\n\n

-Porter: dark style of beer developed in London from well-hopped beers made from brown malt

\n\n

-Schwarzbier: or black beer, is a dark lager made in Germany

\n\n

Dark Beer: opaque or near-opaque colour that exists with stouts, porters, schwarzbiers (black beer) and other deeply coloured styles

\n\n

Two overarching factors seem to be the color, most obviously, and geographical location.

\n\n

But, are all dark beers, 'stouts,' by definition? For example, schwarzbier is a 'dark lager' but, still made from roasted malt?

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-10-29T16:00:57.673", "Title": "Dark Beer Classifications", "Tags": "stout porter schwarzbier", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6498"}} +{ "Id": "6498", "PostTypeId": "2", "ParentId": "6497", "CreationDate": "2017-01-30T15:53:06.937", "Score": "5", "Body": "

Porters and Stouts were similar but different... in the beginning. I'm going to try my best to paraphrase this wonderful article, some of the BJCP Guidelines, and this article.

\n
\n

Porters (have #s) Stouts (have bullet points)

\n
\n
\n
    \n
  1. A substantial, malty dark ale with a complex and flavorful roasty character.
  2. \n
\n
\n
\n
    \n
  • A very dark, roasty, bitter, creamy ale.
  • \n
\n
\n

These are the BJCP definitions - note... they're fairly similar

\n
\n
    \n
  1. Originally, just your "common" brown beer.
  2. \n
\n
\n
\n
    \n
  • Originally, just a "stout" (or stronger) brown beer.
  • \n
\n
\n

Already... you can probably see why people use them interchangeably

\n
\n
    \n
  1. Origin for Porters are credited to London.
  2. \n
\n
\n
\n
    \n
  • Stouts are credited with originating in Ireland.
  • \n
\n
\n

Apparently, water (which, as odd as it seems, is the most unique thing to beers!) and science played a large part in London's success in creating Porters instead of porter being a generic brown beer. Science revealed that the efficiency of the brown grains was 2/3 of pale malt. Even though brown malt was cheaper than pale, the horrible grain efficiency made it more expensive. Therefore the Porter soon had a mixed grain bill using a brown malt base and substituted pale malt for profit. This was made even more apparent when the English Government/Parliament/forgive my idiocy on the verbage here started taxing beer.

\n

Later- London started using a method known as "parti-gyling"... per the first link:

\n
\n

Parti-gyling isn’t what you think it is. Almost all modern descriptions get it badly wrong. It isn’t—after 1800 at least—using the first runnings to make one beer and the second and third for others. It’s much more sophisticated than that.

\n
\n
\n

Porter brewers mashed several times. The worts from each mash were hopped and boiled separately, then blended to produce whatever beers were required. Two, three or even four beers were assembled from blends of each of the worts.

\n
\n
\n

It’s a very efficient way of making not just huge volumes of a beer, but also relatively small amounts of stronger beers. Or any amount of any strength beer. With their brew lengths of hundreds of barrels, London’s porter brewers couldn’t brew the strongest Stouts single-gyle. The amount they could sell would barely have covered the false bottoms of their massive mash tuns.

\n
\n
\n

That’s why they often parti-gyled their stouts with porter. You can probably see where this is going. The recipes for porter and stout were, by definition, identical, as they were brewed together.\n(Sorry I couldn't paraphrase this part... it all seemed relevant.)

\n
\n

So... it seems that all Stouts are Porters; but, not all Porters are Stouts (think squares and rectangles).

\n

As far as Schwarzbier goes - this is a LAGER where Porters and Stouts are ALES. I also differentiate between ales and lagers in this post. In the homebrewing world, there was a fad of black-lagers/ales a few years ago. The grain used in brewing was more or less burnt in order to give the pale ale a dark appearance but taste/feel like a pale ale/lager.

\n

Dark beer is just a classification of all of these types.

\n

Here is a link to the Beer Judge Certification Program (BJCP) that has links to what each beer type should taste/look like.

\n", "OwnerUserId": "22", "LastEditorUserId": "6255", "LastEditDate": "2021-10-29T16:00:57.673", "LastActivityDate": "2021-10-29T16:00:57.673", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6499"}} +{ "Id": "6499", "PostTypeId": "2", "ParentId": "1064", "CreationDate": "2017-01-30T16:45:07.323", "Score": "9", "Body": "

I'm a Chemical Engineer and it frustrates me that everywhere on the internet appears to be using this linear approximation. Yeah it's probably okay for hobby brewers, but for anyone actually interested in solving the problem for example use in software design or higher ABV products, this approximation is really not good enough.

\n\n

This is actually a ridiculously complicated subject and it all boils down to the fact that at a molecular level, water and ethanol interact with one another with what are known as hydrogen bonds. Now you can just use an empirical lookup table or regress a tonne of data, but if you're interested in the root of this problem you should do some research into what are known as equations of state. In particular UNIQUAC for ethanol-water mixtures. It get's even worse when you realise that these equations of state describe gaseous behaviour remarkably well, but require additional thought to be applied to liquids.

\n\n

People dedicate their entire lives into perfecting a generalised equation of state to describe the interactions between all chemical components. ANYWAY I digress...

\n\n

I've done some number crunching myself using UNIQUAC and have come up with the following simple formula. Like yours above, it's only applicable to ethanol-water mixtures, and I've only validated this equation up to an ABV of 50% so be weary of going higher. This equation has an R-Squared value of 1.

\n\n

ABW = 0.1893*ABV*ABV + 0.7918*ABV + 0.0002

\n\n

Try it yourself :)

\n", "OwnerUserId": "6338", "LastEditorUserId": "170", "LastEditDate": "2017-02-08T09:47:58.300", "LastActivityDate": "2017-02-08T09:47:58.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6500"}} +{ "Id": "6500", "PostTypeId": "2", "ParentId": "4624", "CreationDate": "2017-01-30T17:47:15.013", "Score": "1", "Body": "

As noted in Xander's ♦ answer, it is a cultural reason as to why both France and Italy have such a lower beer consumption than their neighbors?\nThe answer would be all too simple to say it is because they can.

\n\n

Not only is it a cultural thing, it may have an historical cultural reason. The top wine producing countries are Italy, France followed by Spain. The reason why Spain produces less wine and beer may be due to its' drier climate.

\n\n
\n

Spain produces about 5 billion bottles of wine annually and is actually home to the largest number of vineyards of any European country. However, its vineyards are more spread out and produce smaller yields than vineyards in France or Italy due to the drier soil common in many wine-growing regions of Spain. Although more than 400 varieties of grapes are grown in Spain, just 20 of those account for nearly 90% of all Spanish wine production. - The 4 Countries that Produce the Most Wine

\n
\n\n

Why Italy and France produces less beer and yet more wine may be due to the influence of its' Catholic heritage. Both France and Italy have strong roots with Catholicism and the Holy See. Italy was once the home of the Papal States (8th century - 1870) and France was home the papacy during the Western Schism. We must keep in mind that for Catholics wine is absolutely necessary for their liturgy.

\n\n

In fact the Vatican is at the top of the list of wine drinking nations.

\n\n
\n

Vatican City is at the very top of the wine-drinking league with an average resident consuming an impressive 54.26 liters a year. Although it may seem surprising that the Holy See grabs top spot, it does have a uniform and unusual demographic. Its residents are older and tend to eat together in large groups while the consumption of Communion wine is standard practice for a large proportion of them. Andorra, another small European nation, is in second place with 46.26 liters consumed per capita. France places fifth, with residents drinking 42.5 liters of wine each year.

\n
\n\n

\"The

\n\n

The World's Biggest Wine Drinkers

\n\n

\"Wine

\n\n

Wine Consumed Per Person in 2012

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T13:00:11.050", "LastActivityDate": "2017-01-30T17:47:15.013", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6501"}} +{ "Id": "6501", "PostTypeId": "1", "AcceptedAnswerId": "6533", "CreationDate": "2017-01-30T19:23:24.070", "Score": "4", "ViewCount": "244", "Body": "

I've been to several bars recently that feature a \"What's on cask?\" section of the beer menu. The menu does not, however, suggest why that particular beer is being held in a firkin and served via the hand-pulled tap.

\n\n

I do not mean this as a repeat of this question. I am interested in the reasons bars, specifically, might wish to have and serve from firkins, and not just the general difference in beer varieties.

\n\n

I understand there is a historical nature to this, which might be amusing for some purposes. But I want to know if there are specific effects on the beer itself: storage timing, retention of flavor, temperature needs, pouring effect (slower, no CO2, whatever), and so on.

\n\n

If the bar offered the exact same beer, one in a cask and one on a regular tap, should there be noticeable differences in the resulting served beer?

\n", "OwnerUserId": "29", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T13:00:11.050", "LastActivityDate": "2017-02-14T17:26:11.217", "Title": "Why is some beer kept in/served from a firkin in a bar?", "Tags": "storage serving drinking", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6502"}} +{ "Id": "6502", "PostTypeId": "2", "ParentId": "6501", "CreationDate": "2017-01-30T20:26:10.543", "Score": "1", "Body": "

So... the short answer is novelty... and possibly, less beer loss per firkin if the CO2 is causing the beer to be head-y and a lot of beer gets wasted when bartenders pour through the foam.

\n\n

The more complex answer is - as long as a beer is in a metal firkin... there should be no discerning difference in quality/taste/etc. The difference would come in the form of wooden firkins. If, for example, you had a Stout on tap and the same stout served in a wooden firkin, the longer the beer stayed in the wooden firkin, the more the flavors would change. Especially if the wooden firkin was previously used to make a spirit (like bourbon).

\n\n

If the latter - bourbon barrrel - the longer the beer stays in, the more of the bourbon flavor shines through.

\n", "OwnerUserId": "22", "LastActivityDate": "2017-01-30T20:26:10.543", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6503"}} +{ "Id": "6503", "PostTypeId": "2", "ParentId": "6475", "CreationDate": "2017-01-30T20:40:18.790", "Score": "7", "Body": "

Prohibition was an Era in American history from 1920-1933 - and - it failed miserably. If anything, it made alcohol more popular.

\n\n

Prohibition, in general, also means to prohibit something via law or religion though. The religious aspect is the only case that one can see prohibition working. ::Insert Mormonism/Islamic religion/et cetera here::

\n", "OwnerUserId": "22", "LastActivityDate": "2017-01-30T20:40:18.790", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6504"}} +{ "Id": "6504", "PostTypeId": "1", "AcceptedAnswerId": "6751", "CreationDate": "2017-01-30T21:54:17.047", "Score": "7", "ViewCount": "530", "Body": "

What are some of the historical ways that people have employed to conceal alcohol on their person?

\n\n

We have all heard of the prohibition of 1920 to 1933 in the United States and other countries. How is it that people were able to conceal alcohol on their persons? In this context, I would like to know the historical ways people did so prior to 1950. The question is not limited to the 20th century.

\n\n

We know that hiding alcohol was done in bootlegs and books, are there other known methods that people historically used to hide booze on their bodies?

\n\n
\n

Bootleg (n.)

\n \n

Look up bootleg at Dictionary.com \"leg of a boot,\" 1630s, from boot (n.1) + leg (n.). As an adjective in reference to illegal liquor, 1889, American English slang, from the trick of concealing a flask of liquor down the leg of a high boot. Before that the bootleg was the place to secret knives and pistols. - The Online Etymology Dictionary

\n
\n\n

\"In

\n\n

In a Book

\n\n

\"In

\n\n

In a Flask in Your Boot

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-07-15T13:48:57.617", "LastActivityDate": "2017-07-15T13:48:57.617", "Title": "What are some of the historical ways that people have employed to conceal alcohol on their person?", "Tags": "history", "AnswerCount": "1", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6506"}} +{ "Id": "6506", "PostTypeId": "2", "ParentId": "4624", "CreationDate": "2017-01-31T20:17:22.770", "Score": "1", "Body": "

Sorry, the top answer here is kind on the right track but not 100%. It all has to do with the CLIMATE of these countries. Generally, in the northern hemisphere, you cannot make quality wine above the 50th parallel. It simply starts to get too cold to grow grapes that get ripe enough for wine. OTOH, you can grow barley just about anywhere. So, why did they choose wine over beer then? The other reason why wine is the preferred drink where you can grow grapes is that beer goes bad quickly and does not transport easily. Whereas, wine can be stored a long time and transported long distances (we are of course talking about ancient history). So, given a choice, our ancestors usually choose wine.    

\n\n

Here is a map to show where grapes can be grown and it explains why historically it was grown where it was.

\n\n

\"Map

\n", "OwnerUserId": "6111", "LastEditorUserId": "4526", "LastEditDate": "2017-02-01T08:18:09.127", "LastActivityDate": "2017-02-01T08:18:09.127", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6507"}} +{ "Id": "6507", "PostTypeId": "1", "AcceptedAnswerId": "6512", "CreationDate": "2017-02-02T12:20:41.800", "Score": "4", "ViewCount": "1461", "Body": "

I recently was in Singapore, where I tasted some of the most incredible Singapore Slings ever (hint: the best was NOT at the Raffles, but I guess this is a matter of personal taste).

\n\n

When I came back home, I really wanted to buy the ingredients to prepare it at home, but I found that if I follow the original recipe (well, I do have something different), the taste is different.

\n\n

I am pretty sure then, that the bars I visited did something different, and I'd like to find out the combination that I like the most.

\n\n

I used:

\n\n
120ml Generic brand pineapple Juice\n7,5ml Cointreau\n7,5ml DOM Benedectine \n15ml Generic brand lime juice\n15ml Bols cherry brandy\n30ml Beefeater gin\n10ml Monin Grenadine\nDash of Angostura bitter\n
\n\n

If I drink it near the ice, it tastes good, while if I do it with a straw from the bottom of the glass, the after taste is... Too much Almond-like, sweet/bitter.

\n\n

I wonder if Cherry Heering really is that \"something\" here (I know the Bols is cheap, maybe DeKuyper instead?), or if I can substitute Cointreau with a Triple Sec, or if I have to choose a better gin.

\n\n

Any idea?

\n", "OwnerUserId": "6346", "LastActivityDate": "2017-02-07T16:54:59.330", "Title": "How can different ingredients be replaced in the Singapore Sling recipe?", "Tags": "cocktails", "AnswerCount": "2", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6508"}} +{ "Id": "6508", "PostTypeId": "2", "ParentId": "6268", "CreationDate": "2017-02-03T06:32:27.623", "Score": "3", "Body": "

Here are some beer cocktails:

\n\n

The Bulldog Mexicana

\n\n

The Mexican Bulldog Margarita, simply put, is a margarita joined by a bottle of Corona--in the same glass. Specifically, that glass should be large enough to handle a margarita and a beer. To make this specialty, all that's needed is one ounce of your favorite tequila (if you add an extra splash, we won't tell). You'll also need lime margarita mix and any other margarita fixings you like such as salt around the rim and a juicy slice of lime. Mix up your margarita as you normally would. When it's complete, you will invert the bottle of Corona into the glass allowing the golden beer to combine with the cocktail. The result is quite extraordinary. Many people love the way the beer cuts down on some of the cocktail's sweetness. Others simply love the punch it packs. Because this drink is actually two drinks combined in one glass, you may want to take it easy on ordering a second or add some crushed ice to the glass!

\n\n

Keep It Classic: The Black Velvet

\n\n

Featuring one-part Guinness and one-part brut sparkling wine, the Black Velvet is a London-born beer cocktail that first wowed pub goers in 1861. The drink was actually created to help mourn the loss of Queen Victoria's consort, Prince Albert. Champagne is traditionally the sparkling wine of choice but others may be substituted. Serve this half and half beverage in a stout beer glass and you may then enjoy its Victorian charms.

\n\n

Keep it Light: the Cuban Bul

\n\n

If you're not in the mood for the heavy Black Velvet, try the refreshing spritzer-like Cuban Bul. You'll need a 12-oz can of light beer (choose something crisp), a 12 oz can of ginger ale, two tablespoons of sugar (or to taste), and a third of a cup of lime juice (go for freshly squeezed). Mix the ingredients along with some crushed ice in a glass, taste, and discover your new favorite cocktail; it's a winner and you'll be amazed at how light and delicious it tastes!

\n\n

Beer + Cocktails: Why Choose One When You Can Have Them Together!

\n", "OwnerUserId": "6274", "LastEditorUserId": "6274", "LastEditDate": "2017-02-03T06:41:56.240", "LastActivityDate": "2017-02-03T06:41:56.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6509"}} +{ "Id": "6509", "PostTypeId": "2", "ParentId": "6490", "CreationDate": "2017-02-03T07:29:23.977", "Score": "8", "Body": "

Unfortunately there's no good way to guarantee you'll get something you'll like. However, there are some things you can do to help:

\n\n

Find reviews that you agree with of whisk(e)ys you like. Note who wrote them and how they described the spirit. Try to find other reviews by those reviewers and look for the same descriptors. Ignore words like \"smooth\" and pay more attention to flavor notes.

\n\n

Keep your own notes about what you like and what you taste when you drink what you like. Use the vocabulary that you and the reviewers you trust use as a guide for what is likely to be in your wheelhouse.

\n\n

This won't be perfect. I don't recommend spending $200 on a bottle with this. But for the midtier it's not a bad approach.

\n\n

If you're serious about upper tier stuff, find a good bar that has some of these whiskeys and go try them there. Find a local whiskey society to join or look out for tasting events (they happen more often than you'd think).

\n", "OwnerUserId": "6350", "LastActivityDate": "2017-02-03T07:29:23.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6510"}} +{ "Id": "6510", "PostTypeId": "2", "ParentId": "6490", "CreationDate": "2017-02-03T14:51:01.520", "Score": "3", "Body": "

You could join communities like:
\nReddit's /r/whiskey
\nor /r/bourbon
\nor /r/scotch

\n\n

They have a system where you give quality reviews of a set number of whiskey/scotch/bourbon. After X reviews you're eligible for their Swap community where different members mail drams/bottles to one another. Don't roll in day one asking for \"limited super rare edition\" spirits. But, the people there are very generous and kind.

\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2018-11-08T13:27:37.903", "LastActivityDate": "2018-11-08T13:27:37.903", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6511"}} +{ "Id": "6511", "PostTypeId": "2", "ParentId": "485", "CreationDate": "2017-02-04T15:26:42.200", "Score": "1", "Body": "

I must say that before starting to brew myself I disliked the head, but when you start to deal with low carbonated beer, it becomes interesting. Just bought this weird \"head maker\" an ultra-beer thing it is really weird, looks like a sex toy, but creates head with ultrasound. Just stick it in the beer and press the bottom.\nWith some beers it definitely adds flavor, especially hoppy beers.

\n", "OwnerUserId": "6359", "LastEditorUserId": "5078", "LastEditDate": "2017-02-08T07:45:34.527", "LastActivityDate": "2017-02-08T07:45:34.527", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6512"}} +{ "Id": "6512", "PostTypeId": "2", "ParentId": "6507", "CreationDate": "2017-02-06T07:23:48.823", "Score": "1", "Body": "

I adjusted the recipe to be:

\n\n
120ml Generic brand pineapple Juice\n7,5ml Cointreau\n7,5ml DOM Benedectine \n10ml Generic brand lime juice\n15ml Bols cherry brandy\n30ml Beefeater gin\n10ml Monin Grenadine\nDash of Angostura bitter\n
\n\n

Plus I bought a shaker and shook the whole thing with 4 cubes of ice.

\n\n

I got a very good flavour with a slightly creamy texture, which is very near to what I drank in Singapore. The color is not pink as wanted, but it is a very good cocktail :)

\n", "OwnerUserId": "6346", "LastActivityDate": "2017-02-06T07:23:48.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6513"}} +{ "Id": "6513", "PostTypeId": "2", "ParentId": "6507", "CreationDate": "2017-02-07T16:54:59.330", "Score": "1", "Body": "

Replace Cherry Brandy and Grenadine with Creme De Noya(Noyeuax). Creme De Noyeaux is a secret weapon in the world of mixology for use any time grenadine is called for.

\n\n

Also, don't use crappy pineapple juice. Generic is ok, but it needs to be high quality. The difference in taste between bad pineapple juice and good pineapple juice is akin to the difference between a burnt hamburger and a perfectly cooked Filet Mignon.

\n", "OwnerUserId": "5969", "LastActivityDate": "2017-02-07T16:54:59.330", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6514"}} +{ "Id": "6514", "PostTypeId": "1", "AcceptedAnswerId": "6516", "CreationDate": "2017-02-07T17:55:01.813", "Score": "3", "ViewCount": "151", "Body": "

What could be a good alternative to either rum or gin to have with an evening meal (or lunch). I do not drink wine or beer. Vodka is well, to my thinking, just vodka, so I would like to find something that has its own taste without overpowering the food that it accompanies. Any suggestions?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-02-08T05:26:39.053", "LastActivityDate": "2017-02-08T16:19:15.633", "Title": "Alternatives to rum and gin to drink with meals", "Tags": "wine vodka gin", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6515"}} +{ "Id": "6515", "PostTypeId": "2", "ParentId": "6490", "CreationDate": "2017-02-07T23:31:29.093", "Score": "2", "Body": "

The only real way to select whiskies you like is to taste them. The question is how to do this without investing in whole bottles. The obvious approach is to visit an establishment that provides whiskey \"flights\", usually bars or restaurants that feature whiskeys. Generally this is a set of four or five small pours of a variety of whiskeys. Sometimes you can mix and match, but other times I've seen flights with a theme such as Irish whiskey or different regions of Scotch. Try Googling \"whiskey flights near me\". In addition, some larger retail stores (such as Binnys in the Chicago area) have whiskey tastings.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2017-02-08T18:22:27.287", "LastActivityDate": "2017-02-08T18:22:27.287", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6516"}} +{ "Id": "6516", "PostTypeId": "2", "ParentId": "6514", "CreationDate": "2017-02-08T16:19:15.633", "Score": "3", "Body": "

This link has decent information on pairing spirits. The problem for giving generalizations becomes differences in palate. Most people don't pair straight spirits with foods as most (self injected word) people reading websites for pairings drink spirits in "cocktail" format.

\n

Information from the website includes:

\n

RYE

\n
\n

Faile recommends pouring rye to cut through the high fat content of fattier charcuterie options. "The tannins and natural spices come through in a rye," he explains, "and a higher proof (100 or higher) is perfect for complementing something fatty and smoked."

\n
\n

BOURBON

\n
\n

bourbon naturally complements smoky flavors, but the added dimension of sweetness can come in handy. "Bourbons pair with the same principle as spicy foods paired with Riesling," says Faile. "The sweetness of the bourbon tempers the heat from spice so the heat does not become the only note. A wheated bourbon coats the tongue to allow the spice to come through with each bite rather than building up."

\n
\n

SCOTCH

\n
\n

"The peatiness of Scotch makes it a perfect match for smoked meats, " says Anda. "German style sausages, like landjäger, are great with Scotch because they're smoked with immense depth of flavor and not overly fatty."

\n

But finding the right charcuterie match can be a bit of a moving target depending on how the spirit is finished. A sherry-barrel aged Scotch like Bowmore 15, accents peat flavors with a sweetness that Faile says can be great with saltier charcuterie.

\n
\n

GIN

\n
\n

"Being all herbal and floral," Faile explains, "gin doesn't require fat to balance its flavors." Instead, the charcuterie flavors to look for when thinking of pairings for gin, says Faile, "are botanical more than fat." Herbs like fennel and thyme are key points for pairing. "Porchetta's are often seasoned with fennel and citrus," Anda says, pointing to one delicious option. Anda also recommends duck prosciutto, which he describes as more oily than fatty and is often cured with herbs, or a finocchiona, a fennel salami

\n
\n

AMARO

\n
\n

Along the same lines as gin, amaro's earthy, herbaceous, and citrus qualities give it pairing versatility. Faile recommends trying earthy Averna with a liverwurst, or herbaceous Fernet with a bresaola or speck.

\n
\n", "OwnerUserId": "22", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-02-08T16:19:15.633", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6517"}} +{ "Id": "6517", "PostTypeId": "1", "AcceptedAnswerId": "6525", "CreationDate": "2017-02-11T21:26:51.873", "Score": "7", "ViewCount": "3783", "Body": "

I really like my alcoholic beverages cold. But I do know most whiskeys should be served in room temperature.

\n\n

Although adding ice is an option, I do not prefer this method because when ice melts, the whiskey is mixed with water.\nUsing whiskey stones is good for drinking at home, but I cannot carry my stones around (for instance in a bar).

\n\n

So, what type of whiskey is served chilly so I can order that one when I go to a bar?

\n", "OwnerUserId": "6386", "LastEditorUserId": "6386", "LastEditDate": "2017-02-12T13:11:27.057", "LastActivityDate": "2018-10-25T18:46:10.363", "Title": "What kind of whiskey is served cold?", "Tags": "whiskey", "AnswerCount": "4", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6518"}} +{ "Id": "6518", "PostTypeId": "1", "AcceptedAnswerId": "6532", "CreationDate": "2017-02-12T00:45:20.750", "Score": "5", "ViewCount": "359", "Body": "

I see Scotch is often labelled as single malt or blended, but never both. What, exactly, is the distinction?

\n", "OwnerUserId": "1077", "LastActivityDate": "2017-02-14T16:57:21.670", "Title": "What's the difference between blended and single malt Scotch?", "Tags": "scotch", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6520"}} +{ "Id": "6520", "PostTypeId": "1", "AcceptedAnswerId": "6521", "CreationDate": "2017-02-12T12:37:04.470", "Score": "3", "ViewCount": "258", "Body": "

A friend is cooking rattlesnake. What should she serve with it? It is a competition - so the stakes are high (or should I say snakes are high!).

\n\n

Here is the link to the whole scenario over on seasoned advice SE.

\n\n

I thought of a nice cold beer - but are there any other choices out there?

\n", "OwnerUserId": "6366", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:33:38.297", "LastActivityDate": "2017-02-13T16:56:51.483", "Title": "What to drink with rattlesnake meat?", "Tags": "pairing", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6521"}} +{ "Id": "6521", "PostTypeId": "2", "ParentId": "6520", "CreationDate": "2017-02-12T13:43:49.883", "Score": "1", "Body": "

Cooking with rattlesnake is truly an unique menu maker.

\n\n
\n

Rattlesnake meat is a southwestern delicacy. If you haven't ever eaten rattlesnake, you are in for a real treat. No, it doesn't taste like chicken! It has a much gamier flavor, much more reminiscent of pheasant, frog legs, alligator, or even elk. - Cooking with Delicious Rattlesnake Meat

\n
\n\n

There are some out there that say rattlesnake meat tastes like chicken. Never having tasted rattlesnake meat, I cannot make a recommendation by personal experience. There was a restaurant here in town that once served python. I never tried it either, but they recommended having it with wine. The restaurant has moved on so I cannot say which wine they actually recommended.

\n\n

That said I will go out on a limb and suggest a Shiraz or Chianti. I will use this as a suggestion:

\n\n
\n

Wild duck, goose, partridge and pheasant meat is very aromatic and is paired with stronger, aromatic wines in comparison with the wines paired with domestic poultry. Choice of wine depends on the age of the bird and its preparation.

\n \n

Young roasted partridge or a pheasant has a less intense flavor compared to older birds so light red wine such as Shiraz or Chianti would be appropriate. If the meat is prepared with thyme, then a more mature red Burgundy would be more appropriate. - Learn about wild game wine pairings

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-02-12T13:57:34.780", "LastActivityDate": "2017-02-12T13:57:34.780", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6522"}} +{ "Id": "6522", "PostTypeId": "1", "AcceptedAnswerId": "6523", "CreationDate": "2017-02-12T21:51:18.967", "Score": "7", "ViewCount": "113", "Body": "

I've had coffee stouts a number of different places. This seems to be a fairly common additive at American microbreweries. However, it seems like they are always adding coffee to stouts. I was wondering if any breweries are adding it to a lighter beer like a lager where the coffee flavor could more fully dominate.

\n", "OwnerUserId": "1077", "LastEditorUserId": "6255", "LastEditDate": "2018-07-19T09:44:58.730", "LastActivityDate": "2018-07-19T09:44:58.730", "Title": "Do coffee lagers exist?", "Tags": "lager", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6523"}} +{ "Id": "6523", "PostTypeId": "2", "ParentId": "6522", "CreationDate": "2017-02-12T23:44:21.627", "Score": "4", "Body": "

Yes Coffee Lagers exist.

\n\n

Some call them Coffee Beer as a generic name for all styles of Coffee Beer.

\n\n
\n

As the name suggests, this can be either a lager or ale with coffee added to boost flavor. While stouts and porters are popular base styles for coffee beer, many craft breweries are experimenting with other styles, like cream ales and India pale ales. Brewers may steep the beans in either water or beer to impart java flavor without adding acidity. Barrel-aged or wood-influenced versions may show signs of oxidation, including sherry notes and other advanced flavors.

\n
\n\n

Here is one example of a Cold Brew Coffee Lager: Saranac.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-12T23:44:21.627", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6524"}} +{ "Id": "6524", "PostTypeId": "1", "AcceptedAnswerId": "6938", "CreationDate": "2017-02-13T05:33:52.640", "Score": "8", "ViewCount": "187", "Body": "

I have always enjoyed a G&T. I have my favorite brands, not only of gin, but also of tonic. But I have noticed that there is a whole slew of them now. \"enter

\n\n

So, how do I know which ones are made properly, and which ones are just alcohol and flavor, without buying and tasting each one in turn?

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-07-02T19:16:08.993", "Title": "Fashionable gins - are they what they claim to be?", "Tags": "flavor taste gin", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6525"}} +{ "Id": "6525", "PostTypeId": "2", "ParentId": "6517", "CreationDate": "2017-02-13T07:55:07.483", "Score": "6", "Body": "

One whiskey that I know of is the Snow Grouse it is a blended grain whiskey that as by the name is supposed to be drank cold.\n Some would even say that this whiskey is better straight from the freezer \n\"Snow

\n", "OwnerUserId": "5078", "LastActivityDate": "2017-02-13T07:55:07.483", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6526"}} +{ "Id": "6526", "PostTypeId": "2", "ParentId": "6520", "CreationDate": "2017-02-13T16:56:51.483", "Score": "1", "Body": "

Similarly, I haven't done snake (or lizard) but would think that tequila would pair well with a reptilian entrée. Like vodka, drink it neat and icy, straight from the freezer, or accompany your shots with salt and a lime chaser. Lick the area of your hand between the thumb and index finger, sprinkle with salt, lick the salt, shoot the tequila, chase by sucking on the lime wedge. Any mezcal should do it, whether tequila (made from blue agave) or any of the mezcals made from the dozens of agave varieties.

\n", "OwnerUserId": "6391", "LastActivityDate": "2017-02-13T16:56:51.483", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6528"}} +{ "Id": "6528", "PostTypeId": "1", "AcceptedAnswerId": "6529", "CreationDate": "2017-02-13T22:55:37.323", "Score": "5", "ViewCount": "1659", "Body": "

What is chaptalization and why is it illegal to do to wine in some places? (Like France?)

\n\n

Is it at all dangerous to consume chaptalized wine?

\n\n

What are the benefits (if any) of chaptalization?

\n", "OwnerUserId": "1077", "LastActivityDate": "2017-02-13T23:11:14.887", "Title": "Why is chaptalization illegal?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6529"}} +{ "Id": "6529", "PostTypeId": "2", "ParentId": "6528", "CreationDate": "2017-02-13T23:11:14.887", "Score": "5", "Body": "

Chaptilization is the addition of sugar, mostly cane sugar but could be other sugars like beet or corn.

\n\n

Chaptilization is only illegal in several countries and one state in the USA. Here is the list Australia, Austria, Germany (for high quality wines), Italy and South Africa.

\n\n

Chaptilization is permitted in only certain areas of France. Those are Bordeaux, Burgundy, Alsace and Champagne. There is no need in warmer climates where the grapes get higher brix (sugar levels)

\n\n

No it's not dangerous to consume chaptilized wine. The main reason is to bring a wine up to around 11-12 potential alcohol so the wine is stable and in balance. Cool climate places like Germany and France routinely have under ripe grapes and sometimes need a little help getting across the finish line.

\n\n

If done in moderation, all the sugar added will be consumed by yeast and turned into alcohol. I suppose you could go crazy and make a wine with so much sugar it wouldn't finish fermenting. Some people swear they can tell when a wine has added sugar, but as far as I know, nobody can really tell by tasting if done in moderation.

\n\n

Why is it banned in the warmer places like California, Australia and South Africa? There simply isn't a need. The grapes get ripe on their own.

\n\n

There is one big loophole to get around this, you can use grape juice concentrate to give you an added boost if you are in bad (cool) year. But for the most part if you are looking at a crappy and cool year, say in California, you might just buy grapes from a warmer location and do some blending.

\n\n

Chaptilization on Wikipedia

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-13T23:11:14.887", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6530"}} +{ "Id": "6530", "PostTypeId": "1", "AcceptedAnswerId": "6531", "CreationDate": "2017-02-14T06:00:40.053", "Score": "4", "ViewCount": "213", "Body": "

We sometimes do a friendly wine tasting. The idea is to discover good, well priced wines available locally - something that you might not have bought yourself. Everyone brings a bottle, they are taken away by who ever is acting as sommelier for the evening, and then given a number. So, the whole thing is 'blind'. Scores are given etc etc... And eventual winners and losers announced (everyone also brings a small prize, so prizes are handed out as well). The amount tasted is basically no more than a thimble or two, there is no spittoon. Would we get different results if we did, or is it OK to do this in our friendly tasting sessions.

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-02-14T23:08:35.393", "Title": "Spittoons - in a friendly wine tasting", "Tags": "wine taste", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6531"}} +{ "Id": "6531", "PostTypeId": "2", "ParentId": "6530", "CreationDate": "2017-02-14T14:31:27.297", "Score": "5", "Body": "

The primary effect a spitoon would have, is less alcohol recpetion (some alcohol will get into the blood via the mouth-mucus). The alcohol could lead to different results for the later wines.

\n\n

You might get a more intense taste of the wine if you could take more of it into your mouth and \"wash\" with it. Even more if you take a sip, wash, gulp/spit, take another sip and taste.

\n\n

Maybe you want to try it, when you drink a glass of wine next time and then decide if the bigger sips / double sipping makes a difference to you.

\n\n

If it does but you dislike the idea of a spitoon, try reducing the number of wines per evening, so the increasing intoxication is not a problem.

\n\n

I really like your version of private tastings and might adopt some ideas from it. Have fun!

\n", "OwnerUserId": "5532", "LastActivityDate": "2017-02-14T14:31:27.297", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6532"}} +{ "Id": "6532", "PostTypeId": "2", "ParentId": "6518", "CreationDate": "2017-02-14T16:57:21.670", "Score": "7", "Body": "

We need to work up a few definitions before we get to the final answer here. So without further ado:

\n\n

Single Malt

\n\n

Single Malt means that the whiskey has been made using ONLY malted barley and nothing else and has been distilled at a single distillery. This is to distinguish it from:

\n\n

Grain/Single Pot

\n\n

Grain Whiskey, called Single Pot or Pure Pot when it's Irish, is still whiskey from a single distillery but can have other grains in it, such as rye or unmalted barley.

\n\n

Single Malt + Single Malt = Blended/Vatted Malt

\n\n

By mixing single malts from different distilleries you get a Blended Malt or Vatted Malt whiskey.

\n\n

Single Malt + Grain Whiskey = Blended Whiskey

\n\n

When you mix Single Malt with anything besides more Single Malt you get regular old Blended whiskey.

\n\n
\n\n

A lot of these terms only really apply to whiskies produced outside of the US, namely Scotland and Ireland, but Japan's whiskey-producing traditions are based primarily on Scotland's.

\n\n

In the US the whole malt thing goes out the window since the legal requirements only specify \"Majority\" grains, IE American Malt Whiskey only needs to be 51% malted barley. Rye Malt is 51% malted rye, etc. But the US terms also put a lot of other restrictions on the length of time the whiskey was aged and the alcohol proof at after distillation, when put into barrels, and when bottled. But that's a different question.

\n", "OwnerUserId": "268", "LastActivityDate": "2017-02-14T16:57:21.670", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6533"}} +{ "Id": "6533", "PostTypeId": "2", "ParentId": "6501", "CreationDate": "2017-02-14T17:26:11.217", "Score": "4", "Body": "

Yes the same beer from a cask and a keg will be VERY different.

\n\n

To your first point, breweries and bars will often have specially treated casks in ways that are impossible to do with kegs. Stuff like dry-hopping the beer in the cask at the bar so it's at its freshest and most intense. With a keg you'd need to put this between the tap and the glass like a Randall but with a cask you can just pop the cap and shove whatever you want in there.

\n\n

Casked beer also generally still have active yeast in it, at least according to CAMRA's rules, while kegs are filtered and have no yeast in them. Because of this there's a lot of preparation involved in a proper real ale cask.

\n\n
    \n
  1. The cask will come sealed from the brewery. First a soft spile or peg must be driven into the top hole. This is just a porous plug that allows air out. Based on how foamy this gets the bar can see how active the yeast is.

  2. \n
  3. When the yeast dies down the soft spile gets replaced with a hard spile which stops gas exchange. The cask then has to sit for a while so all the yeast can fall to the bottom as well as any other particulates or large proteins in the beer. This is called \"Dropping Bright\"

  4. \n
  5. Finally, once the beer has dropped bright the cask can be tapped which involves removing the hard spile and also either hooking up the side hole to a beer engine or a simple tap.

  6. \n
\n\n

Because of all this and traditionally being served from a cellar or bartop at \"cellar temperature\" vs kegs which are refrigerated the beer that comes out will be slightly warmer (40-50F vs 30-40F), much slower because of the pumping and off-gassing from the pour, and way less carbonated. Some beer engines will also use \"sparkler\" taps that fizz up the beer even more on the way out to generate more head but also results in a less carbonated beer.

\n\n

The result is a beer that will generally be smoother and rounder, you may get more flavor and more sweetness since it's warmer. Some flavors will come out more in the warmer and less carbonated and some will be overshadowed. Mouthfeel will be affected a lot by both factors as well. It's a hugely different animal and sometimes people like it.

\n", "OwnerUserId": "268", "LastActivityDate": "2017-02-14T17:26:11.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6534"}} +{ "Id": "6534", "PostTypeId": "2", "ParentId": "6530", "CreationDate": "2017-02-14T23:08:35.393", "Score": "3", "Body": "

It's fairly common in the wine trade to spit wine when evaluating wine as a buyer, winemaker, sommelier because you will get trashed if you drank everything.

\n\n

So there are two ways to spit. There is the common spit \"bucket\" and the paper coffee cup methods. When I taught at our local community college, they had every student spit wine into white paper coffee cups. Some people don't want to touch a common spit bucket and not everyone one is good at spitting with precision, so I recommend the coffee cup approach for beginners. You should see real professionals, they can spit into a bucket from 20 feet!

\n\n

There is a technique to it that takes a little bit of mastery so you don't end up dribbling wine all down your chin and clothes, but once you get the hang of it, it's pretty easy.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-14T23:08:35.393", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6535"}} +{ "Id": "6535", "PostTypeId": "1", "AcceptedAnswerId": "6536", "CreationDate": "2017-02-15T13:47:51.530", "Score": "5", "ViewCount": "578", "Body": "

Into a canned DRAUGHT Guinness I found a plastic white sphere. What is its purpose?

\n", "OwnerUserId": "6402", "LastActivityDate": "2017-02-15T14:26:40.380", "Title": "Why does canned Guinness DRAUGHT have a plastic sphere?", "Tags": "cans", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6536"}} +{ "Id": "6536", "PostTypeId": "2", "ParentId": "6535", "CreationDate": "2017-02-15T14:26:40.380", "Score": "5", "Body": "

It's called a floating widget and is used (together with nitrogen instead of carbondioxide) to give the beer it's typical, creamy head when poured from the can. The method was invented by the Guinness Brewery in the 1960ies.

\n

Cite from Wikipedia:

\n
\n

Some canned beers are pressurized by adding liquid nitrogen, which vaporises and expands in volume after the can is sealed, forcing gas and beer into the widget's hollow interior through a tiny hole - the less beer the better for subsequent head quality.

\n

[...]

\n

When the can is opened, the pressure in the can quickly drops, causing the pressurised gas and beer inside the widget to jet out from the hole. This agitation on the surrounding beer causes a chain reaction of bubble formation throughout the beer. The result, when the can is then poured out, is a surging mixture in the glass of very small gas bubbles and liquid.

\n
\n", "OwnerUserId": "5532", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-02-15T14:26:40.380", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6537"}} +{ "Id": "6537", "PostTypeId": "1", "CreationDate": "2017-02-15T14:57:32.787", "Score": "5", "ViewCount": "1177", "Body": "

Are there any restrictions to mix alcohol with other things?

\n

A friend of mine mixed whisky with milk and then he turned sick. he got rashes all over his face. But when i searched a little bit it turned out it's fine to mix whisky and milk. I want to know are there any limitations for mixing or can we just add anything we want to alcohols(mostly any) for better taste.

\n", "OwnerUserId": "6403", "LastEditorUserId": "5064", "LastEditDate": "2021-10-02T19:55:58.070", "LastActivityDate": "2021-10-02T19:55:58.070", "Title": "What to and what not to mix with alcohol?", "Tags": "recommendations ingredients", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6538"}} +{ "Id": "6538", "PostTypeId": "1", "AcceptedAnswerId": "6577", "CreationDate": "2017-02-15T15:45:01.317", "Score": "4", "ViewCount": "10765", "Body": "

I haven't heard a lot about the DRAUGHT (Guinness) in terms of its taste. But my brother insists to say that DRAUGHT is the queen of the Guinness.

\n\n

But I found nothing special, indeed, I find it rather too watered down.

\n\n

It is worth the hype or just a fad?

\n", "OwnerUserId": "6402", "LastActivityDate": "2017-02-26T18:39:50.730", "Title": "What is so special about Guinness DRAUGHT?", "Tags": "taste specialty-beers draught", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6539"}} +{ "Id": "6539", "PostTypeId": "2", "ParentId": "6538", "CreationDate": "2017-02-15T16:20:41.667", "Score": "5", "Body": "

Guinness Draft is an Irish Dry Stout, a session beer, with alcohol by volume at 4.2%. It is intended that you can sit and drink several pints without becoming overly intoxicated. Compare that with Bud Light, which is 4.3%. Guinness has much more flavor than Bud Light, or any other similar American Light Lager beers.

\n\n

If you compare it with Guinness Extra Stout (5.6% abv) or Guinness Foreign Extra Stout (7.5% abv) or any Russian Imperial Stout like Victory Storm King (9.1%) or Stone RIS (10.6% abv), then, yes, it will taste \"watered down\" by comparison. But you would be comparing apples with watermelons.

\n", "OwnerUserId": "381", "LastActivityDate": "2017-02-15T16:20:41.667", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6540"}} +{ "Id": "6540", "PostTypeId": "1", "AcceptedAnswerId": "7488", "CreationDate": "2017-02-15T17:09:44.893", "Score": "8", "ViewCount": "168", "Body": "

I read yet this on Wikipedia and some small articles.

\n\n

The articles didn't satisfy my curiosity.

\n\n

My question is:

\n\n
\n

What is the history of brewing in Japan?

\n
\n\n

Please, take in mind following sub-related-questions:

\n\n
\n

• Since the brewing techniques were imported, how did the brewing techniques evolve?

\n \n

• Have the Japanese maintained traditional techniques or invented some new\n ones?

\n \n

• There have been cases where they have combined European\n techniques with ancient Japanese fermentation techniques - was this before the arrival of Europeans?

\n
\n", "OwnerUserId": "6402", "LastEditorUserId": "6366", "LastEditDate": "2017-02-16T07:35:24.300", "LastActivityDate": "2018-11-16T00:01:50.340", "Title": "Japanese beers historic evolution", "Tags": "brewing history", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6541"}} +{ "Id": "6541", "PostTypeId": "1", "AcceptedAnswerId": "6542", "CreationDate": "2017-02-16T13:09:15.063", "Score": "2", "ViewCount": "502", "Body": "

I would like to know the real origins of the word (terminology) 'Hooch'. I have done some research here and here. However is there another point of view? If I make my own, can I call it 'Hooch'?

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2021-10-02T19:54:40.550", "LastActivityDate": "2021-10-02T19:54:40.550", "Title": "'Hooch' - origins of the word", "Tags": "home-brew origins", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6542"}} +{ "Id": "6542", "PostTypeId": "2", "ParentId": "6541", "CreationDate": "2017-02-16T19:39:23.027", "Score": "3", "Body": "

Hooch means \"cheap whiskey\" and here is the origin of the term:

\n\n
\n

hooch (n.)

\n \n

Also hootch, \"cheap whiskey,\" 1897, shortened form of Hoochinoo (1877) \"liquor made by Alaskan Indians,\" from the name of a native tribe in Alaska whose distilled liquor was a favorite with miners during the 1898 Klondike gold rush; the tribe's name is said by OED to be from Tlingit Hutsnuwu, literally \"grizzly bear fort.\"

\n \n

As the supply of whisky was very limited, and the throats down which it was poured were innumerable, it was found necessary to create some sort of a supply to meet the demand. This concoction was known as \"hooch\"; and disgusting as it is, it is doubtful if it is much more poisonous than the whisky itself. [M.H.E. Hayne, \"The Pioneers of the Klondyke,\" London, 1897] - The Online Etymology Dictionary

\n
\n", "OwnerUserId": "6408", "LastEditorUserId": "5064", "LastEditDate": "2017-02-17T01:10:50.303", "LastActivityDate": "2017-02-17T01:10:50.303", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6543"}} +{ "Id": "6543", "PostTypeId": "1", "AcceptedAnswerId": "6547", "CreationDate": "2017-02-17T20:17:18.317", "Score": "5", "ViewCount": "1166", "Body": "

There are some very expensive vodkas that are in pure crystal bottles, etc etc

\n\n

I'm looking for a vodka that's so special it warrants an approximate $500 price tag where the money is going to the contents, not the weird/special/extreme bottle.

\n\n

Bottle size somewhere around the standard 750ml- no 5 liter bottle please.

\n\n

Anyone have a direction to point me?

\n", "OwnerUserId": "6415", "LastActivityDate": "2017-09-07T03:53:43.693", "Title": "Is there a legitimate ~$500 vodka out there whose price isn't based on the bottle?", "Tags": "vodka", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6544"}} +{ "Id": "6544", "PostTypeId": "2", "ParentId": "4829", "CreationDate": "2017-02-17T20:43:57.130", "Score": "3", "Body": "

I know that it has been a while since the question was posted, but . . .

\n\n

If you look on the Chicago Rabbinical Council's website, they have a 25-page \"liquor list\", which contains about 10 pages of kosher beers.

\n", "OwnerUserId": "6416", "LastEditorUserId": "5064", "LastEditDate": "2017-02-17T21:40:34.020", "LastActivityDate": "2017-02-17T21:40:34.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6545"}} +{ "Id": "6545", "PostTypeId": "2", "ParentId": "4829", "CreationDate": "2017-02-17T21:38:45.037", "Score": "1", "Body": "

All beer is considered Kosher if there are not any special additives. If it's made from water, barely, hops and yeast it generally considered Kosher.

\n\n
\n

Based on the kashrut, most beers produced by typical methods don’t violate dietary law. In other words, beer is generically kosher; none of the raw ingredients and additives used to brew regular beer present kashrut concerns.

\n \n

The rules change, however, when atypical ingredients, additives, and flavorings — fruit, fruit syrups, spices, and so on — are added. In these cases, the beer requires certification. Likewise, if beers with higher alcohol content require fermentation with yeasts other than typical beer yeast, the beers require certification.

\n
\n\n

Choosing a Kosher Beer

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-17T21:38:45.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6546"}} +{ "Id": "6546", "PostTypeId": "1", "AcceptedAnswerId": "6549", "CreationDate": "2017-02-18T03:31:36.587", "Score": "4", "ViewCount": "383", "Body": "

Different animals' milk contains more sugar than others. I have read that the Huns drank fermented horse milk, but what are the types of milk that are fermented around the world today?

\n", "OwnerUserId": "1077", "LastActivityDate": "2017-02-18T07:49:54.800", "Title": "Fermenting milk?", "Tags": "fermentation", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6547"}} +{ "Id": "6547", "PostTypeId": "2", "ParentId": "6543", "CreationDate": "2017-02-18T05:43:56.207", "Score": "10", "Body": "

There are vintage bottles that will set you back that much, but they get their price tag from rarity, not quality. If you're just looking for fancy vodka, you reach diminishing returns pretty quickly. The New York Times noted Smirnoff as the best in a blind tasting, while Playboy's booze columnist had good things to say about Popov, which comes in a plastic bottle.. Even a vodka that is supposedly easier on your liver (because you know.... science and stuff) only goes for 30 dollars.

\n\n

On the luxury end of the spectrum vodka tops out around 70 bucks. This includes a numbered, limited edition bottle, that uses potato vintages in the same way that wines use grape vintages, and even lists the name of the potato farmer on the label. There are some notable and pricey exceptions to that. Stolichnaya released three limited edition bottlings a few years back, each going for 3k. The big deal with these was that they used special water sources. When you go for ultra-premium vodka, that's what you get.... really expensive water.

\n\n

If you are still interested, Subzero in St. Louis was named one of the best vodka bars in America by both USA Today and Liquor.com. They have one of, if not the single largest vodka collection of any bar in the US. As far as I know, three of their bottles are over a hundred dollars. The first is one of the Stoli bottles mentioned above. The second is called CLIX, and is made by Buffalo Trace distillery. The name comes from the roman numeral for the number of times it's distilled....159. Which is 157 times more than necessary, in my humble opinion. The other is Ciroc Ten. Both of those come in around 300 greenbacks.

\n\n

Personally, whether this is a gift or you just want to try something different, here are a few things that might interest you. Napa Reserve Neutral Brandy is vodka made from wine. It used to be called vodka and not brandy, pretty sure they had to change that for regulatory reasons. Grey Goose VX is vodka mixed with a little bit of brandy. Finally Black Cow Milk Vodka. It was the first vodka made from milk and if I remember right, a couple years back I could swear I heard it was Prince Williams favored vodka. Then again, apparently a bottle of Smirnoff was seen at Kensington Palace... and if the cheap stuff is good enough for royalty, it should be good enough for anyone.

\n", "OwnerUserId": "5974", "LastActivityDate": "2017-02-18T05:43:56.207", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6548"}} +{ "Id": "6548", "PostTypeId": "2", "ParentId": "6546", "CreationDate": "2017-02-18T06:45:04.137", "Score": "2", "Body": "

Camel's milk is fermented in many places. Here and here is some info for you. Ewan McGregor and Charlie Boreman drank it in Mongolia during the filming of The Long Way Round. It was warmed over a stove that was fueled by camel dung, which apparently gave it an 'earthy' taste.

\n\n

In Kazakhstan it’s known as 'Shubat' - and you can buy it in the supermarkets.

\n\n

Known as Kefir, milk is fermented using grains - which produces what some say is a superior product to yogurt.

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-02-18T07:29:32.937", "LastActivityDate": "2017-02-18T07:29:32.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6549"}} +{ "Id": "6549", "PostTypeId": "2", "ParentId": "6546", "CreationDate": "2017-02-18T07:49:54.800", "Score": "5", "Body": "

The many varieties of fermented milks from around the world which are distinguished by the type and specificity of the microorganisms used for fermentation, by preserving fresh animal milk (e.g. cow, goat, sheep, mare, buffalo, camel or yak).

\n\n

Dahi from India is a type of set yoghurt made from cow or buffalo milks which contains bacteria like L.lactis subsp. lactis, S. salivarius subsp. thermophilus.

\n\n

Langfil is a traditional fermented milk product from Sweden, It is made by fermenting cow's milk with a variety of bacteria from the species Lactococcus lactis and Leuconostoc mesenteroides.

\n\n

Gariss is an indigenous fermented milk of Sudan. The product is made from camel's milk by natural fermentation of milk in leather bags. Streptococcus \ninfantarius subsp. infantarius are involved in fermentation.

\n\n

Yakult, mixture of skimmed milk with a special strain of the bacterium Lactobacillus casei Shirota. It was created by Japanese scientist Minoru Shirota.

\n", "OwnerUserId": "6417", "LastActivityDate": "2017-02-18T07:49:54.800", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6550"}} +{ "Id": "6550", "PostTypeId": "2", "ParentId": "6537", "CreationDate": "2017-02-19T00:31:33.177", "Score": "1", "Body": "

Mixing Alcohol is fine, though it's best to use common sense when doing so and not to go too overboard doing so. It worth checking other possibilities as well contributing to the unwellness: Did your friend eat before drinking, what was eaten? As for the rashes, that sounds like some sort of allergic rection.

\n\n

By personal experience, Mixed Alcohol effects people differently with me, I can't drink Jager-Bombs or mix two Different wines. But I have many friends that can.

\n", "OwnerUserId": "6420", "LastActivityDate": "2017-02-19T00:31:33.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6551"}} +{ "Id": "6551", "PostTypeId": "1", "AcceptedAnswerId": "6556", "CreationDate": "2017-02-19T13:27:22.677", "Score": "5", "ViewCount": "290", "Body": "

Recently I've been making a spaghetti dish where wine is the protagonist. \nThe cooking of the spaghetti is finished in a sauce (whose cooking already started, too) made with red wine, oil, garlic and chilli pepper, so that they absorb much of it. \nWhen they're done, I add black olives and soft-texture cheese with an intense taste, not salted and slightly bitter, and mix up. Finally, the whole thing goes in the plate where minced pistachio nuts are waiting.

\n\n

I've come to the conclusion that I prefer a fortfied wine in here. Moreover, due to the pistachio nuts, I want a sweet aftertaste, but at the same time it should match the spicy flavour given by other ingredients. \nWhat are my European choices? \nI'd prefer cheap enough suggestions (maximum around 10 euros a bottle) but more complete overviews are welcome.

\n\n

You can see here the cheese at issue. Instead the wine I've used so far is Rosso Gasperini (yes, I know this isn't fortified, the thing is I believe a fortified one would fare better).

\n", "OwnerUserId": "6422", "LastEditorUserId": "6422", "LastEditDate": "2017-02-19T16:50:02.690", "LastActivityDate": "2017-02-19T23:26:46.510", "Title": "What fortified red wines combine best with black olives, pistachio nuts and this particular cheese?", "Tags": "recommendations alcohol-level cooking red-wine", "AnswerCount": "2", "CommentCount": "8", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6552"}} +{ "Id": "6552", "PostTypeId": "1", "AcceptedAnswerId": "6555", "CreationDate": "2017-02-19T13:45:23.183", "Score": "2", "ViewCount": "745", "Body": "

OK, I want to create a romantic evening - everything is organized except for the perfect beverage! For various reasons, champagne is out, so is any type of wine or beer or cider. Thus the question, apart from all the above, what can I serve for my romantic evening?

\n", "OwnerUserId": "6366", "LastEditorUserId": "37", "LastEditDate": "2017-02-21T18:25:59.963", "LastActivityDate": "2021-10-02T19:52:23.947", "Title": "A romantic evening - what to drink?", "Tags": "wine cider", "AnswerCount": "2", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6553"}} +{ "Id": "6553", "PostTypeId": "1", "AcceptedAnswerId": "6554", "CreationDate": "2017-02-19T15:17:23.597", "Score": "3", "ViewCount": "103", "Body": "

St Patrick's Day is celebrated every year on March 17. It brings back those old Irish stories and legends that abound with this Saint.

\n\n

We all know of some of that traditional Irish drinks that people drink on the Feast of St Patrick, such as Irish Coffee or drinking Green Beer.

\n\n

Are there any other St Patrick's Day drinking traditions celebrated on this day?

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-19T15:33:01.713", "Title": "Traditional drinks for St Patrick's Day?", "Tags": "drinking tradition", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6554"}} +{ "Id": "6554", "PostTypeId": "2", "ParentId": "6553", "CreationDate": "2017-02-19T15:33:01.713", "Score": "1", "Body": "

I don't think the Irish really care too much as long as they have a drink in front of them. How about Irish Whiskey and Guinness? Maybe some Irish Coffee, Bailey's or cider. All the Irish I know aren't too picky. I don't think you find too much green beer in Ireland, that's a made up American thing.

\n\n

Origins of Green Beer

\n\n

Ireland's top 10 drinks

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-19T15:33:01.713", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6555"}} +{ "Id": "6555", "PostTypeId": "2", "ParentId": "6552", "CreationDate": "2017-02-19T16:03:23.877", "Score": "2", "Body": "

The most romantic thing is to conform to the desires of your companion. It sounds like there are specific problems with sparkling and red wine. Personally as much as I like beer, I don't think it is \"romantic\" with the possible exception of a Belgium Tripel. These taste great, are surprisingly alcoholic and look neat served in the appropriate glass (a large wine glass may suffice). What I do think might be fun is a good French rose (a sparkling rose is really romantic, but out). Otherwise investigate cocktails. Unfortunately, I not much of a cocktail guy so I don't have any suggestions. Googling \"romantic cocktails\" provides a lot of hits.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2017-02-19T23:46:37.560", "LastActivityDate": "2017-02-19T23:46:37.560", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6556"}} +{ "Id": "6556", "PostTypeId": "2", "ParentId": "6551", "CreationDate": "2017-02-19T16:12:03.257", "Score": "2", "Body": "

Please allow me to recommend a nice red classic Italian wine called Chianti.

\n\n

From this Wine and Cheese Pairing Guide we can see that Chianti is paired well to the Pecorino Romano Cheese and nuts. I know that you are using a Columella's Caciofiore cheese that is \"considered a sort of \"ancestor\" of the Roman pecorino cheese, prepared with rennet based on cardoon.\"

\n\n
\n

Columella's Caciofiore can be considered a sort of \"ancestor\" of the Roman Pecorino Cheese, prepared with rennet based on cardoon. Columella talks about this cheese in his treatise \"De Rustica\": \"It is better to curdle the milk with lamb or kid rennet, although it is also possible to curdle it with the cardoon flower or with safflower seeds or fig latex. Anyway, the best cheese is made with as less treatment as possible\". (Lucio Giunio Moderato Columella, \"De Rustica\", 50 AD). Today, in the Roman Countryside, \"native country\" of the cardoon and the artichoke, some producers still use the cardoon flower as rennet and prepare raw milk pecorino cheese with an ancient taste.

\n
\n\n

The Chianti red wine could be substituted with a Sangiovese red wine.

\n\n

If the olives or spices are over powering the taste of your dish you may wish to use a Merlot Wine.

\n\n

If it is a fortified wine you are after, would like to recommend a fortified Madeira Wine.

\n\n
\n

Fortified wines, like port, sherry and Madeira, also go very well with rich cheeses. A classic match is English Stilton and port, but other blue cheeses also taste lovely alongside a glass of sweet, flavourful port. - Pairing red wine with cheese.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-02-19T23:26:46.510", "LastActivityDate": "2017-02-19T23:26:46.510", "CommentCount": "9", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6557"}} +{ "Id": "6557", "PostTypeId": "2", "ParentId": "6551", "CreationDate": "2017-02-19T23:26:05.190", "Score": "1", "Body": "

The only answer would be an aged Madeira or Port. I think either would be an excellent accompaniment to the foods are your choosing. Make sure they are fairly old. 10+ years old at least. The older the better...

\n\n

Best wine I ever had was a 1780s Madeira. Each bottle alone was over $10,000 and a glass at the restaurant was $1000. I know the restaurant owner and he let me have a taste. It was sublime!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-19T23:26:05.190", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6558"}} +{ "Id": "6558", "PostTypeId": "2", "ParentId": "3457", "CreationDate": "2017-02-20T21:14:09.360", "Score": "2", "Body": "

The name for a mixture of dark beer and gin (plus brown sugar) is a Dog's Nose. It was usually not mild but porter in the 19th century. It was heated with a little nutmeg on top. Dickens refers to it in Pickwick's Papers. By the 20th century it was still drunk in the East End but with Mild instead of porter and no sugar, nutmeg or warming.

\n\n

Cheers

\n", "OwnerUserId": "6429", "LastActivityDate": "2017-02-20T21:14:09.360", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6559"}} +{ "Id": "6559", "PostTypeId": "2", "ParentId": "1085", "CreationDate": "2017-02-21T00:02:07.973", "Score": "0", "Body": "

Following up on my own question. I was in Vancouver a few months ago, went to the same exact place where I had had the Capilano pale ale years ago (the restaurant on the top of the mountain where the tram goes), and can definitely say they don't carry it, had never even heard of it (younger wait staff). So, it would seem it doesn't exist anymore.

\n", "OwnerUserId": "1501", "LastActivityDate": "2017-02-21T00:02:07.973", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6560"}} +{ "Id": "6560", "PostTypeId": "1", "CreationDate": "2017-02-21T03:04:39.227", "Score": "4", "ViewCount": "230", "Body": "

Dixie Brewing Company used to make a dessert beer called White Chocolate Moose. It was a sweet, chocolate-flavored (I don't mean chocolate malt) beer and came in small (I think 7oz) bottles -- which was the right size for something that concentrated. (In a way, it was to beer what ice wine is to wine.) Then Hurricane Katrina happened and the brewery was destroyed. According to Wikipedia they operate now as a contract brewery, but as far as I can tell they're not making this particular product, at least under that name. (\"As far as I can tell\": I can't find a web site for the company nor a product list, but my searches under this name aren't producing results.)

\n\n

Is somebody producing this under a different name? If so, who and where? If not, what beers are available that are similar in taste?

\n", "OwnerUserId": "43", "LastActivityDate": "2017-02-22T23:59:35.710", "Title": "Where can I find something similar to White Chocolate Moose (Dixie Brewing Co)?", "Tags": "breweries specialty-beers", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6561"}} +{ "Id": "6561", "PostTypeId": "1", "AcceptedAnswerId": "6573", "CreationDate": "2017-02-21T14:18:32.453", "Score": "22", "ViewCount": "18221", "Body": "

Assuming that it is available through 'normal' outlets - shops, supermarkets, off licenses etc... (in other words legal) What (per unit) is the strongest alcoholic drink in the world? Beers, wines and spirits included.

\n", "OwnerUserId": "6366", "LastEditorUserId": "37", "LastEditDate": "2017-03-02T20:36:04.800", "LastActivityDate": "2020-11-19T09:01:06.607", "Title": "What is the strongest drink in the world?", "Tags": "alcohol-level spirits", "AnswerCount": "10", "CommentCount": "4", "FavoriteCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6562"}} +{ "Id": "6562", "PostTypeId": "2", "ParentId": "6552", "CreationDate": "2017-02-21T15:32:48.393", "Score": "1", "Body": "

It's unclear what the restrictions are so I have to guess.

\n

So how about highballs/longdrinks? If you are easy on the spirits it should be possible to drink them as beverages.

\n

What might be a nice companion to food (depends on the food and your taste) as it's not too sweet and not to much alcohol: Lillet (white vermouth) and Wild Berry (Schweppes).

\n

Margaritas are also common during dinner, but that might be a problem as you're on a boat.

\n

Coke & rum, vodka & orange-juice, gin & tonic might also work.

\n", "OwnerUserId": "5532", "LastEditorUserId": "5064", "LastEditDate": "2021-10-02T19:52:23.947", "LastActivityDate": "2021-10-02T19:52:23.947", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6563"}} +{ "Id": "6563", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-21T15:35:25.817", "Score": "18", "Body": "

At the time of writing this the strongest beer in circulation is a scottish made larger/pilsner Snake Venom By Brewmeister, this beer is 67.5% ABV. and is strongly recommended that you only drink small amounts in a sitting, buying a bottle(275ml) of this would set you back a £54.99

\n\n

Other than this beer there was Koelschip Mistery Of Beer - Brouwerij het Koelschip that was 70% ABV but as I'm aware is no longer in circulation and has had production stopped as the brewery shut down

\n\n

As far as all alcohol goes the strongest spirit is spirytus rektyfikowany which is a 96% Vodka. The cheapest you will find this is a small bottle(10cl) and this will cost £7.95 It is is strongly recommended to not drink this neat as it would be damaging

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2017-02-21T15:41:54.537", "LastActivityDate": "2017-02-21T15:41:54.537", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6564"}} +{ "Id": "6564", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-21T15:47:34.450", "Score": "8", "Body": "

For myself, I have found that Everclear is the strongest spirits I have ever bought at 190 proof. Although it is too strong for myself to drink by itself, it makes excellent mixes. Some people have use it to extract the medicinal properties out of plants because of its' strength. It also comes in 150(1) proof bottles too.

\n\n

\"A

\n\n

A bottle of 190-proof Everclear

\n\n

The lower proof Everclear is much easier to find and is quite common in the USA.

\n\n

The 190 proof (95% ABV) is sold at Bevmo, depending on your state.

\n\n

For more information see the Liquor Barn.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-21T15:47:34.450", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6565"}} +{ "Id": "6565", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-21T17:17:19.887", "Score": "5", "Body": "

You can buy scientific grade Ethanol, usually at a science supply shop. Many of them only sell it in person. It is usually 99.5% or 199 proof!. For that extra kick if Everclear isn't strong enough for you!

\n\n

Ethanol at Fisher Scientific

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-21T17:17:19.887", "CommentCount": "10", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6566"}} +{ "Id": "6566", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-21T17:36:59.977", "Score": "2", "Body": "

Hapsburg Premium Reserve Absinthe has 89.9% ABV

\n\n

\"Hapsburg

\n\n
\n

The strongest absinthe on the UK market. Serve well diluted for your own safety and keep well away from naked flames. The term premium reserve refers to the high strength, with original being the 'weakest' (though still 72.5%) and super deluxe being in the middle.

\n \n

Please note this is a high-strength product and we recommend not drinking neat – please enjoy diluted or with a mixer of your choice.

\n
\n", "OwnerUserId": "374", "LastEditorUserId": "5064", "LastEditDate": "2017-04-14T14:54:44.693", "LastActivityDate": "2017-04-14T14:54:44.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6567"}} +{ "Id": "6567", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-21T17:51:16.623", "Score": "12", "Body": "

Indirect answer

\n\n

95% or 190 proof is an upper end for distilled alcohol

\n\n

Water and ethanol form an azeotrop at that mixture so you can not get more than 95% ethanol with fractional distillation.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2017-02-21T22:52:36.003", "LastActivityDate": "2017-02-21T22:52:36.003", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6568"}} +{ "Id": "6568", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-22T05:48:26.197", "Score": "10", "Body": "

Spirytus Rektyfikowany

\n\n

The purity of rectified spirit has a practical limit of 95.6% ABV; this hard to pronounce Polish Vodka is a murderous 96% ABV.

\n\n

\"Spirytus

\n\n

Here are the details on the bottle:

\n\n
\n

A 10cl bottle of rectified spirit from Poland bottled at the extreme ABV of 96%. This is often used as a base for liqueurs and other infusions, \n and we highly recommend that it is never drunk neat.

\n
\n\n

From Australia's \"Courier Mail\":

\n\n
\n

National Alliance for Action on Alcohol co-chairman Professor Mike Daube said it was \"amazingly irresponsible'' for stores to sell the liquor, which had the potential to cause serious damage to drinkers or even kill them.

\n \n

Prof Daube said the extreme nature of the product could appeal to young binge > drinkers, and putting the product next to normal spirits could endanger people\n who did not read the label properly.

\n
\n", "OwnerUserId": "6417", "LastEditorUserId": "6459", "LastEditDate": "2017-02-23T14:22:02.760", "LastActivityDate": "2017-02-23T14:22:02.760", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6570"}} +{ "Id": "6570", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-22T10:46:36.287", "Score": "6", "Body": "

Try \"Kehlenschneider\". It's a Chili liquor with 80% alc and 400,000 to 800,000 scoville. Remember, tabasco has only 3,000 scoville.\nKehlenschneider

\n\n

\"Chillischnaps\"

\n\n

Chillischnaps

\n", "OwnerUserId": "6445", "LastEditorUserId": "5064", "LastEditDate": "2017-04-14T14:28:02.200", "LastActivityDate": "2017-04-14T14:28:02.200", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6573"}} +{ "Id": "6573", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-22T19:52:45.097", "Score": "11", "Body": "

For those who wish to drink something from Bolivia, there is Cocoroco which is an alcoholic beverage notable for its extremely high alcohol content by volume, 96%. (ABV).

\n\n
\n

Cocoroco is sold as \"potable alcohol\", most often in tin cans. Like rum, cocoroco is made from sugar cane. - Cocoroco (Wikipedia)

\n
\n\n

\"Cocoroco

\n\n

Cocoroco can

\n\n

The following article may be of some all around interest: Top 10 Strongest Alcoholic Drinks in the World.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-22T19:52:45.097", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6574"}} +{ "Id": "6574", "PostTypeId": "2", "ParentId": "991", "CreationDate": "2017-02-22T21:41:39.143", "Score": "-1", "Body": "

In the US, it's completely illegal for regular people to ship alcohol through the US Post Office inside the US. You can if you are a certified wine/beer/spirits shipper through UPS or Fedex or get someone to do it for you. That just inside the country! I am a certified shipper for my (defunct) winery and I've tried shipping wine internationally several times and it was so expensive we all decided not to do it. You can do it under the table (illegally) but I'm not sure it's worth the effort.

\n\n

Pretty sure it's much easier in the EU.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-22T21:41:39.143", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6575"}} +{ "Id": "6575", "PostTypeId": "2", "ParentId": "6560", "CreationDate": "2017-02-22T23:27:12.230", "Score": "4", "Body": "

There are several that you might try.

\n\n

The Bruery White Chocolate

\n\n
\n

This bourbon barrel-aged wheatwine-style ale made a fanciful trip to the chocolatier and returned with luscious flavors of white chocolate – hence the name. White Chocolate is a rewarding summons to the senses – beginning with its golden appearance and finishing with warming, white chocolate-like flavors. This is accomplished by adding cacao nibs from TCHO and fresh vanilla beans to our bourbon barrel-aged wheatwine-style ale, complimenting the rich notes of coconut, honey, caramel and vanilla from extensive barrel-aging.

\n \n

Food Pairing\n Funnel cake, warm fruit cobbler, a white chocolate-and-macadamia nut ice cream sandwich. The County Fair.

\n
\n\n

Sonoran Brew Company White Chocolate Ale

\n\n

As Beer Advocate describes it:

\n\n
\n

Inspired by the beauty of the White Mountains; the Sonoran White Chocolate Ale is a light, refreshing and completely unique wheat beer. Like a fine chocolate, this brew has a delicate aroma and a subtle taste of white chocolate, which is truly astonishing!

\n
\n", "OwnerUserId": "6391", "LastEditorUserId": "6391", "LastEditDate": "2017-02-22T23:59:35.710", "LastActivityDate": "2017-02-22T23:59:35.710", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6576"}} +{ "Id": "6576", "PostTypeId": "1", "AcceptedAnswerId": "6581", "CreationDate": "2017-02-23T07:25:13.360", "Score": "2", "ViewCount": "2435", "Body": "

Having discovered a trove of ridiculously alcoholic spirits. In what quantities should I mix them? If I slip and pour a little too much in this could cause a major problem! Let's say I am using Cocoroco which is sold as \"potable alcohol\". Like rum, cocoroco is made from sugar cane and is 96% (ABV). So, how much, and what is the best mixer to team up with it?

\n", "OwnerUserId": "6366", "LastActivityDate": "2020-02-22T18:45:44.433", "Title": "Mixing very strong alcohol for cocktails", "Tags": "spirits mixers", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6577"}} +{ "Id": "6577", "PostTypeId": "2", "ParentId": "6538", "CreationDate": "2017-02-23T09:28:13.100", "Score": "2", "Body": "

The beer called Guinness draft in Ireland would be called Guinness On Tap in locations such as New York.

\n\n

The reason for the emphasis on draft versus in bottle is quality and taste. \nIn my experience over recent decades, people pay extra for the most popular bottled beers in the US and in my opinion this is because of the guaranteed quality of bottled. Depending on the bar, the draft (tap) beer can vary from OK to well, stale, or watery, or even unhealthy in some disreputable cases. \nThe bottle is much more tamper-proof. So for this reason people will pay a couple of dollars more per drink for the same volume, of the same brand.
\nHaving said that, your large volume commercial US (and European) beers are mostly lagers, pilsners and the like. For these kinds of beer, the difference between bottled and high quality draft in a good bar, is small.

\n\n

But Guinness stout is a very specific kind of brew. As a variant of porter, it provides a very different experience from the bottle versus on draft.\nIt is very rare to see anyone in Ireland drink bottled Guinness (or any other brand of stout) in their local pub. Compared to draft, the bottled tastes bitter, is gassy and does not keep the creamy head to anything like the same extent as well served draft. In contrast, a good pint of draft stout is creamy, the maltiness well balanced with hops. Try a taste comparison and you will see for yourself.

\n\n

But have it in a reputable pub in Ireland. There the supply chain is quality assured and the bartender is well drilled in the pour, which is also unique to draft stout.

\n", "OwnerUserId": "6458", "LastEditorUserId": "6458", "LastEditDate": "2017-02-26T18:39:50.730", "LastActivityDate": "2017-02-26T18:39:50.730", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6580"}} +{ "Id": "6580", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-23T13:11:35.543", "Score": "-2", "Body": "

Strongest alcohol

\n\n

Spirytus rektyfikowant (96% alcohol)

\n", "OwnerUserId": "6475", "LastActivityDate": "2017-02-23T13:11:35.543", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6581"}} +{ "Id": "6581", "PostTypeId": "2", "ParentId": "6576", "CreationDate": "2017-02-23T16:19:07.900", "Score": "2", "Body": "

A rule of thumb, one shot of high proof is like two shots of an average liquor. It'll still be stronger but, you can wing recipes by halving the alcohol.

\n\n

When working with high proofs the trick is achieving proper dilution. Somewhere in the range of 20 percent ABV is a noble choice for a finished cocktail. Often you may want more than 20 percent (even up to 40 percent which is like taking straight shots, easy does it) rarely you'll want less. For a bottle sitting at 96 percent, a 1:4 ratio (booze:mixer) should put you around 19 percent while 3:7 will up you to 28 percent.

\n\n

Since you don't have to add much spirit to your drink, you can add it to things without changing their mouth texture or flavor too much so, they're good for keeping thick or rich fluids just the way you like them. In my experience, these high proofs don't have much flavor to start with but they do have more bite or burn than say, a good vodka. I would keep the vodka for lighter flavors like lemonade but, this might work just fine for orange juice. I think something like this would make a good candidate for a boozy shake, if that's the route you go I recommend pulling that ABV down past that 20 percent, closer to 12 or 15 percent (where most wine sits at) because milkshakes are big... nobody wants a tiny milkshake.

\n\n

Fair warning, if your mixer is a liqueur.... if it has alcohol in it, the math below won't work. Don't mix 141 or 160 or 192 proof alcohol with nothing but Bailey's and then wonder why you blacked out, you have to add more non-alcoholic liquid to offset the extra alcohol....

\n\n

Now for the math. I got those ratios up there by taking the ABV and multiplying it by decimals. So... a bottle with 96 percent ABV, if you multiply 96 by 0.5 you get 48, your new ABV. That 0.5 represents how much of your original alcohol is added to the mix. 0.5 is half alcohol and half mixer. 0.2 is 2 parts alcohol to 8 parts mixer. 0.3 is 3 parts alcohol to 7 parts mixer... notice how the ratios always add up to ten. You can do this with any ABV. If I wanted to mix with a 40 percent ABV just start playing with numbers. 40 ABV x .7 = 28 ABV in a 7 part alcohol to 3 part mixer ratio.

\n", "OwnerUserId": "5974", "LastEditorUserId": "5974", "LastEditDate": "2020-02-22T18:45:44.433", "LastActivityDate": "2020-02-22T18:45:44.433", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6582"}} +{ "Id": "6582", "PostTypeId": "1", "AcceptedAnswerId": "6584", "CreationDate": "2017-02-23T20:26:30.157", "Score": "5", "ViewCount": "206", "Body": "

Many cocktails such as fizzes call for an egg white (or an egg yolk in some cases).

\n\n

Given that I'm not sure I would eat a raw egg, how safe is it to put one in my drink? Are there any alternatives I can use instead of egg white?

\n", "OwnerUserId": "6472", "LastActivityDate": "2017-03-12T06:52:15.097", "Title": "How safe are eggs in cocktails like fizzes?", "Tags": "ingredients cocktails", "AnswerCount": "4", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6583"}} +{ "Id": "6583", "PostTypeId": "2", "ParentId": "6582", "CreationDate": "2017-02-23T20:35:04.013", "Score": "2", "Body": "

Whites and yokes are also used in many health drinks. Raw eggs (not expired) are considered safe (and healthy).

\n", "OwnerUserId": "4903", "LastActivityDate": "2017-02-23T20:35:04.013", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6584"}} +{ "Id": "6584", "PostTypeId": "2", "ParentId": "6582", "CreationDate": "2017-02-23T22:45:09.357", "Score": "4", "Body": "

According to a USDA report, a study done in 2000 showed that of the estimated 47 billion eggs consumed in the U.S. annually, 2.3 million of them were estimated to be contaminated by salmonella, leading to approximately 240,000 illnesses. So, if my math is correct, for any given egg, you have something like a 1 in 100,000 chance of getting one that has salmonella, and the chance of getting ill is somewhat less that that...Somewhere between 1 in 100,000 and 1 in a million.

\n\n

So, relatively low risk, I'd say, assuming that the global numbers are at least on the same order of magnitude as what we see in the U.S.

\n\n

That said, there is a way to reduce the risk even further...Nearly to zero. That is to use pasteurized eggs. Most shell eggs sold in the U.S. are unpasteurized, but you can find pasteurized shell eggs, and the pasteurization process does quite a good job of killing salmonella, and so these eggs are highly recommended in any concoction that requires raw, or undercooked eggs.

\n", "OwnerUserId": "37", "LastActivityDate": "2017-02-23T22:45:09.357", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6586"}} +{ "Id": "6586", "PostTypeId": "2", "ParentId": "6561", "CreationDate": "2017-02-24T04:44:52.030", "Score": "3", "Body": "

I know you are looking for \"normal outlets\", but for those who are interested, the world record holder for a while was Estonian Spirit aka Eesti Piiritus at 96.6%. You can still find some for sale at auctions. I brought a few bottles back when you could still buy it and foolishly did a shot of it. Never trying that again!

\n\n

\"Estonian

\n\n

\"Estonian

\n", "OwnerUserId": "6488", "LastActivityDate": "2017-02-24T04:44:52.030", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6587"}} +{ "Id": "6587", "PostTypeId": "1", "AcceptedAnswerId": "6591", "CreationDate": "2017-02-24T06:23:37.640", "Score": "4", "ViewCount": "237", "Body": "

Chocolate mousse made with Baileys is pretty much heaven. However, what other liqueurs (not generic Baileys) would give this favorite dessert a well needed kick? Here is the link to make the Bailey's mousse. I want to be able to taste the liqueur as if I were drinking it, but without it overpowering the chocolate (or falling over sideways).

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-02-25T05:35:47.373", "LastActivityDate": "2017-02-25T05:35:47.373", "Title": "Baileys chocolate mousse - an alternative liqueur", "Tags": "pairing liqueur", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6588"}} +{ "Id": "6588", "PostTypeId": "1", "AcceptedAnswerId": "6589", "CreationDate": "2017-02-24T07:59:40.547", "Score": "6", "ViewCount": "2338", "Body": "

What is the most expensive legally available alcohol / drink in the world (per unit)? And why does it command the price?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-02-24T08:07:11.273", "LastActivityDate": "2018-07-27T06:43:06.927", "Title": "What is the most expensive alcohol / drink (per unit) in the world?", "Tags": "price alcohol", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6589"}} +{ "Id": "6589", "PostTypeId": "2", "ParentId": "6588", "CreationDate": "2017-02-24T10:20:23.243", "Score": "16", "Body": "

Prices for rare or unique items are usually nearly meaningless numbers. What an item fetched at auction last week may have no bearing on what you might be able to buy it for today (possibly it would be literally priceless), and no bearing on what it might sell for tomorrow if it went to auction again. That said, a 1947 Cheval-Blanc last sold at auction in 2010 for £192,000. Who knows what Thomas Jefferson's Chateau Lafite 1787 would sell for if it came up for auction now (it sold in 1985 for $160,000).

\n\n

If you restrict it to something you can actually buy now at retail, I think it would be tough to beat the 50 year old Balvenie (~£30,000) or 50 year old Macallan Lalique (~£50,000 if available?), but prices will be highly retailer dependent.

\n\n

Novelty bar drinks will probably be more expensive by volume, if anybody actually pays for them... but if you disqualify Diamond Is Forever from the Ritz-Carlton in Tokyo ($22,600) since you're paying for a $16,000 diamond inside the drink itself, and also disqualify drinks with any precious materials other than the liquids themselves (e.g. The Gigi from Gigi's at Mayfair for £8,888 gets you a bit of gold leaf) and further disqualify \"profits go to charity\"-type drinks (you can taste the Macallan Cire Perdue¹ for $64,000 at the £10 bar (lol) of Montage Beverly Hills hotel), you're probably left with whatever made-for-publicity drink currently holds the record. That might be Salvatore's Legacy at £5,500 from Playboy Club in Mayfair... but at this point, does it really matter? The prices would seem to just be part of the gimmick and a way of keeping score.

\n\n

To try to answer the \"why\" part of the question explicitly, a price is only reflective of value to the extent that both a buyer and a seller can agree to transact at it. A ticket price only indicates willingness on a seller's part, and shouldn't be taken as evidence that it can in fact \"command\" that price. That said, while production costs (including storage, wastage, and opportunity costs) are a big reason why older wines and spirits tend to cost more, at the top end, rarity and perceived prestige will also play a big part. At auctions, though, most of it will come down to a few people with money who all want something of which only one exists. It's similar to how a print of what to my admittedly philistine eyes looks like a boring photograph of a not-particularly-pretty section of river can sell for millions.

\n\n
\n\n

1: the Cire Perdue bottle itself was disqualified at the outset for being cheaper per liter than the wines and also not available at retail.

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2017-02-24T15:35:08.897", "LastActivityDate": "2017-02-24T15:35:08.897", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6590"}} +{ "Id": "6590", "PostTypeId": "2", "ParentId": "6576", "CreationDate": "2017-02-24T13:25:43.047", "Score": "1", "Body": "

Mixing drinks is an art. This is even more true when one is mixing a drink that involves extremely high percentage alcohols.

\n

Allow me to have a little fun here and show you how to modify a cocktail recipe and I will use Cocoroco as an example. But first:

\n
\n

Alcohol Percentages of Cocktails

\n

When creating a new cocktail, balance is always important. A common rookie mistake is to make a cocktail that has the alcohol content way out of proportion. You know, the one that should actually have the flammable symbol on the side of the glass. Five ounces of Everclear (95% ABV), one-ounce orange juice! The idea being that; it may not taste good, but it will get you “;wasted”. Well, we’ve all done that and realized that there are better ways to enjoy the benefits of alcohol. The best way is in a well-balanced cocktail.

\n

The best example of a balanced drink is wine. It has a moderate alcohol content and the sweet and sour balance each other out nicely. The alcohol content of a standard glass of wine is around 12% with some wines approaching 14%. Some ports and sherry have alcohol content in the 17% to 20% range, and still taste very good, usually because the sugar content is higher. Again, it’s all about balance in drinks.

\n
\n

The full article on from the Art of Drink, explains how to figure out the math percentages in drinks in a very simple manner and will leave it to the reader to investigate this further on there own.

\n

Now turning to Cocoroco.

\n
\n

The Cocoroco is the most alcoholic beverage in the world. With a graduation around 96 degrees this Bolivian drink can be highly toxic. It is made from sugarcane.

\n

The locals often mixed with tea and lemon. It is a drink used primarily to remove the cold at these altitudes is considerable.

\n
\n

Here I will modify the Crazy Parrot Cocktail Recipe calling it Bolivian Naval Destroyer. Bolivia is a landlocked country, but it still possesses a navy.

\n

The following is only an example of how I would modify a drink in order to be able to use a very high percentage alcohol in a mix.

\n

Bolivian Naval Destroyer:

\n

Drink Type: Cocktail

\n

Ingredients:

\n

1 1/2 oz. Captain Morgan's Parrot Bay Coconut Rum

\n

1/2 oz. 196 Proof Cocoroco Rum

\n

2 oz. Pineapple Juice

\n

1 1/2 oz. Cranberry Juice

\n

Instructions:

\n

Combine over ice in a cocktail glass. Pour the cranberry on last to get a pretty mixture of color. Garnish with a cherry.

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-02-24T13:25:43.047", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6591"}} +{ "Id": "6591", "PostTypeId": "2", "ParentId": "6587", "CreationDate": "2017-02-24T15:59:44.667", "Score": "6", "Body": "

I'm not a massive fan of Bailey's myself, but do love a chocolate mousse. Since unless you're going way overboard with the alcohol, you're not really going to disrupt the mousse and make it soupy, you can use anything that you think goes with chocolate. Personally, I love the following paired with a good dark chocolate:

\n\n
    \n
  • Kahlua/Tia Maria (most similar in spirit to Bailey's)
  • \n
  • Port or madeira
  • \n
  • Deep but not too peaty Scotch
  • \n
  • Dark rum (I'd leave the continental \"rums\" to fruit desserts, where they excel)
  • \n
  • Brandy
  • \n
  • Kirsch
  • \n
\n\n

I'd avoid lighter or delicate / floral spirits, since they don't really work (for me) with a deep dark chocolate.

\n\n

I'd keep it to under about a shot per cup to avoid thinning the mousse too much. And please try a tiny pinch of salt, which the original recipe is missing but is essential for a good chocolate dessert!

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2017-02-24T20:13:33.990", "LastActivityDate": "2017-02-24T20:13:33.990", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6593"}} +{ "Id": "6593", "PostTypeId": "2", "ParentId": "6582", "CreationDate": "2017-02-24T20:11:56.733", "Score": "2", "Body": "

It is highly dependent on where you are located and your risk tolerance (do you eat sushi, rare beef, etc?). As someone who has had salmonellosis, I can verify that you really, really do not want to contract it. Really.

\n\n

That said, in the US you are probably OK, elsewhere likely somewhat less so (relative risk is probably roughly an order of magnitude greater in Western Europe, and likely still greater elsewhere). This is thoroughly set out in Athanasius's great answer on our Cooking sister site.

\n\n

I would not rely on the alcohol content of the fizz to vitiate the risk in a material way: microbicidal potency of alcohol at concentrations below 50% is pretty negligible (source)... so if the reason you wouldn't eat an egg raw is the risk of gastroenteritis (and not some ick factor), then I'd consider the risks the same.

\n", "OwnerUserId": "6490", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:33:38.297", "LastActivityDate": "2017-02-24T20:11:56.733", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6594"}} +{ "Id": "6594", "PostTypeId": "1", "AcceptedAnswerId": "6595", "CreationDate": "2017-02-25T06:00:29.467", "Score": "3", "ViewCount": "3430", "Body": "

What is the etiquette when you accidentally spill someone else's drink. Perhaps the glass got knocked over, or you brush up against someone at the bar. Should you immediately offer to buy a new drink for them? Simply apologize and move on - or is there another solution? At the same time, what is the etiquette for when your own drink is spilled?

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-02-25T12:42:33.207", "Title": "Spilt drink etiquette - the do's and don'ts", "Tags": "drink", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6595"}} +{ "Id": "6595", "PostTypeId": "2", "ParentId": "6594", "CreationDate": "2017-02-25T12:42:33.207", "Score": "2", "Body": "

Before going on to this delicate question of drinking etiquette, please allow me to share a real experience, while flying with KLM.

\n\n

Several years ago, I witnessed a stewardess spill some wine one a lady's dress while on route to England. The first thing she did was apologize and then got the head stewardess involved. The lady got her drink renewed on the spot, plus the airline gave her accommodations (hotel) at the airport to cleanup, have her clothes washed and dry cleaned, and so on, all on KLM's bill.

\n\n

Here are some commonsense rules to follow when you spill someone's drink over as follows, (if it is simply a question of spill a drink):

\n\n
\n

1) Avoid letting the situation happen in the first place. You are most likely to spill someone's drink when you are making magnanimous gestures, carrying a few drinks of your own, or if you are feeling buzzed. So remember to be observant at these high risk moments. If you do spill someone's drink, do not ignore it, but act quickly to assess the situation and defuse any hostile vibrations.

\n \n

2) Apologize. If you have just spilled someone's drink, you should apologize immediately and unreservedly. If they are a decent type, this should stop them from getting too agitated.

\n \n

3) Considering buying a replacement. Have a look at the damage. If you have just knocked their drink out of their hands all over the floor, then you need to replace it immediately. If you've only knocked an ounce of beer or two from the top of their glass, then it shouldn't be a big deal.

\n \n

•Most people will be okay about it, and no replacement drink should be required. If they become confrontational, it would be best just to buy them a drink to save you the trouble. - \n How to React when You Spill Someone's Drink

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-25T12:42:33.207", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6596"}} +{ "Id": "6596", "PostTypeId": "1", "AcceptedAnswerId": "6598", "CreationDate": "2017-02-25T17:19:33.840", "Score": "12", "ViewCount": "74173", "Body": "

So, with a bottle of Tequila in hand, a glass, and oooppss - it's the last shot and the worm falls out! Now - do you consume it? Or - just throw it? But what type of worm is it and are they specially grown/produced for the drink? There are a lot of stories about if the worm is real or not - but if I am offered a drink of Tequila and a worm is in it - well what then?

\n\n

\"mezcal

\n\n

Tequila Worm

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2017-02-26T15:13:22.493", "LastActivityDate": "2020-12-01T13:20:46.860", "Title": "Tequila worms - to eat or not to eat - that is the question?", "Tags": "spirits tequila", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6598"}} +{ "Id": "6598", "PostTypeId": "2", "ParentId": "6596", "CreationDate": "2017-02-26T01:30:02.950", "Score": "8", "Body": "

Not all types of tequila contain a tequila worm. The tequila worm or as it should be known as the Mezcal worm is normally only found in Mezcal (tequila).

\n\n
\n

The worm is reserved for a drink known as Mezcal, which, according to some, is tequila’s big brother. But the two spirits are entirely different. Tequila is distilled from any number of natural Mexican plants and can bear the name as long as the finished product consists of at least 51% agave. Mezcal must be 100% agave. - Should You Eat the Tequila Worm?

\n
\n\n

Most people would not eat the mezcal worm, but in some cultures it is quite acceptable.

\n\n
\n

There are no proven side effects that come with consuming a Tequila worm. While the worm is popularly called the tequila worm, it is only found on the bottom of a bottle of mezcal, a variety of tequila obtained from distilling blue agave and similar plants. The meriposa worm is grown on agave from which mezcal is made, and when a worm is added to the mezcal, it is known as mezcal con gusano.

\n \n

Consuming the worm after drinking mezcal is a popular tradition among many communities, but it is not clear where the tradition originated. Some believe that the adding the worm in a bottle of mezcal signifies the purity of the alcohol, as it hinders the disintegration of the worm. Others believe that it is merely a marketing strategy among Mexican liquor producers.

\n \n

While it's documented in media that the eating the worm causes hallucinations, this has yet to be medically proven. The worm is pickled in alcohol for more than a year and is made sure to be free to pesticides, before being added to mezcal. It is also a popular delicacy in Mexican restaurants, and is said to have positive psychological effects. - What happens when someone eats a Tequila worm?

\n
\n\n

As for myself, I think I will pass on this offer!

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-26T01:30:02.950", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6599"}} +{ "Id": "6599", "PostTypeId": "2", "ParentId": "6596", "CreationDate": "2017-02-26T02:01:56.400", "Score": "7", "Body": "

Generally speaking worms would be found in a drink called mescal or mezcal (same thing), and not in tequila. Mezcal is related to tequila, but not as well known outside of Mexico, which is why the worm in tequila myth started.

\n\n

There are two types of worms you can find in mezcal. The white worm is a larva of the beetle Scyphophorus Acupunctatus. The red worm, the taster one, is a larva of the moth Comadia Redtenbacheri from the Cossidae family of moths. They both invade agave plants (what tequila and mezcal are made from), which is why those are the worms that go in the bottle.

\n\n

Choosing whether to eat it or not is entirely up to you. On the one hand, the mezcals that have a worm in the bottle are usually bad. It first appeared in bottles around the 1940's or 50's, likely as a marketing gimmick, so it's not some ancient tradition. Opposed to what some people claim it won't get you drunk, you won't hallucinate, and it won't make you horny. The booze is good enough at that stuff anyway. On the other hand, it does actually change the mezcal's chemistry so you can't prove it's in there only for marketing. Both types of worm are eaten even when they aren't alcohol soaked, there are worm tacos and sal de gusano (gusano meaning worm so, worm salt). In Naturalis Historia, Pliny the Elder wrote that larvae, fattened up with flour, was one of the most delicate dishes and highly appreciated by Romans. In fact the larvae that Pliny wrote about may be of the same Cossidae family as the red mezcal worm. This book was written around 70 AD.... so there is some ancient history there after all. Most importantly though.... it's kind of fun. You get to say you ate the worm, most people won't. (Chants... dooo it, doooo it, doooo it.)

\n", "OwnerUserId": "5974", "LastActivityDate": "2017-02-26T02:01:56.400", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6601"}} +{ "Id": "6601", "PostTypeId": "1", "AcceptedAnswerId": "6620", "CreationDate": "2017-02-26T15:50:16.590", "Score": "3", "ViewCount": "438", "Body": "

In a home bar, the rate of consumption is (in theory at least...) a lot less than for a commercial bar. This means proper storage of ingredients becomes a much more important question, as bottles will stick around for months or years.

\n\n

What's the best way to store liquor to ensure each bottle does not go bad?

\n\n

What impact do light, temperature, humidity, and other factors play in this?

\n\n

Are there any particular alcohols (e.g., vermouths) that should be stored differently?

\n", "OwnerUserId": "6472", "LastActivityDate": "2017-03-02T10:06:33.297", "Title": "How should one store liquors in a home bar?", "Tags": "storage liquor", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6602"}} +{ "Id": "6602", "PostTypeId": "1", "AcceptedAnswerId": "6603", "CreationDate": "2017-02-26T17:09:37.927", "Score": "3", "ViewCount": "291", "Body": "

So, we have shrove tuesday. But what should we serve with our pancakes? I am thinking a nice cognac .

\n\n

If you don't know how to make a pancake, you can learn here. Then add the drink of your choice. What is your choice?

\n", "OwnerUserId": "6366", "LastEditorUserId": "43", "LastEditDate": "2017-02-26T20:53:54.813", "LastActivityDate": "2017-02-27T14:30:06.550", "Title": "Shrove Tuesday - what alcohol can I serve with my pancakes?", "Tags": "pairing holidays", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6603"}} +{ "Id": "6603", "PostTypeId": "2", "ParentId": "6602", "CreationDate": "2017-02-27T00:20:33.907", "Score": "2", "Body": "

Some people might like wine with their pancakes on Shrove Tuesday.

\n\n

Seeing that Shrove Tuesday is the day before Lent, please allow me to make two recommendations.

\n\n

My first recommendation would be mead. Mead would be a fitting drink to ease the knowledge that tomorrow is the start of the traditional 40 days of fasting.

\n\n

My second drink would be a nice good bottle of Rauchbier or \"smoke beer\". In today's way of fasting during Lent alcohol is no longer a forbidden food, so any left over could be consumed during Lent.

\n\n
\n

Rauchbier, or “smoke beer,” is made using malts that have been dried over fire—-thus gaining the smoky taste of cured meats like ham and bacon. At one time all beers malts were produced over fire, but in medieval Bavaria beers of this type came to be associated with Lent when the rich, smoky tones of meat were dearly missed. There is, of course, an official blessing for beer (“Bless, O Lord, this creature beer . . . ”) which one may safely assume is more efficacious in the original Latin: ” Benedic, Domine, creaturam istam cerevisiae, quam ex adipe frumenti producere dignatus es: ut sit remedium salutare humano generi, et praesta per invocationem nominis tui sancti; ut, quicumque ex ea biberint, sanitatem corpus et animae tutelam percipiant. Per Christum Dominum nostrum. Amen.” - Ten Weird, Wonderful Foods for Lent

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-02-27T00:20:33.907", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6604"}} +{ "Id": "6604", "PostTypeId": "1", "AcceptedAnswerId": "6610", "CreationDate": "2017-02-27T13:55:29.580", "Score": "6", "ViewCount": "1023", "Body": "

Just recently I have got into cocktails. But I am finding it hard to find the right cherries so offset my designs. The Maraschino cherry is the classic but what else is there to make my cocktails just that bit 'extra special'?

\n\n

This is what wikipedia has to say about the Maraschino cherry

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-02-27T21:36:03.673", "Title": "Maraschino cherry - can I use an alternative?", "Tags": "cocktails alcohol", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6605"}} +{ "Id": "6605", "PostTypeId": "2", "ParentId": "6602", "CreationDate": "2017-02-27T14:30:06.550", "Score": "3", "Body": "

If you wanted to stick with the Lenten theme and wanted to stay traditional and you lived in Munich Germany and you were a monk working at a monastery, you would be drinking Doppelbock beer. I'm not a big fan of beer in the morning, but hey it's up to you.

\n\n

I would more likely be drinking a glass of Champagne, or even better a Mimosa or the best morning drink, a Bloody Mary!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-27T14:30:06.550", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6606"}} +{ "Id": "6606", "PostTypeId": "2", "ParentId": "6604", "CreationDate": "2017-02-27T15:58:05.107", "Score": "4", "Body": "

There is the Amarena cherry was developed by Gennaro Fabbri and is a particular bitter cherry. Fabbri mixes them with a sort of jam and makes syrups with them.

\n\n

The sensation is like the maraschino cherry, but more soft, enveloping and a bit less of sugar in it...

\n\n

I found it perfect in all iced tea cocktail, to give them a twist, also good with pretty everything involving bayleys or similar creamy alcoholic\nreference here.

\n\n

This may be of interest too.

\n", "OwnerUserId": "6453", "LastEditorUserId": "5064", "LastEditDate": "2017-02-27T16:13:06.190", "LastActivityDate": "2017-02-27T16:13:06.190", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6607"}} +{ "Id": "6607", "PostTypeId": "1", "AcceptedAnswerId": "6614", "CreationDate": "2017-02-27T16:47:55.047", "Score": "10", "ViewCount": "1527", "Body": "

Last year I went to Dublin to visit guinness storehouse and some whisky distillery.

\n\n

As long as Guinness is such a masterpiece, I found myself attracted more by the whiskey, which was a surprise...

\n\n

During the tour in the factory I got an explanation on how it is supposed to drink whiskey to get all flavors and odors, but , shamefully, I'm not a native speaker, so I got just basic help, and I'm pretty sure I did not get something about respiration.

\n\n

So, as long as enjoying whiskey is not a cheap option, and I would want to drink it and enjoy it as it is supposed to be done. Are there any rule or advice on how to drink properly whiskey?

\n", "OwnerUserId": "6453", "LastEditorUserId": "7272", "LastEditDate": "2017-11-16T08:31:08.960", "LastActivityDate": "2017-11-16T08:31:08.960", "Title": "How to correctly drink whiskey?", "Tags": "whiskey", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6608"}} +{ "Id": "6608", "PostTypeId": "1", "AcceptedAnswerId": "6621", "CreationDate": "2017-02-27T16:54:39.453", "Score": "4", "ViewCount": "155", "Body": "

Being a man of tradition and enjoying the finer things in life, I would like to have a nice romantic evening with my love next Valentine's Day (February 14).

\n\n

However I would like to keep the choice of wine in keeping with a few points of Tradition.

\n\n

February 14 is in the Catholic world the Feast of St Valentine (226-269),from where we get the traditions involved with Valentine's Day as well the Feast of St Vincent of Saragossa, who died in 304.

\n\n

Both of these saints were martyred for their faith. St Valentine was a bishop and is the Patron Saint of lovers and marriage. St Vincent was a deacon and is considered the Patron Saint of winemakers.

\n\n

In keeping with the above information could anyone recommend a good traditional minded wine for a romantic evening on Valentine's Day?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-03-05T13:33:58.127", "LastActivityDate": "2017-03-05T13:33:58.127", "Title": "Traditional wine recommendation for a romantic evening on Valentine's Day?", "Tags": "recommendations wine tradition", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6609"}} +{ "Id": "6609", "PostTypeId": "2", "ParentId": "6537", "CreationDate": "2017-02-27T20:38:43.073", "Score": "2", "Body": "

The main hazards of mixing alcohol with milk are that you may denature the milk proteins and get curds. Unpleasant, but probably not likely to provoke an allergic reaction.

\n\n

Does your friend have any nut or pollen/tree allergies? Depending on what the whiskey was casked in, there could be some residual allergens that were the actual culprit.

\n", "OwnerUserId": "6505", "LastEditorUserId": "6505", "LastEditDate": "2017-02-28T12:02:27.690", "LastActivityDate": "2017-02-28T12:02:27.690", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6610"}} +{ "Id": "6610", "PostTypeId": "2", "ParentId": "6604", "CreationDate": "2017-02-27T21:36:03.673", "Score": "4", "Body": "

+1 for the Fabbri Amarena suggestion.

\n\n

Another alternative is brandy (or other spirit) soaked cherries, they are relatively easy to make which allows you to control what kind of spirits, how much sugar, what kind of cherries, etc. If you not willing/able to make them, they are also available from retailers, eg Amazon

\n", "OwnerUserId": "6435", "LastActivityDate": "2017-02-27T21:36:03.673", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6611"}} +{ "Id": "6611", "PostTypeId": "1", "AcceptedAnswerId": "6612", "CreationDate": "2017-02-28T04:15:04.530", "Score": "3", "ViewCount": "942", "Body": "

At times it can be difficult to procure what I always considered the correct ingredient for Zabaione - Marsala. However, I have discovered that I can use other fortified wines or spirits. Wikipedia suggests Cognac - which got me thinking about a good smooth whiskey - such as - Redbreast. I don't know enough about whiskey to make the right choice here - would a cheap brand do just as well?

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2017-02-28T13:33:10.660", "LastActivityDate": "2017-02-28T13:35:56.893", "Title": "Zabaione - with Marsala or Whiskey?", "Tags": "whiskey cooking substitutions", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6612"}} +{ "Id": "6612", "PostTypeId": "2", "ParentId": "6611", "CreationDate": "2017-02-28T13:28:52.403", "Score": "3", "Body": "

Great question for the dessert enhancement front.

\n\n

Zabaglione is generally thought as sweet, however it can also be made without sugar, using dry wine and egg yolks, thus becoming a fine sauce for fish, chicken or vegetables. It is used this way in French cuisine as well as Italian.

\n\n
\n

In Italy chefs and home cooks often measure the ingredients for zabaglione quite casually. Six egg yolks, for example, would be combined with six egg shells of sugar and 12 of wine or liqueur. Although Marsala is most often used for zabaglione, there is no reason why other wines or liqueurs can't be substituted, depending on the final flavor desired. Italian recipes usually call for dry Marsala. If a sweet wine or liqueur is used, the amount of sugar should be substantially decreased. Grand Marnier, Sauternes, Madeira, oloroso sherry, Southern Comfort, anisette, coffee- flavored liqueurs, Amaretto or La Grande Passion, the new passion- fruit liqueur, are just a few of the possibilities. - ZABAGLIONE, AN ITALIAN DESSERT

\n
\n\n

Personally, I would not use whiskey or cognac in this dessert. But this is a personal preference. I am impartial to either a blackberry wine or strawberry wine. When I say these particular wines, I mean real blackberry wine and not simply blackberry flavored wine. It makes a difference in my mind. All said and done whiskey can be used in zabaglione and in fact here is an Italian recipe for it. The following is in Italian:

\n\n
\n

Sbattete 4 tuorli con 60 g di zucchero, versate a filo 1/2 dl di whisky e cuocete a bagnomaria, montando con una frusta. Montate 1 dl di panna e unitela allo zabaione. Per un'alternativa sprint: Zabov (0,70 litri, 8,50 e). - Zabaione al whisky.

\n
\n\n

Angela Hartnett’s zabaglione recipe uses whiskey, brandy and a sweet wine.

\n\n

How about an Irish Zabaglione recipe and once again it is in Italian: Zabaione Irlandese.

\n\n

Bon Appetite and Pleasant Drinks Everyone.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-02-28T13:35:56.893", "LastActivityDate": "2017-02-28T13:35:56.893", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6613"}} +{ "Id": "6613", "PostTypeId": "2", "ParentId": "6608", "CreationDate": "2017-02-28T13:39:27.457", "Score": "1", "Body": "

Isn't Saint Valentine Irish? I would be drinking a Guinness then! Oh, but you asked for wine... You could celebrate with the blood of Christ and drink a nice Italian Red Wine, like a nice aged Amarone. But really this is a celebration and that calls for CHAMPAGNE!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-02-28T13:39:27.457", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6614"}} +{ "Id": "6614", "PostTypeId": "2", "ParentId": "6607", "CreationDate": "2017-02-28T17:07:17.223", "Score": "11", "Body": "
    \n
  1. Just like wine, whisky demands a reasonable glass that will help rather than hinder the aromas. Avoid shot glasses and wide-mouthed tumblers, and go for something like the Glencairn Whisky Glass, or a tulip glass or even a brandy snifter.
  2. \n
  3. Pour an amount that will let you swirl the whisky without sloshing it. Swirl it to coat the sides, which will allow you to smell it better. Observe the \"legs\", but don't be fooled by superstitions attached to them, they're a consequence of the Marangoni Effect (fascinating video).
  4. \n
  5. Stick your nose over the glass's opening and inhale very gingerly. Avoid knocking your smell receptors out. Save the deep breaths for after step 5.
  6. \n
  7. (optional) Take a tiny sip (again save your enthusiasm for after you have tasted it diluted, or you risk numbing your taste and smell receptors), and just like wine, let it run over all of your tongue, and like wine \"chew\" it to allow the air you are intaking to bring the aromas and flavors to the back of your nose.
  8. \n
  9. Drink some water and possibly eat something neutral. Add a few drops of (good quality) water to the whisky, try to take the ABV to around 35%ish.
  10. \n
  11. Stick your nose deeper into the glass and smell. I'd still suggest being a little cautious until you learn the glasses and your nose. It would be a pity to numb yourself at this stage.
  12. \n
  13. Take a sip, let it run all over your tongue. \"Chew\" it... Savor it.
  14. \n
\n\n

Try to learn something about the whisky you are drinking and associate how it was made with what you are tasting. Was it peated? Is it kept by the sea? What type of oak is used? How old is it? All these things will drastically affect the flavor.

\n\n

If you are drinking the whisky to taste it, please do not skip step 5 (Note 1, Note 2, Note 3, Note 4). You can always decide you prefer a whisky undiluted afterwards.

\n\n

In a similar vein, you can decide you prefer ice after tasting it properly, despite Note 4's suggestions. By all means drink how you want to drink, but adding ice is prone to both over-cool the whisky (diminishing and changing its flavors) and also over-dilute it. Optimal temperature and strength will vary by whisky and by drinker's preferences (and season, etc.), but I'd aim to start your investigations at around 15-20C and around 30-35%.

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2017-02-28T17:28:36.423", "LastActivityDate": "2017-02-28T17:28:36.423", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6615"}} +{ "Id": "6615", "PostTypeId": "1", "AcceptedAnswerId": "6622", "CreationDate": "2017-03-01T05:44:53.460", "Score": "4", "ViewCount": "206", "Body": "

With warmer weather upon us it is sometimes nice to just sit and enjoy a glass or two of fizz. However, what to choose. There are rows upon rows of fizzy wines and Champagnes in the shops. It seems that there can be little difference between Champagne and Cava to the untrained palate. Is there a difference in production techniques? Can the untrained or those not used to drinking such things taste the difference?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-03-01T06:08:38.793", "LastActivityDate": "2017-03-01T20:06:08.593", "Title": "What's the difference between Cava and Champagne?", "Tags": "wine differences", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6618"}} +{ "Id": "6618", "PostTypeId": "1", "AcceptedAnswerId": "6619", "CreationDate": "2017-03-01T09:34:16.610", "Score": "7", "ViewCount": "871", "Body": "

Recently I tried a custom cocktail from my barman with wasabi, vodka and some sambuco syrup (not Sambuca, and still no found resource in English to add) and got in love with that cocktail, like my top 5 ever.

\n\n

Wasabi itself as an ingredient was surprising on mixing with vodka, so I'm trying to find out if there are other coktails with wasabi or other spicy ingredients.

\n\n

Does anyone know some?

\n\n

EDIT:If anyone is interested on this Sambuco syrup, can find some info here

\n", "OwnerUserId": "6453", "LastEditorUserId": "6453", "LastEditDate": "2017-03-01T15:45:36.990", "LastActivityDate": "2021-02-17T11:36:32.243", "Title": "Are there cocktails with wasabi or other spicy ingredients?", "Tags": "cocktails", "AnswerCount": "2", "CommentCount": "7", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6619"}} +{ "Id": "6619", "PostTypeId": "2", "ParentId": "6618", "CreationDate": "2017-03-01T10:35:45.667", "Score": "7", "Body": "

Tabasco or other hot sauces will be a far more common spicy ingredient, and is present in quite a number of cocktails (the Bloody Mary variants, Afterburners*, Flatliners). You could even use a vinegar-based hot sauce as the \"dirty\" part of a dirty martini. Here are more ideas that I haven't tried myself.

\n\n

Note that unless the wasabi root was grated in front of you, no matter where you are in the world, you almost certainly actually had green-colored horseradish 1. Horseradish can also be an ingredient in the Bloody Mary family of drinks.

\n\n
\n\n

*Names for lots of shots are not standardized, so there are a huge number of totally different \"Afterburner\"s, YMMV.

\n", "OwnerUserId": "6490", "LastActivityDate": "2017-03-01T10:35:45.667", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6620"}} +{ "Id": "6620", "PostTypeId": "2", "ParentId": "6601", "CreationDate": "2017-03-01T11:05:17.653", "Score": "3", "Body": "

Some tips:

\n\n
    \n
  • Protect your bottles from sunlight and extreme temperatures.
  • \n
  • If your bottles have cork tops, make sure to keep the corks moist so that they don't disintegrate (just turning the bottles upside down every month or so for a few seconds does wonders).
  • \n
  • As the level in each bottle drops, consider transferring the contents to a smaller bottle. This prevents volatiles from leaving the liquid and also excludes oxygen from the bottle (though whether you're mixing in extra oxygen during the transfer is perhaps a worry). If you know beforehand that you will take your time on a certain bottle, I'd rebottle it at the outset.
  • \n
  • If you already own it for wine (or are otherwise serious about keeping half-empty bottles for a long time), you could also use something like an inert gas wine preserver (e.g. PrivatE PreservE or Winesave PRO) to add a layer of what is basically Argon over the liquid. I haven't tried this.
  • \n
\n\n

Vermouths and other alcohols ~20% ABV don't keep well for long once opened. Treat them like wine: drink them faster or open fewer of them. They will lose their aromas, then oxidize, and finally turn to vinegar.

\n\n

Liqueurs with low water activity (read: lots of sugar) will probably stay safe to consume for quite a long time (years), but they are still prone to oxidization leading to off flavors. Re-bottle at the outset if you must, or consume faster, or discard and buy new.

\n\n

Consider storing your bitters in the fridge.

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2017-03-02T10:06:33.297", "LastActivityDate": "2017-03-02T10:06:33.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6621"}} +{ "Id": "6621", "PostTypeId": "2", "ParentId": "6608", "CreationDate": "2017-03-01T14:35:28.820", "Score": "2", "Body": "

As you're planning well ahead, good man, I'd suggest you pair your celebration with the Umbria, as he was Valentinus of Terni, in central Italy. Poor man, bits of him, his relics, are in churches all over, in Dublin, as well as in Rome and Savona, Madrid, Prague, Vienna, Birmingham, Glasgow, Malta, Greece, and France.

\n\n

Umbrian truffi, truffles, suggests strangozzi (pasta) with black truffles, paired with Montefalco Sagrantino, or gallina ubriaca, drunken hen, a chicken cooked wine; cook it in Montefalco Rosso and, what else, pair it Montefalco Rosso (after all, you don't want to cook with a wine you wouldn't drink).

\n\n

And then there's Perugia, the capitol of Umbria, and Perugina Baci, kisses, chocolate, how appropriate. Pair that with an Orvieto Classico or Grechetto Bianco.

\n", "OwnerUserId": "6391", "LastEditorUserId": "6391", "LastEditDate": "2017-03-02T00:25:19.927", "LastActivityDate": "2017-03-02T00:25:19.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6622"}} +{ "Id": "6622", "PostTypeId": "2", "ParentId": "6615", "CreationDate": "2017-03-01T15:33:35.997", "Score": "6", "Body": "

Well, Champagne has to come from Champagne and has made out of a combination of 3 grapes (Pinot Noir, Pinot Meunier or Chardonnay) and made using the Méthode Champenoise techniques. They think this truly reflects the terroir of the Champagne region. They were one of the first to assert their regional identity around the world by enforcing their region name as almost a trademark. They forced Californians to stop using the the word Champagne when they make sparkling wines (ok there exceptions from before the treaty was signed)

\n\n

Cava just like Champagne is tightly regulated. It has to be made in a certain place with certain grapes and with certain methods (Méthode Champenoise again). Again, Cava is supposed to reflect the Terroir of the place it's made (Mostly Catalonia). Cava can be as expensive as good Champagne.

\n\n

Both regions make excellent sparkling wine. Can you tell the difference? Probably not to the untrained palate. I think even I would have a difficulty telling the difference between a high end Cava and Champagne. The only way you'll know is to start buying and tasting!

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-03-01T20:06:08.593", "LastActivityDate": "2017-03-01T20:06:08.593", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6623"}} +{ "Id": "6623", "PostTypeId": "1", "AcceptedAnswerId": "6624", "CreationDate": "2017-03-02T07:00:35.750", "Score": "5", "ViewCount": "2995", "Body": "

I want to make a proper sherry trifle, but do not want to use sherry! Is there an alternative liqueur that won't change the whole ethos of the trifle? Here is a link to how to make a sherry trifle.

\n

\"picture

\n

The liqueur I use must also be good enough to have as a drink to go with the trifle.

\n", "OwnerUserId": "6366", "LastEditorUserId": "6255", "LastEditDate": "2021-08-21T18:09:58.493", "LastActivityDate": "2021-08-21T18:09:58.493", "Title": "An alternative to sherry in trifle", "Tags": "wine pairing cooking", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6624"}} +{ "Id": "6624", "PostTypeId": "2", "ParentId": "6623", "CreationDate": "2017-03-02T08:03:03.047", "Score": "3", "Body": "

Alchermes could be a good hint, in Italy is used as an ingredient in Zuppa inglese, a particular derivation of trifle ...as you are trying to do.

\n

Just a reminder, I don't think it is really good to drink it as a glass of wine, but perfect with desserts.

\n", "OwnerUserId": "6453", "LastEditorUserId": "6255", "LastEditDate": "2021-08-21T18:09:47.143", "LastActivityDate": "2021-08-21T18:09:47.143", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6625"}} +{ "Id": "6625", "PostTypeId": "1", "AcceptedAnswerId": "6626", "CreationDate": "2017-03-02T13:46:25.113", "Score": "3", "ViewCount": "121", "Body": "

Recently, I started paying more attention to the shelf of the \"forbidden bottles\" in pub's.\nI saw lots of time, a gin called Mare (reference here), which seems to be a very good bottle, with a particular \"mediterranean\" taste.

\n\n

Except the classic gin tonic, is there some cocktail who enhance this particular gin?

\n", "OwnerUserId": "6453", "LastEditorUserId": "5064", "LastEditDate": "2017-03-02T14:14:54.577", "LastActivityDate": "2017-03-02T14:14:54.577", "Title": "What kind of cocktail would Gin Mare be best suited for?", "Tags": "gin", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6626"}} +{ "Id": "6626", "PostTypeId": "2", "ParentId": "6625", "CreationDate": "2017-03-02T13:58:29.603", "Score": "3", "Body": "

I have not tasted that gin*, but from the description of the botanicals (\"rosemary, thyme, olive, and basil\") it seems to be crying out for savory rather than sweet. It sounds like a red snapper would be good (essentially a bloody mary with gin instead of vodka). Also sounds like a classic or dirty martini might be nice, depending on the vermouth on hand.

\n\n
\n\n

*yet... judging by the rave reviews I will have to try it soon!

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2017-03-02T14:11:25.533", "LastActivityDate": "2017-03-02T14:11:25.533", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6627"}} +{ "Id": "6627", "PostTypeId": "2", "ParentId": "6543", "CreationDate": "2017-03-02T14:36:39.520", "Score": "3", "Body": "

It would help to know what the purpose of the purchase. gift? collection? own use?

\n\n

In any case Starka, especially the 25 year or 50 year, would probably go for that much.

\n\n

from https://en.wikipedia.org/wiki/Starka

\n\n

\"Starka is a traditional dry vodka distilled from rye grain, currently produced only in Poland and Lithuania. Traditionally Starka is made from natural (up to 2 distillations, no rectification) rye spirit and aged in oak barrels with small additions of linden-tree and apple-tree leaves. The methods of production are similar to those used in making whisky. Sold in various grades, the most notable difference between them is the length of the aging period, varying from 5 to over 50 years, and the natural color which is obtained from the reaction between the alcohol and the oak barrel, not from the additives.\"

\n\n

And from my personal experience in Russia, it is very drinkable. You may have a hard time finding it, depending on your location.

\n\n

Another possibility is the Georgian Grappa: Chacha, AKA grape vodka, see https://en.wikipedia.org/wiki/Chacha_(brandy) This one is a bit strong for my taste, though, but a nice addition to a collection, or an unusual gift. Not sure about the price

\n\n

Cheers!

\n", "OwnerUserId": "6513", "LastActivityDate": "2017-03-02T14:36:39.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6628"}} +{ "Id": "6628", "PostTypeId": "1", "AcceptedAnswerId": "6637", "CreationDate": "2017-03-02T15:14:28.067", "Score": "3", "ViewCount": "160", "Body": "

I like a gin or 2, but tend to stick to the 37.5% stuff opposed to the stronger stuff. I don't get any extra taste, just fall over quicker! I understand that for some of the better whiskeys a little bit of water will bring out the taste. At what point does the % become a problem for taste?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-03-02T15:34:53.857", "LastActivityDate": "2017-03-04T00:16:13.970", "Title": "Spirits over 50%. Taste v effect", "Tags": "taste whiskey spirits", "AnswerCount": "2", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6629"}} +{ "Id": "6629", "PostTypeId": "2", "ParentId": "6628", "CreationDate": "2017-03-02T15:51:18.657", "Score": "1", "Body": "

The best advice is to adjust the quantity of the spirit to the percentage of alcohol it contains.

\n\n

Assuming you drink responsibly, i can assure you that even a 91% spirit can be tasted and enjoyed like a pint of beer.

\n\n

EDIT: As always, i think i can let the personal experience talks, i tried one of the most powerful alcoholemic recipe i can in Italy, Gocce imperiali and i can assure that if the sip is like 4/5 drops, is enjoyable

\n", "OwnerUserId": "6453", "LastEditorUserId": "6453", "LastEditDate": "2017-03-02T16:08:29.880", "LastActivityDate": "2017-03-02T16:08:29.880", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6630"}} +{ "Id": "6630", "PostTypeId": "1", "CreationDate": "2017-03-02T19:20:43.977", "Score": "8", "ViewCount": "137885", "Body": "

Where did the idea of pouring 30 ml, 60 ml or 90 ml in drinks begin. Is there a theory or scientific reason behind it? Have gone through this post: Peg (unit) from Wikipedia, but it does not help me.

\n\n
\n

A peg is a unit of volume for measuring liquor in India and Nepal. The terms \"large peg\" and \"small peg\" are used, equal to 60 mL and 30 mL, respectively, with \"peg\" simply referring to a small peg. In India liquor's alcohol content is fixed at 42.8% ABV, it follows that a peg of liquor contains 25.68 mL of pure alcohol, or 20.26 g.

\n
\n\n

And then there is this also: Patiala peg (Wikipedia).

\n\n
\n

The Patiala peg is a measure of liquor popular in Indian Punjab. It is a volume roughly equivalent to 120 ml, though the rough and ready measure is the amount of liquor needed to fill a glass equal to the height between the index and little fingers when they are held parallel to one another.[1] Even major liquor companies have started selling their products in the single drink packaging of 90 ml & 120 ml bottles in India. The name originates from the city of Patiala, which was once a state known for the extravagant ways of its royalty and extraordinary height of its Sikh soldiers.

\n
\n\n

Did it originate in India ?

\n", "OwnerUserId": "2647", "LastEditorUserId": "5064", "LastEditDate": "2017-03-03T00:59:28.537", "LastActivityDate": "2019-08-23T00:55:22.820", "Title": "How the idea of 30 ml, 60 ml and 90 ml drinks get started?", "Tags": "alcohol-level preparation-for-drinking alcohol drink", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6631"}} +{ "Id": "6631", "PostTypeId": "2", "ParentId": "4979", "CreationDate": "2017-03-02T22:47:03.547", "Score": "1", "Body": "

I am always looking to pair the best wine with my meal and I have a book \n\"What to Drink with What you Eat\". It pairs wine with food - and a separate section -food with wine. That is a list of every imaginable dish and pairs a wine with it. The it lists all varieties of wine and then pairs a dish with it. I have never looked for a paring when either the dish or the wine wasn't listed.

\n\n

Example: Fried Chicken - KFC -Pinot Noir. Popeye's -Sherry

\n\n

Over 10 pages of different cheeses with individual wine pairings.

\n\n

It also lists other beverages like Tea, Beer , Coctails etc

\n", "OwnerUserId": "6523", "LastActivityDate": "2017-03-02T22:47:03.547", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6632"}} +{ "Id": "6632", "PostTypeId": "1", "AcceptedAnswerId": "6642", "CreationDate": "2017-03-03T06:45:38.150", "Score": "1", "ViewCount": "250", "Body": "

I was going through list of drinks [Alcholic] . Was thinking is there any graph which subtly defines to which category of drinks they belong to . A more generic to top down approach of specific type . \nWIKI LINK

\n", "OwnerUserId": "2647", "LastActivityDate": "2017-03-06T05:24:10.177", "Title": "Is there a correct graph which describes various drinks", "Tags": "health alcohol-level", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6633"}} +{ "Id": "6633", "PostTypeId": "2", "ParentId": "6630", "CreationDate": "2017-03-03T11:04:15.687", "Score": "3", "Body": "

You seem to be asking two questions, I'll try to answer both although a lot of this is conjecture:

\n

Why are spirits in India poured in multiples of 30ml?

\n

This is likely due to 30ml being easy to both measure out and to drink. 30 ml is pretty standard world-wide as a small or single measure, and multiplying a small measure (rather than have, say, 30ml followed by 50ml) makes things easy. 20ish g of pure alcohol (large peg) or 10g (small peg) is right in line with many countries' "standard drink"s (e.g. the UK "unit" is 8g, but a typical drink has between 1 and 3 units).

\n

Conceivably, the "peg" might be a semi-standardization of an old northern Indian unit of mass called the chhatank, which appears to correspond roughly to 60g, but I think that's more likely a coincidence. 4 of them made up a pao/pau/pav - but that's almost certainly a red herring and unconnected.

\n

Where and when did this sense of the word peg come from?

\n

Likely after and as a consequence of the British Raj. The OED's sense 12 of peg is

\n
\n

colloq. (orig. Anglo-Indian). Originally: a drink of brandy and soda water. Later more generally: a (usually alcoholic) drink, esp. of spirits; a measure of spirits.

\n
\n

The first usage they have is from John Camden Hotten's Dictionary of Modern Slang, Cant, and Vulgar Words. All the 19th Century quotations they have seem to refer the mixture of a spirit and something sparkling, mostly soda water. The only clearly Indian quotation they have is from 2003 and refers to the 30ml measure, but they're entirely lacking in quotations between 1939 and 2003.

\n

It seems possible that in turn this usage came from OED's sense 2b, which has quotations going back to 1617:

\n
\n

Any of a set of pins fixed at intervals in a drinking vessel to indicate the quantity each drinker is to drink. Now hist.

\n
\n

But that connection is not made explicitly.

\n", "OwnerUserId": "6490", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-03-03T16:45:20.877", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6634"}} +{ "Id": "6634", "PostTypeId": "1", "AcceptedAnswerId": "6636", "CreationDate": "2017-03-03T12:59:14.183", "Score": "2", "ViewCount": "18221", "Body": "

I recently came across this Wikipedia on alcohol powder or powdered alcohol, which is also known as palcohol.

\n\n

!n 2014, Popular Science had this to say about palachol:

\n\n
\n

Palcohol will be available in vodka and rum varieties, as well as mojito, margarita, and other premixed cocktail flavors. It was officially approved by the Alcohol and Tobacco Tax and Trade Bureau (TTB) earlier this month, and Mark Phillips, its creator, says we can expect to see it in stores this fall.

\n
\n\n

\"Palcohol\"

\n\n

Palcohol Label

\n\n

Some States have already banned this product, so I would like to know where I could obtain legally powdered alcohol in the USA or Canada, if at all?

\n\n

All you need is water to mix with the powder and you have a normal alcohol drink.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-03-15T23:05:50.690", "LastActivityDate": "2021-03-15T23:11:36.873", "Title": "Where is it possible to legally obtain powdered alcohol in the USA and Canada?", "Tags": "canada palcohol", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6635"}} +{ "Id": "6635", "PostTypeId": "2", "ParentId": "6634", "CreationDate": "2017-03-03T13:50:34.837", "Score": "3", "Body": "

In the same Wikipedia article you mention, it also says:

\n
\n

However, as of January 4, 2016, the product is not yet available for sale and legalization remains controversial due to public-health and other concerns. Researchers have expressed concern that, should the product go into production, increases in alcohol misuse, abuse, and associated physical harm to its consumers could occur above what has been historically associated with liquid alcohol alone.

\n
\n

I went to the website and it looks like he's looking for investors to start production. You need to buy the rights to produce it in a certain country. My gut is telling me there is no mass market for this product and things have stalled out.

\n", "OwnerUserId": "6111", "LastEditorUserId": "5064", "LastEditDate": "2021-03-15T23:11:36.873", "LastActivityDate": "2021-03-15T23:11:36.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6636"}} +{ "Id": "6636", "PostTypeId": "2", "ParentId": "6634", "CreationDate": "2017-03-03T14:22:24.557", "Score": "4", "Body": "

As Steve S. says, the \"Palcohol\" product does not seem to be on the market at the moment, and their FAQ states \"When will it be available? As soon as we can. We're working on it. No samples will be released ahead of time.\"... but in the meantime, you could always buy some cyclodextrin powder (easily sourceable from Amazon US), put your favorite azeotropic firewater into a spray bottle and spray it on, if you were so inclined. Here is a 1974 patent describing a process that gets to ~60% ethanol by weight of end product; in the same ballpark as the \"Palcohol\" packet mentions.

\n\n

Thunderf00t has suggested using feminine pads instead as a better all-round idea.

\n", "OwnerUserId": "6490", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T13:00:11.050", "LastActivityDate": "2017-03-03T15:16:16.527", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6637"}} +{ "Id": "6637", "PostTypeId": "2", "ParentId": "6628", "CreationDate": "2017-03-04T00:16:13.970", "Score": "3", "Body": "

Your question is a bit broad because the flavour of high ABV spirits, and the intention of the spirits themselves vary widely.

\n\n

Some alcohols with a high ABV, such as Hungarian Palinka, are sometimes drunk purely for inebriation. They have a high alcohol content mainly to cause the intended effects, not to produce a pleasing drink. These types of spirits are also often flavourless and used to make cocktails with alcohol content.

\n\n

On the other hand, I've had Scotches that were as high as 60% but very easily drunk neat, and quite pleasing.

\n\n

So in sum: whether and how someone enjoys a high ABV spirit really depends on the spirit and it's individual qualities.

\n", "OwnerUserId": "938", "LastActivityDate": "2017-03-04T00:16:13.970", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6639"}} +{ "Id": "6639", "PostTypeId": "2", "ParentId": "725", "CreationDate": "2017-03-04T16:19:47.487", "Score": "1", "Body": "

Actually, there are studies that show moderate consumption of alcohol WILL help reduce chances of coming down with the common cold - if prevention is the key to the question...

\n\n
\n

Nonetheless, two large studies have found that although moderate drinking will not cure colds, it can help keep them at bay. One, by researchers at Carnegie Mellon in 1993, looked at 391 adults and found that resistance to colds increased with moderate drinking, except in smokers.\n The Claim: A Little Alcohol Can Help You Beat a Cold

\n \n

Drink alcohol in moderation as a preventative measure. Studies have shown that, while a cold cannot be cured by alcohol, moderate alcohol consumption can increase one's resistance to the cold. One study has shown that drinking 8 to 14 glasses of red wine a week has reduced the chances of getting a cold by 60 percent.\n Knowing How Alcohol Can Help

\n
\n\n

There will be a very fine line that's easily crossed when using this as a preventative measure... Alcohol dehydrates the body which can weaken your immune system - your body needs lots of fluids to keep up it's normal function. Binge drinking has been clinically shown to lower the body's immune response.

\n\n

Your body needs all of the fluids, nutrients, and rest it can get to battle symptoms once it's full-blown infected. So, drinking WHILE sick is generally a very bad idea.

\n\n

With that being said, a shot of whiskey with lemon and honey might help relieve that sore throat and bring on that long night's rest that your body will be craving... Or, a warm beer (in theory.) Just the one, though!

\n", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2017-03-04T16:34:26.683", "LastActivityDate": "2017-03-04T16:34:26.683", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6641"}} +{ "Id": "6641", "PostTypeId": "1", "AcceptedAnswerId": "7083", "CreationDate": "2017-03-05T05:52:47.120", "Score": "2", "ViewCount": "308", "Body": "

Just recently I discovered that not only can I vape in stead of smoking, but I can also vape instead of drinking. What's vaping alcohol all about? Well, you put a shot of spirits into an orb, which sits over a small candle (tea-light), and then through a glass or metal straw inhale the results.(check it out here with buzzfeed)

\n\n

This is what the Vaportini looks like - credit Vaportini

\n\n

\"enter

\n\n

I understand that the alcohol bypasses the liver stage and just goes straight to your head and lungs. So, none of that 'oops, I've drunk too much - excuse me whilst I visit the bathroom' nonsense, with this method you apparently don't get to expell what your body can't handle.

\n\n

With all this in mind, is there a limit (average) that can be vaped without doing myself some serious brain damage? What also is the effect on the lungs? Is this just another fad or is this the future?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-03-05T10:32:41.307", "LastActivityDate": "2017-11-22T15:48:45.807", "Title": "Vaping Alcohol - fad or here to stay?", "Tags": "taste health hangover", "AnswerCount": "1", "CommentCount": "6", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6642"}} +{ "Id": "6642", "PostTypeId": "2", "ParentId": "6632", "CreationDate": "2017-03-06T05:24:10.177", "Score": "2", "Body": "

There isn't going to be (or rather it wouldn't be visually appealing enough) a source for what you want. Your best bet is to search \"::insert alcoholic family you wish here:: Infographics.\" When you do you will find that some people have made things like this from PopChartLabs! They have two great ones for Whiskey and Scotch too. \"BeerFam\"

\n", "OwnerUserId": "22", "LastActivityDate": "2017-03-06T05:24:10.177", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6643"}} +{ "Id": "6643", "PostTypeId": "1", "CreationDate": "2017-03-07T12:27:31.600", "Score": "4", "ViewCount": "166", "Body": "

Some time ago I was at a dinner with an oenophile who ordered an expensive bottle of red wine. After a few sips, he noted that it was very \"oaky.\" I thought it was excellent, but I didn't smell any significant wood flavors. After some puzzling and nosing each others' glasses it became clear that his glass had an oak smell to it.

\n\n

It wasn't long before the sommelier confirmed this and began tripping over herself to apologize and make up for what was obviously a contaminated glass. Thinking back on it I'm wondering: is it plausible that the restaurant was intentionally \"salting\" wine glasses with some sort of wood flavoring? Is this a known practice in the industry?

\n\n

(Unless it was being stored in a working woodshop I'm having a hard time imagining how a fine wine glass in a restaurant would naturally acquire a notable oak flavor in the course of cleaning and storing.)

\n", "OwnerUserId": "5486", "LastActivityDate": "2017-03-07T17:49:14.703", "Title": "Do restaurants ever oak their wine glasses?", "Tags": "wine restaurants", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6644"}} +{ "Id": "6644", "PostTypeId": "2", "ParentId": "6643", "CreationDate": "2017-03-07T15:40:36.247", "Score": "4", "Body": "

Smoked drinks are all the rage right now. I bet something like this happened. Scroll down a bit. Smoked whisky drink

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-07T15:40:36.247", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6645"}} +{ "Id": "6645", "PostTypeId": "2", "ParentId": "5161", "CreationDate": "2017-03-07T17:06:45.157", "Score": "1", "Body": "

Yes, it is available

\n

You can even get it delivered to your door for 14,90 Kč per 400ml can.

\n", "OwnerUserId": "6490", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-03-07T17:06:45.157", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6647"}} +{ "Id": "6647", "PostTypeId": "1", "AcceptedAnswerId": "6648", "CreationDate": "2017-03-08T06:25:08.110", "Score": "5", "ViewCount": "403", "Body": "

With some Russian friends coming I intend upon serving caviar in the correct manner. Here is a link to The Telegraph's idea of what I should be doing as far as the caviar is concerned. However I know that my friends do not like Vodka! What other alcoholic drink can I serve, yet keep the Russian feel?

\n\n

Here's the caviar - now what to drink?

\n\n

\"enter

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-03-08T07:29:51.930", "LastActivityDate": "2017-03-09T13:03:00.380", "Title": "An alternative to Vodka to pair with caviar", "Tags": "recommendations pairing vodka", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6648"}} +{ "Id": "6648", "PostTypeId": "2", "ParentId": "6647", "CreationDate": "2017-03-08T07:36:20.663", "Score": "4", "Body": "

Your main criterion, especially if you are serving sturgeon caviar, should be something to freshen the palate without leaving a strong aftertaste.

\n\n

A brut champagne goes exceptionally well. If keeping the Russian theme is important and you have a good eastern European shop at hand, you could try to get a Russian or Ukrainian Шампанское. Be aware that many Russian and Ukrainian wines tend to be much sweeter than a western European would expect; make sure it is Брют / Brut, and ideally try a bottle before serving it.

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2017-03-08T09:58:55.347", "LastActivityDate": "2017-03-08T09:58:55.347", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6649"}} +{ "Id": "6649", "PostTypeId": "1", "AcceptedAnswerId": "6650", "CreationDate": "2017-03-08T21:36:00.103", "Score": "5", "ViewCount": "620", "Body": "

Over the last year I've been getting more into wine, but not too extensively, only having bought bottles in the range of about $10 - $20 cdn. I've also sampled a good number of wines while dining out.

\n\n

The thing I'm noticing is that while different wines most certainly have unique characters depending on sweetness, grape, and aging, the variation in overall quality doesn't seem to be too high.

\n\n

As far as I can tell wine, broadly speaking, can be broken down into two categories: good or cheap. A wine is either pleasant, or noticeably low quality, without much room to really go above and beyond.

\n\n

So if my assumption is correct then 'fine wine' is a bit of a scam, as the diminishing returns price point seems fairly low.

\n\n

I wonder, though, am I correct in my assumption about wine's diminishing return threshold?

\n", "OwnerUserId": "938", "LastEditorUserId": "5064", "LastEditDate": "2017-03-08T23:22:27.833", "LastActivityDate": "2017-03-13T18:10:40.457", "Title": "Does wine have a low 'diminishing return' threshold?", "Tags": "wine quality", "AnswerCount": "3", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6650"}} +{ "Id": "6650", "PostTypeId": "2", "ParentId": "6649", "CreationDate": "2017-03-08T23:26:27.567", "Score": "3", "Body": "

I can answer this... once you get above about $20 a bottle is not proportional to the value you get out of it. The flavors/tastes simply don't give you the value above that range. A $100 or $1000 bottle of wine starts to get into veblen goods territory. Production costs simply stop contributing to the price on the self above this point. I've tasted several 100 point rated wines and thought where is the emperors new clothes!?!? OK, have tasted one wine that was $10000 a bottle and 230 years old from Madeira that absolutely blew my socks off but those are rare.

\n\n

Veblen Goods from Wikipedia:

\n\n
\n

A price increase may increase that high status and perception of exclusivity, thereby making the good even more preferable. At the other end of the spectrum, with luxury items priced equal to non-luxury items of lower quality, all else being equal more people would buy the luxury items, even though a few Veblen-seekers would not. Thus, even a Veblen good is subject to the dictum that demand moves conversely to price, although the response of demand to price is not consistent at all points on the demand curve.

\n
\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-03-09T01:56:27.107", "LastActivityDate": "2017-03-09T01:56:27.107", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6651"}} +{ "Id": "6651", "PostTypeId": "1", "AcceptedAnswerId": "6653", "CreationDate": "2017-03-09T07:30:30.577", "Score": "6", "ViewCount": "473", "Body": "

The Phylloxera plague of the 19th century devastated the grape stocks of Europe. However, Charles Valentine Riley and J. E. Planchon grafted the vines (Vitis vinifera) onto rootstock of an American native species (Vitis aestivalis). In a nutshell saving the European vineyards and it's production.

\n\n

It is said that this 'hybrid' vine produced the same grape, as the rootstock does not interfere with the development of the wine grapes. Is this true?

\n\n

With all this in mind, what proportion of wine (today) is made from grapes from hybrid vines, and is there really any taste/quality difference?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-03-09T08:11:43.067", "LastActivityDate": "2017-03-09T13:24:08.933", "Title": "Do wines from grafted vine stock taste different from non-grafted?", "Tags": "taste history wine", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6652"}} +{ "Id": "6652", "PostTypeId": "2", "ParentId": "6647", "CreationDate": "2017-03-09T13:03:00.380", "Score": "3", "Body": "

Caviar has a delicate flavor, and it shouldn’t compete with another ingredient, which could overwhelm it which would include either food or drink.

\n\n

Being a non fan of either vodka or champagne, I would like to recommend a dry white wine, which by the way should always be chilled. I would be inclined to suggest a Sauvignon Blanc as an example.

\n\n
\n

Sauvignon Blanc

\n \n

This is one of the driest, crispest wines. This lean, clean wine is often herbaceous with well balanced acidity and underlying fruits. You can find Sauvignon Blanc grown around the world. Major growing regions include Bordeaux, New Zealand, the Loire Valley, South Africa, Austria, California, and Washington State. Types of Dry White Wine

\n
\n\n

There are some traditional drinks that are generally paired with caviar asthe following can demonstrate.

\n\n
\n

What to Drink With Caviar

\n \n

The most traditional drinks to pair it with:

\n \n

•Champagne (chilled) - any good champagne will usually do, but the absolute best is a fine traditional brut or extra-brut

\n \n

•Vodka (chilled)

\n \n

•Dry white wine (chilled)

\n \n

And the non-so-traditional ones:

\n \n

•Beer (need you ask? Ice-cold!)The tailgating party just got a first-class upgrade! The trick is to go for light beers (domestic or imported, your choice). Beers that are too dark will overwhelm the palate, and take away from the crisp and smooth flavor of the caviar. To best enjoy, keep it simple, and pair a tall glass of ice-cold beer with a scoopful of caviar. - Caviar Pairings

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-03-09T13:03:00.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6653"}} +{ "Id": "6653", "PostTypeId": "2", "ParentId": "6651", "CreationDate": "2017-03-09T13:24:08.933", "Score": "8", "Body": "

Oh... something I am a real expert at! You are mixing your context when calling vines hybrids. There are three ways you can grow grapes for fruit. 100% original \"own rooted\" vines, grafted vines and hybridized vines.

\n\n

Let's back up so I can explain why that is. Many Americans in the 1600-1800s tried unsuccessfully to bring European vines to North America and they always died within a few years and they could never figure out. When American vines were brought to France in the 1860s to study the differences between American and European vines, they inadvertently brought a root louse called phylloxera with them in the soil (they also brought over powdery mildew, but that's another story).

\n\n

As it came to be, phylloxera completely wiped out most vineyards in Europe within a decade or so. Then started a race to figure out a \"cure\" for this bug. Three methods were attempted. The first was to drown the soil in chemicals to kill the bugs and that worked for a long time. Some vineyards were still operating like that until the 1960s.

\n\n

After more research, they figured out that American vines were resistant to phylloxera. So that led to the other two ways of keeping their vines alive. Hybridization between French and American vines. These hybrids were resistant and yet made drinkable wine. Not the same quality as 100% vitis vinifera but hey it got you tipsy just like a good Cabernet did. Many of these hybrids are still around. I have grown several of them. One that I liked a lot is called Leon Millot. The French after WWII, in a fit of purity, have banned most of these grapes and had them ripped out.

\n\n

The third way was considered the best way to preserve the flavors of the cabernets and chardonnays of the world. They took a page from the apple growing industry, which had already perfected the art of grafting roots onto a different tree. So, they grafted American vines onto French (and German and Italian and so on) vines. This worked out almost perfectly for everyone. In fact, because they use several different vitis species (there is only one vitis species in Europe, vitis vinifera) they were able to more tightly control how the vines grow. This saved the wine industry around the world.

\n\n

There are only several small pockets and one large one, where phylloxera hasn't invaded. The big one is Washington State in the Northwest corner of the United States. This is where I live. Because of the unique soils (very sandy) and climate (basically a desert) they can grow \"own rooted\" vines. So, if you are in a place where you can buy a Washington State wine, you are tasting the last place on earth where European vines are grown on their own roots.

\n\n

Can you taste a difference? I would say not really. There are so many factors that come into play when making a wine. Any subtle influences the own rooted vs. rootstock play in flavor is masked by things like oak, climate, yeast and so on. Just be happy there is a place in the world that phylloxera has not invaded!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-09T13:24:08.933", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6654"}} +{ "Id": "6654", "PostTypeId": "2", "ParentId": "6618", "CreationDate": "2017-03-09T16:33:18.803", "Score": "1", "Body": "

Here's one I like a lot (don't know the exact proportions by hard, sorry):

\n\n
    \n
  • Tequila (silver or gold, both work well)
  • \n
  • Agave syrup
  • \n
  • Lime juice
  • \n
  • Red chili pepper
  • \n
  • Fresh coriander leaves\nShake, strain, add few coriander leaves as garnish
  • \n
\n\n

You can let the chili steep in the tequila beforehand, or just shake them along (you'll need a bit more chili then...).

\n", "OwnerUserId": "6546", "LastActivityDate": "2017-03-09T16:33:18.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6655"}} +{ "Id": "6655", "PostTypeId": "2", "ParentId": "6649", "CreationDate": "2017-03-09T21:08:20.243", "Score": "3", "Body": "

Certainly as many goods there is diminishing return.

\n\n

Wines between $10 - $20 is a narrow range. If you are happy in that range then no reason to get outside that range.

\n\n

I find many wines under $10 I consider drinkable. Under $10 you will also get more variation from bottle to bottle. They are often just buying grapes in bulk.

\n\n

There are many wines in the $20 - $30 range that are what I call no regrets wines. Even if I was very rich those would still be my daily drinkers.

\n\n

A lot is the grape:

\n\n
    \n
  • A pinot nior you need to get close to $20 as it is low yield grape
  • \n
  • A malbec I don't spend more than $12
  • \n
  • An old vine zinfindal then need to get into $40 range or I would\nrather just drink a $20 merlot
  • \n
\n\n

An $80 wine is certainly not twice as good a $40 but there are people with the budget for $80+ wine. Most people can find a lot of good wines in the $4 - $40 range that fit their taste.

\n\n

Not sure if it is true but Kevin O'Leary on Shark Tank says 90% of wine sold is $13 or less a bottle.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2017-03-10T18:37:12.730", "LastActivityDate": "2017-03-10T18:37:12.730", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6656"}} +{ "Id": "6656", "PostTypeId": "1", "CreationDate": "2017-03-12T00:40:21.463", "Score": "1", "ViewCount": "141", "Body": "

Looking for a very specific bar spoon (image included).

\n\n

\"enterIt is smooth-handled (important), with a muddler, 11 inches long. Has a nice weight to it. Anyone seen this before?

\n\n

I saw a similar one here ( https://cocktailreligion.wordpress.com/2016/01/21/bar-kit/ ), but the blog is inactive.

\n\n

Thanks for any leads on where to get one!

\n", "OwnerUserId": "6548", "LastActivityDate": "2017-08-12T07:59:40.433", "Title": "Looking for smooth handled bar spoon w/ muddler", "Tags": "bartending", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6657"}} +{ "Id": "6657", "PostTypeId": "1", "CreationDate": "2017-03-12T03:07:03.300", "Score": "6", "ViewCount": "197", "Body": "

I have a bottle of bourbon that I've been enjoying very much, but as I've neared the end, I've noticed very VERY fine grit (sand?) settling to the bottom of the glass, each time I have a drink.

\n\n

I've never noticed this before. Where would this come from? Is this just a normal consequence of the bourbon-making process? Is this an indication of a poor bourbon, or one that is slopilly made?

\n", "OwnerUserId": "6549", "LastActivityDate": "2017-03-12T14:37:28.073", "Title": "Why is there sand in my bourbon?", "Tags": "bourbon", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6658"}} +{ "Id": "6658", "PostTypeId": "2", "ParentId": "6582", "CreationDate": "2017-03-12T06:52:15.097", "Score": "2", "Body": "

Aquafaba could be something to think about. Here's a quick overview:

\n\n

The water that is left after boiling beans or chickpeas is full of proteins and starches etc... If whisked like egg white it produces what can only be described as meringue. I believe that you could add your cocktail to this, whisk it all up and there you have it.

\n\n

You can either boil your own beans/chickpeas, or buy a jar/tin, drain (use chickpeas for other things: humus or curry or something) put the water (aquafaba) in a bowl and whisk (it will take a little time so an electric whisk is best). The guys at aquafaba know more than me about it's uses, here's the website, and they also have a Facebook page.

\n\n

I have not tried making cocktils with aquafaba, but have made meringues from it and it does work.

\n\n

There is no need to cook aquafaba as it is already cooked (no salmonella risk)- it's just a by-product and is suitable for both vegetarians and vegans.

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-12T06:52:15.097", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6659"}} +{ "Id": "6659", "PostTypeId": "2", "ParentId": "6656", "CreationDate": "2017-03-12T08:16:55.657", "Score": "1", "Body": "

I found this source on the internet - which will then take you to all sorts of sites that have what you are looking for - good luck!

\n\n

EDIT: I believe this is what you want. It also has a thermometer!

\n\n

\"enter

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-12T08:16:55.657", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6660"}} +{ "Id": "6660", "PostTypeId": "2", "ParentId": "6657", "CreationDate": "2017-03-12T14:37:28.073", "Score": "5", "Body": "

It's probably \"barrel char\" which is the inside of the barrel that was carbonized or \"charred\". Charred wood is pretty flaky and comes off easily. Sometimes this gets filtered out and sometimes the maker doesn't do a perfect job. Either way, if it's been soaking in alcohol for many years, it's probably not going to hurt you at this point!

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-12T14:37:28.073", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6661"}} +{ "Id": "6661", "PostTypeId": "2", "ParentId": "6649", "CreationDate": "2017-03-13T17:53:24.580", "Score": "2", "Body": "

I cannot speak for the canadian market, as i do not live here, but in France we have quite a large choice, and were bottle rank from 5€ to 200€ in a good wine shop.

\n\n

Assuming there is little return threshold on wine above $20 is, in my humble opinion, a mistake. Because you don't drink a price, but a work. And good work is never cheap.\nI'm not talking about marketing, a wine harvested by a dwarf wrapped in ham on a full moon night before sorting the grape on the tights of virgins ... but about solid facts.

\n\n

You might consider this :

\n\n
    \n
  • Producer choices Above everything, a wine producer is a skilled craftman whom makes soil, cultivation, harvesting, ageing choices, to make the wine that fits his objectives. Whereas some may aim for low quality high quantity, a great number intend to make the best price over quality wine. And those choices can be expensive.

  • \n
  • Weather It's plain stupid, but a wine is also a product of rains, snow, temperatures, insects, sickness ... production is random. Of course, you can add water, persticides, fertilizers, use UV light by night and cloudy days. But it'll not taste the same.

  • \n
  • Soil&terroir Good soil is rare, and what is rare is expensive. Right terroir also is. Vine don't grow everywhere, and some places are better than other. And as those lands are rare ... Keep in mind that a century old vineyard and a ten years old one doesn't make the same grapes.

  • \n
  • Breeding An industrial wine in steel cask doesn't age and develops flavor the same than in a concrete tank or wood barrel. A wine in a cellar doesn't age like one in estufagem. A wine draught too young will never be good. Don't forget that Pinot Noir, only vines allowed in Burgundy has to age two years in oak barrel and three years in bottle before being opened ? Or that a third of a Savagnin wine barrel evaporate in oxydation to get the taste right ? Well, the producer also has return treshold concerns ...

  • \n
  • Harvesting If the harvest is machine made, it's cheap, but immature or rotten grapes go to the pressoir. If it's hand made, it's expensive, but the grapes (and sometimes, every single seed) are harvested the right day : not before, not after. And even after harvest, not everything proceeds to the pressoir.

  • \n
  • Legal or crafting obligations In several places in Europe, traditions, rules, even laws determines quality standard. When only the upper two third of an harvest can be made into wine, and the worst third can only be transformed into other products, it has a cost. In France, you cannot put wood dust in your wine to flavour it woody. If you want the wood tastes, you get wood barrel. End of discussion. Adding sugar is restricted. You don't add brandy to cut fermentation. You don't add other fruits. In fact ... it must be 99.9% wine and 0.1% preservatives. If it needs something else than grapes, it's no wine. It's not a moral statement : it just simply isn't wine anymore.

  • \n
  • Glass. Is your glass suited for the wine, and its degustation ? It's a common mistake, but there are three kind of glasses : 1/ degustation, standardized to test several wine in same objective conditions 2/ figured : you don't drink Pils, Stout, IPA and Weizenbock in the same beerglass do you ; It does also apply to wine, old&young, white&red does not required the same shape 3/ fancy bullshit. Sorry you bought them. And it's common in restaurant to have the wrong kind of glass.

  • \n
  • Pairing Not every wine fits every dish. Not every wine fits every time of day. Not every wine meets your mood at a precise time.

  • \n
  • Your tastes I'm rude, but do you know what you like ? I'm fond of oxydated wines. Most drinkers can't bear them. I don't enjoy champagne. Most drinkers swear by it. You might not have met what you like, and thus you might not know enough in oenology to assess nor appreciate the subtleties. It's easy to learn (if you have a good teacher), but it takes time. I do not buy expensive wines. Because i'm broke. And because i cannot enjoy them fully : i learn and wait until i'm able to enjoy them When i got my drivers licence, i drived a car older than i was. Today i can ride a common sports car. But i would not dare to drive a Porsche or a Ferrari : i would do nothing but find the nearest wall

  • \n
\n\n

I might expose twenty other factors that determines both price and quality.

\n\n

There are great wines under 10€. Really ! Simple and straightforwards.\nThere are awful wines over 20€. Really ! Miscrafted, mishandled ...

\n\n

So, please, step over your range boundaries. The threshold you wonder is several rung above the price's ladder ! Ask oenologists, do visit wine trade fair, try to meet producers ... or simply visit a true cellarman in his shop. It'll blow your tastebuds !

\n\n

Source : my experience as beer cellarman for the importance of the crafting. And several hundred different wine bottle over the years.

\n", "OwnerUserId": "6553", "LastEditorUserId": "6553", "LastEditDate": "2017-03-13T18:10:40.457", "LastActivityDate": "2017-03-13T18:10:40.457", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6662"}} +{ "Id": "6662", "PostTypeId": "1", "AcceptedAnswerId": "6664", "CreationDate": "2017-03-13T18:51:31.697", "Score": "10", "ViewCount": "11933", "Body": "

I bought a bottle of wine the other day, and when I attempted to open it, the cork crumbled to pieces! I was eventually able to dig a hole through the cork, and pour the wine (slowly) through a coffee filter. But for the future, I'd like to know:

\n\n
    \n
  • Is there a more elegant way to open a ruined cork than stabbing it repeatedly and hoping for the best?
  • \n
  • Should I even be drinking wine like this? Does a ruined cork mean the wine has somehow spoiled? For reference this was a bottle from 2004.
  • \n
\n", "OwnerUserId": "5328", "LastActivityDate": "2017-03-14T16:04:44.977", "Title": "What should I do when my wine's cork crumbles?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6663"}} +{ "Id": "6663", "PostTypeId": "2", "ParentId": "6662", "CreationDate": "2017-03-13T20:04:42.677", "Score": "3", "Body": "

First, if you bought it in a specialized shop, a cellar, do contact the seller.\nHe might do some gesture, and it's an important information for him, if he has other in stock.

\n\n

Make sure you use the right kind of corckscew : it shall have a pigtail shape instead of a straight one. This way it'll apply the torque and the pulling force more even on the wood, and shall have less accident. You may also try for a twin-prong cork puller, where blunt blade are pushed between cork and glass. They do even less damage to the cork.

\n\n

Corks aren't suppose to live eternally : it's not unusual for bottle above twenty years to have some defect. 2004 is a bit early, but you might get the monday morning cork ...\nIn fact, some cellarmen changes corks every decades to make sure nothing dreadful happens.

\n\n

You should at least taste it. If it has spoiled, you'll definitly know it in a few second ... and even before you take a sip, if you are careful to the scent.

\n\n
    \n
  • If it has gone bad ... well, make vinegar from it if you can't get help from the seller.
  • \n
  • If it has lost some flavour but you still enjoy the taste ... well enjoy your wine !
  • \n
  • If it tastes perfect ... why should you worry ? Any kind of rubbish that could have been dangerous was put inside the wine before it has been draught from the cask. The corks only let a little osmosis with oxygen over the years.
  • \n
\n\n

I do have a very few 1988 bordeaux with this problem. Nothing different with the \"healthy corks\"ones.

\n\n

Kaldui.

\n", "OwnerUserId": "6553", "LastActivityDate": "2017-03-13T20:04:42.677", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6664"}} +{ "Id": "6664", "PostTypeId": "2", "ParentId": "6662", "CreationDate": "2017-03-13T22:53:37.947", "Score": "8", "Body": "
    \n
  1. The best way to take out bad corks is with an Ah So. Keeps the crumbly corks together better.
  2. \n
\n\n

\"Ah

\n\n
    \n
  1. Instead of picking at the cork, push it back into the bottle and then strain the wine through a stainless steel tea strainer like this:
  2. \n
\n\n

\"tea

\n\n

Many times the wine is good, but when the cork is that bad it's probably oxidized to hell, vinegar or corked. The only way to tell is to smell and/or taste it.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-03-14T16:04:44.977", "LastActivityDate": "2017-03-14T16:04:44.977", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6666"}} +{ "Id": "6666", "PostTypeId": "1", "AcceptedAnswerId": "6667", "CreationDate": "2017-03-15T05:56:56.883", "Score": "6", "ViewCount": "431", "Body": "

On Burns Night it is traditional to have a 'wee dram' to drink with your Haggis. I am serving Haggis to some Scottish friends, and as it is not Burns Night I feel that I can forgo the traditions of whiskey with Haggis and serve another spirit/wine. What would be a good alcohol pairing for Haggis?

\n", "OwnerUserId": "6366", "LastActivityDate": "2018-06-03T21:52:25.807", "Title": "What can be substituted for whiskey with Haggis?", "Tags": "pairing whiskey tradition", "AnswerCount": "6", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6667"}} +{ "Id": "6667", "PostTypeId": "2", "ParentId": "6666", "CreationDate": "2017-03-15T12:21:24.367", "Score": "5", "Body": "

Personally, I have never had haggis, but pairing it with wine is not all that uncommon. Some even pair it with beer as can be seen here, but I would go with a sweet fruity red wine. Pairing wine with haggis is very common on the web.

\n\n

Here is a sample of how people wine with haggis:

\n\n
\n

A dram of whisky works better after the meal, as its sheer strength means it doesn’t go with the food, so which wine to open first? Red, of course, and something with enough richness to take on haggis, which is sheep’s (occasionally pig’s) “pluck” – the heart, liver and lights (lungs) – mixed with oatmeal, spices and seasoning.

\n \n

If you’re still with me (Susy Atkins) and up for it, a bold European red with a little savouriness and black pepper is by far the best.

\n \n

Spanish tempranillo, aged in oak casks, and tasting of ripe red berries, wood spice and vanilla, is my favourite match. - Why I'll be drinking red wine - not whisky - with my haggis

\n
\n\n

Here is another:

\n\n
\n

Haggis is quite a funky-tasting meat - a bit like a savoury, spicy sausage - so I think red wine is a better match than white. I’ve found big jammy reds such as Australian shiraz work well (there is appropriately enough one called Bobbie Burns shiraz (available for about £15-£16 from independents including Alexander Hadleigh and Old Butcher's Wine Cellar.

\n \n

Northern Rhône syrah and grenache/syrah/mourvèdre (GSM) blends from the southern Rhône, the Languedoc and Australia are also good matches, especially if they have a year or two’s bottle age. - The best wines to pair with haggis

\n
\n\n

And finally:

\n\n
\n

Wine pairing with haggis – grape growing and winemaking techniques

\n \n

Grapes grown in hotter climates often have riper fruit which add to flavour intensity and texture of the wine; but also the sugar levels in the grapes are generally much higher adding further mouthfeel, so a sign is to look for wines that have perhaps 13.5% or above alcohol by volume.

\n \n

Oak fermentation and/or oak ageing adds flavour and texture too, so clues are sometimes on the label; be aware ‘oaked’ is not generally a style that adds texture, look for the word ‘aged’ to ensure it has seen the inside of an oak cask. This week on our WSET Level 2 Wine Course we had an outstanding Puligny-Montrachet and also a equally impressive Chateauneuf-du-Pape, both would have successfully met the haggis-pairing challenge. Burns Night – wine pairing with haggis

\n
\n\n

All said and done: Enjoy!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-03-26T20:12:19.887", "LastActivityDate": "2017-03-26T20:12:19.887", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6668"}} +{ "Id": "6668", "PostTypeId": "1", "CreationDate": "2017-03-15T16:28:43.573", "Score": "2", "ViewCount": "5787", "Body": "

What types of beer have lower or no carbonation?

\n", "OwnerUserId": "6557", "LastEditorUserId": "5078", "LastEditDate": "2017-03-17T09:19:03.143", "LastActivityDate": "2017-03-17T11:27:09.393", "Title": "Beers sold in the US with little or no carbonation", "Tags": "carbonation", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6669"}} +{ "Id": "6669", "PostTypeId": "2", "ParentId": "6666", "CreationDate": "2017-03-15T16:48:44.133", "Score": "2", "Body": "

I think haggis calls for a whisky barrel-aged porter, an Irish stout, or a peated malt ale, preferably in vast quantities so that you:

\n\n
    \n
  • don't know what you're eating,
  • \n
  • don't eat because you're too drunk.
  • \n
\n", "OwnerUserId": "6391", "LastActivityDate": "2017-03-15T16:48:44.133", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6670"}} +{ "Id": "6670", "PostTypeId": "2", "ParentId": "6283", "CreationDate": "2017-03-15T17:15:03.270", "Score": "2", "Body": "

Apparently alcohol is not unhealthy if you limit yourself to a drink a day. Life expectancy increases with moderate alcohol consumption however if you go far beyond that life expectancy decreases.
\nI rarely have more than two to three drinks a month however in light of this information I'm thinking of increasing my consumption. \nWhether the 50-plus Herbs in Jagermeister make it healthier or not I think it's a good place to start.

\n", "OwnerUserId": "6558", "LastActivityDate": "2017-03-15T17:15:03.270", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6671"}} +{ "Id": "6671", "PostTypeId": "2", "ParentId": "6666", "CreationDate": "2017-03-15T18:13:16.210", "Score": "1", "Body": "

I have tried this with a nice Reposado, and it works well. But you are much better off with a nice whisky.

\n\n

Or any other drink - it doesn't really matter. If you have a nice haggis the drink is irrelevant.

\n\n

(disclaimer - I am Scottish)

\n", "OwnerUserId": "187", "LastActivityDate": "2017-03-15T18:13:16.210", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6673"}} +{ "Id": "6673", "PostTypeId": "2", "ParentId": "6666", "CreationDate": "2017-03-15T21:02:59.973", "Score": "2", "Body": "

I don't know much about wine, but you can't go wrong with a beer.

\n\n
    \n
  • Wee Heavy:\nThis style of beer is Scottish through and through. It's malty and slightly sweet, with a high alcohol content that will keep things more fun.
  • \n
  • Schwarzbier: The Germans have been drinking beer with their sausage for centuries. Any German beer should do, but Schwarzbier balances flavour with easy-drinking quality.
  • \n
\n", "OwnerUserId": "5328", "LastActivityDate": "2017-03-15T21:02:59.973", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6675"}} +{ "Id": "6675", "PostTypeId": "1", "AcceptedAnswerId": "6679", "CreationDate": "2017-03-16T11:53:36.590", "Score": "6", "ViewCount": "123", "Body": "

After seeing this question on the site (Is there a modern wine that is designed to resemble ancient Roman winemaking?) sometime back and I became interested in knowing if there is a modern wine that is designed to resemble ancient Hebrew (Palestinian) wines from around the first century?

\n\n

It would be awesome to have some sort of a regional \"historical\" wine to drink at Easter or even to be able to obtain such a wine for a minister friend for his liturgical usage during Holy Week or Eastertide.

\n\n

Is there a modern wine, commercially available today, that is intended to resemble ancient Palestinian wine as closely as possible from around the first century (more or less)?

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T13:00:11.050", "LastActivityDate": "2017-03-18T21:08:07.550", "Title": "Is there a modern wine that is designed to resemble an ancient Hebrew (Palestinian) wine?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6676"}} +{ "Id": "6676", "PostTypeId": "1", "AcceptedAnswerId": "6678", "CreationDate": "2017-03-16T13:40:12.617", "Score": "2", "ViewCount": "115", "Body": "

Eating bugs and critters of all varieties has become a bit of a culinary fashion. So, with the thought of digesting such delicacies as deep fried tarantula, or supping on ant soup, are there any suggestions or even protocols that dictate a certain drink (alcoholic)? Bear in mind that I think that the spider should be accompanied by a chili sauce.

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-03-16T15:16:16.197", "LastActivityDate": "2017-03-16T18:15:52.317", "Title": "Bugs and what to drink with them", "Tags": "pairing", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6677"}} +{ "Id": "6677", "PostTypeId": "2", "ParentId": "6675", "CreationDate": "2017-03-16T16:33:13.673", "Score": "3", "Body": "

I would say yes and no... I was reading \"Vintage\" by Hugh Johnson. It's out of print, but you can find it on Alibris. I highly recommend it if you want to read the history of wine.

\n\n

In the De Re Rustica chapter about Roman wine, he talks about the very highest quality wine called Falernian he says:

\n\n
\n

It is surprising to learn that all of them were white wines - until you also learn that they were all sweet. The tast of the Augustan age (27bc - 14 ad) was for wine that was sweet and strong, and very often cooked in much the same way as madeira is today. Usually it was drunk diluted with warm water or even seawater.

\n
\n\n

Wine did not last that long back then. They kept it in Amphora and it probably had to be drunk within the year after picking before it turned to vinegar.

\n\n

There is a lot more in the chapter about how cheaper wines they added flavorings like herbs, spices and resins.

\n\n

So, my answer is to seek out a Retsina from Greece. Retsina, is a sweet, strong white wine made with pine resin. This is probably the closest you are going to get to a wine that was made 2000 years ago.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-03-16T18:28:39.227", "LastActivityDate": "2017-03-16T18:28:39.227", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6678"}} +{ "Id": "6678", "PostTypeId": "2", "ParentId": "6676", "CreationDate": "2017-03-16T18:15:52.317", "Score": "5", "Body": "

When pairing dishes and drinks, you shall first ask yourself what kind of pairing you seek.

\n\n

Reinforcing pairing, aim to emphasis the tastes of either food or beverage, or both. A Jura oxydized wine over a smoked poultry.

\n\n

Correcting pairing aim to neutralize an unwelcomed taste from either,\nEdam cheese and Lambic/Ould Bruin, to cut the acidic dryness of the beer for those whom don't enjoy it.

\n\n

Zero pairing, aim to wash out the taste of one by the second, just to always have the first bit/sip flavours. Ginger with japanese gastronomy

\n\n

Contrast pairing, aim to a deliberate yet welcomed discrepency between food and beverage. Earthy beer over shellfish.

\n\n

=> Do keep in mind that the pairing can not only be on the taste, but also on texture. A \"greasy\" food with a \"drying\" drink for example.

\n\n

In your case, more than the spider itself, you plan a chili sauce. So, the drink will deal with spicyness : it implies a lost of tasting capacity by overcrowing of one or various of the fundamental tastes (Saltiness/Sweetness/Bitterness/Sourness+Umami+Astingency+Pungency). In this case, saltiness and pungency will be the dominant you'll have to pair with.

\n\n
    \n
  • If you want to reinforce it, you shall look to strong liquors, which will get the pungency stonger (ethanol have it's own burning sensation) ; but you may have to water not to burn your tastebuds. A salty vodka ?

  • \n
  • If you want to correct it, you shall seek fat drinks, as spicyness agent are mostly lipophyllic. Thats why many a western guest enjoy Lassi with Indian curry.

  • \n
  • If you want to zero it, but only with a light chili, you may try a red wine from old vineyards, the kind of wine where spices notes are powerful. Wine itself will be lost, but it'll reset your tastebuds as alcohol is a solvant and the wine is quite tannic, the astringent side will make you salivate. Syrah wine on fifty, eighty years old vines.

  • \n
  • If you want a contrast, try a malted and hopped beer, where rye is involved. It's rich mouthfull will compete with the crispy feeling of the bug, and rye, even more than oat, bear spice quite well.

  • \n
\n\n

Obviously, if you abandon the chili, those recommandation are void ; but you now have the keys to make the match yourself.

\n", "OwnerUserId": "6553", "LastActivityDate": "2017-03-16T18:15:52.317", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6679"}} +{ "Id": "6679", "PostTypeId": "2", "ParentId": "6675", "CreationDate": "2017-03-17T03:13:24.443", "Score": "4", "Body": "

How about Marawi Wine from the Recanati Winery in Israel.

\n\n
\n

The wine, called marawi and released last month by Recanati Winery, is the first commercially produced by Israel’s growing modern industry from indigenous grapes. It grew out of a groundbreaking project at Ariel University in the occupied West Bank that aims to use DNA testing to identify — and recreate — ancient wines drunk by the likes of King David and Jesus Christ. - Israel Aims to Recreate Wine That Jesus and King David Drank

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-03-18T21:08:07.550", "LastActivityDate": "2017-03-18T21:08:07.550", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6680"}} +{ "Id": "6680", "PostTypeId": "2", "ParentId": "6668", "CreationDate": "2017-03-17T09:00:50.503", "Score": "3", "Body": "

What you will be looking for is a Cask ale or cask-conditioned beer these are all generally very low carbonation or non at all due to only being left in a cask

\n\n
\n

\"Beer brewed from traditional ingredients, matured by secondary\n fermentation in the container from which it is dispensed, and served\n without the use of extraneous carbon dioxide\"

\n
\n\n

If you go to an ale bar they will usually have at least one cask ale on I have not done a tour of America, so I cannot for sure tell you of places in America for low carbonated beer, but as for the what type of beer Cask Conditioned is definitely what you should be looking for.

\n", "OwnerUserId": "5078", "LastEditorUserId": "5064", "LastEditDate": "2017-03-17T11:27:09.393", "LastActivityDate": "2017-03-17T11:27:09.393", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6681"}} +{ "Id": "6681", "PostTypeId": "1", "AcceptedAnswerId": "6682", "CreationDate": "2017-03-17T15:21:57.487", "Score": "2", "ViewCount": "93", "Body": "

Recently, I started a question on the diminishing returns of wine, which resulted in an answer that brought to light that any given wine is a 'work' dependent on a number of variables, such as, but not limited to:

\n\n
    \n
  • Producer Choices
  • \n
  • Weather
  • \n
  • Soil
  • \n
  • Breeding
  • \n
  • Harvesting
  • \n
  • Legal Obligations
  • \n
\n\n

The gist of the answer being that the production that has gone into the wine has a significant impact on the final product, with some production methods resulting in a high quality wine, and others resulting in a lower quality wine.

\n\n

So my essential problem here is that if I go into a wine shop and am choosing from vintage wines where, grape variety, and sugar content are similar, how can I choose between two bottles in a non-arbitrary, and objective way?

\n\n
    \n
  • Should I be researching specific aspects of their production methods?
  • \n
  • Should I focus on who produced the wine?
  • \n
  • Should I focus on region?
  • \n
  • Should I rely on ratings of the wine?
  • \n
\n\n

Or is the process of selecting a wine a bit of a dark art?

\n\n

Forgive me if my ignorance is showing here, I'd like to better understand the wine world and am starting from the bottom. I generally know which grapes I like and the differences between them, as well as sugar content I prefer, but in a nutshell I'm curious how one would choose between a set of different Cab Sauvs, or similar.

\n", "OwnerUserId": "938", "LastActivityDate": "2017-03-17T16:21:59.043", "Title": "How to select a wine based on production quality?", "Tags": "wine quality", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6682"}} +{ "Id": "6682", "PostTypeId": "2", "ParentId": "6681", "CreationDate": "2017-03-17T16:21:59.043", "Score": "4", "Body": "
\n

how can I choose between two bottles in a non-arbitrary, and objective way?

\n
\n\n

You can't. It's purely a subjective exercise. It is a dark art that takes a lot of tasting and learning what regions you like and winemakers you like. Even high points from a well known critic aren't a sure bet. If I were you, I would start reading Wine Spectator and Wine Advocate and whatever online wine resources you can find to get an education about what you like.

\n\n

Things are easier in Europe where they more tightly control the wine making/grape growing process and some regions like Bordeaux, Champagne and Burgundy you can assume a certain high quality from a certain appellation. In the \"New\" world (USA, Australia, South Africa, etc) it's more of a crap shoot. Napa Valley wine is not a sure bet. It involves a lot of research and personal preference.

\n\n

People spend many years and tons of money trying to figure this out and it's a never ending process. The journey is long and paved with many bad bottles. Good luck!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-17T16:21:59.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6683"}} +{ "Id": "6683", "PostTypeId": "1", "AcceptedAnswerId": "6700", "CreationDate": "2017-03-17T17:54:58.957", "Score": "10", "ViewCount": "184", "Body": "

Part of my job involves selling beer. I was told by a coworker that visible yeast particulates at the top of a beer bottle indicate that it's not fit for consumption, whereas yeast at the bottom is fine.

\n\n

Is this true? And if so, does it change depending on whether it's a top-fermenting or bottom-fermenting beer? Does this affect meads and ciders as well?

\n", "OwnerUserId": "6564", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-29T13:37:49.657", "LastActivityDate": "2019-01-29T13:37:49.657", "Title": "Does beer expiration change based on yeasts?", "Tags": "storage aging yeast", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6684"}} +{ "Id": "6684", "PostTypeId": "1", "AcceptedAnswerId": "6685", "CreationDate": "2017-03-18T12:46:17.800", "Score": "8", "ViewCount": "8760", "Body": "

I am very thin and it was suggested that I drink beer to put on weight. Would drinking beer help to put on weight? If yes, how many beers should I drink in a week to put on weight? If no, could one please explain briefly why this is so.

\n", "OwnerUserId": "6559", "LastEditorUserId": "5320", "LastEditDate": "2017-10-19T05:38:55.837", "LastActivityDate": "2017-11-14T23:41:35.403", "Title": "Can one put on weight by drinking beer?", "Tags": "health drink", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6685"}} +{ "Id": "6685", "PostTypeId": "2", "ParentId": "6684", "CreationDate": "2017-03-18T13:13:51.743", "Score": "12", "Body": "

Beer can make you gain weight by three means, but you shall NOT pursue it !

\n\n

First is alcohol, which is a byproduct of the fermentation of starch by yeast. Starch is a carbohydrate, and it has it's own nutriting quality, including energy. Its energy is transferred to alcohol.

\n\n

If the energy it carries is not used by basal metabolism or physical activity, it'll be stored. It is why non pathological drinker get fat. But drinking regularly may drive you to pathological drinking, even when you never get drunk nor make any excess.

\n\n

Second is cereal malt (beer component) and non fermented starch itself : first is an aliment (cattle) and second is a carbohydrate : they are particularly fit for storing when unused.

\n\n

Third is oestrogen. Hop, the flavouring and conservative plant used in beer production carries a phyto-oestrogen, which has the same effect on the human body as the feminine hormone. One of the effect of oestrogen is modifying the fat storage (many a women complain on her weight change under contraceptive pills), both for developing sexual character (women's are the sole primate with permanent breasts) and storing fat in case of starvation during pregnancy.\nYou already guessed why messing with hormonal rates in your body is no option.

\n\n

I strongly recommend you to seek help in gaining weight from a trained medical staff, or at least from a specialized Stack Exchange site. A change in your feeding habits may be way more efficient and less hazardous.

\n\n

Basically, you must eat and brink more than your body burns, while making the right amount of physical exercise to gain muscles as well as body fat. Beer nutriment don't really matches the kind of food you shall seek with this objective.

\n\n

Sources: Wikipedia, French medical awareness websites, and my personal experience as a beer cellarman.

\n", "OwnerUserId": "6553", "LastEditorUserId": "6255", "LastEditDate": "2017-10-18T07:57:03.107", "LastActivityDate": "2017-10-18T07:57:03.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6686"}} +{ "Id": "6686", "PostTypeId": "1", "AcceptedAnswerId": "6689", "CreationDate": "2017-03-18T15:15:26.603", "Score": "19", "ViewCount": "2445", "Body": "

For those who are familiar with the New Testament, we know the St John the Baptist never drank wine or strong drink.

\n\n
\n

For he shall be great in the sight of the Lord, and shall drink neither wine nor strong drink; and he shall be filled with the Holy Ghost, even from his mother's womb. - Luke 1:15 (KJV)

\n
\n\n

My question is as follows: What type of strong drinks existed in Palestine during the time of St John the Baptist (1st century BC)?

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-05-27T14:40:10.853", "Title": "Strong drink at the time of St John the Baptist", "Tags": "history drink", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6687"}} +{ "Id": "6687", "PostTypeId": "2", "ParentId": "6686", "CreationDate": "2017-03-18T16:13:34.047", "Score": "7", "Body": "

There were two types of drinks back in that time. Beer and Wine. Both hardly resembled what they are today. Beer was very weak, under 4% alcohol, while wine was probably in the normal range of 12-14%. Distilling had not been invented by the Muslims until 700 A.D. (anno Domini). If I apply Occam's Razor here, I would say that it's wine and probably a higher end wine because the more expensive wines were more alcoholic. As I mentioned in my other answer, you want to get your hands on some Retsina or that other Israeli wine being made in an ancient manner.

\n\n

I'm adding the Wikipedia page on there about this exact passage.. Alcohol in the Bible

\n\n
\n

\"strong drink\"; \"denotes any inebriating drink with about 7–10 percent alcoholic content, not hard liquor, because there is no evidence of distilled liquor in ancient times.... It was made from either fruit and/or barley beer\"; the term can include wine, but generally it is used in combination with it (\"wine and strong drink\") to encompass all varieties of intoxicants

\n
\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-05-27T14:40:10.853", "LastActivityDate": "2018-05-27T14:40:10.853", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6688"}} +{ "Id": "6688", "PostTypeId": "2", "ParentId": "6686", "CreationDate": "2017-03-18T20:32:40.640", "Score": "6", "Body": "

Surely mead, honey wine, should be considered. Okay, I had to google this one: Wiki says that residual evidence has been found in northern Chinese pottery vessels dating from 6500–7000 BC, and in Europe in the ceramics of the Bell Beaker Culture (c. 2800–1800 BC). Wiki goes on to tell us that, contemporaneous to John the Baptist, Greeks and Romans were imbibing it.

\n", "OwnerUserId": "6391", "LastActivityDate": "2017-03-18T20:32:40.640", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6689"}} +{ "Id": "6689", "PostTypeId": "2", "ParentId": "6686", "CreationDate": "2017-03-18T21:33:08.487", "Score": "25", "Body": "

The Quotation

\n\n

Firstly, I shall examine the passage in the original Greek:

\n\n
\n

ἔσται γὰρ μέγας ἐνώπιον τοῦ Κυρίου, καὶ οἶνον καὶ σίκερα οὐ μὴ πίῃ, καὶ Πνεύματος Ἁγίου πλησθήσεται ἔτι ἐκ κοιλίας μητρὸς αὐτοῦ.

\n
\n\n

The two words we are intereted in here are 'οἶνον' ('wine'), and 'σίκερα' ('strong drink'). The second ('σίκερα') is interested in that it is a loan word directly from the Hebrew word 'שכר' (transliterated 'shekar'). This word is rather popular in the Old Testamant (appearing 7941 times), so it is little surprise that 'σίκερα' appears 4608 times in the New Testament. The two (in both languages) are usually used in conjunction with each other, to form the phrase 'wine and strong drink' to encompass the whole variety of intoxicants. [1]

\n\n

The Wine

\n\n

Wine was the ubiquitous alcoholic beverage of the ancient world. The process by which the ancient peoples made wine was simple. First, they pressed grapes into grape juice, then left the juice in large earthenware jars to ferment. Fermentation took two weeks to a month. Distillation had not yet been discovered, so Roman wine was of about the same strength as modern wine (around 13%), or possibly a bit stronger.

\n\n

While 'true' Romans diluted their wine with water (roughly one part wine to two parts water), making it a beverage that could be drunk all day long, without danger of drunkenness, people living in provinces, such as Judea, are not supposed to have done so. That said, it is likely that the Roman officials did dilute their wine, in keeping with the custom back in Rome. Because of this, it is also likely that citizens wishing to curry their favour might also have adopted this custom. The Greeks also diluted their wine (roughly one part wine to four parts water). [2]

\n\n

Other Alcohols

\n\n

Other alcohols included beer, which became significantly less popular than wine. In particular, wealthy Romans looked down on the drinking of beer. Tacitus (writing much later, in the 1st Century AD) wrote disparagingly of German beer. Barley wine (a type of strong ale, roughly 6-11%) existed, as well as alcohols made from whatever fruits might be growing in the vicinity. For example, when Caesar arrived in Britain in 55BC, he found the locals drinking an apple cider, a custom he and his men adopted with enthusiasm. [3]

\n\n

I have not be able to find any evidence for the consumption of distilled spirits or liqueurs.

\n\n

Abstention

\n\n

Abstaining from alcohol was not as easy then as it might be now. Since a large proportion of running water was (and still is) undrinkable, ancient peoples turned to alcohol (in particular wine) as a daily staple, giving them the fluid they needed. The water mixed with wine would be (somewhat) sterilised, allowing it to be drunk, and making the wine go further. One assumes that John must have drunk water only, or at least non-alcoholic juices (grape, etc.). There is reference in the bible to non-alcoholic wines, although this is rare.

\n", "OwnerUserId": "6568", "LastEditorUserId": "6568", "LastEditDate": "2017-04-30T12:30:56.997", "LastActivityDate": "2017-04-30T12:30:56.997", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6690"}} +{ "Id": "6690", "PostTypeId": "2", "ParentId": "14", "CreationDate": "2017-03-19T14:24:13.047", "Score": "1", "Body": "

I have a similar question, but interpret the original question differently - probably because I am a home brewer that lets the beer carbonate naturally. If you are forcing CO2 into the beer, I imagine you have greater control over levels of carbonation. However, I understand that the final gravity, alcohol content, amount of sugar, and temperature have the most significant impact on carbonation in the bottle. The primary factors would be Lower FG and ABV will increase carbonation, and secondarily a little more sugar and time (>3weeks) will increase carbonation. This all assumes you are storing the beer in a temp range that makes for happy yeast.

\n", "OwnerUserId": "6573", "LastActivityDate": "2017-03-19T14:24:13.047", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6691"}} +{ "Id": "6691", "PostTypeId": "1", "AcceptedAnswerId": "6693", "CreationDate": "2017-03-20T13:34:42.027", "Score": "2", "ViewCount": "109", "Body": "

I have a lot of bananas at the moment - too many to consume by just eating or cooking or using in general. What is the best way to use banana in a drink - assume that I have a fairly wide and varied bar to choose from for the base of the drink.

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-20T20:47:41.503", "Title": "Bananas in cocktails or other drinks", "Tags": "cocktails", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6692"}} +{ "Id": "6692", "PostTypeId": "2", "ParentId": "6691", "CreationDate": "2017-03-20T14:59:27.040", "Score": "7", "Body": "

I suppose this is obvious, but how about the Banana Daiquiri.

\n", "OwnerUserId": "6370", "LastActivityDate": "2017-03-20T14:59:27.040", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6693"}} +{ "Id": "6693", "PostTypeId": "2", "ParentId": "6691", "CreationDate": "2017-03-20T20:47:41.503", "Score": "5", "Body": "

Bananas can go in any blended tropical drink fairly well. Any strawberry drink (daiquiri or margarita) can have bananas added. For obvious reasons though bananas would go better in a frozen drink than a \"on the rocks\" drink.

\n\n

You can also peel bananas and freeze them and they will stay fine for a couple of months. The flesh will darken but they are perfectly OK to use. Take a frozen banana out and toss it into the blender for a smoothie or frozen cocktail.

\n\n

In my opinion, bananas go well with the more tropical alcohols like rum, teqauila, triple sec, etc..

\n", "OwnerUserId": "6579", "LastActivityDate": "2017-03-20T20:47:41.503", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6694"}} +{ "Id": "6694", "PostTypeId": "1", "AcceptedAnswerId": "6698", "CreationDate": "2017-03-21T15:59:06.507", "Score": "4", "ViewCount": "14629", "Body": "

Is there a method of fermenting bananas? I have a lot of bananas here, apparently they are Cavendish(?) bananas. Is there a simple method to produce a sort of palatable drink from them? Bare in mind I live on a boat so stills are out of the question (I would like to keep the boat in one piece - please!).

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-24T12:43:39.870", "Title": "Fermenting Bananas", "Tags": "fermentation", "AnswerCount": "2", "CommentCount": "11", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6695"}} +{ "Id": "6695", "PostTypeId": "2", "ParentId": "6694", "CreationDate": "2017-03-22T13:53:39.310", "Score": "1", "Body": "

Step by Step guide to make banana beer at home Banana Beer Recipe Yummy!

\n\n

\"Mashed

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-03-22T20:18:06.533", "LastActivityDate": "2017-03-22T20:18:06.533", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6696"}} +{ "Id": "6696", "PostTypeId": "1", "AcceptedAnswerId": "6699", "CreationDate": "2017-03-22T23:10:16.870", "Score": "3", "ViewCount": "156", "Body": "

I want organize a meeting around Italian wine but I have multiple question in my brain.

\n\n

I read a lot of page in this big web for prepare wine.

\n\n

My wine is not into a fridge. I know my red wine may be openned 1h before the degustation but I do not know if I need to kept the wine 1h hour in the fridge before opening it. Because I saw after 1h the wine temperature was between 19°C or 20°C.

\n", "OwnerUserId": "6303", "LastEditorUserId": "5064", "LastEditDate": "2017-03-22T23:26:02.467", "LastActivityDate": "2017-07-21T11:23:02.727", "Title": "Red wine service", "Tags": "wine serving red-wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6698"}} +{ "Id": "6698", "PostTypeId": "2", "ParentId": "6694", "CreationDate": "2017-03-24T12:43:39.870", "Score": "2", "Body": "

There is banana beer and there is banana wine made from Cavendish bananas, but they are not the same thing!

\n\n

What is banana beer?

\n\n
\n

Banana beer is an alcoholic beverage made from fermentation of mashed bananas. Sorghum, millet or maize flour are added as a source of wild yeast.

\n
\n\n

And there is a difference with banana wine.

\n\n
\n

Banana wine is a fruit wine made exclusively from bananas. It is different from banana beer, which has a long tradition and great cultural significance in East Africa. Blocker et al. (2001)1 wrote a chapter on \"Banana Wine\" in the book \"Alcohol and temperance in modern history: an international encyclopedia\", though this is slightly confusing, as they define what is traditionally referred to as banana beer as being banana wine. The data they present on Production Techniques and Social Practices and Rituals relates to the latter and not to what is commonly known as banana wine.

\n
\n\n

Here is how to make banana beer the African way.

\n\n
\n

Bananas

\n \n

Peel ripe bananas by hand. Only use bananas ripe enough to be peeled by hand

\n \n

Extract Juice

\n \n

Use grass to knead the bananas until clear juice is extracted. The residue will remain in the grass.

\n \n

Mix water

\n \n

Mix 1:3 water: banana juice ratio.

\n \n

Mix sorghum

\n \n

Sorghum flour:banana juice ratio, 1:12. Stir the mixture well. Sorghum is added to improve the color and the flavor of the beer

\n \n

Ferment

\n \n

Ferment in plastic containers covered by polyethylene bags. Allow to ferment 18 -24 hours.

\n \n

Filter

\n \n

Force the liquid through a cotton cloth bag either by hand or use a press.

\n \n

Bottle

\n \n

Place in 1 liter size plastic bottles

\n \n

Shelf Life

\n \n

Several days, refrigerated - African Banana Beer

\n
\n\n

Here is how to make homemade banana wine.

\n\n
\n

How to Make Homemade Banana Wine

\n \n

Ingredients:

\n \n

21 lbs of RIPE bananas, sliced into thin rings

\n \n

5 gallons water (You won’t use it all)

\n \n

15-20 lbs white and/or brown sugar (We used white)

\n \n

6 tsp acid blend

\n \n

5 tsp pectinase

\n \n

1.25 tsp wine tannin

\n \n

6 tsp yeast nutrient

\n \n

4 lbs golden raisins

\n \n

1 packets of wine yeast (We like Red Star “Champagne” for this recipe)

\n \n

Potassium sorbate or other wine stabilizer

\n \n

Equipment:

\n \n

7.5 gallon pot (or bigger)

\n \n

1 6.5 gallon fermenter bucket and lid

\n \n

1 or 2 6.5 gallon glass carboys & stoppers

\n \n

1 air lock

\n \n

Siphon, siphon tubing.

\n \n

Place raisins in a freshly sanitized 6.5 gallon fermenting bucket. Carefully strain hot banana liquid into the fermenting bucket, over top of the raisins. Top with water to 6 gallons, and add a few scoops of the banana mush. Cover with sanitized lid and air lock, allow to cool to room temperature (overnight).

\n \n

The next morning, give the mixture a quick stir with a sanitized paddle, and – using sanitized equipment – take a gravity reading. Keep track of the number! (This is an optional step, but will allow you to calculate your final ABV %)

\n \n

Sprinkle yeast into fermenter, cover with sanitized cover and air lock. Within 48 hours, you should notice fermentation activity – bubbles in the airlock, carbonation and /or swirling in the wine must. This means you’re good to go!

\n \n

Let sit for about a week, stirring (sanitized paddle!) Every couple of days or so. It will get black on top. It’ll look awful… and your whole brewing area / basement / garage will smell like banana bread!

\n \n

After a week or so, use your sanitized siphon setup to rack the must into a freshly sanitized 6.5 gallon carboy. (At this point, we ran the raisins and remaining pulp through a juicer and added it to the carboy, but that’s entirely optional. Will give the wine extra body if you do it!)

\n \n

Put the carboy somewhere cool (not cold!), and leave it alone for a month or so.

\n \n

Using sanitized equipment, rack the banana wine off the sediment, into a clean, freshly sanitized 6.5 gallon carboy. (At this point, we added 4 lbs sugar for added sweetness. It probably also upped the final ABV!). Cap with sanitized airlock, leave it alone for another 2-3 months.

\n
\n\n

\"Homemade

\n\n

Homemade Banana Wine

\n\n

As a side note one can peruse the banana tag on the Homebrewing SE site for more information.

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2017-03-24T12:43:39.870", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6699"}} +{ "Id": "6699", "PostTypeId": "2", "ParentId": "6696", "CreationDate": "2017-03-24T14:08:12.687", "Score": "6", "Body": "

As a safe bet, dry still red wines should be served between 18-20°C\nOf course exceptions apply...

\n\n

Opening time prior to service depends on the vintage, older wines (4+ years) need to breathe longer than young wines (0-3 years).

\n\n

Knowing what kind of wine you have would help, denomination and vintage being the most useful information.

\n", "OwnerUserId": "6587", "LastActivityDate": "2017-03-24T14:08:12.687", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6700"}} +{ "Id": "6700", "PostTypeId": "2", "ParentId": "6683", "CreationDate": "2017-03-25T10:09:56.030", "Score": "4", "Body": "

Quick answer no. The yeast used should have very little effect on on the expiry date. Things that will affect this more are:

\n\n
    \n
  • Temperature of fermentation
  • \n
  • Hot side aeration
  • \n
  • Cold side aeration
  • \n
  • Pasteurization
  • \n
  • Filtration
  • \n
  • Colour of bottle the beer is stored in
  • \n
  • Type of beer ie % dark malts
  • \n
  • Live product vs sterile filtered
  • \n
\n\n

This list is incomplete. This is an incredibly complex subject, there are PhDs in Brewing/Chemistry handed out for small aspects of each of these topics.

\n\n

Here is a quick overview presentation of the technical aspects surrounding beer stability and stabilisation.

\n\n

https://www.craftbrewersconference.com/wp-content/uploads/2015_presentations/F1420_Deniz_Bilge.pdf

\n", "OwnerUserId": "4857", "LastActivityDate": "2017-03-25T10:09:56.030", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6701"}} +{ "Id": "6701", "PostTypeId": "1", "AcceptedAnswerId": "6706", "CreationDate": "2017-03-26T10:58:01.660", "Score": "4", "ViewCount": "629", "Body": "

I found online an ancient recipe for mead, given by the Spanish-Roman naturalist Columella in \"De re rustica\":

\n\n
\n

Take rainwater kept for several years, and mix a sextarius (around 1/2 litre) of this water with a [Roman] pound (about a 1/4 kg or half pound) of honey. For a weaker mead, mix a sextarius of water with nine ounces of honey. The whole is exposed to the sun for 40 days, and then left on a shelf near the fire. If you have no rain water, then boil spring water.

\n
\n\n

I've read that mineral water of low fixed residue is suitable for this. My questions are:

\n\n

What are some tips (like the container, how to close the container)? How does the whole process work? How about the sun exposure part in winter?

\n", "OwnerUserId": "6422", "LastEditorUserId": "5064", "LastEditDate": "2017-03-26T12:19:09.593", "LastActivityDate": "2017-03-26T17:51:29.727", "Title": "Roman recipe for mead", "Tags": "recommendations mead", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6702"}} +{ "Id": "6702", "PostTypeId": "1", "AcceptedAnswerId": "6705", "CreationDate": "2017-03-26T13:35:47.847", "Score": "4", "ViewCount": "175", "Body": "

Instead of using a hop bag last brew, I just added a couple of hop pellets straight to the wort. This gave an altogether different taste. I really enjoyed the taste of the hops. It just tasted like good health to me. It was earthy and wholesome and I loved it, I just would like to know what this process is called?

\n", "OwnerUserId": "4638", "LastActivityDate": "2017-03-27T13:05:20.267", "Title": "What exactly is this process of adding hops called?", "Tags": "hops", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6703"}} +{ "Id": "6703", "PostTypeId": "1", "AcceptedAnswerId": "6704", "CreationDate": "2017-03-26T15:35:05.207", "Score": "2", "ViewCount": "107", "Body": "

Living in Spain one tends to get used to good plonk at good prices. However, now that I am based (for the time being) in the Canary Islands I come across a lot of Canarian wines. One cannot call them plonk, firstly, they are somewhat superior to the average table wine on the mainland, also they have very fancy bottles and labels. Now I understand that there is a lot of tourism here and a lot of this wine is bought to take home as gifts - so what percentage of the final cost (to the paying public) can be attributed to fancy labels and bottles - or is this wine really more expensive to produce?

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-26T17:26:19.147", "Title": "Marketing wine - does the label matter", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6704"}} +{ "Id": "6704", "PostTypeId": "2", "ParentId": "6703", "CreationDate": "2017-03-26T17:26:19.147", "Score": "2", "Body": "

I know wineries that spent huge amounts on a label design and others that keep it super simple with just text and no graphics. The sky is the limit on designing a label. I had to spend about $1000 USD to have a decent label designed. Then printing it on really high quality paper cost $$$$. I was charging between $30-$50 a bottle for my wine.

\n\n

I was spending around $0.25 a label, $.40 a cork, $.50 tin capsule and about $0.75 a glass bottle. I can only imagine that production costs on the Canary islands are probably double that because it costs so much to ship that stuff to the islands.

\n\n

Packaging costs become less of a factor the more expensive your wine is. For me it was about $3 per bottle. If you wine costs $10 then it's a huge percentage. If you are charging $50, then it becomes less of an issue.

\n\n

Wine labels are like snowflakes, not two are alike and why someone would choose eye popping graphics for a low production wine from the Canary Islands, I have no idea. Those usually are reserved for supermarket level wines so you are compelled to pick it up off the shelf.

\n\n

If fact, If you look at the most expensive wines in the world. They have very conservative labels. 10 most expensive labels

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-26T17:26:19.147", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6705"}} +{ "Id": "6705", "PostTypeId": "2", "ParentId": "6702", "CreationDate": "2017-03-26T17:38:19.633", "Score": "6", "Body": "

I looked through my beer books and I couldn't find a single word that describes the addition of hops. Generally brewers describe the addition of hops based on their intended flavoring. Bittering additions or aroma additions. There are a variety of additions depending on timing. Here is a partial list:

\n\n

First Wort Hopping - Added before the wort is boiled

\n\n

Bittering - 90-45 minutes before end of wort boiling

\n\n

Flavoring - 40-20 minutes before end of wort boiling

\n\n

Finishing - 15-0 minutes before end of wort boiling

\n\n

Flameout - after the finish of boil and before pitching yeast

\n\n

Dry Hopping - during or after beer fermenting

\n\n

How Hops are used

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-03-27T13:05:20.267", "LastActivityDate": "2017-03-27T13:05:20.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6706"}} +{ "Id": "6706", "PostTypeId": "2", "ParentId": "6701", "CreationDate": "2017-03-26T17:51:29.727", "Score": "2", "Body": "

If you want to make a small amount of mead, you can follow those directions, but you will need modern equipment. A carboy and an airlock is basically all you need. Actually, you will probably need two. One to ferment and one to age the mead.

\n\n

Mead is pretty simple to make. Water, honey and some yeast. Most people get filtered water. Then boil it with the honey to sterilize the honey (especially important if you use unfiltered). Then let it cool off and add yeast. I would also add yeast nutrients since honey lacks the nutrients to really work good. Also, use wine yeast since it's adapted to higher alcohol levels than beer yeast.

\n\n

Once it's cooled off you pour it in a fermentation vessel. You will need some space between the level of the fermenting mead and the airlock for foaming. After fermentation has stopped, then you need to have it almost to the top of the bottle so there is no oxidation occurring.

\n\n

I am not sure about the sun exposure, in fact I would keep it out of the sun unless you need to warm it up, which is what they may have been trying to do in ancient times.

\n\n

It will look something like this during fermentation (this is someone's picture of some cider fermenting):

\n\n

\"Carboy

\n\n

This is what it looks like aging and clearing:

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-26T17:51:29.727", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6708"}} +{ "Id": "6708", "PostTypeId": "1", "CreationDate": "2017-03-27T20:13:21.047", "Score": "10", "ViewCount": "4440", "Body": "

This term was used in a TV show recently and was referring to the price of another highly prized liquor by saying it was worth 3 or 4 stacks of whiskey. \nThe show was a recent episode of NCIS Los Angeles. In very last scene they sat down to a toast with Hettie.

\n", "OwnerUserId": "6605", "LastEditorUserId": "6614", "LastEditDate": "2017-03-29T19:39:15.877", "LastActivityDate": "2019-03-14T11:07:13.687", "Title": "What constitutes a \"stack of whiskey\"?", "Tags": "whiskey", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6709"}} +{ "Id": "6709", "PostTypeId": "2", "ParentId": "6708", "CreationDate": "2017-03-28T00:00:30.420", "Score": "3", "Body": "

I believe they're referring to stacks of boxes. Now, seeing as how bottles of whiskey can vary widely in price and stacks of boxes can be of any height, the phrase doesn't really mean anything at all. My conjecture is that, if it is a fictional series, this is one of the many instances in which a line sounds cool enough that no viewers catch on to the fact that it means nothing. You can see this all the time when science or technology terms are thrown around on tv.

\n\n

Just for fun let's make some assumptions. If a stack is 6 boxes high and you use something cheap like cases of Jim Beam two or three stacks would be between 2150 and 3240 dollars. That's a pretty wide range of numbers but not an unheard of price for a bottle of liquor.

\n\n

You can keep the expensive bottle though, I'll be hiding in the corner with my 200 bottles of whiskey.

\n", "OwnerUserId": "5974", "LastActivityDate": "2017-03-28T00:00:30.420", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6710"}} +{ "Id": "6710", "PostTypeId": "1", "CreationDate": "2017-03-28T06:46:20.530", "Score": "4", "ViewCount": "81", "Body": "

What has been the costliest beer commercial to date, who owns it and what are the reasons for it to be so costly?

\n\n

Adding reliable references would be appreciated .

\n", "OwnerUserId": "2647", "LastEditorUserId": "2647", "LastEditDate": "2017-03-29T05:23:06.647", "LastActivityDate": "2017-03-29T05:23:06.647", "Title": "Costliest beer commercial to date?", "Tags": "specialty-beers price", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6711"}} +{ "Id": "6711", "PostTypeId": "2", "ParentId": "6710", "CreationDate": "2017-03-28T12:15:46.757", "Score": "2", "Body": "

Going to go with Guinness- $16 million in 2007. Several websites state that Guinness spent $60 million dollars on there 80th anniversary (birthday) in 2007.

\n\n
\n

Moving back to beer and safer ground, Guinness celebrated their 80th birthday in style with an estimated $16 million spend on a TV advert.

\n \n

That figure is slightly surprising when you appreciate that this advert doesn’t contain any celebrity endorsers. What it does include, however, is a rather precarious domino system of items through an Argentinean village leading up to a pint of Guinness made up of books.

\n \n

It hurts just trying to work out how many takes it would have required. - Four of TV’s Most Expensive Adverts

\n
\n\n

The 10 Most Expensive TV Commercials Ever Made has this to say about the TV advertisement:

\n\n
\n

When celebrating your birthday, you are allowed to be a little extravagant, right? Well, Guinness took its 80th birthday celebration to a whole new level; by spending $16 million on a commercial. With the slogan “Good things happen to those who wait,” the commercial that was shot in Argentina shows a whole village waiting for the revelation of Guinness beer after thousands of objects together with dominoes have to knock each other down one by one. Some of the objects in the sequence include cars, tires, padlocks, suitcases, crutches, chairs, and almost anything that can be found in a village. The commercial does not feature any celebrities, but the concept, the setup, and the use of all the resources is what must have pushed up the cost to $16 million.

\n
\n\n

The Guinness commercial can be seen here on YouTube: Guinness Dominos Commercial - Tipping Point.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-03-28T12:15:46.757", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6712"}} +{ "Id": "6712", "PostTypeId": "1", "AcceptedAnswerId": "6744", "CreationDate": "2017-03-28T19:15:20.477", "Score": "2", "ViewCount": "285", "Body": "

I will be visiting Helsinki in June. Where can I get metal band beers (Iron Maiden, Motörhead etc.).\nIs it widely sold around in Finland or there is a lot of hunting to do.

\n\n

Thanks in advance

\n", "OwnerUserId": "6610", "LastEditorUserId": "5064", "LastEditDate": "2017-03-30T12:52:51.820", "LastActivityDate": "2017-04-06T13:23:01.690", "Title": "Metal band beers in Finland", "Tags": "specialty-beers", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6713"}} +{ "Id": "6713", "PostTypeId": "2", "ParentId": "6696", "CreationDate": "2017-03-30T02:23:43.733", "Score": "2", "Body": "

An excellent practice is also read the wine back label. In some cases there is information about the \"serving temprature\" and also this maybe can be found on the winnery webpage. Some wineries web site are in their local language as well as English.

\n", "OwnerUserId": "6615", "LastEditorUserId": "5064", "LastEditDate": "2017-07-21T11:23:02.727", "LastActivityDate": "2017-07-21T11:23:02.727", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6714"}} +{ "Id": "6714", "PostTypeId": "1", "AcceptedAnswerId": "7715", "CreationDate": "2017-03-30T12:47:22.283", "Score": "8", "ViewCount": "7892", "Body": "

As the question states, I would like to know what is the largest winery that supplies sacramental wine for the Catholic Church?

\n\n

By largest supplier to the Catholic Church of sacramental wine, I mean by volume sold to the Church in liters/gallons?

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-06-10T16:55:54.790", "Title": "What is the largest winery that supplies sacramental wine to the Catholic Church?", "Tags": "wine", "AnswerCount": "4", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6715"}} +{ "Id": "6715", "PostTypeId": "1", "AcceptedAnswerId": "6716", "CreationDate": "2017-03-30T14:18:11.927", "Score": "3", "ViewCount": "1769", "Body": "

I was sitting watching my G&T which had a slice of lime in it, when I noticed that the lime sank to the bottom of the glass, and then rose to the top again, it then continued to repeat this cycle for some time. What is causing this behavior?

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-30T16:43:36.647", "Title": "Why does my slice/wedge of lime go up and down in my glass of Gin and Tonic?", "Tags": "glassware spirits mixers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6716"}} +{ "Id": "6716", "PostTypeId": "2", "ParentId": "6715", "CreationDate": "2017-03-30T15:16:08.490", "Score": "5", "Body": "

Pieces of lime are slightly denser than a mixture of water and alcohol, and so they will naturally sink at first. However, they also encourage carbon dioxide gas to come out of solution and form bubbles by making the liquid around the fruit more acidic (and thereby reduce the amount of dissolved CO2 that it can hold). Unlike bubbles that form on the side of a glass and then detach, these bubbles will stick to the fruit and cause it to float to the surface. When sufficient bubbles have burst, the fruit sinks to the bottom again, and the cycle is repeated until no more CO2 will come out of solution.

\n", "OwnerUserId": "5888", "LastEditorUserId": "5888", "LastEditDate": "2017-03-30T16:43:36.647", "LastActivityDate": "2017-03-30T16:43:36.647", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6717"}} +{ "Id": "6717", "PostTypeId": "2", "ParentId": "6714", "CreationDate": "2017-03-31T04:01:44.140", "Score": "3", "Body": "

Is there such a thing as dedicated sacramental wine? After a bit of research, my own conclusions are that it is simply wine.

\n\n

The Catholic Forum also had this to say. Thus I believe that it is difficult to answer as possibly the wine could be simply purchased.

\n\n
\n

A lot of people don't realize this, but there's nothing particular\n that makes altar wine \"altar wine\". The wine for the Precious Blood\n must be true wine, made from grapes, and have no additional sweeteners\n or flavorings, or preservatives (beyond a bare minimum), or anything\n else. The vast majority of wines available on the shelf might\n potentially be used as altar wine. The only difference is that a\n competent authority in the Church has certified this wine for use at\n the altar.

\n \n

That's a long way of sayiing that vintners produce a line of wine and\n most of the bottles get \"regular\" labels, and some of them get \"altar\n wine\" labels, but the product inside is identical. It might already be\n on the shelf at your local store, but it's just not labeled the same.

\n \n

So you could contact the winery, ask who their distributors are, and\n buy all you want. A very few wineries cater exclusively to Catholic\n churches, so you might have some difficulty getting them to sell it to\n you--not because they can't but simply because they don't have any\n method of selling to a private person.

\n
\n", "OwnerUserId": "6366", "LastActivityDate": "2017-03-31T04:01:44.140", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6718"}} +{ "Id": "6718", "PostTypeId": "1", "CreationDate": "2017-03-31T05:36:10.197", "Score": "3", "ViewCount": "112", "Body": "

I had a bottle of Brahma beer when I was in Brasíl some years ago, and I didn't save the label. These are what I remember:

\n\n
    \n
  • it was sweet and malty.
  • \n
  • it had a white label.
  • \n
  • it had 4% or thereabouts alcohol.
  • \n
  • I purchased it at a decent and reputable restaurant circa 2008 — so it most probably wasn't an old or even a mislabeled bottle.
  • \n
\n\n

Reading their website is difficult for me, but I don't see anything which strikes me as a clear match — not even the Weiss (White) variety. Possibly, I suppose, but I don't see anything in the description here which would obviate this question.

\n", "OwnerUserId": "6448", "LastEditorUserId": "43", "LastEditDate": "2017-04-02T03:59:28.097", "LastActivityDate": "2017-04-02T03:59:28.097", "Title": "Which Brahma beer is unhopped?", "Tags": "specialty-beers buying identification", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6721"}} +{ "Id": "6721", "PostTypeId": "2", "ParentId": "6714", "CreationDate": "2017-03-31T16:51:19.297", "Score": "4", "Body": "
\n

The nation's largest producer, the Mont La Salle Altar Wine Company in the Napa Valley of California, makes a rose of petite sirah, zinfandel, ruby cabernet and cabernet sauvignon.

\n
\n\n

From the NY Times: Sacramental Wine, Lowest Profile of All

\n\n

Mont La Salle Altar Wines website

\n\n

I love the screw cap!

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-04-16T20:26:54.600", "LastActivityDate": "2018-04-16T20:26:54.600", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6722"}} +{ "Id": "6722", "PostTypeId": "2", "ParentId": "435", "CreationDate": "2017-03-31T17:04:46.157", "Score": "2", "Body": "

Yes and No. Yes you can re-carbonate beer either by injecting CO2 into it either with a Sodastream (are those things still around) or natural conditioning as mentioned in another answer.

\n\n

No, you really don't want to do this. If the beer has gone flat, it is likely that it has lost the protective layer from the CO2 and oxidation has occurred and the beer is likely stale.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-31T17:04:46.157", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6723"}} +{ "Id": "6723", "PostTypeId": "2", "ParentId": "6718", "CreationDate": "2017-03-31T17:14:32.550", "Score": "1", "Body": "

Are you sure it wasn't the Brahma Malzbier? I've had regular Brahma before and it taste like any other watery pale lager from MillBudCoors.

\n\n

The Malzbier is a beer that is dark and they add caramel and it's low alcohol and sweet.

\n\n

http://www.brahma.com.br/cervejas/malzbier

\n\n
\n

Manufacture: American pale lager type beer in which, after filtration, caramel and sugar syrup are added, giving the dark coloration and sweet taste.

\n
\n", "OwnerUserId": "6111", "LastActivityDate": "2017-03-31T17:14:32.550", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6724"}} +{ "Id": "6724", "PostTypeId": "2", "ParentId": "6714", "CreationDate": "2017-04-01T14:16:28.803", "Score": "3", "Body": "

In the Land Down Under, the Sevenhill Cellars is the only winery in Australia specializing in sacramental wine, and the only one recommended by the Catholic Church to be used in Mass.

\n\n
\n

Easter is a busy time of year for the oldest operational winery in South Australia’s Clare Valley, Sevenhill Cellars. As Maria Tickle writes, the winery supplies the bulk of the sacramental wine for Australasia, pumping out 90,000 litres a year.

\n \n

The winery’s story began in 1851 when a group of Jesuit priests bought 100 acres in the heart of the Clare Valley and named it Sevenhill, hoping to create a Catholic cultural centre akin to the Sevenhill district of Rome.

\n \n

The Jesuits started a winery that began supplying sacramental wine to the surrounding parishes in 1858.

\n \n

Brother John says his sacramental wine stacks up rather well even on the international market. 'I’ve even actually tasted the altar wine which they sell in Cana of Galilee, where the Lord changed the water into wine, and I’ve tried that wine, I prefer ours,' he says. - Clare Valley winery Sevenhill Cellars produces a heavenly drop.

\n
\n\n

All three types of their Altar Wines are made in accordance with Canon Law.

\n\n
\n

Sevenhill's sacramental wine is made in three styles in a similar fortified method to Apera (the official name for sherry in Australia). Sweet Red is a blend of Grenache, Ruby Cabernet and Pedro Ximenez grapes. Sevenhill's sacramental wine is made as naturally as possibly with minimal winemaking intervention in conformity with the requirements of Canon Law. - Wine Portfolio: Sacramental / Altar Wines

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-04-01T14:16:28.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6725"}} +{ "Id": "6725", "PostTypeId": "2", "ParentId": "6712", "CreationDate": "2017-04-01T23:22:05.697", "Score": "2", "Body": "

Iron Maiden's Trooper beer is British.\nMotörhead's Röad Crew beer is British.

\n\n

I'm not sure why you would expect to buy them in Finland.

\n\n

Of course you can get them both online...

\n\n

In fact, of the heavy metal band beers listed on theblekgoat.com, only one is from Scandinavia, and none from Finland.

\n\n
    \n
  • Amon Amarth's “Ragnarök” beer. USA
  • \n
  • Eyehategod's “In The Name Of Suffering” beer. USA
  • \n
  • Ghost's “Grale” beer. Sweden
  • \n
  • GWAR beer. USA
  • \n
  • High On Fire's “Razor Hoof” beer. USA
  • \n
  • Mastodon's “The Hunter” beer. Germany
  • \n
  • Municipal Waste's “Toxic Revolution” beer. USA
  • \n
  • Pelican's \"Immutable Dusk\" beer. USA
  • \n
  • Pig Destroyer’s “Permanent Funeral” beer. USA
  • \n
  • Sepultura’s Weizen. Brazil
  • \n
  • The Sword’s “Iron Swan” beer. USA
  • \n
  • Tulsadoom’s “Barbarian” beer. Austria
  • \n
  • Voivod’s “Kluskap O’Kom” beer. Canada
  • \n
\n\n

Your best bet appears to be to go to Munster, IN, where 3 Floyds Brewing Co. makes beers for quite a few metal bands.

\n", "OwnerUserId": "187", "LastActivityDate": "2017-04-01T23:22:05.697", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6726"}} +{ "Id": "6726", "PostTypeId": "2", "ParentId": "694", "CreationDate": "2017-04-02T09:22:04.617", "Score": "2", "Body": "

Shandies or Biermischgetränke (German for beer mixed drinks) are almost as old as beer itself. Recently I visited one of the oldest breweries in Czech Republic and they did tell stories of how their beers mixed well with juices as early as 18th century. Although documentation standing to the rigours of science is not available to my knowledge.\nActually Shandies have a very good reputation amongst the regulars, especially women as everyone cannot palate the bitterness of beers. Shandies are known to keep the soul of beer without the bitterness of their character. \nThe 'bad reputation' is with critics who look for remnant taste of beer; which is very unfair to the Shandy because it is after all a distinct personality, not an adjunct to beer. It is a cocktail; not a beer.

\n", "OwnerUserId": "6624", "LastActivityDate": "2017-04-02T09:22:04.617", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6727"}} +{ "Id": "6727", "PostTypeId": "1", "AcceptedAnswerId": "6731", "CreationDate": "2017-04-02T10:49:28.330", "Score": "6", "ViewCount": "1431", "Body": "

What type of drink would be best paired with roast goose?

\n\n

Prior to the discovery of the Americas, roast goose was served as the main course on major days of celebration in Europe. Turkeys were introduced to England in 1550.

\n\n

In the Middle Ages, goose was served on feast days such as Christmas, St Michael's Day, Martinmas and the Feast of Sts Peter and Paul for example.

\n\n

Canada will be celebrating the 150th anniversary of its foundation as a country on July 1, 1867 and we are planning to make the meal more European in nature in order to remind ourselves of our roots.

\n\n

We will have be basing our meal on some Michaelmas traditions from England by having roast goose, chestnut stuffing, rice, gravy, Brussels sprouts and blackberry pie for dessert (in remembrance of the Blackberry legend involving Lucifer and St Michael).

\n\n

My question is quite simple: What alcoholic drinks pair well with roast goose? I am thinking wine, but am open to other recommendations.

\n", "OwnerUserId": "5064", "LastEditorUserId": "6111", "LastEditDate": "2017-04-05T02:05:35.547", "LastActivityDate": "2017-04-05T02:05:35.547", "Title": "What alcohol to pair with roast goose?", "Tags": "recommendations pairing drink", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6728"}} +{ "Id": "6728", "PostTypeId": "1", "AcceptedAnswerId": "6730", "CreationDate": "2017-04-02T12:39:12.970", "Score": "4", "ViewCount": "562", "Body": "

I have noticed the proliferation in recent years of what most people refer to as 'plastic' corks in wine bottles. It turns out not to be plastic, but Nomex. My question(s) is (are): What exactly is Nomex? Is it a case of the fact that it doesn't leech into the wine? Is there a standard/quality/bottle price issue regarding the usage of one type of cork over the other? What other reasons are there for using a nomex opposed to cork 'cork'?

\n\n

EDIT TO QUESTION (visual of nomex corks): The interior of the cork is sponge like, the out is hard. I have tried googling this and cannot find what I am looking for. It is not what passes for a synthetic cork. Apogies for the quality of photo:\n\"enter

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-04-02T15:31:50.163", "LastActivityDate": "2017-04-02T22:34:40.507", "Title": "Alternative corks vs natural corks. What is the difference?", "Tags": "wine bottling price quality", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6729"}} +{ "Id": "6729", "PostTypeId": "2", "ParentId": "6727", "CreationDate": "2017-04-02T13:02:27.440", "Score": "2", "Body": "

I think you need something that is kind of big, but has the acid to cut through the goose fat and clear you palate when you take a sip. To that end I would suggest a Riesling, but not some whimpy sweet Riesling from Germany. I would suggest a really nice Grand Cru Riesling from the Alsace. They have power to cut through the flavor, yet don't weigh you down like a big red wine. If you can find it, I suggest a Paul Blanck from Kayersburg. I visited them a few years back, wonderful wines!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-02T13:02:27.440", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6730"}} +{ "Id": "6730", "PostTypeId": "2", "ParentId": "6728", "CreationDate": "2017-04-02T14:18:22.310", "Score": "3", "Body": "

Let's start with what are Nomex corks and what are natural corks.

\n\n
\n

Nomex is a registered trademark for flame-resistant meta-aramid material developed in the early 1960s by DuPont and first marketed in 1967.

\n \n

Nomex and related aramid polymers are related to nylon, but have aromatic backbones, and hence are more rigid and more durable. Nomex is the premier example of a meta variant of the aramids (Kevlar is a para aramid). Unlike Kevlar, Nomex cannot align during filament formation and has poorer strength. However, it has excellent thermal, chemical, and radiation resistance for a polymer material.

\n
\n\n

\"Nomex corks\" for wine do not exist. In fact \"Nomex cork\" material is used as a gasket material for engines and the like. I believe you are thinking of rubber corks.

\n\n

Natural cork comes from the outer bark of the cork tree.

\n\n
\n

Cork is produced from the sponge like material taken from cork oak trees, also known as Quercus Suber. Cork oak trees are grown primarily in Portugal. Cork started to become the sealing material of choice in the late 1600’s when it became possible to create glass wine bottles with an almost uniform shape and design. It took until the late 1700’s to create easy to use corkscrews for the wine lover or tavern owner. At that point in history, cork replaced glass wine stoppers, which while they worked well, glass stoppers were not easy to remove without breaking the wine bottle. The pairing of the cork and wine bottle ushered fine wine into the modern age, as from that point forward, wine had the ability to age and evolve in the bottle. Interestingly cork and fine wine share another commonality. The cork, oak tree needs to be at least 25 years old before the material used to create the cork can be harvested. This is similar to the age of vines in many of the world’s best wine regions. While grape vines are harvested every year, cork trees are only able to be harvested once every nine years. - Wine Corks Everything You Need to Know About Wine Corks

\n
\n\n

Alternative wine closures or corks can be seen here and many are known as rubber corks and plastic corks:

\n\n
\n

Alternative wine closures are substitute closures used in the wine industry for sealing wine bottles in place of traditional cork closures. The emergence of these alternatives has grown in response to quality control efforts by winemakers to protect against \"cork taint\" caused by the presence of the chemical trichloroanisole (TCA). - Alternative wine closures (Wikipedia)

\n
\n\n

There are pros and cons to using of all types of corks.

\n\n
\n

The problems with synthetic corks is the lack of a perfect seal. In turn that allows more unwanted air into the bottle, causing the wine to oxidize. Worse, many of the synthetic corks have been known to impart a slight rubber or chemical smell, damaging the wine. Beherns and Hitchcock, a producer of Cabernet Sauvignon in Napa California was one of the early proponents of plastic corks. Most of the wines bottled using those synthetic corks have not developed well. Many of those wines are defective. However, today, they have improved since their initial creation. Because the plastic corks allow air to integrate at a faster pace than normal corks, some winemakers actually prefer it. In fact, that has become part of the selling point as the corks can be ordered to allow for a more or less rapid transmission of air into the wine, based on the tightness of seal.

\n \n

Wine corks do however have problems, the major issue being infection with TCA, which causes what is known by wine collectors and others in the wine business as Corked Wine. Corked bottles of wine remains a serious problem in the wine industry as many people think that it effects between 5% to 10% of all wine undrinkable.

\n \n

The old saying that nothing lasts forever is especially true with wine. When a wine cork degrades, so does the wine, due to additional exposure to air, which in turn causes premature oxidization. Before that happens, for rare and expensive bottles, it might be possible to replace your old cork with a new wine cork. This is something you cannot do at home on your own. For more on replacing your wine cork, Everything you need to know about Re-Corking wine bottles.

\n \n

Corks have been the undisputed choice to seal wine bottles for hundreds of years. But with all the alternative enclosures available these days, by 2016, it is estimated that only 70% of all wine bottles today are sealed with natural corks. Still, at the end of day, it is unlikely corks will be replaced as the sealer of choice for the best wines. In part, there is the romance and tradition of removing the cork, coupled with that special popping sound that lets you know, you are about to drink a wine and that is something technology cannot improve on. - Wine Corks Everything You Need to Know About Wine Corks

\n
\n\n

Although natural cork is more eco-friendly, they are s slightly more expensive than their counterparts.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-04-02T22:34:40.507", "LastActivityDate": "2017-04-02T22:34:40.507", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6731"}} +{ "Id": "6731", "PostTypeId": "2", "ParentId": "6727", "CreationDate": "2017-04-02T14:21:44.177", "Score": "2", "Body": "

As a nod to my Canadian ancestry, both the French and Scot, I'd consider:

\n\n
    \n
  • Wine: a red, such as Bordeaux, and it still makes the long Atlantic crossing in perfect condition
  • \n
  • Mulled wine: cinnamon, cloves, oranges, or Caribou with the extras tossed in
  • \n
  • Rum: soldiers and their rations; a toddy or hot rum punch would go nicely
  • \n
  • Cider: Quebec, need I say more?
  • \n
  • Beer: spruce or ice beer, or selecting one from Molson, Sleeman or Labatt's (since the Jesuit's wouldn't share)
  • \n
\n", "OwnerUserId": "6391", "LastActivityDate": "2017-04-02T14:21:44.177", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6732"}} +{ "Id": "6732", "PostTypeId": "2", "ParentId": "6727", "CreationDate": "2017-04-02T17:44:44.340", "Score": "1", "Body": "

OK, I am giving two answers to this after I thought about it. If you REALLY want to stay super traditional to the spirit of the day and dig deep into your English roots, you would have some a nice medieval beer, or nice Mead and/or some type of cider. Unless you were royalty, you wouldn't have access to wine from France.

\n\n

All of the above would be a great match for Goose.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-02T17:44:44.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6733"}} +{ "Id": "6733", "PostTypeId": "2", "ParentId": "6708", "CreationDate": "2017-04-02T23:00:19.110", "Score": "0", "Body": "

According to the urban dictionary web site, a stack is a G or $1,000.00 US dollars.\nThis makes sense since the price of a bottle of Yamazaki 2013 Sherry Cask is $3,999.99 in 2017.\ncfb

\n\n

http://www.urbandictionary.com/define.php?term=stack

\n\n

https://dekanta.com/store/yamazaki-2013-sherry-cask/

\n", "OwnerUserId": "6626", "LastActivityDate": "2017-04-02T23:00:19.110", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6734"}} +{ "Id": "6734", "PostTypeId": "2", "ParentId": "6727", "CreationDate": "2017-04-02T23:30:21.390", "Score": "3", "Body": "

Thought I would add my own answer to this fine list of excellent answers.

\n\n
\n

Goose is, of course, stronger-flavoured than turkey - more like game but - crucially - quite a bit fattier which makes it essential in my book to look for a wine that has a fair level of acidity. It also tends to be accompanied by powerfully flavoured accompaniments such as chestnuts and red cabbage. Other traditional (and very good) accompaniments are potato or potato and apple stuffing, apples and prunes which can also affect your pairing:

\n \n

Top quality German or Alsace Grand Cru Riesling

\n \n

Probably the best match of all if you’re planning an apple or apple and prune stuffing. A dry spätlese Riesling would be ideal, cutting through the fat and providing a subtle touch of sweetness. The drawback is that your guests may well expect a red - but there’s no reason why you can’t serve both.

\n \n

Gewürztraminer

\n \n

A bolder choice still for Christmas. Obviously it’s not to everyone’s taste but if you serve a slightly spicy stuffing, especially one that contains dried fruits and/or ginger it would make a great match. Again look for a top quality wine with some intensity from Alsace or New Zealand which is making some great examples.

\n \n

Pinot Noir

\n \n

Probably the most likely wine to please your guests and certainly the one to choose if you’re going for red cabbage, sweet potatoes or other richly flavoured veg. I’d choose an example with some sweet, silky fruit rather than big tannins otherwise you may suffer from palate overload .

\n \n

And some beers to go with goose

\n \n

Strong Belgian Trappist beers such as Chimay or beers made in that style

\n \n

These are just as good a match for goose as wine is if truth be told but there are, admittedly, likely to be fewer takers. No harm in having one or two available though. - What to drink with goose

\n
\n\n

Here is what another site has to say about pairing drinks with goose:

\n\n
\n

The richness of goose demands a good wine, such as a top red Burgundy. However, it is often served with sweet side dishes, in which case a sweetish German Riesling might be a good option. In the mid-range, you could try a California Pinot Noir, a good red Rhône or an Australian Shiraz. - Pairing Wine with Meat, Game and Poultry

\n
\n\n

If it is beer your into than here you go:

\n\n
\n

Dubbel is also great with duck or goose. The rich and earthy flavor of these birds requires a beer with some heft to it and the dense, dried fruit flavor of dubbel recalls the dark berry sauces that are so commonly served with these birds.

\n \n

Doppelbock offers another riff on this idea, offering strength and dark berry flavors amidst those of caramel, plums, and figs.

\n \n

Beers to try: For Dubbel, look to the Chimay above, or grab a Rochefort 6 or Ommegang Abbey Ale. For Doppelbock, Ayinger's Celebrator and Weihenstephan's Korbinian are awesome, widely-available choices. - The Serious Eats Guide to Holiday Beer Pairing

\n
\n\n

As for Vodka, how about trying some Grey Goose Vodka.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-04-02T23:30:21.390", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6735"}} +{ "Id": "6735", "PostTypeId": "1", "AcceptedAnswerId": "6736", "CreationDate": "2017-04-03T02:05:44.410", "Score": "7", "ViewCount": "539", "Body": "

A friend of mine has come into possession of some rather old alcohol. On one bottle of J&B Scotch, the label looks like this one from 1958 and not any of their later ones, but my friend's bottle has a screw-top cap, not a cork.

\n\n

When did J&B start using caps? (There is no contact information on their web site to ask them directly.)

\n", "OwnerUserId": "43", "LastEditorUserId": "43", "LastEditDate": "2017-04-03T23:07:35.780", "LastActivityDate": "2018-10-11T07:36:06.103", "Title": "When did J&B Scotch switch from corks to screw-tops?", "Tags": "scotch distilleries", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6736"}} +{ "Id": "6736", "PostTypeId": "2", "ParentId": "6735", "CreationDate": "2017-04-03T04:17:37.193", "Score": "5", "Body": "

From what I can find I'm not sure I can give an exact answer to the main question (when J&B started using screw caps) but I think I found something that matches your description, from 1972:

\n\n

https://www.maxliquor.com/product-p/j-and-b-scotch-1972-quart.htm

\n\n

\"J&B

\n\n

As far as I can tell the label matches the picture on the page you linked and appears to have a screw-cap.

\n\n

Also, on the website you linked to, there are example bottles from the 60's and the 70's. Interestingly though, the 70's bottle has a different label than the one above from 1972.

\n\n

Given all of this, I would assume the switch to screw caps happened in the late 60's or early 70's and that the bottle your friend obtained is likely from the same time period.

\n", "OwnerUserId": "4935", "LastActivityDate": "2017-04-03T04:17:37.193", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6737"}} +{ "Id": "6737", "PostTypeId": "1", "AcceptedAnswerId": "6739", "CreationDate": "2017-04-04T12:14:28.977", "Score": "3", "ViewCount": "482", "Body": "

Previously I asked a question regarding nomacorc. This has lead me to look more carefully at the corks that make their way into the boat. Now assuming that we are prolific wine consumers (only for research purposes I assure you!), is there a way of knowing before opening/purchasing a bottle of wine if it is drinkable/good quality, or just plonk, from the cork?

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-04-04T14:54:55.967", "Title": "Can I tell the wine from the cork?", "Tags": "wine quality", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6738"}} +{ "Id": "6738", "PostTypeId": "1", "AcceptedAnswerId": "6740", "CreationDate": "2017-04-04T12:14:28.640", "Score": "3", "ViewCount": "135", "Body": "

I have no experience in making wine cocktails and I would like a recommendation of a \"rose\" colored wine cocktail.

\n\n

The wine cocktail I am looking for should be as close as possible to the color rose as possible. The color pink is generally much lighter in color than that of rose.

\n\n
\n

Rose is the color halfway between red and magenta.

\n \n

Pink is a pale red color which takes its name from the flower of the same name.

\n
\n\n

If possible could answers include why one is making their recommendations, a recipe for usage and an image of the suggested wine cocktail or wine cocktails (if possible).

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-04-04T13:24:37.760", "LastActivityDate": "2017-04-04T22:39:28.747", "Title": "Rose colored wine cocktail", "Tags": "wine recommendations ingredients cocktails", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6739"}} +{ "Id": "6739", "PostTypeId": "2", "ParentId": "6737", "CreationDate": "2017-04-04T14:54:55.967", "Score": "1", "Body": "

Yes and No. Expensive wines are generally bottled in more expensive packaging because there is a greater profit margin and winemakers want to exude an air of exclusivity and expense. The unfortunately part is usually you can't see the cork because of the foil and the dark color of the bottle.

\n\n

But, if you could visually inspect the cork before you open the bottle, yes those that tend to use more expensive corks generally mean a higher quality wine. Screwcaps and plastic corks generally mean a lower quality wine, EXCEPT in Australia and New Zealand where there is a large push to use screwcaps for all levels of wine to reduce TCA taint.

\n\n

So, if you could look at the cork, these are the things you might look for.

\n\n

Cork Grading

\n\n

\"Cork

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-04T14:54:55.967", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6740"}} +{ "Id": "6740", "PostTypeId": "2", "ParentId": "6738", "CreationDate": "2017-04-04T22:39:28.747", "Score": "4", "Body": "

I do love a wine spritzer and cocktails, as you can take a fabulous wine, white or red, add splashes of other liquid(s) for a light and refreshing drink. I also love your questions, and would like to be your neighbor, invited over for drinks (I'll bring the hors d'oeuvres).

\n\n

So, for your glorious rose-colored beverages, along with rosy images!

\n\n

Tinto de Verano

\n\n

\"enter

\n\n

1 part red wine
\n1 part \"gaseosa\" (carbonated lemon-flavored soda)
\nTraditional-flavored gaseosa can be replicated by mixing Sprite or 7-Up with carbonated water.

\n\n

Serve over ice with a slice of lemon.

\n\n

René Barbier Mediterranean Red Citrus Wine Cooler

\n\n

\"enter

\n\n

3 oz. René Barbier Mediterranean Red
\n1/4 oz. orange liqueur
\nJuice of 1/4 lime
\n4 oz. lemon/lime soda

\n\n

In a highball glass half-filled with ice, add orange liqueur, lime juice and red wine. Swirl gently to mix and then add soda. Garnish with orange wedge or lime twist. Serves one.

\n\n

The Rumbling Red Horse

\n\n

\"enter

\n\n

50 ml fresh lemon juice
\n100 ml Red wine – Tall Horse Merlot or Cabernet
\nLemonade (to your liking)
\n1 teaspoon superfine sugar

\n\n

Add sugar, lemon juice to you preferred glass and muddle until sugar dissolves. Add ice, wine and the lemonade to fill. Garnish with lemon slice or cherry.

\n\n

Kir and Kir Royale

\n\n

\"enter

\n\n

1/5 Crème de Cassis to
\n4/5 chilled dry white wine
\n(or chilled dry Champagne for Royale)

\n\n

Add the room-temperature Crème de Cassis to the glass first, followed by the wine (otherwise, they do not mix very well or uniformly).

\n\n

Pretty in Pink Wine Cocktail

\n\n

\"enter

\n\n

12 oz Gallo Family Pink Moscato
\n2 oz cherry brandy
\n¼ cup chopped, pitted cherries
\n4-6 strawberries, hulled and sliced (plus more for garnish)
\n2 stems of fresh mint leaves

\n\n

Add the cherries to the bottom of an 8-oz glass, followed by 1-oz cherry brandy. Divide the moscato into each glass, and drop the sliced strawberries and mint on top. Garnish with a fresh strawberry on the side of the glass and serve chilled. Makes 2 cocktails.

\n\n

Strawberry Peach Sangria

\n\n

\"enter

\n\n

1 bottle of dry white wine
\n6 oz. of orange muscat wine
\n4 oz. of peach schnapps
\n8 oz. of strawberries cut into slices
\n3 peaches cut into slices
\n1 lemon cut into slices

\n\n

Combine all the ingredients together in one pitcher. Pour over ice.

\n\n

And, just in case you want a full-on killer cocktail: Maria McClaire

\n\n

\"enter

\n\n

1 1/2 oz. Irish whiskey
\n1 oz. Fonseca Siroco White Port
\n1/2 oz. Campari
\n2 dashes Peychaud's Bitters

\n\n

Strain into a chilled cocktail glass and twist a thin-cut swatch of orange peel over the top.

\n", "OwnerUserId": "6391", "LastActivityDate": "2017-04-04T22:39:28.747", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6741"}} +{ "Id": "6741", "PostTypeId": "1", "CreationDate": "2017-04-05T12:27:42.310", "Score": "8", "ViewCount": "2928", "Body": "

The Grande Chartreuse, just north of the city of Grenoble, France has been making Chartreuse since 1737 and is made with 130 herbs, plants and flowers. Talk about drinking to your health, some say this is an excellent medicinal liqueur. Here in Canada, the Chartreuse liqueur is very expensive.

\n\n
\n

The two types of Chartreuse are:

\n \n

Green Chartreuse (110 proof or 55%) is a naturally green liqueur made from 130 herbs and plants macerated in alcohol and steeped for about 8 hours. A last maceration of plants gives its colour to the liqueur.

\n \n

Yellow Chartreuse (80 proof or 40%), which has a milder and sweeter flavour and aroma.

\n
\n\n

The actual recipe for the Green Chartreuse is known to only two Charthusian monks and is aged for five years, so no wonder it is so expensive.

\n\n
\n

The two monks charged with the duty oversee the entire production of Chartreuse. It begins in the monastery's herb room where the precise selection of herbs is bagged. These are then taken to the distillery and macerated with a neutral alcohol spirit which is then distilled. - What is Chartreuse Liqueur?

\n
\n\n

Does anyone know of a mock recipe for the Chartreuse Liqueur of 130 herbs?

\n\n

\"Chartreuse

\n\n

Chartreuse Green Liqueur (750ml)

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-04-22T00:55:08.467", "Title": "Is it possible to make a mock Chartreuse liqueur?", "Tags": "ingredients liqueur", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6742"}} +{ "Id": "6742", "PostTypeId": "1", "AcceptedAnswerId": "6743", "CreationDate": "2017-04-06T00:37:25.730", "Score": "7", "ViewCount": "187", "Body": "

A simple enough question. If we take any given style of whisky on the lower end of the spectrum, and we compare it with a fine Scotch, what is it about the production of the two bottles that causes one to be more palatable and easy to drink than the other?

\n", "OwnerUserId": "938", "LastActivityDate": "2017-04-06T09:57:50.837", "Title": "Which production methods make one whisky more palatable than another?", "Tags": "whiskey", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6743"}} +{ "Id": "6743", "PostTypeId": "2", "ParentId": "6742", "CreationDate": "2017-04-06T09:47:29.953", "Score": "5", "Body": "

This question may end up being closed as too broad, as a full answer to this would include many lifetimes of experience by master distillers, and would have to incorporate opinions (some people find peaty, smoky whiskies absolutely foul and undrinkable while others would not ever want to drink a mild lowland whisky)

\n\n

That said, I'll summarise my most critical ones, and the thoughts that guided me when distilling my own whisky:

\n\n
    \n
  • Aging: the cask imparts the vast majority of the flavour, from the type of wood, the previous contents, how charred the cask is, length of time in the cask etc. The more desirable whiskies carefully choose casks and aging to deliver tastes that customers will like. This typically costs money (especially for storage costs) so a cheap whisky may not put so much effort into cask selection, quality control, age etc.

  • \n
  • The Middle Cut: The foreshots start off with mostly methanol so would not taste good, and are mostly poisonous, but a small amount of methanol is useful in the process (and evaporates first after casting as part of the Angel's Share anyway) so the decision when to extract the middle cut is essential. Similarly, the feints, which contain propanol and heavier fusel oils are not wanted so are fed back into the spirit still. But there will be a small amount in the final product. Knowing how much of the foreshots and feints to include is part of the master distiller's craft.

  • \n
  • Speed of heating / shape of still: Tall stills give a very smooth clear taste, especially when slowly heated. Short, squat stills combined with rapid heating allow many more fusel oils and other substances into the distillate, which will make the flavour more interesting, but can lead to a lack of smoothness.

  • \n
\n\n

Some cheaper spirits get around some of these issues by multiple distillations to remove some of the more complex substances - this can lead to an easier flavour for drinking, but also to something far more boring (from the perspective of a whisky afficionado) and bland.

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2017-04-06T09:57:50.837", "LastActivityDate": "2017-04-06T09:57:50.837", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6744"}} +{ "Id": "6744", "PostTypeId": "2", "ParentId": "6712", "CreationDate": "2017-04-06T13:23:01.690", "Score": "1", "Body": "

Yes you can get them, K-Citymarket and big supermarkets (some small have them too), and of course... Alko. Hope you're not coming to Finland just for that ahaha

\n", "OwnerUserId": "6636", "LastActivityDate": "2017-04-06T13:23:01.690", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6745"}} +{ "Id": "6745", "PostTypeId": "1", "CreationDate": "2017-04-07T01:36:54.590", "Score": "4", "ViewCount": "348", "Body": "

Is there a reason why yeast sugar and water will not create enough pressure to explode a pressure barrel With enough sugar will the yeast create pressure indefinitely?

\n", "OwnerUserId": "6639", "LastActivityDate": "2017-04-12T16:37:24.680", "Title": "Carbonation in pressure barrel", "Tags": "storage", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6746"}} +{ "Id": "6746", "PostTypeId": "1", "AcceptedAnswerId": "6748", "CreationDate": "2017-04-07T15:31:34.047", "Score": "5", "ViewCount": "3529", "Body": "

If bourbon contains no carbohydrates (and therefore no sugar) what gives it a sweet flavour? What are the chemicals or compounds?

\n", "OwnerUserId": "6642", "LastActivityDate": "2017-07-21T11:13:49.840", "Title": "What makes bourbon sweet?", "Tags": "bourbon", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6747"}} +{ "Id": "6747", "PostTypeId": "2", "ParentId": "6746", "CreationDate": "2017-04-07T15:40:25.690", "Score": "0", "Body": "
\n

So why is bourbon so sweet?

\n \n

It’s all about the corn mash. The stuff those geniuses ferment.

\n \n

Bourbon’s mashbill is made of at least 51% corn, often far more\n (closer to 70% as an average). Four Roses has two mashbills, one with\n 60% corn and one with 75% corn. There are various high-rye, low-rye,\n wheat and whatever else mashbills but all share one characteristic –\n at least 51% corn.

\n \n

Scotch, on the other hand, uses mostly or all barley in its mash and\n the glucose content of corn is much higher. That glucose is what gives\n bourbon its easily recognizable sweetness.

\n \n

51%+ corn in the mash is why bourbon is so sweet.

\n
\n\n

Why is bourbon so sweet?

\n", "OwnerUserId": "6111", "LastEditorUserId": "5064", "LastEditDate": "2017-07-21T11:13:49.840", "LastActivityDate": "2017-07-21T11:13:49.840", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6748"}} +{ "Id": "6748", "PostTypeId": "2", "ParentId": "6746", "CreationDate": "2017-04-07T23:00:26.103", "Score": "4", "Body": "

Many chemical compounds, like saccharin for example, can taste sweet. There are hundreds of chemical compounds in bourbon and a number of them or combinations of them can lead to that sense of sweetness. Ethanol itself has a sweet flavor. The sugar from the corn itself however, will not make it through the distillation process. If we consider for a moment corn based vodka, you'll notice that it doesn't have the same sweet flavor.

\n\n

I'd say that what sets bourbon apart is the number of chemical compounds present, collectively adding to the sweetness. An important contributor to these compounds are the flavors that come from the barrel, most noticeably vanillin. Vanillin tastes like, well..... vanilla. Another is 3-Methyl-4-octanolide, also known as whisky lactone, which adds more vanilla flavor as well as coconut. The other major contributor are esters. Esters are one of the congeners, things other than ethanol that make it through distillation. Esters add more fruit flavors. One such ester is ethyl hexanoate, which can provide like a pineapple or slightly green banana flavor.

\n\n

You can actually get totally different compounds in the bottle while using the exact same production materials too. For example in the barrel, a lower alcohol content won't penetrate the wood as deeply as a higher alcohol content would. The sweeter flavors are pretty shallow in the wood so if I wanted to make something sweet, I'd dilute the alcohol a little before aging. You won't be able to tell this by looking at the alcohol content on the bottle though, because the higher proof stuff going into the barrel will be diluted after aging. It's all part of the process.

\n", "OwnerUserId": "5974", "LastActivityDate": "2017-04-07T23:00:26.103", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6749"}} +{ "Id": "6749", "PostTypeId": "1", "AcceptedAnswerId": "6766", "CreationDate": "2017-04-08T15:21:44.060", "Score": "4", "ViewCount": "258", "Body": "

I am going to make some homemade fig wine this year and would like to know what pairs well with fig wine.

\n\n

Here is the recipe I am planning to use: Fresh Fig Wine

\n\n
\n

The common fig (Ficus carica) is most often eaten as dried fruit and rarely used fresh. It's not very sweet, so a true fig wine requires a great deal of additional sugar for the fig juice to ferment to completion. This recipe makes one gallon and can be easily adjusted for another quantity. The special supplies for this recipe are readily available at stores that sell wine-making supplies. - How to Make Fig Wine

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-04-09T10:45:20.877", "LastActivityDate": "2017-04-12T17:30:52.663", "Title": "What pairs well with fig wine?", "Tags": "wine recommendations pairing", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6750"}} +{ "Id": "6750", "PostTypeId": "2", "ParentId": "6749", "CreationDate": "2017-04-08T18:23:53.843", "Score": "1", "Body": "

While this is just a theory (I'm ignorant to the taste of fig wine! :( - it would seem that any food that pairs well with figs would do the trick. Such as Goat Cheese or Prosciutto...

\n\n

This article may be a good reference... Couldn't even read to the end because it was making me so hungry :)

\n\n

27 Delicious Ways To Eat Fresh Figs

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-04-08T18:23:53.843", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6751"}} +{ "Id": "6751", "PostTypeId": "2", "ParentId": "6504", "CreationDate": "2017-04-08T18:39:41.067", "Score": "2", "Body": "

Check out this great article: 10 Ingenious Ways Booze Was Hidden During Prohibition

\n\n

The old \"alcohol-in-the-cane\" trick ;)

\n\n

Here are four examples from the list:

\n\n

\"The

\n\n

The Hollow Cane Trick

\n\n
\n

The Library of Congress labels this one \"Woman seated at a soda fountain table is pouring alcohol into a cup from a cane, during Prohibition; with a large Coca-Cola advertisement on the wall, 2/13/22.\"

\n \n

So-called \"flask canes\" or \"tippling sticks\" are still a thing, even in the booze-soaked wonderland of 21st century America. One site even targets veterans by putting seals from the various branches of the US military on top of the cane. War is hell, after all, so who are we to judge?

\n
\n\n

\"The

\n\n

The Booze Mule Trick

\n\n
\n

From the Walter P. Reuther Library at Wayne State University, this circa-1920s photo depicts a man showing off his trick for transporting booze throughout Detroit. He reportedly only showed this to the press, for obvious reasons, and remained anonymous.

\n \n

A shocking 75% of all the alcohol smuggled into the US during Prohibition crossed the border at the so-called \"Windsor-Detroit Funnel,\" the nickname for waterways between Michigan and Ontario. By 1929, the second largest industry in Detroit, believe it or not, was \"rumrunning,\" which netted $215 million per year.

\n
\n\n

\"The

\n\n

The Bootlegger's Life Preserver Trick

\n\n
\n

Jennie MacGregor was arrested by federal agents in Minneapolis on April 10, 1924 for this audacious get-up that dispensed \"wet goods.\" It was known, according to a note on the back of the original photograph, as a \"bootlegger's life preserver.\" The New York Times purchased the photo 10 days later and published it in their weekly Mid-Week Pictorial under the caption \"A Perfect 36.\"

\n \n

(David Dunlap of the Times' \"The Lively Morgue\" blog guesses this was a reference to \"Tennessee, the 36th state to ratify the 19th Amendment, granting women’s suffrage?\").

\n
\n\n

\"The

\n\n

The Thigh Flask Trick

\n\n
\n

\"Flask\" might not be quite the right word for these behemoths. The original 1928 caption called them \"tins\" concealed by a \"floppy overcoat.\" No word on how exactly these were held in place, but it they were full, they must have given this young flapper quite the workout.

\n
\n", "OwnerUserId": "5847", "LastEditorUserId": "5064", "LastEditDate": "2017-04-08T20:20:15.177", "LastActivityDate": "2017-04-08T20:20:15.177", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6752"}} +{ "Id": "6752", "PostTypeId": "1", "AcceptedAnswerId": "6754", "CreationDate": "2017-04-09T10:44:35.333", "Score": "7", "ViewCount": "32853", "Body": "

Are there any traditional or historic reason(s) why people would put salt in their beer when drinking it or would simply prefer to drink a salted beer such as Gose?

\n\n

\"Gose

\n\n

Gose beer, brewed in Bonn, Germany (2014).

\n", "OwnerUserId": "5064", "LastEditorUserId": "9887", "LastEditDate": "2020-01-04T13:49:28.877", "LastActivityDate": "2020-01-27T00:00:50.000", "Title": "Why would some prefer to put salt in their beer?", "Tags": "taste specialty-beers", "AnswerCount": "4", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6754"}} +{ "Id": "6754", "PostTypeId": "2", "ParentId": "6752", "CreationDate": "2017-04-09T14:12:02.293", "Score": "5", "Body": "

The same reason people put salt on their food. It enhances the flavor of the beer.

\n\n
\n

The extra salt has other effects as well though, outside of simply\n making things more salty. Particularly, adding salt to foods helps\n certain molecules in those foods more easily release into the air,\n thus helping the aroma of the food, which is important in our\n perception of taste.

\n
\n\n

Putting Salt on Food

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-09T14:12:02.293", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6755"}} +{ "Id": "6755", "PostTypeId": "2", "ParentId": "6745", "CreationDate": "2017-04-09T14:20:01.013", "Score": "2", "Body": "

Actually, this does happen - but, perhaps 'explode' is a bit of a dramatic term to use... 'Spring a leak' is more like it; because the building pressure would pop the seal of the barrel in order to off-gas.

\n\n

Check out this thread from the Homebrewing beta:\nFlat beer after priming in a pressure barrel

\n\n
\n

That's probably the main culprit (CO2 leak).

\n
\n\n

Also, this brewer describes the exact same scenario occurring during a couple of his brews due to a specific yeast:

\n\n

Pressure Barrel Blues

\n", "OwnerUserId": "5847", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:46:00.997", "LastActivityDate": "2017-04-09T14:20:01.013", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6756"}} +{ "Id": "6756", "PostTypeId": "2", "ParentId": "6752", "CreationDate": "2017-04-09T15:53:41.063", "Score": "4", "Body": "

Is there a real reason for putting salt in beer?

\n\n
\n

Putting salt in beer stems from a few philosophies - all of which seem to have had a purpose at one time or another.

\n \n

· An old wives' tale said that putting a sprinkle of salt in your beer would stave off cramping during hard work. Dehydration can cause cramping of the muscles, because of the depletion of minerals in the body. Adding salt to the beer would make the worker thirsty, and thus he would drink more beer to relieve the dehydration.

\n \n

· Others add salt to beer for flavor purposes; post-prohibition (1933) beer had turned into somewhat of an ugly being. Breweries had to cut costs and started to use cheaper ingredients like rice and corn, which made for a nearly flavorless beer. These beers are still around, though most people have become accustomed to flavorless beer and so have no need for the salt. Many South and Central American beer drinkers will add salt and sometimes hot sauce and/or lemon, for flavor, or to mask off flavor in beer.

\n \n

Here is what bartenders have heard their patrons say why they use/like beer salt:

\n \n
    \n
  1. I like the way it tastes. (Salt is a natural flavor enhancer)

  2. \n
  3. It makes me thirstier so I can drink more. (Salt increases thirst)

  4. \n
  5. I don’t have to pee as often. (Salt retains fluid)

  6. \n
  7. I don’t belch as much. (Salt removes carbonation)

  8. \n
  9. I can drink more and don’t fill up as fast. (Less carbonation)

  10. \n
  11. My dad/grandpa always drank it this way. (Family tradition)

  12. \n
  13. The guy with the pretty blond is doing it. (My favorite)

  14. \n
\n \n

Why is it that people need Beer Salt?

\n
\n\n

Here are some examples of Gose Beer: Why Gose Is The Only Beer You Should Be Drinking This Summer.

\n\n

A similar question was asked on our Seasoned Advice SE site: Why did my grandfather-in-law salt his beer?

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2017-04-13T12:33:38.297", "LastActivityDate": "2017-04-09T16:41:37.113", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6757"}} +{ "Id": "6757", "PostTypeId": "2", "ParentId": "6488", "CreationDate": "2017-04-09T18:42:06.600", "Score": "1", "Body": "

The marketing strategy of labeling wines below the luxury or super-premium price points with grape varietal names was just emerging in the late 60s or early 70s. So the product name may not have been a varietal; as a \"jug wine\" it may have been a marketing name for a blend (perhaps Zinfandel & Barbera).

\n\n

Alternatively Hugh Johnson's Vintage: The Story of Wine states that a vine called 'Black Zinfardel from Hungary' was offered in the 1830 catalog of the Princes of Long Island nursery (p 364). Could it be a memory lapse?

\n", "OwnerUserId": "6645", "LastEditorUserId": "5064", "LastEditDate": "2017-04-10T12:52:17.070", "LastActivityDate": "2017-04-10T12:52:17.070", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6758"}} +{ "Id": "6758", "PostTypeId": "1", "CreationDate": "2017-04-10T09:13:29.723", "Score": "6", "ViewCount": "1050", "Body": "

I am new to home brewing now having done only 3 batches, I am looking to add flavours, my last batch was a light beer which I added lime codial to and was great, but can I add Still Spirit Essences to my home brew beer to give that whisky or bourbon chaser effect and how would I do this? At what stage of the process would I do this? Your help would be greatley appreciated, Thank You!

\n", "OwnerUserId": "6647", "LastEditorUserId": "8506", "LastEditDate": "2019-04-10T07:34:45.157", "LastActivityDate": "2019-04-10T07:34:45.157", "Title": "Adding Spirit Essences to home brew beer", "Tags": "flavor home-brewing", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6759"}} +{ "Id": "6759", "PostTypeId": "1", "AcceptedAnswerId": "6760", "CreationDate": "2017-04-10T13:14:41.967", "Score": "5", "ViewCount": "440", "Body": "

Other than the USA, do any other countries have dry counties?

\n\n

I understand that the term county may not exist in some counties, so one can adopt a different term that may be better suited for a particular countries.

\n\n

What is a dry county?

\n\n
\n

A dry county is a county in the United States whose government forbids the sale of any kind of alcoholic beverages. Some prohibit off-premises sale, some prohibit on-premises sale, and some prohibit both. Hundreds of dry counties exist across the United States, a majority of them in the South. A number of smaller jurisdictions also exist, such as cities, towns, and townships, which prohibit the sale of alcoholic beverages. These are known as dry cities, dry towns, or dry townships.

\n
\n\n

\"Map

\n\n

Map showing dry (red), wet (blue), and mixed (yellow) counties in the United States as of March 2012.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-04-10T14:29:43.237", "Title": "Other than the USA, do any other countries have dry counties?", "Tags": "prohibition", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6760"}} +{ "Id": "6760", "PostTypeId": "2", "ParentId": "6759", "CreationDate": "2017-04-10T14:29:43.237", "Score": "4", "Body": "

Yes. Currently the list of Countries that have prohibition (and their counties) are:

\n\n
\n
 Afghanistan\n Bangladesh\n Brunei\n Iran\n Indonesia (prohibition in small business shops)\n India (prohibition in the states of Kerala, Gujarat, Bihar, Nagaland, Manipur and the union territory of Lakshwadeep)\n Libya\n Kuwait\n Maldives (excluding non-Muslims)\n Mauritania\n Pakistan (excluding non-Muslims)\n Saudi Arabia\n Sudan\n Somalia\n United Arab Emirates (prohibition in the emirate of Sharjah)\n Yemen\n
\n
\n\n

Most of these are in Muslim-majority countries while India only prohibits alcohol in some states and their residing counties.

\n\n

I am interchanging county and country because not all countries that have counties or states that have been divided into counties.

\n", "OwnerUserId": "22", "LastActivityDate": "2017-04-10T14:29:43.237", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6761"}} +{ "Id": "6761", "PostTypeId": "2", "ParentId": "6758", "CreationDate": "2017-04-10T14:54:44.343", "Score": "3", "Body": "

First, congratulations on getting bit by the homebrewing bug!

\n\n

Yes, you can actually drop bourbon/scotch/whiskey into your fermented beer to add that flavor. Why after fermentation? To make sure you don't kill the yeast before they do their job. The hardest part is getting the right spirit to blend with the beer you're making. Darker beers tend to hold up to spirits better because of the unfermented dark roasted malts and robustness that off-set the alcohol you're placing in them. Dropping bourbon in a sour would probably be a waste of time, effort, and good alcohol.

\n\n

Homebrewers more commonly use \"other\" ingredients to impart other flavors to beer that might not be approved for commercial use. Brew Your Own has a section called Mister Wizard that addressed a little of this in one of the responses. This should kind of give you an idea of the \"mad scientist\" aspect of homebrew beer additives.

\n\n
\n

The same is true if one chooses to add oak chips to the secondary fermentation. After I got the brew where I wanted it with respect to beer flavor, oak flavor and aged flavors, I would begin to play with adding the wine or spirit component. This type of blending is always best done by preparing several samples of beer with varying levels of blended mixtures so that the flavor impact can be tasted over a range of concentrations. You may find that even a little of the planned flavor additive makes for a vile brew and you can avert a disaster.

\n
\n\n

However, the easier and more repeatable version (albeit more money than most recreational brewers will care to spend) is to buy a bourbon barrel and let your beer age in them to absorb the bourbon-y goodness. Dragon's Milk and Sexual Chocolate are two solid mentions (in my opinion).

\n", "OwnerUserId": "22", "LastActivityDate": "2017-04-10T14:54:44.343", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6762"}} +{ "Id": "6762", "PostTypeId": "2", "ParentId": "6402", "CreationDate": "2017-04-12T12:21:20.687", "Score": "3", "Body": "

I am going to put my two bits into this question also.

\n\n

There are several existing colored absinthe on the market at the moment and a couple of ways to get various colored varieties. Artificial coloring is the most common.

\n\n

Absinthe may be found in the following colors: Green, Red (or Rose), Yellow, Brown, Clear and Blue.

\n\n

One way to get the desired colored is to make your own absinthe as can be seen in the following recipe.

\n\n
\n

Put the dry herbs in a large jar. Dampen slightly. Add 800 milliliters of 85-95 percent alcohol. Wine spirits make a better product than pure grain alcohol. Let steep for several days - a week is better - shaking occasion absinthe. Then add 600 milliliters of water and let the whole macerate for another day. Decant off the liquid squeezing as much from the mass of herb as possible. Wet the herbs with some vodka and squeeze again. Recipe should give a little over a liter and a half of green liquor. It must then be distilled... - Traditional absinthe recipe

\n
\n\n

There or other non-traditional herbs and artificial coloring agents that are used to make a particular color also.

\n\n
\n

Absinthe can be classified differently

\n \n

By color:

\n \n

Green absinthe – classically natural color of absinthe. Color can vary from deep emerald to light green or olive shade. Practically every manufacturer produces green absinthe. But because the natural dye (chlorophyll from the leaves) is not durable therefore manufacturers in most cases use artificial coloring. To preserve natural green color of absinthe it is bottle in green or brown bottles.

\n \n

Yellow absinthe – is usually natural colored because natural dye from chlorophyll has a tendency to lose its color and become more yellowish in couple of months after production (aging of absinthe).

\n \n

Red absinthe – is colored by extract of pomegranate or macerated with blossoms of hibiscus what gives absinthe light-ruby shade and original after-taste. But nowadays majority of red absinthes are artificially colored.

\n \n

Brown absinthe – unlike all the other absinthes this kind is macerated with the roots of wormwood not the leaves of blossoms. Also dark color can be achieved by adding black cutch extract which brings slight flavour of berries. - Kinds of Absinthe

\n
\n\n

Wikipedia has this to say about absinthe:

\n\n
\n

Absinthe may also be naturally coloured pink or red using rose or hibiscus flowers. This was referred to as a rose (pink) or rouge (red) absinthe. Only one historical brand of rose absinthe has been documented.

\n \n

Many contemporary absinthe critics simply classify absinthe as distilled or mixed, according to its production method. And while the former is generally considered far superior in quality to the latter, an absinthe's simple claim of being 'distilled' makes no guarantee as to the quality of its base ingredients or the skill of its maker.

\n \n

Blanche, or la Bleue: Blanche absinthe (also referred to as la Bleue in Switzerland) is bottled directly following distillation and reduction, and is uncoloured (clear). The name la Bleue was originally a term used for bootleg Swiss absinthe, but has become a popular term for post-ban-style Swiss absinthe in general.

\n
\n\n

As noted in Montijello's excellent answer, clear absinthe may be easily artificially colored.

\n\n

There are a variety of Clear Absinthes on the market as can be seen on the following website:

\n\n
\n

Clear Absinthe

\n \n

This is usually the favourite of people trying absinthe for the first time, and of the most experience absintheurs: where absinthe drinkers settle again in the end, having explored the world of green absinthe. Quite simply because it is balanced and delicious. Much of the finest absinthe is clear. Also known as Blanche, La Bleue, and white absinthe...

\n
\n\n

Absinthe Gothica has a black absinthe that is strong as hell.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-07-07T11:50:20.670", "LastActivityDate": "2019-07-07T11:50:20.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6763"}} +{ "Id": "6763", "PostTypeId": "1", "AcceptedAnswerId": "6764", "CreationDate": "2017-04-12T12:39:10.103", "Score": "3", "ViewCount": "71", "Body": "

It's no secret - I like food. So, with my somewhat eclectic taste and adventurous spirit I have today decided to cook - Mexican Achiote (annatto) Chicken. Here's the recipe and the photo is of the spice itself. But keeping in mind the color of the spice in its original format, and that the meal is Mexican, what would be a great drink to serve with it? (I have noted in the heading - long summer drinks, as it's hot here at the moment.) Any suggestion would be appreciated.

\n\n

\"enter

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2017-04-12T13:20:41.307", "LastActivityDate": "2017-04-13T21:19:38.030", "Title": "Cool summer long drinks", "Tags": "pairing drink", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6764"}} +{ "Id": "6764", "PostTypeId": "2", "ParentId": "6763", "CreationDate": "2017-04-12T13:10:19.117", "Score": "2", "Body": "

I would go with what I call a \"Bloody Juanita\": Tequila with Sangrita (tomato based).

\n\n

For Mexican food, Tequila (or Mescal) is the obvious choice. You could go the US way and make some margaritas, but to me that sounds boring (and ideally needs a margarita machine, or at least decent amounts of ice, which is not always available, if you are on a boat or something).

\n\n

Sangrita is said to be a common partner to Tequila. According to Wikipedia,:

\n\n
\n

Sangrita (meaning \"little blood\"), whose origin dates back to the 1920s, is a customary partner to a shot of straight tequila blanco; a non-alcoholic accompaniment that highlights tequila's crisp acidity and cleanses the palate between each peppery sip. The basic conception of sangrita is to complement the flavor of 100% agave tequila, which is also peppery and citrusy in taste.

\n
\n\n

Although originally it's a fruity juice, I would recommend the tomato-based variant as food companion.

\n\n
\n

While most outsiders would reference its red make up as tomato juice and spices, locals and traditionalists agree that the one ingredient that most likely doesn't belong is tomato.

\n
\n\n

Another thing to consider is the Tequila variant to use. Originally clear/silver is the way to go, but I prefer a brown/golden Tequila (can be a fake one, does not have a pricey barrel-aged one).

\n\n

Mix Sangrita (store-bought or homemade, see linked Wikipedia article for recipes) and Tequila to taste and garnish with a big stem of cilantro, and there you go.

\n", "OwnerUserId": "5532", "LastEditorUserId": "5064", "LastEditDate": "2017-04-13T21:19:38.030", "LastActivityDate": "2017-04-13T21:19:38.030", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6765"}} +{ "Id": "6765", "PostTypeId": "2", "ParentId": "6745", "CreationDate": "2017-04-12T16:37:24.680", "Score": "2", "Body": "

I decided to dig into this because I have been home brewing off and on for 20 years and never really used a pressure barrel.

\n\n

Pressure Barrels seem to be more widely used in the UK and Australian markets than in the USA where we use Cornelius kegs instead.

\n\n

Pressure barrels are made out of plastic and come in a variety of sizes, the most common seem to be about the 5 gallon/25 liter size.

\n\n

To use a pressure barrel you move your freshly fermented beer into this vessel and prime with some type of sugar and let it sit for a couple of weeks while it builds up carbonation. Then you serve from the tap.

\n\n

They are designed to withstand a lot of pressure, but I am sure there is a theoretical limit that I couldn't find. However, they do come with a pressure relief valve in the lid that limits the pressure to give you carbonation within certain parameters and to protect you from the scenario asked above.

\n\n

I did find this on a pdf on the web:

\n\n
\n

Whichever cap you have they are designed to release excess pressure, sometimes barrels may bulge under the pressure, but the cap should automatically release when needed. If needed pressure can be released manually by slightly opening the lid by unscrewing and allowing CO2 out, if for example the holes on the cap had become blocked. Between brews check the caps are clean and free from any build up which could stop them from releasing pressure, and make sure they are well cleaned in clean warm water to ensure the rubber 'bands' are not stuck in position with any sticky liquid that may have come into contact with them.

\n
\n\n

Let say, for argument's sake, that the pressure relief valve was stuck and you put waaaay too much priming sugar in. I don't think the pressure barrel would ever explode. There are two weak points that would probably fail before it go to that point and that's the lid and the serving valve which would both probably vent before it got to that pressure.

\n\n

So, to answer this question, there is almost zero chance it would explode and would probably just have a leak of some type with infinite yeast and sugar.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-12T16:37:24.680", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6766"}} +{ "Id": "6766", "PostTypeId": "2", "ParentId": "6749", "CreationDate": "2017-04-12T17:30:52.663", "Score": "3", "Body": "

I don't know the taste of fig wine, but I do love figs, both fresh and dried, so I'm thinking it's along the lines of fruit cake (not a fave), minus the rum or brandy, but with it's own alcoholic pleasure (very much a fave). Some suggestions:

\n\n

Charcuterie: bacon, ham, sausage, terrines, galantines, ballotines, pâtés, confit

\n\n

Cheeses: goat, blue, Gorgonzola, camembert, Stilton, brie, mascarpone

\n\n

Grilled: veg (corn on the cob, tomatoes), chicken (spicy or citrus), fish (tuna, swordfish)

\n\n

And, from my New York Times Recipe Box:

\n\n

Savories: particularly those that are light and those with citrus or sharp flavors...
\n - Grapefruit with olive oil and sea salt
\n - Onion & feta pizza
\n - Vegetable galette
\n - Mustard tarte

\n\n

Sweets: especially flourless cakes...
\n - Almond Cake with Cardamom and Pistachio
\n - Orange and Almond Cake
\n - Hazelnut Citrus Torte
\n - Chamomile and Almond Cake

\n", "OwnerUserId": "6391", "LastActivityDate": "2017-04-12T17:30:52.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6767"}} +{ "Id": "6767", "PostTypeId": "1", "AcceptedAnswerId": "6768", "CreationDate": "2017-04-13T17:59:16.327", "Score": "5", "ViewCount": "1802", "Body": "

A few months ago I learned of a popular Japanese whisky, Yamazaki 12. Since then I've been searching, and searching for methods to get my hands on a bottle, but have come up empty-handed.

\n\n

Being in Ontario it would seem that the only legal method of obtaining any type of whisky is via the LCBO, and so I'm at the whims of what they have in stock. I've looked into online suppliers but it would appear that none of them can legally ship into Canada.

\n\n

So outside of leaving Canada, and bringing a bottle back in, is there a way to get my hands on any given Japanese whisky?

\n", "OwnerUserId": "938", "LastEditorUserId": "5064", "LastEditDate": "2017-04-13T21:30:04.117", "LastActivityDate": "2017-04-14T04:55:57.307", "Title": "How to obtain Japanese whisky in Canada?", "Tags": "whiskey canada", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6768"}} +{ "Id": "6768", "PostTypeId": "2", "ParentId": "6767", "CreationDate": "2017-04-13T21:01:20.003", "Score": "2", "Body": "

Yes, you can obtain different varieties of Japanese Whiskeys in Canada. The real question (or two) is whether or not you can obtain a particular one and whether it is obtainable in Ontario?

\n\n

Each province regulates what is permitted to be sold in their liquor stores.\nThe official provincial list of products will vary from province to province. Here in BC, we can obtain the SUNTORY WHISKY - HIBIKI JAPANESE HARMONY at our Government Liquor Stores. For some reason, private liquor stores can obtain more products from the approved list than can the Government Liquor Stores. Why this is so, makes no sense to me at all. It is what it is.

\n\n

If I were in Ontario, I would ask the Customer's Services at your neighboring liquor and see if they can obtain a Japanese Whiskey or two. If they can order it in, please be aware that you may have to buy a complete box, especially if the product in question is not a popular item. This is the rule in BC, however private stores often will waive that. Simply go and ask them in person, I do it all the time.

\n\n

Another thing you might try is to go to a Wine Market or Festival in your area. You may get lucky.

\n\n

Although not a Wine Market in the strictest sense please check this out from Alberta: Kensington Wine Market.

\n\n
\n

We’re Stocking up with a Dozen Whiskies from Nikka Whisky Co. of Japan.

\n \n

We love Japanese whisky here at KWM, and feel it is every bit as complex as the best Scotch whiskies. The following whiskies from Nikka Whisky Co. will be in stock at the Kensington Wine Market...

\n
\n\n

For what was offered at the time see here.

\n\n

Once again, I encourage you to ask at your local Government Liquor Store in your area.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-04-14T04:55:57.307", "LastActivityDate": "2017-04-14T04:55:57.307", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6769"}} +{ "Id": "6769", "PostTypeId": "1", "AcceptedAnswerId": "6773", "CreationDate": "2017-04-13T21:54:28.810", "Score": "4", "ViewCount": "172", "Body": "

I am interested in knowing how popular were drinking establishments (or more commonly known as taverns) in Europe during the Middle Ages (5th-15th century)?

\n\n

Did they exist during the entire Middle Ages or not? Did every town have a tavern?

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-04-14T23:41:45.310", "Title": "How prominent were drinking (alcohol) establishments in the Middle Ages?", "Tags": "history alcohol europe", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6770"}} +{ "Id": "6770", "PostTypeId": "1", "CreationDate": "2017-04-14T00:55:22.263", "Score": "6", "ViewCount": "312", "Body": "

I mainly drink ciders and sometimes I find a beer that I can tolerate the taste, even if I don't enjoy it. Something like Yuengling or Stella (not the cider). Recently I tried Sea Dogs Tea Beer which hasn't hit the stores as far as I know. From what a bartender has told me, it is because it is very expensive to brew, so at the moment I'm drinking things like Blood Orange/Strawberry Mike Hards, Strawberry-Lime Rekorderlig, most Sour beers, and other ciders like Angry Orchard.

\n\n

I'd like to find something new that fits my taste buds with a sweet or sour after taste that is light in color (like pale ales and such). I'm not a big alcohol buff like my boyfriend, but I learned this much just from going to tap houses and tasting rooms.

\n", "OwnerUserId": "6659", "LastEditorUserId": "5064", "LastEditDate": "2017-04-14T04:53:09.350", "LastActivityDate": "2020-04-04T07:48:58.763", "Title": "Recommendations for Tea/Fruity/Sweet beers?", "Tags": "recommendations specialty-beers", "AnswerCount": "5", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6771"}} +{ "Id": "6771", "PostTypeId": "1", "AcceptedAnswerId": "6775", "CreationDate": "2017-04-14T13:37:45.583", "Score": "6", "ViewCount": "1841", "Body": "

We all know that Christmas Beers exist as can be seen in this article: 25 Beers of Christmas. By a Christmas beer, most interpret this to be a seasonal beer.

\n\n

As such I would like to know if there are any seasonal Easter Beers that exist for Eastertide, especially any national ones?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-04-16T13:14:52.190", "LastActivityDate": "2019-11-07T11:21:55.583", "Title": "Do Easter Beers exist?", "Tags": "specialty-beers holidays", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6772"}} +{ "Id": "6772", "PostTypeId": "2", "ParentId": "6770", "CreationDate": "2017-04-14T22:47:22.713", "Score": "5", "Body": "

If you like sour beers and fruit flavors, try lambics. I've known several people who \"don't drink beer\" who like this style.

\n\n

A lambic is a Belgian style, light in color and usually in alcohol level, that is fermented with wild yeasts and (usually) combined with fruit. It has a sour element to the taste, which is most notable with the non-fruit variety (gueuze).

\n", "OwnerUserId": "43", "LastActivityDate": "2017-04-14T22:47:22.713", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6773"}} +{ "Id": "6773", "PostTypeId": "2", "ParentId": "6769", "CreationDate": "2017-04-14T23:41:45.310", "Score": "2", "Body": "

The question is very broad - A lot of the answer would depend on a more specific geographical location and/or a narrower time-window.

\n\n

For example in France, Taverns and inns (not restaurants) were the only places for common people to eat-out all of the way up until the late 18th century, according to the wiki. This would seem to make them THE hot-spot in that region throughout that time...

\n\n

It's certainly popular in medieval arts to make an omage to taverns and inns in creative works:

\n\n

1.) Paintings

\n\n

2.) Many poems of the time: The Archpoet wishes to die in a tavern in his \"Confession\". See also: Trafferth mewn Tafarn & Dafydd ap Gwilym

\n\n

3.) There are likely more drinking songs from the Middle Ages than one could ever hope to discover and research in a lifetime...

\n\n

Given the popularity of alcohol in general, all of this would suggest that drinking establishments have been happening places before, during, and after the Middle Ages... Prob in Europe, and everywhere else... ;P

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-04-14T23:41:45.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6774"}} +{ "Id": "6774", "PostTypeId": "1", "CreationDate": "2017-04-15T00:04:39.710", "Score": "8", "ViewCount": "183", "Body": "

Especially when it comes to serving beer, such as Guinness, it is debatable that the pour is the most important aspect. This is something I understand due to the layering and carbonation...

\n\n

When is it important to pay attention to the pour for other alcoholic beverages?

\n\n

For example, I dated a waitress that was adamant about the proper way to pour wine - thumb in the bottom, on the forearm with a napkin, presenting the label during the pour, finally properly spinning the bottle at the end of the pour... Is this all due to presentation or does it have anything to do with consumption, as well?

\n\n

Considering cocktails, I do not mean shaken vs stirred...

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-04-17T17:13:36.940", "Title": "When does the pour matter?", "Tags": "serving pouring", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6775"}} +{ "Id": "6775", "PostTypeId": "2", "ParentId": "6771", "CreationDate": "2017-04-15T13:30:13.023", "Score": "6", "Body": "

There are definitely Easter-themed beers. Though, no official beer-style when it comes to the holiday, it seems... (Barring all \"hoppy\" puns) Everything goes; from Pilsner to Porter.

\n\n

The best beers to enjoy with your Easter egg - The Telegraph

\n\n

Top 5 Easter Beers - KegWorks

\n\n

The Easter Beer Festival also showcases ciders and perries; the Spring season seems to call for lighter and fruitier beers as opposed to the heavier, darker beers of the Autumn season, imho.

\n\n

And, the rabbit/bunny is a main-stay theme with micro-breweries:

\n\n

\"Beaster

\n\n

\"Hoppy

\n\n

\"Multibunny\"

\n\n

\"Shuttle

\n\n

\"Hunny

\n\n

\"Hot

\n\n

\"Bad

\n", "OwnerUserId": "5847", "LastActivityDate": "2017-04-15T13:30:13.023", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6776"}} +{ "Id": "6776", "PostTypeId": "2", "ParentId": "6771", "CreationDate": "2017-04-15T23:34:15.680", "Score": "5", "Body": "

Here goes a more traditional way at looking at this question! And yes, I do enjoy Tim Burnett - Bassist's answer very much. To each his own.

\n\n

For those of you who desire more traditional named beers for Easter, here is a small sampling that are available at various places around the globe.

\n\n

Let us start with the Season with these:

\n\n
\n

The Bruery Saison De Lente

\n \n

With mint green bunnies spinning in a vortex around a pink and green Easter egg in the middle of the label, this beer is a thematically perfect addition to the Blog About Beer basket.

\n \n

Granville Island Chocolate Imperial Stout

\n \n

No Easter basket would be complete without a little chocolate…well maybe some big chocolate. How about 8.4% ABV chocolate?

\n \n

Alameda Brewing Bad Bunny

\n \n

A whopping 8.2% ABV Imperial Cream Ale, this beer has large quantities of Pilsner malt and candy sugar. With honey and sweet malts on the nose, there are also strong notes of fruit. The higher ABV makes itself known on the back end meaning this bunny got back for sure! This beer has a medium, creamy mouth feel and enough sweetness to let imbibers know it belongs in an Easter basket. - 3 Easter Beers That Will Have You HOPping!

\n
\n\n

\"3

\n\n
\n

St-Feuillien Påskeøl (Easter Beer)

\n \n

Also known as St-Feuillien Cuvée de Pâques

\n \n

The brewer markets this same or near-same product by more than one names. This can be the result of a brewer distributing this beer under different names in different countries, or the brewer simply changing the name, but not the recipe at different points in time.

\n
\n\n

\"St-Feuillien

\n\n
\n

Het Anker Brewery brews a very special dark beer every year for Easter called Gouden Carolus Easter. This unique beer contains several types of malt and two different kinds of herbs to give it a very fine and well-rounded taste. It boasts a ruby red color and an impressive ten percent alcohol volume. This truly unique beer is a real delight, even for the most critical connoisseur. For ideal tasting, Het Anker recommends serving Gouden Carolus Easter cool and pouring it out gently in one swift movement. Gouden Carolus Easter is scheduled to be released in the U.S. on March 15th of this year. Wetten Importers is excited to offer this unique and special holiday ale. - Special Easter Beer Release from Het Anker

\n
\n\n

\"Gouden

\n\n

In Norway, you can find a special beer at Easter – Paskelbrygg.

\n\n
\n

Paskelbrygg

\n \n

Breweries in Norway began making this special blend of \"the best local beers\" in 1934, but it met a lot of opposition from Christian groups. After World War II, however, the tradition picked up popularity and is still a common holiday brew today. Photo: Shutterstock.

\n
\n\n

\"Paskelbrygg\"

\n\n

And by the way do not forget your Easter Beer Hunt!

\n\n
\n

The Islamorada Beer Company is \"hiding over 100 beers for their customers to find! First come First served. Beer Hunts will be held every 30 Minutes! Each person will have 10 minutes to find and keep all hidden Beers.\"

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5847", "LastEditDate": "2019-11-07T11:21:55.583", "LastActivityDate": "2019-11-07T11:21:55.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6777"}} +{ "Id": "6777", "PostTypeId": "2", "ParentId": "6774", "CreationDate": "2017-04-16T13:47:56.823", "Score": "5", "Body": "

This is very broad so I will stick to wine in my answer. There are many considerations for pouring, you have the aesthetic aspects and presentation, and you have the mechanical aspects which can change the properties of the served drink.

\n\n

For wine, the waitress was right from a presentation point of view when served in a fine dining setting. Holding the bottle by the base gives the server the maximum reach with good control, twisting at the end helps reduce drips, the napkin can be used for any cleanup quickly, and showing the label assures the customer they are being served the wine of their choice. This technique does not effect the consumption, if you are entertaining at home there's no right or wrong way really, although I find the hold and twist give me the same advantages when I'm serving wine at my table.

\n\n

From a mechanical aspect, with wine the major considerations are sediment with red wines and bubbles with sparkling wine. If you have a red wine with sediment you need to be careful to not shake up the bottle and to leave the dregs in the bottom as you pour (or decant it through a strainer). With sparkling wine you need to be sure not to overfill. With most wines how you pour it makes no detectable difference on the flavor.

\n", "OwnerUserId": "5528", "LastActivityDate": "2017-04-16T13:47:56.823", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6778"}} +{ "Id": "6778", "PostTypeId": "2", "ParentId": "6774", "CreationDate": "2017-04-17T16:23:14.993", "Score": "4", "Body": "

Guinness' perfect-pour is actually a marketing scheme that gives them an exclusivity factor. They have training courses and will invite patrons that visit Guinness to become masters of The Perfect Pour. However, it has no real impact on the beer.

\n\n

The actual answer to pouring is much less mystic and much more scientific. The pour does matter for several different reasons.

\n\n

First - Why does foaming occur? Carbon Dioxide is actually in solution inside of the beer. Several things play a factor; but, the biggest two are temperature and pressure. CO2 goes into solution easily around 36ºF (Here is a link to a slide that lists the temperature and PSI of beer). Therefore - the warmer the beer when poured, the more head you tend to get (because the CO2 is leaving solution). The other big reason is pressure differentials - inside the keg/can/bottle the pressure is keeping the CO2 in solution. When the pressure outside is less than in the keg (like when you open a beer bottle or pour the beer) the CO2 starts escaping.

\n\n

The reason pour matters is really the following mixture of craftsmanship and business.

\n\n
    \n
  1. Head retention (or the froth that stays at the top of your beer) is really important! It gives off a lot of aromatics that you get to experience before even tasting the beer. When you make beer - the hops added at the beginning of the process give the bittering falvors that balance the malty-sweetness while hops added toward the end (or even during fermentation) impart less bittering and more aromatics. Therefore, a lot of the beer's personality shines through the foamy-head. Let's be honest... what beer lover doesn't think that the way a freshly poured Left-Hand Nitro Stout (or other beers that have that tan-cascade of CO2 falling away from the head) is beautiful?
  2. \n
  3. For businesses foamy-pours are money wasters. This link from TurboTapsUSA describes why their tap is a money saver. It comes down to lost beer. We know that a beer with foam 3 inches from the top turns into a beer with only about 1.5 inches of space from the top. So, when you see bartenders or others pouring until there is just beer to the top while foam pours out in the drain are just wasting money.
  4. \n
  5. Glass shape plays a big part in foaming. Nucleation sites help create carbonation (discussed at length in this forum). When you want a lot of head retention, this is a good thing. There is also a reason that glassware is shaped the way it is. It allows smells from the foam to be directed towards the imbiber's nose, allows the drink to breathe like wine, or keeps your hands from warming up the beer too much.
  6. \n
\n", "OwnerUserId": "22", "LastEditorUserId": "22", "LastEditDate": "2017-04-17T17:13:36.940", "LastActivityDate": "2017-04-17T17:13:36.940", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6779"}} +{ "Id": "6779", "PostTypeId": "1", "AcceptedAnswerId": "6847", "CreationDate": "2017-04-17T16:40:57.933", "Score": "5", "ViewCount": "228", "Body": "

Not long ago, I read this article (FRANCIS FORD COPPOLA WINERY UNVEILS WINES TO BE POURED AT 2017 ACADEMY AWARDS® CEREMONY & GOVERNORS BALL) and it got me thinking if there exists a wine that commemorates a particular movie and could be paired with it?

\n\n

Pairing beer with a particular movie is quite commonplace, but commemorative wines that could be paired to a particular movie is much more rare.

\n\n

Here is a beer example of what I am trying to convey, but I am interested in wine only: The Hobbit Series of Beers ships this week, coming very soon.

\n\n

\"Gollum

\n\n
\n

Gollum Precious Pils: A strong Imperial Pils, with flavors as smooth and crafty as Gollum himself. Like the ring which Gollum pursued for the rest of his life, his “precious” pils, if your quest leads you to it, could extend your life too! (at least we’d like to think so) It will, at a minimum, make your journey a little more enjoyable!

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-12-19T07:31:38.027", "Title": "Commemorative wines for a particular movie?", "Tags": "wine pairing", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6782"}} +{ "Id": "6782", "PostTypeId": "1", "AcceptedAnswerId": "6817", "CreationDate": "2017-04-18T13:23:05.443", "Score": "5", "ViewCount": "705", "Body": "

I've seen a few questions about what to do with some wines that have been in the refrigerator. I am planning on opening an unopened bottle of rainwater Madeira (aged 5 years) that has been in my refrigerator for about 2-3 years. I received it as a gift and I live in a hot and humid climate where my job keeps me away for long periods of time, so I ended up storing the wine in the refrigerator, knowing it was not the best thing to do.

\n\n

I finally have a chance to enjoy this wine in a few days but wanted to know how to best ready it for consumption, whether or not it should be aerated or decanted first, if there are any potential effects of refrigeration I should take into account when serving, and if there are any steps I should take to mitigate and bring out the best of this bottle.

\n", "OwnerUserId": "6672", "LastEditorUserId": "5064", "LastEditDate": "2017-04-19T02:29:20.617", "LastActivityDate": "2017-05-02T14:56:36.663", "Title": "How to best serve a Madeira that's been in the fridge for a few years?", "Tags": "wine recommendations storage", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6783"}} +{ "Id": "6783", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2017-04-18T18:26:56.777", "Score": "0", "Body": "

Try a few different whiskies, neat. A decent single malt can be sipped for about 30 minutes without much degradation in taste-quality. There's nothing wrong with ordering a glass of water to go with it, and in fact, it's common to do so.

\n\n

Some widely available entry-level easy-to-drink single malts:\nGlenfiddich 12,\nMacallan 12,\nHighland Park 12, and\nGlenmorangie 10

\n", "OwnerUserId": "6673", "LastActivityDate": "2017-04-18T18:26:56.777", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6784"}} +{ "Id": "6784", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2017-04-19T07:14:46.557", "Score": "1", "Body": "

This is a good question that a lot of people wonder about. Ordering whatever you like, as many of these answers say, is totally right, though I don't think that's the full story. The way that you order can help you build a relationship with your bartender (and other patrons), and that is always a good thing. An example of this is a shot of a liqueur called Fernet Branca, a shot of Fernet for a while now has been known as the bartenders handshake (don't call it that when ordering, just ask for a shot of Fernet), it's a way to tell a bartender that you respect their craft. You can get any ol' beer to wash it down. Keep in mind though that Fernet tastes pretty terrible to most people the first time they try it.

\n

The biggest thing I would say is to try new things, get to know what's out there. This will help you learn what you like and let's bartenders really flex their skill, and they love it... at cocktail bars, not so much at dive bars, but it sounds like you have a nice spot there. If you like Gin, google some classic gin drinks and try ordering them. Order an Army Navy, a Corpse Reviver #2, or a Hemingway Daiquiri for example. Keep in mind that you won't be know the difference between the drinks that your bartenders know and the ones that are obscure, until you get to know the lay of the land so just stay humble and keep to the really familiar drinks when the bartender is crazy busy. Also, feel free when it's not busy, to use adjectives to order... "I want something sweet with whisky" or "something bitter and herbal". Keep the communication open, they know what they're doing.

\n

Just to get the ball rolling for you, here are a few to start with....\nBrandy Alexander is sweet and the perfect nightcap. An Amaretto Sour with a splash of bourbon, another easy going cocktail, it's a twist on a classic and created by one of the biggest names in the industry. A Negroni, it became super popular not long ago and has been a little bit over done since then but, you should order one and know what everyone went crazy over. Be ready, it'll be bitter.

\n

As a last note, whoever said that you should avoid girly drinks as a man is wrong, there's no such thing. I've proudly ordered a Cosmopolitan in a bar and it was delicious. Sit upright and hold your head high. If you're looking at me I'll give you something to see.

\n", "OwnerUserId": "5974", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-04-19T07:14:46.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6785"}} +{ "Id": "6785", "PostTypeId": "1", "AcceptedAnswerId": "6786", "CreationDate": "2017-04-19T08:41:36.503", "Score": "3", "ViewCount": "2317", "Body": "

I accept that one of the easiest ways to add flavor to vodka is simply to add a mixer or juice of some type, but that would be diluting it. I also know that I can add fruits to the vodka itself which would infuse the vodka with a particular flavor. Is there another way, say with some type of essential oil of some variety. Overly sweet flavors should be avoided.

\n", "OwnerUserId": "6366", "LastActivityDate": "2017-05-03T18:37:36.123", "Title": "Adding flavor to vodka", "Tags": "flavor vodka", "AnswerCount": "5", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6786"}} +{ "Id": "6786", "PostTypeId": "2", "ParentId": "6785", "CreationDate": "2017-04-19T14:37:52.107", "Score": "2", "Body": "

They make the exact product you are looking for. Home Distillers can add flavorings to their neutral spirits with these products. Still Spirits I would look around the website as there are many different types of flavorings if you are interested.

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-19T14:37:52.107", "CommentCount": "6", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6787"}} +{ "Id": "6787", "PostTypeId": "2", "ParentId": "6779", "CreationDate": "2017-04-21T12:10:26.130", "Score": "3", "Body": "

If I am completely off the track here, tell me and I will delete my answer - but I will have a bash at this.

\n\n

I found some information Here, at decanter.com.

\n\n
\n

Wine films

\n \n

There are several well-known films based on the drinking or making of\n wine or the wine industry itself. They range from American\n comedy-drama Bottle Shock (featuring Alan Rickman as wine expert\n Steven Spurrier), buddy-movie Sideways and book adaptation A Good Year\n to smaller pictures such as the controversial Mondovino, mockumentary\n Corked and French hit Vagabond.

\n \n

Individual wines have also featured on the big screen including\n Chateau Margaux in Withnail & I and Sherlock Holmes, Chateau Latour in\n Monty Python’s Meaning of Life, Chateau Angelus in James Bond Casino\n Royale and Veuve Clicquot in Casablanca.

\n \n

In May 2012 it was announced The Billionaire’s Vinegar is to be turned\n into a motion picture starring Brad Pitt.

\n
\n", "OwnerUserId": "6366", "LastActivityDate": "2017-04-21T12:10:26.130", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6788"}} +{ "Id": "6788", "PostTypeId": "1", "AcceptedAnswerId": "6801", "CreationDate": "2017-04-22T00:17:36.810", "Score": "8", "ViewCount": "66456", "Body": "

As active as I am on this Stack and enjoy the occasional drink I'm realizing more and more that, regardless of how little I drink from day to day, for the most part booze just tends to bring me down a bit, and if I avoid it I usually feel better than if I had had something to drink.

\n\n

So I'd like to put this question out there to get some ideas for drinks that act as sedatives, but which are non-alcoholic.

\n\n

So far I've primarily been using lavender and chamomile teas, and straight water. Water specifically isn't sedating but does tend to balance out overloads of caffeine or sugar.

\n\n

Is there anything else that's commonly used for this purpose?

\n", "OwnerUserId": "938", "LastActivityDate": "2020-04-27T21:21:15.713", "Title": "Good non-alcoholic, sedative drinks to replace alcoholic drinks", "Tags": "non-alcoholic", "AnswerCount": "4", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6789"}} +{ "Id": "6789", "PostTypeId": "2", "ParentId": "6788", "CreationDate": "2017-04-22T13:40:12.620", "Score": "5", "Body": "

Allow me to suggest a Kava tea as an alternative to an alcoholic drink due to it's sedative properties.

\n\n
\n

Kava drinks - often referred to as \"kava tea\" - are made from the roots of a plant grown in the South Pacific, and they're known for their purported anti-anxiety and antidepressant effects.

\n \n

When ground up and mixed with water, the root turns into a juice that some claim can be a natural alternative to alcohol. It has been used for thousands of years as a ceremonial and social drink in the South Pacific.

\n \n

Basically, the drink mimics alcohol's relaxing and sedative effects without the downsides - no extreme emotions, no memory loss, and no hangover. Tech Insider previously reported on kava's key compound, kavain, which mimics a sedative and triggers relaxation in the body. It works as a muscle relaxer, so while you're mentally alert, you feel physically loose.

\n
\n\n

Here is what Bulletproof has to say about Kava:

\n\n
\n

Kava is like chamomile on steroids. This muddy-tasting little root comes from the Pacific Islands, where people have used it for centuries as everything from a pain reliever to a ceremonial drink. A potent anxiety reliever, kava offers a non-alcoholic way to wind down at the end of the day, especially if you’re working late or you have trouble falling asleep.

\n \n

The secret lies in kavalactones, the psychoactive parts of the kava plant. The kavalactones in a cup of kava tea, or a few drops of kava extract, can put you into a rare state of relaxed focus.

\n
\n\n

If you can not find it locally, it may be obtained on Amazon.

\n\n

\"YOGI

\n\n

YOGI TEAS Kava Stress Relief Tea

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-04-22T13:40:12.620", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6790"}} +{ "Id": "6790", "PostTypeId": "2", "ParentId": "6788", "CreationDate": "2017-04-22T13:57:06.237", "Score": "4", "Body": "

I don't know where you are located, but in my state Cannabis is legal and would be a perfect replacement for alcohol. Cannabis oils are not water soluble, so you have to get there a different way than just putting the flower buds in water, but it's pretty easy. The effects of Cannabis are well known, so I won't go into what it does to you.

\n\n
\n

Cannabis tea can be made in a variety of ways from many different ingredients depending on your personal preferences. A few methods include:

\n \n
    \n
  • An infusion of dry flowers and water — typically less psychoactive because THC is not water-soluble.
  • \n
  • A mixture of cannabis infused with fat (e.g., coconut oil, butter, and/or dairy) combined with tea leaves and water to make a chai or latte-type drink.
  • \n
  • A mixture of regular tea leaves and water heated with an alcohol-based extraction (such as a tincture) added to it.
  • \n
\n
\n\n

How to make Cannabis infused tea

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-22T13:57:06.237", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6791"}} +{ "Id": "6791", "PostTypeId": "2", "ParentId": "6785", "CreationDate": "2017-04-22T19:35:25.723", "Score": "4", "Body": "

It's incredibly easy to infuse vodka with tea - unscrew the cap, force a teabag through the neck, screw the cap back on, and put it in the freezer until you're happy with it (overnight is fine). Keep the tag outside so it's easy to pull out. Tea vodka is tasty, and also makes a great base for cocktails.

\n\n

You can also infuse it with horseradish, or ginger, or any other kind of root the same way that you would with a fruit peel - slice it thin, chuck it in, and give it a day. Unsweetened cranberries are great, and cranberry vodka is very popular in Russia and Finland.

\n\n

With the right infusions, you can turn your vodka into gin.

\n", "OwnerUserId": "5328", "LastActivityDate": "2017-04-22T19:35:25.723", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6792"}} +{ "Id": "6792", "PostTypeId": "1", "CreationDate": "2017-04-23T05:52:08.193", "Score": "4", "ViewCount": "4622", "Body": "

I want to measure the sugar content of several brewed beers. What is the best equipment to use for this (e.g., Brix hydrometer) and how accurate would the result be using this technology?

\n", "OwnerUserId": "5607", "LastActivityDate": "2020-09-28T03:18:31.383", "Title": "How do I measure the sugar content of brewed beers?", "Tags": "craft-beers", "AnswerCount": "6", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6793"}} +{ "Id": "6793", "PostTypeId": "2", "ParentId": "6792", "CreationDate": "2017-04-23T05:59:20.787", "Score": "2", "Body": "

I found this device on Amazon - which I believe will do what you want.

\n\n

\"Decent

\n\n

Brix Refractometer Measure Sugar content for Beer Wine

\n\n

It determines the sugar content not just in beers, but in wines as well (also fruits etc.).

\n\n

What is a refractometer?

\n\n
\n

A refractometer is an optical device that, like a hydrometer, measures the specific gravity of your beer or wort. It does so by sampling a small amount of liquid, and looking at its optically. The main advantage over a hydrometer is the small sample size needed – typically only a few drops.

\n \n

Most brewing refractometers measure samples in Brix, which is a scale used to measure specific gravity primarily by wine makers. Some also use a Refractive Index (RI) scale. Both the Brix and RI indexes need to be converted to standard specific gravity or Plato scales using a formula, as wort does not have the same reflective properties as plain sugar water.

\n \n

Using Your Refractometer when Beer Brewing

\n \n

Using the refractometer is very similar to what you just did when calibrating it. Open the sample plate, make sure it is clean and dry, then add a few drops of your wort. Again, if the wort is hot allow it to cool to room temperature first (ideally 68F). Close the sample plate, check for bubbles, and then hold the refractometer up to a natural light source.

\n \n

Reading the refractometer is easy – just take the reading directly from the sight scale. The reading you take will most likely be in percent/degrees Brix or RI. - How to Use a Refractometer, Brix and Beer Brewing

\n
\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2017-04-23T12:36:32.763", "LastActivityDate": "2017-04-23T12:36:32.763", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6794"}} +{ "Id": "6794", "PostTypeId": "1", "AcceptedAnswerId": "6798", "CreationDate": "2017-04-23T21:42:34.510", "Score": "2", "ViewCount": "197", "Body": "

I was wondering if the craft beer has more nutritional values (vitamins and so on) than regular and cheap beer?

\n", "OwnerUserId": "6682", "LastActivityDate": "2017-04-24T20:41:57.563", "Title": "Does craft beer have more nutritional values than regular beer?", "Tags": "craft-beers nutrition", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6795"}} +{ "Id": "6795", "PostTypeId": "2", "ParentId": "6771", "CreationDate": "2017-04-24T09:57:17.380", "Score": "3", "Body": "

There are a few Easter beers in Germany. In 2017 these beers were available:

\n\n

Hasen-Bräu Oster-Festbier

\n\n

Kaiserhöfer Osterbier

\n\n

Weltenburger Oster-Festbier

\n\n

This list is a) not full, b) changes every year because not every brewery brews its Easter beer every year.

\n", "OwnerUserId": "4742", "LastActivityDate": "2017-04-24T09:57:17.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6796"}} +{ "Id": "6796", "PostTypeId": "2", "ParentId": "3289", "CreationDate": "2017-04-24T13:25:38.887", "Score": "1", "Body": "

This may not help you in Quebec, but if a product can be found in an LCBO somewhere in Ontario, you should be able to order that product at any LCBO in Ontario.

\n", "OwnerUserId": "863", "LastActivityDate": "2017-04-24T13:25:38.887", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6797"}} +{ "Id": "6797", "PostTypeId": "2", "ParentId": "6794", "CreationDate": "2017-04-24T19:45:23.423", "Score": "0", "Body": "

It would depend on the craft beer. Regular cheap beer is not a good comparison as you don't typically get the same style of beer. Craft rules are not the same everywhere. Typical rules is water, hop, barley, and yeast. A non craft can use other ingredients but that same 4 is going to be the bulk. A craft tends to be denser so in the case it would have more nutrients.

\n", "OwnerUserId": "4903", "LastActivityDate": "2017-04-24T19:45:23.423", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6798"}} +{ "Id": "6798", "PostTypeId": "2", "ParentId": "6794", "CreationDate": "2017-04-24T20:41:57.563", "Score": "1", "Body": "

So... I guess it depends on what you're deeming nutritional value. Beer has 4 main ingredients:

\n\n
    \n
  1. Water
  2. \n
  3. Grain
  4. \n
  5. Yeast
  6. \n
  7. Hops
  8. \n
\n\n

The biggest mineral difference is going to come from the water source of the brewery. Following the exact same formula recipe/mashing instructions/yeast used/fermentation conditions (temperature, altitude, fermentation vessel)/time/etcetera... you can get very different flavor beers if the water source is different.

\n\n

The next varying source of minerals would probably be in yeast. Unfortunately, I can only find evidence of all brewing yeast lumped together at the moment.

\n\n

The interesting part in craft brewing, especially at the homebrew-mad-science level, becomes all of the additives that can be placed into beer. I once met a brewer that dry-hopped smoked salmon bones (right they aren't hops but the same technique) in their secondary fermentation (or clarifying stage) chamber!

\n\n

These examples would be more \"here is a random thing\" that I found rather than being able to give you a definite answer as to \"more nutrition\" being provided than big-beer manufacturers.

\n", "OwnerUserId": "22", "LastActivityDate": "2017-04-24T20:41:57.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6799"}} +{ "Id": "6799", "PostTypeId": "2", "ParentId": "6792", "CreationDate": "2017-04-25T18:39:10.597", "Score": "4", "Body": "

Unfortunately, you're not going to easily achieve the solution to your question. Your best bet would be to find the nutritional information for the beer you seek. It isn't readily available, though, legislation has passed requiring craft beer producers to provide this information. While this sounds logical - this can significantly impact smaller craft brewers. :(

\n\n

You can't actually tell what the sugar content is of a beer without knowing the Final Gravity of the wort before fermentation giving you the Original Gravity. These difference in OG-FG tell you the Alcohol By Volume of the beer in question. Specific gravity is measured in kg/(m^3) - I'm sure there is some math that could be done to figure out how to convert a known Final Gravity into know sugar amounts.

\n\n
    \n
  • The downside becomes knowing what type of sugars were in the original recipe. Without knowing exactly what went into the beer (and recipes can be quite proprietary) - you'll be hard pressed to figure out exact sugar content.
  • \n
\n", "OwnerUserId": "22", "LastActivityDate": "2017-04-25T18:39:10.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6800"}} +{ "Id": "6800", "PostTypeId": "2", "ParentId": "6792", "CreationDate": "2017-04-26T00:30:39.740", "Score": "4", "Body": "

I've been holding off answering this question because it's very complicated. First, I am assuming the original poster wants to know sugar content in finished beer, not in pre-fermented wort. If that is not the case, I will pull my answer.

\n\n

In the wine industry it's pretty straight forward to measure residual sugar since all you are dealing with is leftover fructose from the unfermented portion of the wine. One sugar, easy. It's pretty accurate with a Clinitest (now Aimtabs).

\n\n

But with beer, it's different story because you are dealing with several types of sugars and frankly brewers don't have the same problems with unfermented sugars that winemakers do. (This is how we have fizzy wine!) So, finding a test for residual sugar in beer is not only more complicated but rare.

\n\n

You cannot use a refractometer or hydrometer to measure residual sugars directly since alcohol influences the end results. One method is to evaporate the alcohol content and then with the alcohol gone you could measure the sugars directly. This would have to be done with vacuum distillation so you don't lose the water content.

\n\n

I did find an old paper from 1977 which describes several scientific methods but these are generally too hard for the average person to take on.

\n\n
\n

MEASUREMENT OF CARBOHYDRATES IN WORT AND BEER

\n \n

By G. K. Buckee and R. Haroitt\n (Brewing Research Foundation, Nutfield, Redhill, Surrey)\n Received 20 May 1977

\n \n

Methods are reviewed for measuring total wort and beer carbohydrate and carbohydrate fractions, such as dextrins, oligosaccharides, fermentable sugars, jS-glucans, total fructose and fructosans, pentose and pentosans. The methods are conveniently classified under the following headings: reductometry, colorimetry, enzymic procedures, automated analyses, paper and column chromatography, thin layer chromatography, gas liquid chromatography and high performance liquid chromatography. Techniques involving chromatography are particularly useful for separating and estimating individual sugars.

\n
\n\n
\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-04-26T00:40:37.117", "LastActivityDate": "2017-04-26T00:40:37.117", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6801"}} +{ "Id": "6801", "PostTypeId": "2", "ParentId": "6788", "CreationDate": "2017-04-27T17:20:59.443", "Score": "2", "Body": "

So I went to my local tea shop and had a chat with the owners there, who are experts on this topic, and ended up picking up a few more sedatives.

\n\n

So far these teas seem to be good options:

\n\n
    \n
  • Chamomile
  • \n
  • Lavender
  • \n
  • Mints
  • \n
  • Valerian Root
  • \n
  • Lemon Balm (mint family)
  • \n
\n\n

Update: I've also taken the suggestion in one of the other answers to try Tulsi, and this has turned out well. Where teas like Chamomile or Lavender are good sleep aids, Tulsi acts as more of a relaxant that can be drunk at different times of the day.

\n\n

So far the teas seem to work out like this:

\n\n
    \n
  • Lavender - sleep aid
  • \n
  • Valerian - sleep aid
  • \n
  • Chamomile - sleep aid
  • \n
  • Mints - muscle and body relaxant
  • \n
  • Tulsi - stress relief
  • \n
\n\n

Second Update:

\n\n

I'm going to share another update here as this question is getting a lot of views, and I believe this information to be pertinent to the question.

\n\n

In the past year I've not only been making use of sedatives, but have also been reducing the caffeine content I drink via coffee. To help cut back on caffeine I've been mixing caffeine-free coffee beans with regular ones, and gradually increasing the amount of caffeine-free beans in the mix. At this time I'm at about 25% regular / 75% caffeine free.

\n\n

What's interesting to note about this is that since seriously cutting back on caffeine I've found that I no longer have much need for the sedative herbals I'd been drinking. As it turns out, once your body acclimates to not pumping itself with stimulants, there is less need for sedatives to calm yourself down at the end of the day.

\n", "OwnerUserId": "938", "LastEditorUserId": "938", "LastEditDate": "2019-09-19T14:59:35.783", "LastActivityDate": "2019-09-19T14:59:35.783", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6802"}} +{ "Id": "6802", "PostTypeId": "1", "AcceptedAnswerId": "6803", "CreationDate": "2017-04-27T18:50:54.907", "Score": "5", "ViewCount": "218", "Body": "

Does anyone have a good resource for clarifying fruits and veggies and using as a cocktail mixer? I had this fabulous Bloody Mary last weekend. It was was made with yellow tomato and yellow bell pepper. Evidently egg whites remove impurities or something like that.

\n", "OwnerUserId": "6696", "LastActivityDate": "2017-09-18T21:40:47.473", "Title": "Clarified Bloody Mary and Egg Whites", "Tags": "cocktails", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6803"}} +{ "Id": "6803", "PostTypeId": "2", "ParentId": "6802", "CreationDate": "2017-04-27T20:49:01.390", "Score": "3", "Body": "

Egg whites are used in wine and other beverages to precipitate the solids. I'm not sure how this would be done for a bloody mary, but in wine you basically whip up some egg whites until foamy then put them in the wine barrel and let setting for for several weeks. Most of the action takes place right away. You can also use Gelatin for the same purpose. I use it in my homebrew all the time.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-27T20:49:01.390", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6804"}} +{ "Id": "6804", "PostTypeId": "1", "AcceptedAnswerId": "6807", "CreationDate": "2017-04-28T07:46:29.693", "Score": "5", "ViewCount": "387", "Body": "

I recently picked up a Mr. Beer DIY Northwest Pale Ale Beer Brewing Kit, and when I told my Mom I was brewing some homemade beer. She said she wouldn't drink it because it might be poison. Is there any why to explain to my mom that my beer would be quite safe to drink?

\n", "OwnerUserId": "6699", "LastEditorUserId": "5064", "LastEditDate": "2017-04-28T11:56:12.173", "LastActivityDate": "2017-11-16T18:08:53.430", "Title": "How should I convince my mom that my beer isn't poison?", "Tags": "craft-beers home-brew", "AnswerCount": "4", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6806"}} +{ "Id": "6806", "PostTypeId": "2", "ParentId": "6804", "CreationDate": "2017-04-28T13:28:36.233", "Score": "1", "Body": "

Does she bake? If she does, and especially if she bakes bread, then ask her how you know her baked goods aren't poison. Beer has been known as liquid bread for many centuries for good reason; it contains essentially the same ingredients (with a bit of hop for taste so you may have to term it herb bread). If she doesn't agree that home-baked bread could be poison as much as homemade beer could be then she is being irrational. That leads me to the second idea. Does she trust commercial beers not to be poison? Why? They are made in a chemical factory. This is a chemical factory holding tonnes of potentially lethal chemicals (particularly the chemicals used to clean the vessels but also if you have a bag of barley fall on you it is lethal(!)). Large commercial breweries (Heineken etc. rather than, say, Sambrook's) are even worse as they inject all kinds of chemicals into the natural product to keep it from spoiling and to add fizz.

\n\n

The only reason why she should be worried is if she doesn't trust you and, in the end, if your mother doesn't trust you to make food or drink no one can solve that.

\n", "OwnerUserId": "909", "LastActivityDate": "2017-04-28T13:28:36.233", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6807"}} +{ "Id": "6807", "PostTypeId": "2", "ParentId": "6804", "CreationDate": "2017-04-28T13:47:45.913", "Score": "10", "Body": "

I think the first step in attempting to change a belief of another person is always to understand why they hold that view. That can even help with determining how likely you are to be successful. For example, if her concern is that you may be actively trying to poison her, you're probably not very likely to change her mind. But if instead her concern is just that you may screw up something and produce a contaminated and therefore unsafe drink, that may be easier to handle. But you would use a different argument than if her concern was that you obtained the ingredients from an untrusted source.

\n\n

To address the latter two options, the simplest way may just be too brew your beer, drink in on several occasions, and then have your continued health be the evidence that it's not poisonous. This has the added benefit of checking it first to make sure it tastes reasonably good (poisonous or not if it doesn't come out well you may want to wait till next time to have her try it).

\n\n

Attacking it from a more logical perspective, there are a few other arguments you can make:

\n\n
    \n
  • Beer was, for quite some time, a product that was made more because it was safe to drink than because it was tasty. Not being able to trust their water sources, brewing beer was a way to make a drink that was not only less likely to make your sick but also an important source of nutrition.
  • \n
  • From the research I've done, I couldn't find any instance of someone becoming dangerously sick from homebrew. Maybe the occasional upset stomach or bathroom problems but as long as you're being reasonable about cleaning and sanitizing the equipment an infected batch is almost certainly just a matter of it tasting bad, not a matter of your health.
  • \n
  • A big part of the reason for the above points is that the alcohol produced during fermentation should be enough to inhibit the growth of any dangerous microorganisms. That should hold true for even extremely low ABV beers (<1%).
  • \n
\n\n

Unless you're using dirty, hand-me-down equipment and either aren't cleaning it or aren't properly sanitizing it, you shouldn't​ be able to end up with anything dangerous*. Even then you're more likely to just end up with something you don't like. Long story short, if it tastes and smells good, you'll be fine.

\n\n

* One caveat here: bottle grenades are a serious issue and can be dangerous. Make sure you clean and sanitize your bottles well and don't bottle until your beer has reached its final gravity. That said, this is more of a physical safety issue than something that makes the beer unsafe to drink.

\n", "OwnerUserId": "4935", "LastEditorUserId": "4935", "LastEditDate": "2017-11-16T18:08:53.430", "LastActivityDate": "2017-11-16T18:08:53.430", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6808"}} +{ "Id": "6808", "PostTypeId": "1", "AcceptedAnswerId": "6809", "CreationDate": "2017-04-28T14:16:41.540", "Score": "9", "ViewCount": "2927", "Body": "

I want to home-brew some mead because why not , plus it seems pretty easy to do.

\n\n

My question is :

\n\n

Can any mistake in the brewing process make the drink \"poisonous\" ?

\n", "OwnerUserId": "6371", "LastEditorUserId": "9887", "LastEditDate": "2019-11-28T08:59:17.903", "LastActivityDate": "2019-11-28T08:59:17.903", "Title": "Can home-brewed mead be dangerous?", "Tags": "health home-brew mead", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6809"}} +{ "Id": "6809", "PostTypeId": "2", "ParentId": "6808", "CreationDate": "2017-04-28T14:33:40.470", "Score": "7", "Body": "

If you are using honey, water and yeast. Then the answer is NO. But alcohol is a poisonous substance if not used properly. You cannot make it strong enough to \"poison\" you in the traditional sense. Could you poison yourself by drinking too much of it, sure it's possible. But, there are no by-products from the fermentation process that would \"poison\" you. Enjoy!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-04-28T14:33:40.470", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6810"}} +{ "Id": "6810", "PostTypeId": "2", "ParentId": "6804", "CreationDate": "2017-04-28T14:51:43.723", "Score": "5", "Body": "

To the other answers I would add: point out that you're working from a kit. Like prepared kits for bread-machine bread, stir-fry sauces, and spice mixes, your beer kit is designed to minimize variables and avoid beginner mistakes. If you follow the instructions in the kit, you can't screw it up -- and if you did, the worst outcome would be that you don't like the taste. (Assuming your equipment is clean.)

\n\n

Your mother, not being a brewer, probably has no idea what's involved. If you explain the kit concept by comparing it to kits she's already familiar with, you should be able to persuade her that your kit is safe.

\n", "OwnerUserId": "43", "LastActivityDate": "2017-04-28T14:51:43.723", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6811"}} +{ "Id": "6811", "PostTypeId": "1", "AcceptedAnswerId": "6816", "CreationDate": "2017-04-30T13:58:57.120", "Score": "1", "ViewCount": "1032", "Body": "

Recently I posted a question (here) regarding adding flavor to vodka. In my usual exuberance and non-scientific approach to matters I thought 'I know, to cut a few calories I will add Splenda'. OK, the taste was OK, the orange and lemon peel that I steeped in the vodka gave the drink a nice, if not bitter taste. I added splenda - and then experimented on myself (can't find anyone stupid enough to join me in these ventures!). I drank the 'vodka' in the same manner (volume) as I would a standard vodka or gin. Now, first morning after, the raging headache should have been sufficient - but looking for a more conclusive scientific result I tried the 'experiment' for a couple more nights, with the same results each following morning. So, my question is: Does adding an artificial sweetener to alcohol increase the chance of a hangover?

\n", "OwnerUserId": "6366", "LastActivityDate": "2021-11-15T15:27:41.800", "Title": "Using 'splenda' in Vodka infusions. Serious headache!", "Tags": "flavor vodka hangover", "AnswerCount": "1", "CommentCount": "11", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6812"}} +{ "Id": "6812", "PostTypeId": "1", "CreationDate": "2017-05-01T14:27:43.887", "Score": "0", "ViewCount": "6033", "Body": "

Just checking other views on what commission wine representatives make off sales.

\n", "OwnerUserId": "6709", "LastActivityDate": "2017-05-02T15:57:54.230", "Title": "What is the average percentage of commission of a commission only wine representative?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "2", "ClosedDate": "2017-05-03T07:09:54.790", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6813"}} +{ "Id": "6813", "PostTypeId": "2", "ParentId": "6785", "CreationDate": "2017-05-01T18:05:12.667", "Score": "2", "Body": "

Simple Syrups can be a great way to infuse other flavors into your vodka. To add other flavors, you would add them into the simple syrup, mashing as you go along. You have to consider the temperature and amount of fruit to add to get the desired flavor. If you are trying to follow the simple syrup recipe and bring the sugar/water/additives to a boil ASAP, you shouldn't really lose any flavor.

\n\n

From personal experience (and preference), strain the simple syrup with a cheese cloth, or other straining device (chinoise mentioned below). This is especially true when making things like a Strawberry Habeñero Margarita if you add the seeds in during the simple syrup process.

\n\n
\n

Recipe: Strawberry Habanero Margarita\n Ingredients

\n
\n\n
• ¼ cup Strawberry Habanero Simple Syrup\n• ¼ cup Fresh Lime juice\n• 4 ounces Grand Marnier\n• 4 ounces Tequila\n• Strawberry Habanero Simple Syrup:\n• 1 cup sugar\n• 1 cup water\n• 1 cup strawberries\n• 1 habanero with seeds\n
\n\n
\n

Instructions for Strawberry Habañero Syrup:

\n
\n\n
1. Bring everything to a simmer and let cook for about 5 minutes over medium heat.\n2. Strain the syrup through a chinoise and reserve juice. Discard the berries and pepper.\n3. Chill the syrup.\n
\n\n
\n

Making the drink

\n
\n\n
1. Combine ice, the syrup, the lime juice and the liquor in a cocktail shaker.\n2. Shake vigourously and then pour into a chilled ice filled glass. \n\n    Preparation time: 5 minute(s)\n\n    Cooking time: 5 minute(s)\n\n    Number of servings (yield): 2\n
\n\n

Granted - you're asking about Vodka infusions... This is my relevant experience with infusions and simple syrups. 10/10 will make this margarita again.

\n", "OwnerUserId": "22", "LastActivityDate": "2017-05-01T18:05:12.667", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6815"}} +{ "Id": "6815", "PostTypeId": "2", "ParentId": "6812", "CreationDate": "2017-05-02T13:16:22.307", "Score": "4", "Body": "

So, when I owned my winery (after 15 years I had to shut it down) I went through distributors and agents. Distributors typically buy the wine from me at a 50% discount from the retail price and then mark it up to the 30% discount mark and sell it to retail/restaurant at that price, where the retailer marks it up to to whatever they want.

\n\n

So, let say I have a $10 bottle of wine. I sell it to a distributor for $5. They mark it up to $7 and sell it to retail. Retailers usually will sell it for around 100% of the price you suggest. Restaurants sell at usually 200% of retail.

\n\n

So, on a $10 bottle of wine the distributor is making $3 a bottle. That's what we have to work with. Of that $3 there are overhead costs, profits and % goes to the salesman. I once worked with a commission only wine sales guy and he was making 10% on a case of wine. So in our theoretical exercise he makes $1 a bottle or $12 a case. I think 10-12% is typical for commission only sales.

\n\n

Being a wine salesman is a tough business and it takes a lot of relationship building and cold calls and super thin margins. Good Luck!

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-05-02T15:57:54.230", "LastActivityDate": "2017-05-02T15:57:54.230", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6816"}} +{ "Id": "6816", "PostTypeId": "2", "ParentId": "6811", "CreationDate": "2017-05-02T14:18:19.243", "Score": "2", "Body": "

Certain people can have very individualistic headache triggers. For me it is second hand smoke. There are quite a few references on the internet tying Splenda to migraines so perhaps it so for you, at least in combination with alcohol. In any case, I'd pitch your experiment. Vodka typically has 65 calories per ounce. Sugar is about 111. However, you probably don't add that many ounces of sugar to your bottle of vodka so most of the calories will come from the ethanol. Some people substitute agave nectar which supposedly has a lower glycemic index than granulated sugar and may be healthier.

\n", "OwnerUserId": "6370", "LastActivityDate": "2017-05-02T14:18:19.243", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6817"}} +{ "Id": "6817", "PostTypeId": "2", "ParentId": "6782", "CreationDate": "2017-05-02T14:56:36.663", "Score": "3", "Body": "

Madeira is a fortified wine and very very sturdy. Pretty hard to ruin it. I would not decant it but let it settle to the proper temperature. If you have it too cold you miss some of the flavor and too warm the alcohol is too prominent.

\n\n

http://www.vinhomadeira.pt/Temperature-208.aspx

\n\n

It is usually recommended that the wine be served at between 13 and 14º for younger wines while older wines, given their greater complexity, should be served at a temperature varying between 15ºC and 16ºC.

\n", "OwnerUserId": "6712", "LastActivityDate": "2017-05-02T14:56:36.663", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6818"}} +{ "Id": "6818", "PostTypeId": "2", "ParentId": "6443", "CreationDate": "2017-05-02T15:39:27.813", "Score": "2", "Body": "

This - kind of - answers your question. The breakdown of sour mashing in beer cannot be too different. The article linked explains the process with amazing detail. Here are some pertinent highlights:

\n\n
\n

Sour mashing requires only a small deviation from your normal routine and has three goals:

\n
\n\n
 1. Create an optimal environment for Lactobacillus.\n\n 2. Prevent spoiling organisms from producing foul aromatics and flavors.\n\n 3. Drop pH to produce desired amount of acidity/sourness.\n
\n\n
\n

The main difference between sour mashing and kettle souring is that sour mashing occurs before sparging with the mashed grains still present while kettle souring occurs after sparging with the full pre-boil volume (and frequently in the boil kettle). Additionally, sour mashing will have a moderately higher gravity because it is undiluted first runnings.

\n
\n\n

\"Sour\nI assume the sour mashing aspect of this is what happens when distilling whiskey.

\n", "OwnerUserId": "22", "LastActivityDate": "2017-05-02T15:39:27.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6819"}} +{ "Id": "6819", "PostTypeId": "1", "CreationDate": "2017-05-02T22:46:44.247", "Score": "7", "ViewCount": "1143", "Body": "

My wife loves drinking Moscato and Stella Rosa but they don't intoxicate her. I have to occasionally spike her drinks (obviously knowingly) with whiskey for her to feel a \"buzz.\" Are there any wines that are maybe not as sweet as the 2 mentioned but less dry that provider maybe like a 12 to 15% alcohol content?

\n", "OwnerUserId": "6693", "LastEditorUserId": "9887", "LastEditDate": "2020-01-24T16:16:43.870", "LastActivityDate": "2020-01-24T16:16:43.870", "Title": "Wine recommendation on the sweet side with 12 to 15% alcohol", "Tags": "wine recommendations red-wine", "AnswerCount": "7", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6821"}} +{ "Id": "6821", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2017-05-03T07:48:05.743", "Score": "6", "Body": "

Most fortified wines such as port, Madeira, (sweet) sherry, Commandaria are both very sweet and are very high in alcohol. Many are in the range of 20% ABV. I would strongly [pun intended] suggest seeing if she enjoys Port or Madeira. My personal favourite strong, sweet wine is Elysium Black muscat. It is so sweet that I commonly have it as dessert in restaurants.

\n", "OwnerUserId": "909", "LastActivityDate": "2017-05-03T07:48:05.743", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6822"}} +{ "Id": "6822", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2017-05-03T11:39:08.983", "Score": "6", "Body": "

It depends on how sweet you are looking for. If you are looking for very sweet than dessert wines are the way to go, a Sauternes or Mustacel will be at least 12% if not higher. If all you want is a fruitier wine then many German white wines like Rieslings or Gewürztraminers tend to be on the sweet side, sometimes too sweet for many palates. Slightly less sweet whites are Sauvignon Blancs, Chenin blancs, soaves, the list goes on. All of these should be above 12%

\n\n

Reds are tough for people with sweet palates, there are red dessert wines out there, and there are sweeter reds but there's no variety I can think of that is reliably sweeter. Roses are often sweet, especially the cheaper ones like White Zinfandel, but those can be low quality. A good Zinfandel red is a great wine, but not what I'd consider sweet.

\n", "OwnerUserId": "5528", "LastEditorUserId": "5528", "LastEditDate": "2017-05-03T12:57:00.223", "LastActivityDate": "2017-05-03T12:57:00.223", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6823"}} +{ "Id": "6823", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2017-05-03T13:18:33.827", "Score": "4", "Body": "

A little primer on alcohol and sugar in wine. The lower the alcohol is usually associated with higher acid levels because the grapes are picked less ripe. Champagne is a good example of this. To offset the biting acids, winemakers usually add sugar to compensate. That's why so many low alcohol wines are sweet.

\n\n

Can you find higher alcohol wines that are sweeter? Sure, dessert wines come to mind. Sauternes, Ice Wines, Tokay, Late Harvest wines are sweet with more alcohol. A lot of mainstream wine brands, like Sutter Home are purposely made sweeter. Unfortunately, the cheaper the wine, usually the sweeter it is.

\n\n

Like I always mention here, wine is an adventure that only you can travel. You need to discover what you like (or your wife in this case). But I think these are several recommendations that should set you on the path.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-05-05T14:34:19.450", "LastActivityDate": "2017-05-05T14:34:19.450", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6824"}} +{ "Id": "6824", "PostTypeId": "2", "ParentId": "6785", "CreationDate": "2017-05-03T15:17:11.797", "Score": "4", "Body": "

I know of two methods:

\n\n
    \n
  1. Add some aroma-containing plant-material (herbs, spices, fruit-peel, ...) into a bottle of vodka and let it rest to infuse. Remove when desired taste is achieved. An infusion with bison grass is well known in Poland as Zubrowka. Some examples:

    \n\n
      \n
    • lemongrass
    • \n
    • sage (mix result with lime-juice and sugar)
    • \n
    • orange-peel
    • \n
    • juniper (that's kind of how gin is made, i fact just look at a list of gin-botanicals to get ideas)
    • \n
    • rosemary
    • \n
    • cinnamon
    • \n
    • safron
    • \n
  2. \n
  3. Dissolve some candy in a bottle of vodka. Where i come from a handful of blue mint cooler candy dissolved in vodka is called \"smurf pee\". Just use real candy made from real sugar and all the flavours are yours. It tastes awfully artificial, but a lot of people like it.

  4. \n
\n", "OwnerUserId": "5532", "LastActivityDate": "2017-05-03T15:17:11.797", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6825"}} +{ "Id": "6825", "PostTypeId": "2", "ParentId": "6785", "CreationDate": "2017-05-03T18:37:36.123", "Score": "1", "Body": "

I actually use skittles to add flavor to vodka.The process takes a while to complete the process and get all the flavor. I found instructions that seem to be the equivalent to what I do(except I use coffee filters). Separation of the skittles is key in my opinion but whow knows you may come up with a combination that you really love. I personally just buy a large bag from Amazon.

\n\n

Skittle Vodka Tutorial

\n", "OwnerUserId": "6693", "LastActivityDate": "2017-05-03T18:37:36.123", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6826"}} +{ "Id": "6826", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2017-05-05T02:47:32.890", "Score": "3", "Body": "

Please consider the sweet and fortified wines of the Rhone with Muscat de Beaumes de Venise being the kind of wine that might give satisfaction allround. I find that the great house of E. Guigal offers an excellent price/quality/ratio for this wine.

\n", "OwnerUserId": "5816", "LastActivityDate": "2017-05-05T02:47:32.890", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6827"}} +{ "Id": "6827", "PostTypeId": "1", "AcceptedAnswerId": "6831", "CreationDate": "2017-05-05T19:29:54.227", "Score": "6", "ViewCount": "4054", "Body": "

What is the strongest alcoholic drink that was drank within the European nations during the Middle Ages (5th to the 15th century)?

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-07T14:59:48.173", "Title": "What is the strongest alcoholic drink that existed during the Middle Ages in Europe?", "Tags": "history drink europe", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6828"}} +{ "Id": "6828", "PostTypeId": "2", "ParentId": "6827", "CreationDate": "2017-05-05T20:03:42.603", "Score": "0", "Body": "

I don't know for certain but movies set in that time period and region seem to indicate mead was fairly popular and its ABV could be more than 20% according to wikipedia.

\n\n

Stronger beverages like Absinthe, Gin and Vodka do not seem to have been invented by then.

\n", "OwnerUserId": "6725", "LastActivityDate": "2017-05-05T20:03:42.603", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6829"}} +{ "Id": "6829", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2017-05-05T20:12:36.027", "Score": "3", "Body": "

My favourite wine varietal these days is Portguese Vinho Verde which is a super-sweet white wine.

\n\n

Two major brands are Sogrape Gazela Vinho Verde at 9% ABV, sugar content 11g/L or Caves Alianca Vinicola De Sangalhos Vinho Verde which is actually 10% ABV, sugar content 14g/L

\n", "OwnerUserId": "6725", "LastActivityDate": "2017-05-05T20:12:36.027", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6830"}} +{ "Id": "6830", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2017-05-05T20:32:09.500", "Score": "0", "Body": "

Yes order what you want but in Canada our biggest lottery system is called 6/49 and if you ask your bartender for a 6/49 then it becomes a way for them to showcase their skills because they will then literally serve you anything that they think you will like.

\n\n

However, some of the go-to drinks I tend to order at bar (excluding beers and wines) are usually rail drinks like gin & tonic; gin & gingerale; diet coke & tequila (trust me on this that it doesn't taste as good with either diet pepsi or non-diet coke); but when getting fancy I'll go for a mojito, a Ceasar or a SoCo Ameretto Lime (mostly due to a song by a fave band of mine when I was a kid). I keep also hearing in certain circles about the resurgence of older cocktails like the Old-Fashioned, Whiskey Sour and Tom Collins.

\n\n

However, the best approach would be to be upfront with your bartender, tell him you don't know what you like and are wiling to try anything they make. They might ask you palate-testing questions (like what you like to eat or not) and if you answer honestly, you'll likely end up with a great cocktail recommendation from them.

\n", "OwnerUserId": "6725", "LastActivityDate": "2017-05-05T20:32:09.500", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6831"}} +{ "Id": "6831", "PostTypeId": "2", "ParentId": "6827", "CreationDate": "2017-05-06T14:42:00.163", "Score": "4", "Body": "

In the History and Taxonomy of Distilled Spirits There is ample evidence that distilled spirits were available during the time period you mentioned in a variety of places. We know that that Greek Alchemists developed the distillation processes about 1 AD and that a true distillation process was developed in Italy in the 1200s at the School of Salerno and Fractional Distillation was developed in the 1300s in Italy again. (Distilled Beverages Wikipedia) In 1313 there is evidence that Brandy had been made, although not widespread.

\n\n

Then it seems in the 1400s, the doors open wide across Europe for distilled spirits.

\n\n
\n

Claims upon the origin of specific beverages are controversial, often\n invoking national pride, but they are plausible after the 12th century\n AD, when Irish whiskey and German brandy became available. These\n spirits would have had a much lower alcohol content (about 40% ABV)\n than the alchemists' pure distillations, and they were likely first\n thought of as medicinal elixirs. Consumption of distilled beverages\n rose dramatically in Europe in and after the mid-14th century, when\n distilled liquors were commonly used as remedies for the Black Death.\n Around 1400, methods to distill spirits from wheat, barley, and rye\n beers, a cheaper option than grapes, were discovered. Thus began the\n \"national\" drinks of Europe: jenever (Belgium and the Netherlands),\n gin (England), Schnaps (Germany), grappa (Italy), borovička\n (Slovakia), horilka (Ukraine), akvavit/snaps (Scandinavia), vodka\n (Poland and Russia), ouzo (Greece), rakia (the Balkans), and poitín\n (Ireland). The actual names emerged only in the 16th century, but the\n drinks were well known prior to then.

\n
\n\n

So, from about 500AD to 1300 AD, it was possible you could find distilled spirits, they were not widely available. Then in the 1300s distilled spirits spread across Europe and became widely available by the 1500s. Which one was actually the strongest? We'll never know but 90+% ABV was probably achievable with 1500s technology.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-05-07T14:59:48.173", "LastActivityDate": "2017-05-07T14:59:48.173", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6832"}} +{ "Id": "6832", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2017-05-08T07:44:51.013", "Score": "1", "Body": "

If it's busy just grab a double Gin and Tonic and sip on that for half an hour or so while the bar settles down. Once it gets quieter you can ask the bartender for a recommendation on a local IPA and try something like Mojo in the Denver airport. After that you should try something seasonal. For instance, if it's Cinco De Mayo you might want a couple tequila shots and some Coronas to follow that up. Well, at least that's what I did Friday when my flight to LA was delayed. Cheers, to whatever you choose to enjoy... responsibly of course.

\n", "OwnerUserId": "6730", "LastActivityDate": "2017-05-08T07:44:51.013", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6834"}} +{ "Id": "6834", "PostTypeId": "1", "CreationDate": "2017-05-13T13:43:19.537", "Score": "2", "ViewCount": "154", "Body": "

Are there any unique drinks out there to pair with Halloween in order to make it truly memorable?

\n\n

We like having a Halloween party in an area with some so called haunted houses and where stories of Sasquatches abound. we have a grand old time with stories, movies and eats the whole week of Hell Week (the week leading up to Halloween).

\n\n

For my part, I would like to bring the following eats to our evening soirees:

\n\n
    \n
  • My own variation of the Croque Monsieur. The béchamel sauce that I make contains enough Keens Mustard to make your eyes weep and your nose run. These are best served warm to hot, but can be eaten cold.
  • \n
  • Mummy Dogs or something resembling Piggy Coffins.
  • \n
  • Green pasta salad dish of sorts.
  • \n
  • Stuffed Jack-O-Lanterns Bell Peppers which after my Croque Monsieurs are my favorite.
  • \n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-10-13T02:53:35.237", "LastActivityDate": "2017-10-13T02:53:35.237", "Title": "Unique drinks to make Halloween memorable?", "Tags": "pairing drink holidays", "AnswerCount": "3", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6835"}} +{ "Id": "6835", "PostTypeId": "2", "ParentId": "6834", "CreationDate": "2017-05-13T13:57:49.973", "Score": "0", "Body": "

Why not try some orange wine. Pumpkins and pumpkin colored foods and drinks are often associated with Halloween.

\n\n

Crushing: Orange Wines

\n\n
\n

“That’s right: red, pink and white have company,” exclaimed a recent newsletter from the Chelsea Wine Vault. Laden with cartoony images of a wine glass filled with bright orange liquid and a grape vine dangling bright orange grapes, the newsletter featured an infamous, under-the-radar vino known as orange wine. Save all judgment! Unlike gimmicky green beer sold on St. Pat’s Day, orange wine has a legitimate backstory…

\n \n

The practice of making orange wines, despite its relative anonymity, spans centuries, dating all the way back to Eurasian wine production in Georgia (and we’re not talking the Peachtree State here). Much of the orange wine that is commercially distributed today comes from Italy (specifically its northeastern Friuli region), but other producers include France, Germany and California.

\n
\n\n

\"Orange

\n\n

Orange Wines -- A great get for your Halloween Party? Photograph by: Tom Censani

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-13T13:57:49.973", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6836"}} +{ "Id": "6836", "PostTypeId": "1", "CreationDate": "2017-05-13T14:39:57.907", "Score": "6", "ViewCount": "2608", "Body": "

What food stuffs pair well with orange wine?

\n\n

This website has a little information on orange wines: Crushing: Orange Wines.

\n\n

But what I would like to know is what foods go well with these orange wine and why they are paired as such?

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-29T11:40:51.083", "Title": "What dishes pair well with orange wine?", "Tags": "wine pairing", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6837"}} +{ "Id": "6837", "PostTypeId": "2", "ParentId": "6834", "CreationDate": "2017-05-14T16:18:45.717", "Score": "2", "Body": "

I tend to think of drinks with scary names. Specifically you could serve Zombie Dust from 3 Floyds Brewing which has the advantage of being a really excellent beer.

\n\n

\"enter

\n\n

A Google search for \"Halloween themed beer\" will yield several articles with similarly scary named beers such as here and here.

\n\n

Lastly, there is the Pumpkin Ale beer style.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2017-10-10T20:38:38.357", "LastActivityDate": "2017-10-10T20:38:38.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6838"}} +{ "Id": "6838", "PostTypeId": "1", "CreationDate": "2017-05-14T19:24:05.453", "Score": "7", "ViewCount": "90456", "Body": "

Tequila happens to be just about the only liquor I enjoy. Recently, I was talking to some guys from Mexico who know their tequila pretty well. One of the older guys was telling me he sometimes enjoys keeping tequila in the freezer as it completely changes the flavour (I guess to something better/positive).

\n\n

Is it a bad idea for any reason to store tequila in the freezer, and does it matter what type of tequila it is?

\n", "OwnerUserId": "6743", "LastEditorUserId": "5064", "LastEditDate": "2017-05-15T12:10:10.110", "LastActivityDate": "2021-09-19T20:48:49.333", "Title": "Storing tequila in the freezer?", "Tags": "storage tequila", "AnswerCount": "7", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6839"}} +{ "Id": "6839", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2017-05-15T02:40:32.253", "Score": "1", "Body": "

I don't have any first hand knowledge about this, but I've heard this can be dangerous. Since tequila has alcohol, it isn't going to freeze. Depending on how cold the freezer is there may be potential for damage to tissues in your mouth. Perhaps this is or isn't true, but you might want to do some research before trying it.

\n\n

I did some casual Googling and found a lot of people freezing booze and drinking so perhaps typical freezer temperatures are Okay. One worrisome hit was this however:

\n\n
\n

Conduction is the transfer of heat to objects or substances in direct\n contact. Your tongue sticking to the flagpole in grade school is a\n perfect example of how tissue can almost instantly freeze when in\n contact with cold metal, an excellent heat conductor. Keep in mind\n that alcohol is also an excellent conductor and often freezes at much\n colder temperatures than water, so if you bring a beer out on your\n next cold-weather adventure, don’t throw back a few swigs until you’ve\n checked its temperature. Extremely cold alcohol can instantly freeze\n and damage your lips, tongue or other mouth tissue. And if the alcohol\n comes in contact with your throat or esophagus, that can turn out to\n be deadly.

\n
\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2017-05-15T14:30:15.193", "LastActivityDate": "2017-05-15T14:30:15.193", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6840"}} +{ "Id": "6840", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2017-05-15T12:09:01.163", "Score": "4", "Body": "

Storing tequila in the freezer?

\n\n

I doubt that storing tequila in your freezer will make it taste better, but under certain conditions it could preserve the great taste of tequila. Storing your liquor in general in a freezer is not a bad idea at all, but is only possibly necessary at certain times.

\n\n
\n

For the most part, there’s no need to refrigerate or freeze liquor whether it’s still sealed or already opened.

\n \n

Hard liquors like vodka, rum, tequila, and whiskey; most liqueurs, including Campari, St. Germain, Cointreau, and Pimm’s; and bitters are perfectly safe to store at room temperature. Essentially every liquor mentioned in this Bar Cart post on stocking your home bar with the notable exception of already-opened vermouth can and should be stored without refrigeration.

\n \n

That notable exception of vermouth I mentioned above is because vermouth is actually a fortified wine. And like regular wine, it will eventually oxidize, so it needs to remain in the fridge once it’s been uncorked. Vermouth and dessert wines like vin santo, ice wine, and the like thankfully have a longer refrigerator shelf life than their regular wine counterparts, and won’t turn vinegary and sour in the span of a few days. But they will slowly start to lose their nuances of flavor, and after a few months—six, max—they’re probably goners. - How Should I Store My Booze?

\n
\n\n

Storing tequila

\n\n
\n

Like almost any other alcohol (besides some liqueurs), tequila should be stored in a cool and dry area. Therefore, the pantry seems to be the best possible choice, but if you don’t plan to open the bottle within the next few weeks or months, you can store it in the cellar (if there’s not enough space in the pantry). After opening the bottle please remember that you should always keep the bottle tightly sealed when not in use. Don’t ever store it with a pourer on or without its cap.

\n \n

Tightly sealed bottle ensures two things. First – any impurities won’t be able to find their way into the bottle. Second – if the bottle stays opened without its cap, the liquid evaporates quicker than when it’s sealed. Because alcohol evaporates quicker than water, your tequila will slowly become milder with time (after opening the bottle for the first time).

\n \n

When the bottle is less than half full and you won’t consume the rest of its contents within a couple of weeks, it’s a good idea to pour the liquid into a smaller bottle. More air in the bottle equals faster evaporation and oxidation, both of them causing the quality of tequila to slowly deteriorate.

\n \n

The shelf life of tequila is indefinite if the seal remains undamaged. If not consuming your tequila in a relatively short time I would not hesitate to put it in the refrigerat

\n \n

First thing that not everyone is familiar with is that spirits, unlike wines, don’t age after being bottled. That means that storing tequila for years won’t make its taste better. When it comes to shelf life of tequila, it’s basically indefinite, as long as its seal isn’t compromised. If you store an unopened bottle in the pantry for quite a few years now, you can be almost sure that it’s fine now and it should be of great quality. After the bottle is opened for the first time, it’s recommended to drink tequila within a couple of months, when its quality is still at its best.

\n
\n\n

With freezing temperatures be sure your bottles will not explode.

\n\n
\n

The average home freezer is about -17 C (-1 F). This is cold enough to freeze your food and ice, but not cold enough to freeze the average bottle of 80-proof liquor.

\n \n

■ Storing your favorite bottle of vodka in the freezer is okay.

\n \n

■ Placing that prized limoncello in the freezer for a quick chill is a good idea. What is the Freezing Point of Alcohol?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-15T12:09:01.163", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6841"}} +{ "Id": "6841", "PostTypeId": "1", "AcceptedAnswerId": "7336", "CreationDate": "2017-05-15T15:39:39.800", "Score": "5", "ViewCount": "351", "Body": "

The question is:

\n\n
    \n
  • What are the qualitative and quantitative differences between inebriation caused by liquor wine and beer?
  • \n
\n\n

Anecdotal evidence suggests to me that the core difference between the three is that beer contains hops, while liquor/wine doesn't, and so beer tends to have a depressive + dis-inhibition effect, while liquor and wine provide the dis-inhibition effect without being an explicit depressant.

\n\n

I wonder, though, has this ever been studied and concluded on? Are the differences that I mentioned above accurate? Are there any other differences?

\n", "OwnerUserId": "938", "LastActivityDate": "2018-06-13T12:13:29.820", "Title": "Is there a difference between the inebriation caused by liquor/wine/beer?", "Tags": "inebriation", "AnswerCount": "1", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6842"}} +{ "Id": "6842", "PostTypeId": "1", "CreationDate": "2017-05-15T15:44:51.857", "Score": "3", "ViewCount": "1438", "Body": "

I'm a total novice, so excuses for what is likely a ridiculously stupid question. I know that a MARTINI is a drink (like a gin martini, vodka martini) but there is also a bottled drink called \"MARTINI\", in many varieties (extra dry - torino, bianco, rosso, and so on). What's the relation between MARTINI-the-drink and MARTINI-the-brand?

\n\n

I use MARTINI-the-brand to make Negronis, to mix with tonic, and so on, and these drinks are obviously not martinis, even though they're made with a drink which has the word MARTINI on the label.

\n\n

Thanks!

\n", "OwnerUserId": "6745", "LastActivityDate": "2017-05-15T16:01:11.250", "Title": "What's Martini (the brand)?", "Tags": "cocktails spirits", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6843"}} +{ "Id": "6843", "PostTypeId": "2", "ParentId": "6842", "CreationDate": "2017-05-15T16:01:11.250", "Score": "6", "Body": "

Martini the brand is an Italian vermouth made by Martini & Rossi.

\n\n

Traditionally, martini the drink is a concoction made with gin and vermouth, and a strong (but unproven) theory as to its etymology is that martini the drink was originally named after Martini the brand.

\n", "OwnerUserId": "37", "LastActivityDate": "2017-05-15T16:01:11.250", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6846"}} +{ "Id": "6846", "PostTypeId": "1", "AcceptedAnswerId": "7727", "CreationDate": "2017-05-18T18:14:12.113", "Score": "4", "ViewCount": "114", "Body": "

Last October, being in Northern Italy I really enjoyed a couple of sorts of Birra Moretti Beers of the Le regionali series.

\n\n

Now, in Southern Italy (Campania) I would like to taste other sorts but I don't see these beers in food shops. Are these beers still available and I just have to go to a bigger grocery store, or were they limited and are not available any more, or are they not available in the South at all?

\n", "OwnerUserId": "4742", "LastEditorUserId": "5064", "LastEditDate": "2017-05-19T11:40:09.333", "LastActivityDate": "2019-05-11T16:12:06.810", "Title": "Are Birra Moretti Beers from the series \"Le regionali\" still available?", "Tags": "specialty-beers local", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6847"}} +{ "Id": "6847", "PostTypeId": "2", "ParentId": "6779", "CreationDate": "2017-05-21T14:51:44.037", "Score": "3", "Body": "

Wine and movie pairing, although not a very popular item these days, some people seem to be into it.

\n\n

Here are a few examples, for what they are worth.

\n\n

Silence of the Lambs (1991) can be paired with Chianti and Suit Yourself Pinot Grigio.

\n\n
\n

Alamo Drafthouse is releasing two wines that pay tribute to the classic killer chiller: Cannibal Chianti and Suit Yourself Pinot Grigio.

\n \n

Italian-grown Cannibal Chianti is a 85% Sangiovese blend with Canaiolo and Malvasia del Chianti, a DOCG wine from a vineyard between Florence and Sienna. Alamo notes that it has “savory plum and tobacco leaf notes.” Suit Yourself Pinot Grigio — a reference to “Lambs” killer Buffalo Bill’s penchant for wearing suits made of women’s skin — is a California wine from the Central Coast and inland vineyards with notes of “tropical peach and Mexican limes with just a hint of honey.” - Silence of the Lambs’ Wines From Alamo Drafthouse: Quaff Some Cannibal Chianti

\n
\n\n

One must admit that Hannibal Lecter is one sick dude.

\n\n
\n

What most people seem to remember about Silence of the Lambs is not when Hannibal Lecter triumphs while shooting two FBI agents, but when Lecter tries to scare off FBI trainee Foster. Lecter says, \"A census taker once tried to test me. I ate his liver with some fava beans and a nice Chianti.\" - Wines Made Famous by the Movies

\n
\n\n

Frankenstein (1931) or any Frankenstein movie may be paired with Francis Coppola Director’s Frankenstein Cabernet Sauvignon 2014 California.

\n\n
\n

\"The Monster\" is Boris Karloff's signature film role, and much like a finely crafted bottle of wine, his performance is the result of dedication, study and collaboration with other expert filmmakers.Prepare to be stirred by Dr. Frankenstein's creation and this thrilling Cabernet Sauvignon. - Movie & Wine Pairing

\n
\n\n

If you are a Cleopatra fan you may try a blend of Zinfandel and Pinot Noir called Cleopatra 2014 California.

\n\n
\n

Inspired by the legendary allure of the Queen of the Nile, Cleopatra’s namesake red showcases the bounty of California’s stellar 2014 vintage. It’s a bramble- and spice-packed blend of Zinfandel and Pinot Noir, masterfully blended with California rarities like Mourvèdre, Alicante Bouschet and Barbera and more. Winemaker Rob McNeill, of Sonoma’s famed Don Sebastiani & Sons, gave this tempting potion further intrigue with a little oak aging. As you’ll discover, there’s (still) no resisting Cleopatra. - Movie & Wine Pairing

\n
\n\n

Of coarse James Bond is quite unique in his wine pairs of his 22 episodes, so I will give only three examples here:

\n\n
\n

“On Her Majesty’s Secret Service”: This is the first of two 007 movies in which the spy truly falls in love, so let’s go with something romantic, pink bubbles: the very-berry-ish, refined Schramsberg Brut Rosé.

\n \n

“Diamonds Are Forever”: My favorite Bond wine moment ever is when he uses two assassins’ ignorance about Bordeaux to out and wipe out the dastardly duo. So the tippling tout is the earthy but elegant Chateau D’Argadens Bordeaux Superiore.

\n \n

Goldfinger”: For me (and countless others), this is the perfect Bond film: nonpareil villain, thug and “Bond girls.” So we need a near-perfect wine; let’s splurge and go with the always-stellar Chateau de Beaucastel Châteauneuf-du-Pape. - What wine goes with each James Bond movie?

\n
\n\n

One is able to see more wine and movie parings here with such titles as the West Side Story or movies of Alfred Hitchcock or Orson Wells and many more.

\n\n

\"Orson

\n\n

Orson Welles Signature Selection Merlot 2013

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-21T14:51:44.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6848"}} +{ "Id": "6848", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2017-05-22T13:04:42.663", "Score": "3", "Body": "

Mixing vodka with beer is a great mix and has a definite following and is absolutely safe when drinking responsibly.

\n\n

The Urban Dictionary defines this mix as a Vodkabeer.

\n\n
\n

Vodkabeer

\n \n

A delicious mixed drink comprised of beer (usually of the lowest quality) and vodka (always from a plastic handle). The vodka is poured directly into the beer can after several sips have been taken. The vodka and beer enhance each other's flavors and the result is a drink much greater than the sum of its parts. In some circles a vodkabeer is also known as a skelly. The drink is believed to originate in the Worcester, MA area, mainly at Holy Cross and WPI.

\n
\n\n

As Altbier is not Old Beer notes in his excellent answer the Russians call this particular mix a Yorch.

\n\n
\n

Yorsh

\n \n

An alcoholic-drink of Russian origin, where an ample amount of vodka is added to beer. Vodka, being largely flavourless, does not greatly alter the taste of beer but does increase the alcohol content significantly.

\n
\n\n

Here is an example of a Yorsh, but then who measures vodka:

\n\n
\n

Ingredients

\n \n

◾ 2 oz (60 ml) Vodka

\n \n

9 oz (270 ml) Beer

\n \n

Directions

\n \n
    \n
  1. Fill a beer mug or stein 3/4 full with beer

  2. \n
  3. Add the vodka

  4. \n
  5. Serve

  6. \n
\n
\n\n

Here is one vodkabeer for summer hot summer days:

\n\n

Beer of the Tropics

\n\n
\n

Ingredients:

\n \n

1 oz. Van Gogh Cool Peach Vodka

\n \n

1 oz. Van Gogh Coconut Vodka

\n \n

1 1/2 oz. Pineapple juice

\n \n

Top with IPA style beer

\n \n

Preparation: Build ingredients directly into highball glass with ice. When pouring beer, pour slowly. Garnish with a lime wheel.

\n
\n\n

Note: Not responsible any hangovers or any nasty aftertastes!!!!! Enjoy your vodka-beer cocktails everyone.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-22T13:04:42.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6849"}} +{ "Id": "6849", "PostTypeId": "1", "CreationDate": "2017-05-22T14:09:24.520", "Score": "2", "ViewCount": "81", "Body": "

What drinks can be paired to a particular legend or myth?

\n\n

We all know that that many people drink to the legendary person of St Patrick. But what I am interested in is in knowing if there are any drinks associated (paired) with a particular legend or myth (Christian or otherwise) and not simply to an historic or legendary person in some general sense. In other words, the pairing must associated to a particular event within a legend or myth.

\n\n

I am not willing to include folklore at the moment!

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-24T11:52:42.117", "Title": "What drinks can be paired to a particular legend or myth?", "Tags": "history pairing drinking", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6850"}} +{ "Id": "6850", "PostTypeId": "1", "AcceptedAnswerId": "6851", "CreationDate": "2017-05-22T14:44:27.960", "Score": "6", "ViewCount": "9405", "Body": "

What beers and other drinks did Native Indians brew in the Americas prior to the arrival of Europeans, with Christopher Columbus in 1492? The fact that alcohol was unknown in the Americas is only a myth.

\n\n

What sort of alcohol drinks existed in the New World prior to Columbus' voyage of discovery in 1492?

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-24T11:11:32.000", "Title": "What beers or other drinks did Native Indians brew in the Americas prior to the arrival of Europeans in 1492?", "Tags": "history drink", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6851"}} +{ "Id": "6851", "PostTypeId": "2", "ParentId": "6850", "CreationDate": "2017-05-22T15:03:24.923", "Score": "2", "Body": "

From 'Indians of North America' by Harold Driver.

\n
\n

The distribution of alcoholic beverages falls almost wholly within the bounds of horticulture. However, there was a sizeable area in Northeast Mexico which was without agriculture and where wine was made from wild plants. For the world as a whole, there is a definite correlation between alcoholic beverages and agriculture, although negative instances can also be found in the Old World. The explanation is a simple one--the liquors were made principally from domesticated plants. It is commonly assumed either that knowledge of the fermenting of these plants spread with the plants or that the making of the liquor from the plant could spread only as far as the plant was known.

\n

e.g. Agave and Dasylirion -- Two distinct plants were widely used in the Southwest, Meso-America, and Northeast Mexico for the production of alcoholic beverages. They were even more widely used as food. It has been conjectured that before the time when agriculture was common, say, in the second or third millennium BC these plants were a staple food or even the staple food of a large part of the region. In the Southwest, the wine was usually made from the cooked juice of the agave, not from the fresh juice as in Meso-America.

\n
\n

So from this I'm going to infer that technologically most native tribes who knew of fermentation would have been restricted to that form of alcohol production, and so wine would be the only form of alcohol available pre-European contact. It's also safe to say that wine production only occurred within cultures that had ferment-able produce available to them.

\n", "OwnerUserId": "938", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-05-22T15:03:24.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6852"}} +{ "Id": "6852", "PostTypeId": "2", "ParentId": "6850", "CreationDate": "2017-05-22T15:13:44.507", "Score": "2", "Body": "

Prior to 1492 Native Americans actually brewed various alcoholic drinks.

\n\n
\n

Prior to contact with colonists, alcohol use and production was mainly concentrated in the southwestern United States. Some tribes produced weak beers, wine and other fermented beverages, but they had low alcohol concentrations (8%-14%) and were to be used only for ceremonial purposes. The distillation technique required to make stronger, potent forms of alcohol were unknown. It was well documented that Mexican Native Americans prepared over forty different alcoholic beverages from a variety of plant substances, such as honey, palm sap, wild plum, and pineapple. In the Southwestern U.S., the Papago, Piman, Apache and Maricopa all used the saguaro cactus to produce a wine, sometimes called haren a pitahaya. The Coahuiltecan in Texas combined mountain laurel with the Agave plant to create an alcoholic drink, and the Pueblos and Zunis were believed to have made fermented beverages from aloe, maguey, corn, prickly pear, pitahaya and even grapes. To the east, the Creek of Georgia and Cherokee of the Carolinas used berries and other fruits to make alcoholic beverages, and in the Northeast, there is some evidence that the Huron made a mild beer made from corn. In addition, despite the fact that they had little to no agriculture, both the Aleuts and Yuit of Alaska were believed to have made alcoholic drinks from fermented berries. - Alcohol and Native Americans (Wikipedia)

\n
\n\n

Various Indian culture brewed different drinks according to what was available in the local areas.

\n\n
\n

In Mexico, some believe Native Americans used a corn precursor to make a brewed drink; they note: “the ancestral grass of modern maize, teosinte, was well suited for making beer – but was much less so for making corn flour.” In addition, it is well established that Mexican Native Americans prepared “over forty different alcoholic beverages [from] . . . a variety of plant substances, such as honey, palm sap, wild plum, and pineapple.”

\n \n

In the Southwestern U.S., the Papago, Piman, Apache and Maricopa all used the saguaro cactus to produce a wine, sometimes called haren a pitahaya. Similarly, the Apache fermented corn to make tiswin (also called tulpi and tulapai) and the yucca plant to make a different alcoholic beverage.

\n \n

The Coahuiltecan in Texas combined mountain laurel with the Agave plant to create an alcoholic drink, and the Pueblos and Zunis were believed to have made fermented beverages from aloe, maguey, corn, prickly pear, pitahaya and even grapes.

\n \n

To the east, the Creek of Georgia and Cherokee of the Carolinas used berries and other fruits to make alcoholic beverages, and in the Northeast, “there is some evidence that the Huron made a mild beer made from corn.” In addition, despite the fact that they had little to no agriculture, both the Aleuts and Yuit of Alaska were believed to have made alcoholic drinks from fermented berries.

\n \n

It should be noted, however, that most of these beverages were relatively weak, presumably no stronger than wine (which typically runs from 8-14% ABV). Whiskey, on the other hand, is usually 60% ABV, and grain alcohol (e.g., moonshine) is often 95% ABV. As a result, when Europeans introduced these stronger drinks, Native Americans were in for a shock. - Native Americans Were Not Introduced to Alcohol By Europeans

\n
\n\n

The Pueblo Indians actually brewed their own brand of corn beer.

\n\n
\n

Ancient Pueblo Indians brewed their own brand of corn beer, a new study suggests, contradicting claims that the group remained dry until their first meeting with the Europeans.

\n \n

Archaeologists recently found that 800-year-old potsherds belonging to the Pueblos of the American Southwest contained bits of fermented residue typical in beer production.

\n \n

Before the discovery, historians thought a pocket of Pueblos in New Mexico did not have alcohol at all, despite being surrounded by other beer-making tribes, until the Spanish arrived with grapes and wine in the 16th century.

\n \n

A thousand years ago, traditional Native American farming villages were already scattered across parts of New Mexico, Arizona and northern Mexico, divided among several tribes including the Apache, Pueblo, Navajo and the Tarahumara.

\n \n

Many of the tribes living in Mexico and some in Arizona are known to have produced a weak beer called tiswin, made by fermenting kernels of corn, but no evidence has ever been found that the same thing happened in New Mexico. - Beer Brewed Long Ago by Native Americans

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-05-24T11:11:32.000", "LastActivityDate": "2017-05-24T11:11:32.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6853"}} +{ "Id": "6853", "PostTypeId": "2", "ParentId": "6850", "CreationDate": "2017-05-22T16:53:38.320", "Score": "2", "Body": "

If you include Central and South America, there is a beverage that is still made today called Chicha

\n\n
\n

In South and Central America, chicha is a fermented or non-fermented beverage usually derived from maize.1[need quotation to verify] Chicha includes corn beer known as chicha de jora and non-alcoholic beverages such as chicha morada. Archaeobotanists have found evidence for chicha made from maize, the fruit of Schinus molle and Prosopis pods.2 Chichas can also be made from quinoa, kañiwa, peanut, manioc root (also called yuca or cassava), palm fruit, potato, Oxalis tuberosa, chañar or various other fruits.2\n While chicha is most commonly associated with maize, the word is used in the Andes for almost any homemade fermented drink, and many unfermented drinks.[3] Many different maize landraces, grains or fruits have been and can be used to make chicha in different regions.2 The way in which chicha is made and defined is likely to change depending on the region[4]

\n
\n\n

There is a native Brazilian drink called Cauim made from Manioc root:

\n\n
\n

Cauim preparation (like other cooking tasks) is strictly a women's job, with no involvement from the men. Manioc roots are sliced thin, boiled until tender, and allowed to cool down. Then women and girls gather around the pot; each repeatedly takes a mouthful of manioc, chews it, and puts it into a second pot (depending on the culture). Enzymes in the saliva then convert the starch into fermentable sugars. (Men firmly believe that if they were to chew the paste, the resulting beverage would not taste as good; and anyway they consider that work as inappropriate for them as spinning yarn would be for European men.) The chewed root paste is put back on the fire and stirred with a wooden spoon until completely cooked. The paste is then allowed to ferment in large earthenware pots (\"half as big as a Burgundy wine barrel\").

\n
\n\n

There are more, but these are probably the most well known from South America.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-05-22T16:53:38.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6854"}} +{ "Id": "6854", "PostTypeId": "2", "ParentId": "5182", "CreationDate": "2017-05-23T07:52:58.733", "Score": "2", "Body": "

You can buy it online from The Gull Liquor Store in BC.

\n\n

\"Liefmans

\n\n

Liefmans Fruitesse from The Gull Liquor Store!

\n\n

900–333 Brooksbank Ave.

\n\n

North Vancouver, BC

\n\n

Phone: 1-604-988-5545

\n\n

E-mail: info@gullliquorstore.com

\n", "OwnerUserId": "3722", "LastEditorUserId": "5064", "LastEditDate": "2017-10-26T22:42:53.903", "LastActivityDate": "2017-10-26T22:42:53.903", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6855"}} +{ "Id": "6855", "PostTypeId": "2", "ParentId": "5182", "CreationDate": "2017-05-23T11:00:17.077", "Score": "2", "Body": "

The Village Idiot Pub (126 McCaul St Toronto, Ontario M5T 1W2) sells Liefmans Fruitesse.

\n\n

Here is what they say about this craft beer:

\n\n
\n

Liefmans Fruitesse

\n \n

4.2% alc./vol. 33CL\n A fresh Belgian beer blend, maturing for 18 months on cherries in Liefmans cellars, artfully blended with natural juices of strawberry, raspberry, cherry, blueberry and juniper berry resulting in a fruity, pleasantly sweet, sparkling and refreshing beer.

\n
\n\n

Here is what the LCBO has to say about this must try craft Beer:

\n\n
\n

Red Berry

\n \n

Yes, “red berry”, because there’s some excellent combos out there. Both of our winners in this category come out of Belgium, but can be found in LCBOs and pubs around Ontario.

\n \n

Liefmans Fruitesse bills itself as an appetizer beer. It’s a deep red, cranberry juice colour, sparkling, and oh-so-juicy. It also tastes something like cranberry juice, with a bit more sweetness, and a nice alcoholic kick. Like how you (or at least Jess) wish wine would taste. There’s no cranberry involved though; it’s actually cherry, raspberry, elderberry, strawberry, and bilberry. - Best Fruit Beers You Can Find Locally

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-23T11:00:17.077", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6856"}} +{ "Id": "6856", "PostTypeId": "2", "ParentId": "6849", "CreationDate": "2017-05-24T11:43:40.907", "Score": "2", "Body": "

Judaeo-Christian, Greek and Roman mythologies have links to wine.\nPastafarians have a goat that gives beer from it's udder.\nNorsk myhtology references mead.

\n\n

And then you can always read articles from the Lords of the Drinks.

\n", "OwnerUserId": "984", "LastEditorUserId": "5064", "LastEditDate": "2017-05-24T11:52:42.117", "LastActivityDate": "2017-05-24T11:52:42.117", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6857"}} +{ "Id": "6857", "PostTypeId": "2", "ParentId": "6836", "CreationDate": "2017-05-25T09:24:27.823", "Score": "1", "Body": "

My two cents:

\n\n
    \n
  1. Orange wine + sheeps cheese.
  2. \n
\n\n

The cheese is rich, gooey, it'll support the sweetness of orange wine. I think it's better with a mature sheeps cheese like an aged Pecorino/Manchego.

\n\n
    \n
  1. Orange wine + apple pie/apfel gratin/apfelstrudel.
  2. \n
\n\n

Hahaha, inspired by my half-German half-Indonesian father. Being a seasonal vegetarian is kinda cool. You'll be the coolest vegetarian on earth.

\n\n
    \n
  1. Orange wine + Indonesian Kambing Guling (slow roasted young lamb shanks with Indonesian spices, herbs).
  2. \n
\n\n

Trust me the delicate meat of young lamb was born just to accompany orange wine. The spices, the herbs, the fat, will balance the structure of the wine. Here are some resources about Indonesian Bumbu/seasoning:

\n\n

Bumbu seasoning (Wikipedia

\n\n

Indonesian Herbs and Spices

\n\n

Herbs and Spices The most important part of Indonesian cooking

\n\n
    \n
  1. Orange wine + seafood + lemon + sliced/chopped raw onion.
  2. \n
\n\n

Helping your seafood addiction whilst battling cholesterol (thank me later). The sour lemon will soften the wine somewhat. What about the taste? So precious that its value can't be determined.

\n", "OwnerUserId": "3722", "LastEditorUserId": "5064", "LastEditDate": "2018-09-29T11:40:51.083", "LastActivityDate": "2018-09-29T11:40:51.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6858"}} +{ "Id": "6858", "PostTypeId": "2", "ParentId": "6804", "CreationDate": "2017-05-26T17:10:42.530", "Score": "2", "Body": "

Perhaps your mom is thinking that home brewing is like home canning, where a mistake can have disastrous results like growing botulism toxin. A little research into that problem shows that one of the common precautions in home canning is to add citrus juice or vinegar to the mixture of food being processed, and that it isn't required for tomato-based recipes such as stewed tomatoes or pasta sauce. Why does this help? Because there are no known pathogens that can live in acidic solutions, and citrus, vinegar and tomatoes all have relatively low pH.

\n\n

And this is why home brewing is a safe pastime: wort is naturally too acidic to support pathogen growth. Any microorganisms that grow in wort are safe to consume. Most of them will affect the flavor of the beer, and that is why we do our best to control them, but none of them can harm you.

\n", "OwnerUserId": "381", "LastActivityDate": "2017-05-26T17:10:42.530", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6859"}} +{ "Id": "6859", "PostTypeId": "2", "ParentId": "6836", "CreationDate": "2017-05-27T14:53:02.667", "Score": "1", "Body": "

First of all what can we say about orange wines.

\n\n
\n

Not only is their orange hue fitting for the season, but they tend to be heavier than whites and lighter than reds - a perfect compromise for the fall. Make sure to serve it slightly chilled, at around 55 degrees Fahrenheit, and try pairing it with those increasingly heavier fall meals, like roasted vegetables and poultry. - Crushing: Orange Wines.

\n
\n\n

Here is what Jared Brandt says about orange wines:

\n\n
\n

\"Orange wines fill in the gaps when pairing, because you get the acidity of a white and the tannins of a red,\" says Jared Brandt of Donkey & Goat winery in Berkeley, California. Last fall, he and his wife, Tracey, released a cloudy orange wine: a floral, spicy Roussanne. \"We recently had a tofu dish that a red wine would have obliterated, and a rich lamb dish that would have overwhelmed a white,\" Brandt says. He opted to pair both with an orange wine from Friuli's Stanko Radikon, one of Gravner's acolytes, and it worked brilliantly.

\n \n

Some people might argue that rosé can be just as versatile with food as an orange wine. Pax Mahle, who makes an orange Pinot Gris under his Wind Gap Wines label, replies that orange wines are funkier tasting (and thus more interesting) than rosés. \"Rather than something that goes with your picnic, orange wines go with your truffle pasta,\" he says. Essentially, the wines have umami. - Ancient Wine Techniques, Simple Dishes

\n
\n\n

Matthew Latkiewicz has these foods to pair with orange wine:

\n\n
\n

But here’s what to do: Drink some orange wine along with food. Orange wines are all over the place from a flavor standpoint, so there’s no go-to rule for pairing it, but unlike a lot of white wines, which get bowled over by strong food flavors, orange wine has the structure and acidity from the skins to stand up to strong dishes while still retaining the spectrum of white-wine flavors. Without getting too wonky about the pairing-speak, know that you can also ditch fish-with-white, meat-with-red thinking; orange wine is a lot more versatile. For example, a bottle of Angiolino Maule Sassaia, which tastes almost nutty, can holds its own against something like grilled hanger steak; and that Vinujancu had a lot of qualities of a funky craft beer; it’d be great at cutting through fatty dishes — or anything with bacon. - Sloshed: How to Enjoy Orange Wine, the Indie Darling of the Wine World

\n
\n\n

Here is yet another blog has to say that might be of interest to some:

\n\n
\n

Orange wine is a bit of a misnomer because it isn’t referring to a wine made with oranges nor is it a Mimosa cocktail (a blend of 1 part orange juice to 2 parts sparkling wine.) Orange wine is something entirely different.

\n \n

Because of their boldness, orange wines pair excellently with bolder foods including curry dishes, Moroccan cuisine, Ethiopian cuisine (like those spongelike pancakes called Injera), Korean dishes with fermented kimchi such as bibim bap, and traditional Japanese cuisine including fermented soybeans (Natto). Due to high phenolic content (tannin and bitterness) along with the nutty tartness, orange wines pair with a wide variety of meats from beef to fish. - All About Orange Wine

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-05-27T14:53:02.667", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6860"}} +{ "Id": "6860", "PostTypeId": "1", "AcceptedAnswerId": "6861", "CreationDate": "2017-05-28T14:39:23.750", "Score": "8", "ViewCount": "11688", "Body": "

The other day, I came across this article: Chimpanzees found routinely drinking alcohol in the wild.

\n\n

In this article, David Mercer claims that \"Primates in Guinea drank fermented palm sap using a leafy tool as a sponge.\"

\n\n
\n

Scientists have discovered a group of booze-loving apes who may hold the key to why humans enjoy drinking alcohol.

\n \n

Experts say they have found the first empirical evidence of “long term and recurrent ingestion of ethanol” among apes in nature.

\n \n

hey observed wild chimpanzees in the town of Bossou in Guinea, west Africa, over 17 years and watched as the primates drank fermented palm sap using a leafy tool as a sponge.

\n \n

The chimpanzees consumed the alcoholic beverage, often in large quantities, despite an alcohol presence of up to 6.9 per cent ABV - the equivalent of a strong ale, according to a study published by the Royal Society.

\n \n

The amount of alcohol ingested ranged from about 2.5 to 84ml and there was no difference between males and females.

\n \n

Experts said that, unlike other examples of primates ingesting alcohol, such as introduced green monkeys targeting tourist cocktails in the Caribbean, the chimpanzees' attraction to fermented palm sap at Bossou was not a result of provisioning by local people.

\n
\n\n

My question is this: Do other naturally occurring alcohol (ethanol) drinks exist in a natural setting as in forests, plains, savannas, etc., without man's intervention on a regular basis?

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-07-18T13:13:51.890", "Title": "Can alcohol (ethanol) exist in nature without the intervention of man?", "Tags": "alcohol", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6861"}} +{ "Id": "6861", "PostTypeId": "2", "ParentId": "6860", "CreationDate": "2017-05-28T18:34:09.280", "Score": "11", "Body": "

All fruit when crushed or rotten will have naturally occurring alcohol. As long as there is sugar, yeast and water alcohol will happen. Most commercially purchased fruit juice has a small amount of alcohol in it when you purchase it.

\n\n
\n

Low-alcoholic beverage[edit]\n Sparkling cider, sodas, and juices naturally contain trace amounts or no alcohol. Some fresh orange juices are above the UK 'alcohol free' limit of 0.05% ABV, as are some yogurts and rye bread.

\n \n

Ethanol distillation is used to separate alcoholic beverages into what are advertised as non-alcoholic beverages and spirits; distilled wine produces low alcohol wine and brandy (from brandywine, derived from Dutch brandewijn, \"burning wine\"),1 distilled beer may be used to produce low-alcohol beer and whisky.

\n \n

However alcoholic beverages cannot be further purified to 0.00% alcohol by volume by distillation. In fact, most beverages labeled non-alcoholic contain 0.5% ABV as it is more profitable than distilling it to 0.05% ABV often found in products sold by companies specializing in non-alcoholic beverages.

\n
\n\n

There are many stories about deer, bear and other wild animals getting drunk on apples that have fallen and rotted on the ground. Do animals get drunk

\n\n
\n

“I’ve watched white-tailed deer eating fermented apples in orchards,\" Moore says. They get pretty “sleepy,” even “stumble-y.” It’s a common observation in apple-growing regions, he adds.

\n
\n\n

But I think you want to know if there are naturally occurring drinks other than eating a bunch of rotten fruit and there are only a couple of that I have heard of and the one you mention in your question was one and the other was naturally occurring mead which happens when water gets into a beehive with honey in the comb. Honey fermenting in the comb

\n\n
\n

To produce honey, bees collect nectar from flowers and add enzymes from their honey stomachs. Once the mixture is stored in cells, the bees fan it with their wings until it dehydrates to a moisture content of about 16 to 18.5 percent. If the moisture content is higher than that, the bees simply won’t cap it. If cold weather arrives before the honey is capped, it will sit open in the hive and may eventually ferment.

\n
\n", "OwnerUserId": "6111", "LastActivityDate": "2017-05-28T18:34:09.280", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6862"}} +{ "Id": "6862", "PostTypeId": "2", "ParentId": "16", "CreationDate": "2017-05-29T06:57:17.523", "Score": "4", "Body": "

Because beer is 95% water! Yes alcohol is a diuretic but if delivered with all this water, it is actually hydrating. If you would drink these huge glasses full of water you would urinate fearsomely as well.

\n\n

So the best news ever is: beer is hydrating. There is scientific evidence for it here from 4:14 onwards. All before that is about the benefits of drinking water, yeah yeah.

\n\n

\"enter

\n", "OwnerUserId": "6778", "LastEditorUserId": "6778", "LastEditDate": "2017-05-29T12:16:23.687", "LastActivityDate": "2017-05-29T12:16:23.687", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6863"}} +{ "Id": "6863", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2017-05-29T10:03:39.457", "Score": "-1", "Body": "

Yeah, tequila in the freezer is fine, and so is vodka, genever etc. Pour it in a shot glass, enjoy the syrupy texture and the foggy glass, have a small sip...you can't take a gulp because of the temperature. You probably can't taste much either due to frozen taste buds, but's it's a cool conversation starter and it saves on ice cubes.

\n", "OwnerUserId": "6778", "LastActivityDate": "2017-05-29T10:03:39.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6864"}} +{ "Id": "6864", "PostTypeId": "1", "CreationDate": "2017-05-29T10:31:16.110", "Score": "1", "ViewCount": "182", "Body": "

You can tell that the French take their wine seriously because of their wine laws. It may only be called Pomerol if it is from a small set of vineyards, and harvested by virgins at full moon at the south side of the hill or something rather. Very serious. But the wines are very good, and the Appellation Controlée does provide a degree of customer protection and quality guarantee that seems to work.

\n\n

I live in Australia myself and although one of the most expensive wines comes from this country (Grange), I'm often left with a vaguely unsettled head and stomach after drinking Ozzie wine (no I can't afford Grange). Never a problem with European wines, or Argentinean organic ones for that matter. And other than prohibiting contamination with proven poisonous chemicals, there seem to be very few laws in making wine in most countries, I believe the same goes for American wine. It's allowed to boil wood chips and mix the extract with the wine to create a woody flavour, for instance, forget about rising in casks.

\n\n

So after this rather lengthy introduction, here is my question. How come that this vital issue escapes our attention? Why don't all of us demand strict wine laws? What should it be anything else than crushed grapes that have fermented with the little yeasty boys that live on the grape skins?

\n", "OwnerUserId": "6778", "LastEditorUserId": "5064", "LastEditDate": "2017-05-30T12:12:28.137", "LastActivityDate": "2017-05-30T12:12:28.137", "Title": "Should all countries have strict wine laws, like France does?", "Tags": "wine laws", "AnswerCount": "0", "CommentCount": "7", "ClosedDate": "2017-05-30T17:41:37.700", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6865"}} +{ "Id": "6865", "PostTypeId": "2", "ParentId": "5057", "CreationDate": "2017-05-30T06:31:57.167", "Score": "0", "Body": "

The bar is an excellent place to try new drinks that you don't want to buy an entire bottle. Or to try a different brand of hard liquor!

\n\n

Start with something you know and love, then you can always become more adventurous as the night goes on!

\n", "OwnerUserId": "6740", "LastActivityDate": "2017-05-30T06:31:57.167", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6866"}} +{ "Id": "6866", "PostTypeId": "2", "ParentId": "6770", "CreationDate": "2017-05-30T06:38:07.577", "Score": "2", "Body": "

You can try something like the Grapefruit radler. I find it very nice on a hot summer day and you can mix it with other juices if you are not into grapefruit.

\n", "OwnerUserId": "6740", "LastActivityDate": "2017-05-30T06:38:07.577", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6867"}} +{ "Id": "6867", "PostTypeId": "2", "ParentId": "6770", "CreationDate": "2017-05-30T22:04:44.333", "Score": "-1", "Body": "

Tame beers with low hops and malts would be a great transition, look for fruity beers low in IBU. I'd suggest something like a Raspberry Wheat, which will be light and refreshing, with a sweet berry finish.

\n", "OwnerUserId": "6783", "LastActivityDate": "2017-05-30T22:04:44.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6868"}} +{ "Id": "6868", "PostTypeId": "1", "CreationDate": "2017-05-31T05:08:29.293", "Score": "4", "ViewCount": "1539", "Body": "

I've just recently begun drinking Scotch, and I find it absolutely delicious. However, most brands I see in the store are quite expensive. So far the best Scotch I've tried is Aberlour single malt, and although it's not prohibitively expensive, it's not exactly cheap either.

\n\n

What are some good brands of Scotch that won't break the bank?

\n", "OwnerUserId": "6784", "LastActivityDate": "2018-07-24T11:49:16.223", "Title": "What are some affordable brands of good Scotch?", "Tags": "whiskey spirits scotch", "AnswerCount": "5", "CommentCount": "2", "ClosedDate": "2018-07-20T13:49:36.257", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6869"}} +{ "Id": "6869", "PostTypeId": "2", "ParentId": "6868", "CreationDate": "2017-05-31T07:00:55.160", "Score": "4", "Body": "

So, I am answering assuming you want to stick with single malts rather than go blended. Also because people live in different parts of the world, prices may vary.

\n\n

I would recommend Glenfiddich 12-y as a standard go to single malt and usually a bit cheaper than the rest.

\n\n

Other good brands include Dalwhinnie and Dalmore(this one being my personal favorite) but these prices will range around the same as your Aberlour.

\n\n

Lastly, I've once thought about getting cheaper single malts but I have never tasted a good cheap single malt. Were they decent? A few, most were not the greatest and I would not buy again. This has been my personal experience.

\n\n

Hope that helps.

\n", "OwnerUserId": "6740", "LastEditorUserId": "6740", "LastEditDate": "2017-05-31T07:11:53.013", "LastActivityDate": "2017-05-31T07:11:53.013", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6870"}} +{ "Id": "6870", "PostTypeId": "2", "ParentId": "6868", "CreationDate": "2017-05-31T11:48:43.087", "Score": "1", "Body": "

Are you looking for a single malt? Those may be a little more expensive. A blend like The Famous Grouse will include good scotches from the region including Glenturret. If you are looking for something a bit smokier, I am a fan of Talisker Storm.

\n", "OwnerUserId": "6786", "LastEditorUserId": "5064", "LastEditDate": "2017-05-31T12:05:51.467", "LastActivityDate": "2017-05-31T12:05:51.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6871"}} +{ "Id": "6871", "PostTypeId": "2", "ParentId": "6770", "CreationDate": "2017-05-31T11:55:31.853", "Score": "0", "Body": "

Anderson Valley is the de facto source of sour beers in my area. Their Blood Orange Gose and Briney Melon Gose are fairly refreshing. https://www.beeradvocate.com/beer/profile/193/184814/

\n\n

21st Amendment Brewing also has a watermelon flavored wheat that is fairly popular around here. It's definitely a \"love it or hate it\" item. https://www.beeradvocate.com/beer/profile/735/4202/

\n\n

If you are looking for something with a little more of a beer kick, fruit flavored IPA's are a nice option. Flying Dog has a good one: https://www.beeradvocate.com/beer/profile/68/92018/

\n", "OwnerUserId": "6786", "LastActivityDate": "2017-05-31T11:55:31.853", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6872"}} +{ "Id": "6872", "PostTypeId": "2", "ParentId": "6418", "CreationDate": "2017-05-31T19:32:28.253", "Score": "-2", "Body": "

St. Germain is made from liqueur flavored with Elderflower.

\n\n

As soon as the flowers reach the collection station, they are immediately macerated using a “secret” family technique, which is said to give them the best flavor, while not being too bitter, too sweet or as inconsistent as other methods, such as freeze drying or pressing the flowers.

\n\n

These are then infused into eau-de-vie (Unaged Brandy), although this part of the process is not well elucidated by the company. The spirit is then sweetened lightly, but is said to contain less sugar than a typical liqueur. The liqueur is then bottled.

\n\n

Since st. germain is made without any preservatives, it is recommended that you use the bottle within 6 months of opening.

\n", "OwnerUserId": "6787", "LastEditorUserId": "6787", "LastEditDate": "2017-06-01T15:00:16.870", "LastActivityDate": "2017-06-01T15:00:16.870", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6873"}} +{ "Id": "6873", "PostTypeId": "1", "CreationDate": "2017-05-31T23:33:53.450", "Score": "5", "ViewCount": "7012", "Body": "

Maybe this is a non-question for connoisseurs, but as a non-drinking person I have no idea why it is so common to order certain alcoholic drinks at a bar \"on the rocks\" (with ice or even special \"whiskey rocks\" which are basically refrigerated non-dissolving shapes of plastic/metal/glass) instead of just keeping the whole bottle in the fridge. Then it wouldn't be watered down by melting ice, and be cool enough from the moment the bartender is done pouring it.

\n\n

Cursory research says repeated temperature change may alter certain alcohols' flavor, but then for other spirits it doesn't seem to be a problem, so that's ambiguous. However, at a regular bar's rate of consumption, I suppose there wouldn't be enough time for a bottle to go bad − it would be empty before then. Or maybe the effect is so strong that even one cycle of temperature change is enough. I don't know.

\n\n

My question is: Why most alcohols which become drinks into which ice is usually put, are not stored in a fridge instead, so that the ice isn't needed?

\n", "OwnerUserId": "6788", "LastActivityDate": "2017-06-06T16:20:23.303", "Title": "Why don't bars keep their bottles in the fridge to avoid using ice?", "Tags": "temperature", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6874"}} +{ "Id": "6874", "PostTypeId": "2", "ParentId": "6873", "CreationDate": "2017-06-01T00:01:27.567", "Score": "5", "Body": "

I can only speak for whiskies as I use to sell and give out samples of that stuff.

\n\n

There are a couple of things to understand first about whiskies.

\n\n
    \n
  1. During the aging process of the whisky, the whisky is placed in a barrel to add flavour to it.

  2. \n
  3. If the alcohol percent is below 40%, the whisky has a hard time retaining the flavour of the barrel. This is not impossible but it is easier if it is 40% or higher.

  4. \n
\n\n

The reason why there is on the rocks vs neat is due to this 40% alcohol threshold.

\n\n

If you add ice, it will dilute the whisky below 40% alcohol content which will allow the flavours to \"pop out\" more. This is really good for new whisky drinkers trying to understand \"how to taste\" whiskies.

\n\n

So for whiskies, it is not so much about cooling the drink but rather allowing the flavours of the barrel to be more prominent to the drinker. For veteran whisky drinkers, they may not need the ice and prefer it at room temperature and thus, they would not want it cold.

\n", "OwnerUserId": "6740", "LastEditorUserId": "6740", "LastEditDate": "2017-06-04T01:56:49.343", "LastActivityDate": "2017-06-04T01:56:49.343", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6875"}} +{ "Id": "6875", "PostTypeId": "2", "ParentId": "6868", "CreationDate": "2017-06-01T02:44:51.983", "Score": "1", "Body": "

The problem you have is implied in the question: 'affordable' and 'good' Scotch don't really go hand in hand, depending on what you mean by affordable. It's not a matter of brands, it's a matter of the average entry-point for a quality product, which is surprisingly consistent. If a distillery produces a good whisky, they are going to price it according to it's quality.

\n\n

In Canada, you can typically expect any bottle that costs over about 65 CDN to be what I'd call a good, drinkable Scotch. A good metric to go by is the price of a Glenmorangie Original, or Aberlour 12. These are two starter Scotches, and most bottles at or above their price point will be what I'd call a decent whisky.

\n\n

Once you get under the prices of those two bottles you'll start seeing a hit in quality, and if you get significantly lower, like 30-40 you're talking an entire tier down.

\n\n

That said one recommendation to look into is 'McClelland's'. It's most certainly not a premium Scotch, but it does perform well above it's price point.

\n\n

Another recommendation I'd make is if entry-level and above Scotches are too expensive for you then check out some bourbon and Irish whiskies. Black Bush, Writer's Tears, and Bulleit Bourbon or Rye are quite drinkable whiskies for a much better price.

\n\n

FWIW, I'd also hazard against the Glenfiddich 12 recommendation above, it is affordable but is a notoriously weak Scotch.

\n", "OwnerUserId": "938", "LastActivityDate": "2017-06-01T02:44:51.983", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6876"}} +{ "Id": "6876", "PostTypeId": "1", "AcceptedAnswerId": "6878", "CreationDate": "2017-06-01T06:33:47.633", "Score": "6", "ViewCount": "745", "Body": "

What is the difference, if any, between ice wine, iced wine(sometimes called frostbitten ice wine) and late harvest wines?

\n", "OwnerUserId": "6740", "LastEditorUserId": "5064", "LastEditDate": "2017-06-01T11:02:48.490", "LastActivityDate": "2017-06-01T19:03:52.173", "Title": "What is the difference between ice wine, iced wine and late harvest wines?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6878"}} +{ "Id": "6878", "PostTypeId": "2", "ParentId": "6876", "CreationDate": "2017-06-01T14:38:38.243", "Score": "5", "Body": "

Late Harvest these are grapes that are left on the vine until they reach a certain brix (sugar %) level outside the normal range for regular table wine. There are several sub categories of Late Harvest, which include Ice Wine, Botrytized, sun dried (raisined) and regular late harvest.

\n\n

One of the better known of the late harvest wines is Sauternes. These are wines picked after the grapes have gotten moldy. (AKA Noble Rot) The mold acts to dry out the grapes making them like raisins. These wines are from white grapes mainly. In Hungary they are from Tokay. In the Alsace they are called Sélection de Grains Nobles (selection of the noble berries). The mold concentrates the sugars and adds it's own special flavor.

\n\n

Ice Wine In certain places in the world, like Canada, USA and Germany the grapes need to be naturally frozen on the vine to be called Ice Wine this is the law. The temperature varies but somewhere around -7f to -10f before they are allowed to be picked. It's a crap shoot since you are not assured you will get that cold in the winter following harvest. So it is rare. They need to use special hydraulic presses since you are pressing the sugar out of little round ice balls. Sugar levels are so high that the yeast cannot complete fermentation leaving residual sweetness after fermentation.

\n\n

Iced Wine In many parts of the world there is no regulation around the word \"ice wine\" and many wine makers just take grapes and throw them in a huge freezer and mechanically freeze them called cryoextraction. Since they can't legally use the term \"Ice Wine\" without freezing them on the vine, they had to come up with a made up name. Iced Wine is one of those names. Frostbitten Ice Wine is a proprietary name from winemaker here in Washington State

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-06-01T19:03:52.173", "LastActivityDate": "2017-06-01T19:03:52.173", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6879"}} +{ "Id": "6879", "PostTypeId": "2", "ParentId": "6873", "CreationDate": "2017-06-02T15:25:36.053", "Score": "4", "Body": "
    \n
  • Volume
    \nIf the bartender had to go into a fridge for every drink it\nwould take longer
  • \n
  • Presentation
    \nCustomers can see which liquors are available
  • \n
  • Some customers want room temperature
  • \n
  • Stay chilled
    \nEven if it started chilled many customer still would\nwant ice
  • \n
  • Energy
    \nIt is probably more energy efficient to use ice compared to\nopen and close a fridge multiple times
  • \n
  • Portable
    \nOne ice machine can serve multiple bars
  • \n
  • Cost
    \nMultiple fridges are expensive
  • \n
\n", "OwnerUserId": "4903", "LastActivityDate": "2017-06-02T15:25:36.053", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6880"}} +{ "Id": "6880", "PostTypeId": "1", "AcceptedAnswerId": "6888", "CreationDate": "2017-06-03T11:58:38.607", "Score": "4", "ViewCount": "22334", "Body": "

What soft drinks mix well with alcohol to make a great, yet unique tasting drink?

\n\n

We have all heard of rum and coke which is known as a Cuba Libre. I would like to try some other soft drinks with alcohol mixes that could be in someway less commonly known to the average person, like rum and coke. I would appreciate any recommendation possible and the reasons why the recommendation makes a great yet unique tasting drink.

\n\n

Bottoms Up!

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-06-11T10:23:14.303", "Title": "What soft drinks mix well with alcohol to make a great drink?", "Tags": "taste recommendations drink", "AnswerCount": "5", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6881"}} +{ "Id": "6881", "PostTypeId": "2", "ParentId": "6834", "CreationDate": "2017-06-03T13:49:17.517", "Score": "1", "Body": "

Why not try this chillischnaps liquor: Kehlenschneider. It has an 80% ABV and is a real evil drink if taken in untamed quantities!

\n\n

Kehlenschneider is of German origin and means throat slicer and some say it is the hottest liquor/liqueur in the world.

\n\n

\"Kehlenschneider\"

\n\n

Kehlenschneider

\n\n

Caution: This is one hot drink and is made with extremely hot peppers.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-06-03T13:49:17.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6882"}} +{ "Id": "6882", "PostTypeId": "2", "ParentId": "6880", "CreationDate": "2017-06-03T14:30:40.880", "Score": "2", "Body": "

7 & 7 is popular

\n\n

Seven Up and Seagrams 7 Crown

\n", "OwnerUserId": "4903", "LastActivityDate": "2017-06-03T14:30:40.880", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6883"}} +{ "Id": "6883", "PostTypeId": "2", "ParentId": "6880", "CreationDate": "2017-06-03T15:29:23.700", "Score": "1", "Body": "

A very interesting one is Ciroc Peach with 7-Up/Sprite. Tastes like fuzzy peach juice. You can mix 7-Up/Sprite with any of the other flavors of Cioc(or any flavored vodka if we generalize) but I find Peach the best for my personal tastes.

\n", "OwnerUserId": "6740", "LastActivityDate": "2017-06-03T15:29:23.700", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6884"}} +{ "Id": "6884", "PostTypeId": "1", "CreationDate": "2017-06-04T13:00:04.593", "Score": "5", "ViewCount": "151", "Body": "

Some years ago when I was in France, we would drink soupe au vin (wine soup) which was served extremely cold on hot summer days. Not being in France and the summer days are now getting hotter, I would like to make some soupe au vin myself.

\n\n

Here is my intended recipe:

\n\n
\n
    \n
  • One bottle (750 ml) of wine

  • \n
  • Water (500 ml)

  • \n
  • Sugar (100 g)

  • \n
  • Strawberries (600 g)

  • \n
  • Toasted bread in cubes to be added just before serving

  • \n
\n
\n\n

Can anyone make a recommendation of what sort of wine would be best? The wine does not necessarily have to be red or French and if my recipe could be improved somehow please go for it. I simply recall that on hot summer evenings this was such a nice pleasant drink to have while using a bowl and soup spoon to drink it from.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-06-04T21:27:37.007", "LastActivityDate": "2017-07-04T22:28:37.753", "Title": "Wine Recommendation for Soupe au Vin?", "Tags": "wine recommendations", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6885"}} +{ "Id": "6885", "PostTypeId": "2", "ParentId": "6884", "CreationDate": "2017-06-04T16:19:43.683", "Score": "4", "Body": "

I think you are mixing up Soupe au Vin with Soupe au vin sucré

\n\n

It looks like it can be either red or white wine, but mostly it's made with red wine. I would look for a fruity, light bodied red wine to complement the fruit and sugar. A Burgundy or Beaujolais but not too expensive.

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-06-04T16:19:43.683", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6886"}} +{ "Id": "6886", "PostTypeId": "2", "ParentId": "6873", "CreationDate": "2017-06-05T12:51:35.043", "Score": "2", "Body": "

As a bartender and bar manager for 10+ years at a very busy bar several reasons are obvious to me.

\n\n

Not everyone wants a cold drink. It is easy to chill warm liquor quickly. On the other hand there is no readily available method to warm chilled liquor.

\n\n

As for having a copy of each liquor on display/ room temperature, logistically and financially it's infeasible for most bars/ restaurant and massively inefficient for larger establishments or commercial chains.

\n\n

In your mind's eye picture how many bottles you might see on display, then picture how much space you need to store them. Another problem becomes apparent. On display there may be 30-100 bottles of liquor lined up in a way that their labels are visible.

\n\n

This does not maximize storage space, but having the label visible serves two primary purposes:\n1. Customers can easily see what's available and\n2. Perhaps more importantly, especially for busy bars, the bartender can quickly find and grab a bottle when needed.

\n\n

If the bottles are stored in fridges, either top or front open, they will need to be stored one in the front of the other to best fill the space.

\n\n

An important axiom in restaurants is that your peak business is constrained by how many customers you can serve at once. Having to open doors every time you wish to pour a drink is a massive time sink. Perhaps if only 1 or 2 drinks were made every 10 minutes then it would be trivial, but if bartender needs to make 3+ drinks a minute(and a good owner will build to support busy times), or if 3 or more bartenders need to do this, then the 4-30 seconds seconds it takes to open the door find the the bottle, and/or clear bar path obstructions this causes add up to massive increases in wait time.

\n\n

Moderately Busy bar with well-skilled bartenders scenario:\n4 bartenders making 3 drinks each per minute = ~12 customers served per minute.\nGoal- guests greeted in 30 seconds, drinks delivered with a minute of greet time. Why? This is roughly the time window for someone to feel they got great bar service. This is a widely upheld service standard.

\n\n

Each drink takes 20 seconds to make. Add 4 seconds to each drink and also assume that sometimes there will be wait at the door to get the correct liquor, or the open door is blocking the path.

\n\n

Possible cost of having a door: the door can add (3 drinks x 4 seconds)x 3 bartenders = 36 seconds every minute to each bartender. More than a 50% increase to serve 12 customers. The service standard can not be met and the number of people served per minute with the same staff falls considerably to ~7 (12/96=.125 guests per second *60 seconds = 7.5 guests per minute)

\n\n

This could problem could be mitigated by increasing the size of the bar to hold shallow, but long refrigerators that have sliding doors and allow for alcohol to be seen and easily grabbed. However, this does not solve the problem of people who don't want ice and it costs a considerable amount more in square footage, and refrigeration cost.

\n\n

And of course all of these concerns are easily answerable with using scooped ice versus refrigerators. Scooped ice is elegant, refrigerating all the bottles is a kluge.

\n\n

Good logistics and bar design do a lot of work towards serving customers in a bar and towards reaching profitability. With elite logistics you only need average bartenders to create excellent service. Add elite bartenders to elite logistics and you create world-class service. On the other hand poor logistics can make elite bartenders seem only average and make average bartenders nearly worthless.

\n\n

One last thing: Adding ice adds to perceived value with very little relative cost. The glass size can be doubled and still be filled with the same amount of liquor. While in truth you are getting the same volume of alcohol and/or mixer it appears like you are getting more add the cost of a penny or less for the ice.

\n", "OwnerUserId": "5969", "LastEditorUserId": "5969", "LastEditDate": "2017-06-06T16:20:23.303", "LastActivityDate": "2017-06-06T16:20:23.303", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6887"}} +{ "Id": "6887", "PostTypeId": "2", "ParentId": "6880", "CreationDate": "2017-06-05T14:13:21.563", "Score": "2", "Body": "

If you want something sweet you can try

\n\n

amaretto and coke (some more detailed information)
\nfor an even sweeter experience you can even go for a mix with Dr pepper

\n\n

It has a slimier taste to a bakewell tart so it is recommended if you like sweet things

\n", "OwnerUserId": "5078", "LastActivityDate": "2017-06-05T14:13:21.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6888"}} +{ "Id": "6888", "PostTypeId": "2", "ParentId": "6880", "CreationDate": "2017-06-05T17:22:58.517", "Score": "2", "Body": "

My favorite Hi Ball of all Time is Vernor's(an obscure, potent ginger all type soda) and whiskey. Two powerful flavors that manage to keep their potency while still blending very well.

\n\n

As a general rule for all of these Using a 12oz glass, I would pour 1.5 oz of liquor with 4.5oz soda directly over ice- stir gently. Drink with a full sized straw. Garnish with lime, orange, cherry, or lemon as appropriate. (The straw may seem unimportant, but in fact it creates a different experience than a sip straw or no straw)

\n\n

If you're into sweet things I recommend Tuaca and Cream Soda (Jones' is my favorite for this). Tuaca is 80 proof and is sort of a Vanilla and Orange Liquor with butterscotch after notes. It's sweetness blends well into soda(also Vernor's as above, coke, orange soda, etc..) and very efficiently hides the alcohol.

\n\n

Some traditional Hi-Balls:

\n\n

Vodka with Soda Water and Lime: Descriptive words: Strong, simple, skinny, diet, crisp

\n\n

Spiced Rum and Coke- Quite different from a cuba libre. Descriptive words: Sweet, easy, deceptive, spiced, flavorful

\n\n

Vodka and Tonic and Lime: Descriptive words: Strong, simple, skinny, diet, potent, blunt, Quinine

\n\n

Jack Daniels and Ginger: Descriptive words: Sweet, Bright, Easy, Traditional

\n\n

Scotch and Soda (The original Hi-Ball): Descriptive words: Traditional, potent, slow-sipping

\n\n

Some non-traditional quick combos:

\n\n

Cake Vodka and Coke: Descriptive words: Soda Shop, Sweet, Vanilla Coke, Rich

\n\n

Whipped Cream Vodka and Orange Soda: Descriptive words: dessert, old-fashioned, soda shop, masked alcohol, deceptively strong

\n\n

Pear or Apple Vodka and Sparkling Apple Juice: Descriptive words: Apple Pie, Crisp, Sweet, Refreshing

\n\n

Skinny Bitch - Vodka and Diet Coke: Descriptive words: Diet, skinny, easy

\n\n

Dirty Shirley - Vodka (or cherry vodka) Ginger Ale (or Sprite) and grenadine(3/4 oz): Descriptive words: Sweet, fun, masked alcohol, deceptively strong, bubbly

\n\n

Double O-7 - Orange Vodka/ lemon vodka orange slice or splash of OJ mixed with 7/up sprite : Descriptive words: Crisp, lively, effervescent, citrus, refreshing, bubbly

\n\n

Swamp Juice (Named for color of beverage) - Mountain Dew and Captain Spiced Rum: Descriptive words: Energizing, sharp, citrus

\n", "OwnerUserId": "5969", "LastActivityDate": "2017-06-05T17:22:58.517", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6889"}} +{ "Id": "6889", "PostTypeId": "2", "ParentId": "6517", "CreationDate": "2017-06-06T10:22:52.513", "Score": "2", "Body": "

Flavored Whiskey is often kept in the freezer/ fridge:

\n\n

Fireball (cinnamon whiskey), although weaker than most whiskey and far sweeter is consistently kept cold.

\n\n

American Honey (Honey flavored Whiskey) is smooth and sweet but has more of a whiskey kick that Fireball.

\n\n

There are several other kinds of flavored whiskey and many are kept refrigerated, but the above two are the most common.

\n\n

For non-flavored the only whiskey I've seen kept on ice, although not consistently, is Yukon Jack.

\n", "OwnerUserId": "5969", "LastActivityDate": "2017-06-06T10:22:52.513", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6890"}} +{ "Id": "6890", "PostTypeId": "2", "ParentId": "5", "CreationDate": "2017-06-06T17:49:03.593", "Score": "1", "Body": "

A site that has a lot of useful information is craftbeer.com. By going to the beer styles section, you will see the beer style information, including serving temperature.

\n\n

If you want to go more in depth, you can get training from Cicerone. They are a company that train bar staff on the the correct way to serve beer (temp, glasses,food pairing, etc) as well as information about the beer styles, brewing process and more.

\n", "OwnerUserId": "984", "LastEditorUserId": "984", "LastEditDate": "2017-06-07T11:10:28.887", "LastActivityDate": "2017-06-07T11:10:28.887", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6891"}} +{ "Id": "6891", "PostTypeId": "2", "ParentId": "6708", "CreationDate": "2017-06-06T20:16:34.823", "Score": "0", "Body": "

I watched the episode of NCIS LA S8/19 and it makes sense. The reference meaning the bottle of whiskey they were drinking a Yamasaki 2013 Sherry Cask was worth 3 or 4 stacks ( $3000 -$4000). Cost $3999 in 2017

\n", "OwnerUserId": "6807", "LastActivityDate": "2017-06-06T20:16:34.823", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6892"}} +{ "Id": "6892", "PostTypeId": "1", "CreationDate": "2017-06-07T13:32:05.530", "Score": "6", "ViewCount": "3808", "Body": "

I have 3 bottles of La Chouffe Blonde Belgian Beer that is cloudy. It is out of date as of May of last year. Is it ok to drink? Theres a lot of sediment in the bottle. Can I decant or shake and drink?

\n\n

Thanks.

\n", "OwnerUserId": "6808", "LastEditorUserId": "4742", "LastEditDate": "2017-06-12T07:41:44.283", "LastActivityDate": "2017-07-06T08:31:42.770", "Title": "Sediment in expired Belgian Beer", "Tags": "belgian-beers", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6893"}} +{ "Id": "6893", "PostTypeId": "2", "ParentId": "6892", "CreationDate": "2017-06-07T16:04:32.823", "Score": "4", "Body": "

Yes, it's ok to drink. Belgian beer usually has a lot of sediment to begin with. I've aged Belgian beers for several years. Some taste quite good with that amount of age. It's up to you if you want the sediment or not. I am a decanting guy but not everyone is. All you can do is pop it in the fridge and try it out!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-06-07T16:04:32.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6894"}} +{ "Id": "6894", "PostTypeId": "2", "ParentId": "6892", "CreationDate": "2017-06-08T12:37:24.253", "Score": "4", "Body": "

Sediment and cloudiness are common characteristics of many beers from that area, they aren't a sign of whether it is gone off or not. It may be okay to drink or it may not, it depends how it's been stored. If it's gone bad it's not going to be poison or anything, just unpleasant to taste, so there's no harm in trying it.

\n\n

Personally I'm in the decant crowd, I usually find the sediment unpleasant, however that's all your personal taste. Treat it as if you'd just bought it.

\n", "OwnerUserId": "5528", "LastActivityDate": "2017-06-08T12:37:24.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6895"}} +{ "Id": "6895", "PostTypeId": "1", "AcceptedAnswerId": "6896", "CreationDate": "2017-06-09T20:18:42.613", "Score": "3", "ViewCount": "10818", "Body": "

From Wikipedia:

\n\n
\n

Pálinka is a traditional fruit brandy in the Carpathian Basin, known under several names, and invented in the Middle Ages. Protected as a geographical indication of the European Union, only fruit spirits mashed, distilled, matured and bottled in Hungary and similar apricot spirits from four provinces of Austria can be called \"pálinka\".

\n
\n\n

The question is, how is this spirit most commonly consumed in this region? Is it usually drunk neat/on rocks or do Hungarians usually mix it into cocktails?

\n", "OwnerUserId": "938", "LastEditorUserId": "5064", "LastEditDate": "2017-06-11T09:48:51.130", "LastActivityDate": "2017-06-11T09:48:51.130", "Title": "How do Hungarians most commonly consume Palinka?", "Tags": "liquor consumption", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6896"}} +{ "Id": "6896", "PostTypeId": "2", "ParentId": "6895", "CreationDate": "2017-06-10T11:58:24.453", "Score": "3", "Body": "

How do Hungarians drink Palinka?

\n\n
\n

Pálinka should be served at 18–20 °C (64–68 °F) because it is at this temperature that the fine smell and taste of the fruit can be best enjoyed. If served too cold, the smell and the taste will be difficult to appreciate.

\n \n

The form of the glass used to drink pálinka affects the drinking experience. The ideal glass is wide at the bottom and narrow at the rim, that is, tulip-shaped. The relatively narrow neck of the glass concentrates the \"nose\" released from the larger surface at the bottom of the glass, magnifying the smell of the drink. - Pálinka (Wikipedia).

\n
\n\n

\"Pálinka

\n\n

Pálinka in Tulip Glasses served Sausages

\n\n

It is traditionally drank in a tulip glass, straight and not mixed in one shot or sipped a little at a time. To truly appreciate Pálinka, it should

\n\n
\n

Tips for Drinking Pálinka:

\n \n
    \n
  • Know your pálinka!: Kisüsti (meaning ‘a small pot’) is a double-distilled pálinka made in a copper pot. Érlelt (meaning ‘aged’) is a pálinka aged for at least three months in a wooden cask. Ó (meaning ‘old’) is aged for at least 12 or 24 months depending on the size of the cask. Ágyas (meaning ‘bedside’) is aged for at least three months together with fruit. Törköly (pomace pálinka) is made from grape pomace. It’s actually one of the oldest types of pálinka and it supposedly helps digestion.
  • \n
\n \n

•It’s best to serve (and consume) at room temperature in a tulip-shaped shot glass. This temperature maintains the flavours of the fruits.

\n \n

•There is no strict rule or tradition when to drink it however as Hungarian cuisine tends to be on the heavy side it’s good to have a shot (…or two) prior to a meal…and then close the meal off with another one (…or two).

\n \n

•It’s not compulsory to drink it in one go…. said no Hungarian ever! However we are lenient with foreigners so drink it slow!

\n \n

•It WILL burn your throat: don’t worry, that’s normal.

\n \n

•The most popular flavours are apricot, plum, pear, cherry, grape and apple however flavours such as elderflower, quince and all sorts of berries are starting to become more popular. - How to Drink: Pálinka

\n
\n\n

Pálinka is generally not mixed.

\n\n
\n

Though some mixologists are experimenting with adding pálinka to their cocktails, you’ll usually find it served on its own. The wince you’ll make in anticipation as you catch a whiff of your shot is all part of the fun, as is the expected slamming of your glass onto the table once you’ve finished your drink. - Hungary’s Water of Life

\n
\n\n

And again:

\n\n
\n

Pálinka should be served somewhere between 10 - 15 °C. While many drink it as a shot, the more traditional Hungarians will drink it as a low drink, sort of like whisky. Don’t be surprised if you hear people shouting ‘Isten, Isten’ (God, God) before drinking it, that is just part of the Pálinka tradition. - Pálinka - The Hungarian Whisky

\n
\n\n

Hungarians love to eat sausages with their Pálinka, as can be seen at their Budapest Pálinka and Sausage Festival.

\n\n
\n

Sausage and pálinka go well together, so be sure to visit one of the sausage stands and sample their homemade products, such as Gyulai and Csabai kolbász. - Budapest Pálinka and Sausage Festival

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-06-10T11:58:24.453", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6897"}} +{ "Id": "6897", "PostTypeId": "2", "ParentId": "6884", "CreationDate": "2017-06-10T14:38:56.023", "Score": "1", "Body": "

Basically the Strawberry Wine Soup is an uncooked soup and as such a wine that is paired with strawberries should fit the bill.

\n\n
\n

So consider something from a cool-climate region, because cooler spots produce grapes with high acid: Germany's subtle, beautifully balanced dessert rieslings; a demi-sec (medium) champagne; or frothy, honeyed Italian moscati d'asti. Choose a premium Bordeaux pudding wine such as sauternes if you really want to splash out.

\n \n

Or go for a sweet muscat instead. Muscat produces amazingly versatile dessert wines, juicy and fresh-tasting, even when they come from a warmer region and are strong and weighty in texture. Think apricots, oranges, a drop of caramel. And think affordable. Muscats from southern France and moscatels from Valencia in Spain are extraordinarily well priced. - Wine Review: Wine to serve with strawberries

\n
\n\n

More wine pairing with strawberries can be seen here

\n\n

This site (Top 13 Fruits to Pair with Wine) pairs strawberries as follows:

\n\n
\n

Strawberry Pairing

\n \n

White Wines: Champagne, Prosecco, White Zinfandel, Chardonnay

\n \n

Red Wines: Pinot Noir, Zinfandel

\n
\n\n

But then again one could simply go with strawberry wine.

\n\n

\"Soupe

\n\n

Soupe de Fruits au Vin Rouge

\n\n

As seen in the above image the French use all sorts of fruit in their Soupe au Vin. This soup is simply not done with strawberries or toasted bread cubes.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-06-10T14:38:56.023", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6898"}} +{ "Id": "6898", "PostTypeId": "2", "ParentId": "6880", "CreationDate": "2017-06-11T10:23:14.303", "Score": "0", "Body": "

Try Red Wine and Coke. And do not forget the ice... It is great one hot days.

\n\n
\n

Turns out this is quite a hit in most of Europe already. Who would have thought that red wine and coke would go this well together? It is coke with a grape twist and its taste killer. - Red Wine and Coke

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-06-11T10:23:14.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6899"}} +{ "Id": "6899", "PostTypeId": "1", "CreationDate": "2017-06-12T11:54:03.833", "Score": "2", "ViewCount": "429", "Body": "

Besides wine, are there any alcoholic drinks (beer, liquors or liqueurs, etc.) associated with any religious rituals or customs?

\n\n

I am deliberately not interested in wine because it is associated with the eucharist and the Roman Ritual contains a blessing for wine which is associated with the Feast of St. John.

\n\n

The Roman Ritual also has a blessing for beer which I exclude as a response to this question as well as which beers are associated with Lent. Easter Beers and beers associated with any Christian liturgical season are to be excluded also.

\n\n

This question is open to religious rituals and customs of any belief, whether Christian, or otherwise. The brewing of beer is not to be considered a ritual either.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-06-13T14:06:35.340", "LastActivityDate": "2017-06-16T11:03:42.900", "Title": "Besides wine, are there any alcoholic drinks associated with any religious rituals or customs?", "Tags": "drink occasions", "AnswerCount": "3", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6900"}} +{ "Id": "6900", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2017-06-13T02:54:01.150", "Score": "0", "Body": "

I like all light beers at room temperature. Always have. I ask my local bar tender to pull a bucket 1/2 hour before I come in and keep it out. (I call ahead and tip well) but always drink the bucket. If not, give the beers away so he doesn't re chill them and ruin them. Is this strange?

\n", "OwnerUserId": "6819", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-28T12:54:15.270", "LastActivityDate": "2019-01-28T12:54:15.270", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6901"}} +{ "Id": "6901", "PostTypeId": "2", "ParentId": "6899", "CreationDate": "2017-06-13T14:52:59.870", "Score": "1", "Body": "

According to this link Pastafarians have many holidays dedicated to alcoholic beverages including daiquiri day, Vodka day, wine day, lager day and many, many more.

\n", "OwnerUserId": "6370", "LastActivityDate": "2017-06-13T14:52:59.870", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6902"}} +{ "Id": "6902", "PostTypeId": "1", "CreationDate": "2017-06-15T04:46:05.897", "Score": "6", "ViewCount": "150", "Body": "

Among Irish Cream liqueurs, particularly lower-shelf than the big names, do any use an all-out unrefrigerated-single-serve-coffee-creamer approach to achieving shelf stability, i.e. tetrasodium pyrophosphate and other preservatives? If so, any clues as to which do and which don't? Can assumptions be drawn based on ABV? Price? Other factors?

\n", "OwnerUserId": "6824", "LastActivityDate": "2021-04-28T15:54:56.487", "Title": "Irish Cream Liqueur chemistry", "Tags": "liqueur", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6903"}} +{ "Id": "6903", "PostTypeId": "1", "CreationDate": "2017-06-15T06:50:18.887", "Score": "2", "ViewCount": "1959", "Body": "

Recently I'm in love with Moscato wine. It is very sweet. Is it real wine? Attached is the brand I consumed. \"enter

\n", "OwnerUserId": "6825", "LastActivityDate": "2017-06-17T13:51:25.153", "Title": "Why moscato sweet?", "Tags": "wine flavor drinking", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6904"}} +{ "Id": "6904", "PostTypeId": "2", "ParentId": "6903", "CreationDate": "2017-06-15T09:18:06.997", "Score": "1", "Body": "

Winemakers can make either a dry wine or sweet wine.

\n\n

If the winemakers want to make a sweet wine, they must artificially halt the fermentation process by either increasing or decreasing the temperature in the fermentation tank to a certain level in which the yeasts cannot survive. Manipulating the temperature kills the yeast (well, actually they lay dormant) and it allows natural sugar to be left in the wine. The high sugar concentration of the grape plays a role, too.

\n\n

There is a second way to artificially halt the fermentation process, it is called fortification. Winemakers will add alcohol during the fermentation process to a level in which the yeasts cannot survive, also leaving natural sugar in the wine.

\n\n

And by the way, Moscato is purposefully made in a sweet style which is why it is always sweet.

\n\n

I hope this helps.

\n", "OwnerUserId": "3722", "LastActivityDate": "2017-06-15T09:18:06.997", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6905"}} +{ "Id": "6905", "PostTypeId": "2", "ParentId": "6899", "CreationDate": "2017-06-15T21:44:56.333", "Score": "1", "Body": "

Of course there are! 'associated with' allows for a great deal of latitude. In fact, just in beer itself, there are several beers that are associated with, but not directly a result of, religious customs.

\n\n

Lenten beers are an entire category in and of themselves, but since you don't really want to hear about the giant selection of Bocks and their variety of flavors and the rich history therein, we'll skip those for now.

\n\n

Whisky as indicated here has been associated with religious rites.\nMead has been associated with various rituals, mostly from the Scandinavian regions. Some of these rites and rituals are so ubiquitous that it's fairly common to hear people ascribe the origin of the phrase 'honeymoon' to drinking mead.\nChartreuse, 'the only liquor so good they named a color after it', is brewed by Carthusian monks.

\n\n

These are just a few examples; some others, besides beer, wine, whisky, mead and chartreuse, include;

\n\n
    \n
  • ayahuasca, which isn't specifically brewed to be alcoholic, but tends to be stored and fermented
  • \n
  • kefir, which is technically haram, forbidden in islam, but definitely does get fermented
  • \n
  • kombucha, if you want something fun, which typically isn't part of a traditional religion (that I know of), but read the article. It's pretty funny.
  • \n
\n\n

There's a lot of interrelation between alcohol and religion, because yeast has been around for a long time, and so have various religions. Dig deep enough, you'll hit a religion that uses the drink.

\n", "OwnerUserId": "6042", "LastActivityDate": "2017-06-15T21:44:56.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6906"}} +{ "Id": "6906", "PostTypeId": "2", "ParentId": "6899", "CreationDate": "2017-06-16T05:56:40.363", "Score": "0", "Body": "

Whisky and wakes were written about in James Joyce's Finnegans Wake as well as being sung about by the Dubliners. Unfortunately this seems to be anecdotal, as I struggle to find more modern references.\nBeer and sports (some follow it religiously). \nChampagne and new years.

\n", "OwnerUserId": "984", "LastEditorUserId": "984", "LastEditDate": "2017-06-16T11:03:42.900", "LastActivityDate": "2017-06-16T11:03:42.900", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6907"}} +{ "Id": "6907", "PostTypeId": "1", "AcceptedAnswerId": "6908", "CreationDate": "2017-06-16T07:01:48.797", "Score": "4", "ViewCount": "16461", "Body": "

I have this classic bottle of Jack Daniels, 1 liter. Before serving it, I planned to chill it down a bit in a freezer (-17°C) for couple of hours. \nI know the alcohol freezing point is way below commercial -17°C (1°F), but I wonder is there any chance the bottle might burst inside the freezer?

\n\n

I had some bursting of the spirits before, though those spirits were lower in the grade.

\n", "OwnerUserId": "6830", "LastEditorUserId": "5064", "LastEditDate": "2017-06-16T11:20:03.417", "LastActivityDate": "2017-06-16T11:55:36.003", "Title": "Jack Daniels - Bottle in the freezer", "Tags": "whiskey", "AnswerCount": "1", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6908"}} +{ "Id": "6908", "PostTypeId": "2", "ParentId": "6907", "CreationDate": "2017-06-16T11:55:36.003", "Score": "3", "Body": "

Putting a bottle Jack Daniels into the freezer for a couple of hours or so should be okay.

\n\n
\n

The average home freezer is about -17 C (-1 F). This is cold enough to freeze your food and ice, but not cold enough to freeze the average bottle of 80-proof liquor.

\n \n

Water freezes at 0 C (32 F) and the freezing point of pure ethanol alcohol is -114 C (-173.2 F). Alcoholic beverages are a mixture of both alcohol and water (in some cases, sugars and other additives as well) so the freezing point of your alcoholic beverages is somewhere in between.

\n \n

The exact freezing point of vodka, tequila, rum, whiskey and liqueurs (as well as wine and beer) is dependent on its alcohol by volume (or its proof).

\n \n

The Freezing Temperatures of Alcohol

\n \n

40 Proof Liquor\n 20%: -7 C (22 F) Includes many low-proof liqueurs like Irish cream. If left in a really cold freezer too long, these may get slushy, but this is rare.

\n \n

64 Proof Liquor\n 32%: -23 C (-10 F) A liqueur like amaretto and a flavored whiskey like Fireball would fall in this range. These should be okay in the freezer.

\n \n

80 Proof Liquor\n 40%: -27 C (-17 F) Includes most standard base liquors like gin, vodka, whiskey, etc. You're clear for the freezer! - Is Your Beer, Wine, and Liquor Safe in the Freezer?

\n
\n\n

Advertisement

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-06-16T11:55:36.003", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6909"}} +{ "Id": "6909", "PostTypeId": "2", "ParentId": "6903", "CreationDate": "2017-06-17T13:51:25.153", "Score": "0", "Body": "

Moscato is a sparkling white wine made in the Piedmont region of Italy. It is made with Muscat (Moscato) grapes. They are fermented naturally until they hit 5.5% ABV and then the wine is run through a sterile filter to preserve the sweetness and stop fermentation. It's then artificially carbonated and put in a bottle. It's meant to be an dessert wine because of this sweetness. Also known as Moscato d'Asti and there is a similar wine made nearby simply called Asti.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-06-17T13:51:25.153", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6922"}} +{ "Id": "6922", "PostTypeId": "1", "AcceptedAnswerId": "6923", "CreationDate": "2017-06-21T01:23:32.313", "Score": "6", "ViewCount": "225", "Body": "

A week ago it was 100 degrees Fahrenheit and I don't have AC. The outcome: my newly opened 1.5 litre bottle of Merlot went bad.

\n\n

So I bought a new bottle of Pinot Noir and left it in the fridge while it was unoppened. Now I have opened it and fear my wine will go bad in the coming days (80 degrees +). What should I do? Can I keep it in the refrigerator?

\n", "OwnerUserId": "6853", "LastEditorUserId": "6853", "LastEditDate": "2017-07-04T13:18:37.867", "LastActivityDate": "2017-07-04T13:18:37.867", "Title": "100 degrees, now what to do with the wine", "Tags": "storage red-wine", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6923"}} +{ "Id": "6923", "PostTypeId": "2", "ParentId": "6922", "CreationDate": "2017-06-21T13:27:47.030", "Score": "5", "Body": "

Yes, it's perfectly fine to leave a bottle of red wine in the fridge if you can't finish it that day. In fact that is the best way to preserve an open bottle if you have no other way. You can extend the life of an opened bottle of red wine by a couple of days by sticking it in the fridge. Room temperature red wine starts to get funky around day 3 while in a fridge it might be 5 or 6 days. It really depends on the wine.

\n\n

The only problem, unless you like cold red wine (if you've ever been to Paris, you know that's how they serve it), you will need to let it sit out in a glass until it warms up. Make sure you put a cork or some other stopper back in the top of the bottle to slow down the rate of oxidation. Personally, I like my red wine served at cellar temperature (around 50f). I think it makes the red wine easier to drink. Nobody likes hot red wine unless you are making Gluhwein.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-06-21T16:15:51.290", "LastActivityDate": "2017-06-21T16:15:51.290", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6924"}} +{ "Id": "6924", "PostTypeId": "1", "AcceptedAnswerId": "6925", "CreationDate": "2017-06-22T12:56:44.713", "Score": "1", "ViewCount": "462", "Body": "

This is my first time homebrewing. I'm making mead with apples but noticed that some of the sliced apples lies above the liquid level.

\n
    \n
  1. Do I need to push them down?
  2. \n
  3. Will the apple rot and spoil the mead if I don't?
  4. \n
  5. Is it necessary to siphon the mead to other containers to continue fermentation? I've seen some videos where people do so but I had no idea why.
  6. \n
  7. Do I need to add campden tablets once I am done with the fermentation?
  8. \n
\n

Thanks in advance.

\n", "OwnerUserId": "6857", "LastEditorUserId": "6255", "LastEditDate": "2021-07-25T00:57:00.213", "LastActivityDate": "2021-07-25T00:57:00.213", "Title": "Brewing mead with fruits", "Tags": "mead home-brew", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6925"}} +{ "Id": "6925", "PostTypeId": "2", "ParentId": "6924", "CreationDate": "2017-06-22T13:07:34.280", "Score": "2", "Body": "

Let me see if I can answer your questions. I have years of experience with making beer, wine and mead...

\n\n
    \n
  1. No, leave the apples alone until fermentation is done.
  2. \n
  3. No, the alcohol will stop any rotting. Your mead might be spoiled from another source of contamination (remember good sanitation) but as long as there is alcohol the apples won't rot.
  4. \n
  5. It is advisable to move the mead from the fermentation vessel to a second one for aging. Mead is more like wine than beer and will benefit from some aging and clarification in a second vessel. This would involve leaving the fruit behind.
  6. \n
  7. While it's not 100% necessary to add sulfites (campden tablets) to you mead, it will preserve and protect it from oxidation. Like wine they should be added when you move it to the second vessel for aging.
  8. \n
\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-06-22T17:04:40.973", "LastActivityDate": "2017-06-22T17:04:40.973", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6926"}} +{ "Id": "6926", "PostTypeId": "1", "CreationDate": "2017-06-23T22:51:00.577", "Score": "3", "ViewCount": "742", "Body": "

Straining through muslin cloth removes large sediment particles very quickly. The next step would be to put it through coffee filter paper but over such a large quantity, this would take an unfeasible amount of time.

\n\n

I'm looking to invest in a pump based filtration system that's simple, and effective - I need something that has exactly the same effect as coffee filter paper in terms of filtration level (I've read that that's about 20micrometres), just a lot quicker! Is anyone able to help advise me on where I should start?!

\n", "OwnerUserId": "6861", "LastActivityDate": "2017-06-24T23:12:43.190", "Title": "Pump filtration of fruit liqueurs to get rid of cloudy sediment?", "Tags": "liqueur filtering", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6927"}} +{ "Id": "6927", "PostTypeId": "2", "ParentId": "6926", "CreationDate": "2017-06-24T23:12:43.190", "Score": "2", "Body": "

There are several types of filtering systems out there. I suggest a hobby level plate and frame filter. You can filter at 5 microns or less, but 5 is probably good enough to remove the sediment. There are cartridge filter systems too. But I would poke around a homebrewing or winemaking store on the web to see what is going to suit you the best.

\n\n

\"filter\"

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-06-24T23:12:43.190", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6928"}} +{ "Id": "6928", "PostTypeId": "1", "CreationDate": "2017-06-25T11:32:54.677", "Score": "4", "ViewCount": "119", "Body": "

Many sites state that bottles of vintage port should be stored on their side, like wine, in order to prevent the cork from drying out. However, at the bottle shop, bottles are standing upright on the shelves to display themselves more attractively.

\n\n

We don't know how long the bottle has been standing upright, and it could have dried out the cork, and then do bad things to the port once layed on its side again. Once a bottle comes out of the cellars and is put upright on a shelf for let's say a couple of months or a year, is it advisable to lay the bottle down in storage again?

\n", "OwnerUserId": "6778", "LastActivityDate": "2017-06-25T22:20:06.073", "Title": "Vintage port stored on the side", "Tags": "storage aging", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6929"}} +{ "Id": "6929", "PostTypeId": "2", "ParentId": "6928", "CreationDate": "2017-06-25T14:17:36.213", "Score": "2", "Body": "

It is generally preferred to store wine on it's side, but I think the climate the wine is stored is even more important. Generally, a wine like a vintage port, will spend only a short part of it's lifetime on a shelf in a store. I really doubt that even a year or two will dry out the cork unless the humidity levels are very low. One way to check if the ullage level is low. Ideally, any wine that you want to age should be kept on it's side, in a dark, cool location. Moving the wine upright and back once a years is not ideal. Will it hurt the Port? I really doubt it. Port is pretty sturdy stuff since it's fortified. I wouldn't worry too much about it. The age is also a factor. If it's 10 years old, that's nothing for a port. If it's 50 years old, then I start to worry about it...

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-06-25T22:20:06.073", "LastActivityDate": "2017-06-25T22:20:06.073", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6930"}} +{ "Id": "6930", "PostTypeId": "1", "AcceptedAnswerId": "6931", "CreationDate": "2017-06-25T22:11:23.403", "Score": "11", "ViewCount": "1357", "Body": "

Today I was looking at buying my first bottle of whiskey since I got a liquor store gift card worth of $50. I enjoy whiskey so I figured this would be nice to buy. I was looking at for example Blanton's Bourbon and after doing some research, I found out that Blanton's Bourbon is marketed by Sazerac Company and distilled at Buffalo Trace. After looking further, I found out there are only about 13 actual distilleries in the USA which most of them produce multiple brands.

\n\n

question:

\n\n

Take my Blanton's example. What does it actually mean that it is done by multiple companies? Does this mean I can also just buy a bottle of Buffalo Trace whiskey for the same taste and pay less? Also, who gets to decide the taste, if it's different at all? Blanton's or the distillery itself? I'm kind of confused at this moment and before I spend my gift card I'd like to get some clarification of why things are done this way. Right now I feel like the \"sub brands\" like Blanton just buys from Buffalo and call it their own, I don't want to spend my gift card on a... well... sort of \"fake\" product that's just a marketing trick, if that makes sense! Hope someone can clear things up for me. Thanks in advance!

\n", "OwnerUserId": "6867", "LastActivityDate": "2017-09-15T00:17:43.320", "Title": "What does it mean that multiple whiskey brands come from the same distillery?", "Tags": "whiskey distilleries", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6931"}} +{ "Id": "6931", "PostTypeId": "2", "ParentId": "6930", "CreationDate": "2017-06-26T12:49:22.413", "Score": "7", "Body": "

A distillery is just a building at the end of a day, the flavor of a whiskey comes from the ingredients and equipment used inside it. In whiskey making the equipment used makes a big difference in the end product, here's a non-exhaustive list:

\n\n
    \n
  • Stills: stills are used to concentrate alcohol, the shape and material used for stills make a great difference in the end flavor of the whiskey
  • \n
  • Barrels: whiskey is aged for years, generally in barrels of some kind. The material used can make a big difference, for instance there's charred barrels, used wine or port barrels. The whiskey will take flavors from the barrel as it ages
  • \n
\n\n

The ingredients that are used in whiskey making likewise make a big difference:

\n\n
    \n
  • Grain: Barley, Rye, Wheat and Corn are all used in whiskey making, and each give whiskey a very different character
  • \n
  • Peat: peat smoke is widely used in scottish whiskey making, the amount and type of peat used gives the end product more or less flavor
  • \n
  • Yeast: the strain of yeast used in the fermentation will have an impact on flavor
  • \n
\n\n

There's also conditions to consider like the temperature and length of the initial fermentation, still heat, etc. There's the number of times that a whiskey is distilled, triple distillation would give a very different character than double distilling. These are all under control and change the end product.

\n\n

So a distiller with a single set of equipment using the same grain could make many different characters of whiskey by varying the process and types of barrel used. If they have different stills and use different grains a single distillery could make a very wide variety of whiskeys.

\n\n

As for this specific case, Blanton is a brand which is named after Albert Blanton, one of the founders of the Buffalo Trace distillery and who worked there for more than 5 decades. The same company (Sazerac) owns several distilleries and produces many different brands. For all I know they do just pour standard Buffalo Trace into the bottles and market it as something else, it wouldn't be the first time a company pulled that trick, however that would be bound to be noticed by aficionados and it wouldn't do their reputation any good.

\n", "OwnerUserId": "5528", "LastEditorUserId": "5528", "LastEditDate": "2017-06-26T15:03:39.943", "LastActivityDate": "2017-06-26T15:03:39.943", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6932"}} +{ "Id": "6932", "PostTypeId": "2", "ParentId": "6930", "CreationDate": "2017-06-26T23:41:13.007", "Score": "2", "Body": "

I can't speak to the specific whiskies that you mention, but you're right that it's something of a marketing trick.

\n\n

I would assume what's happening is that specific distilleries have the capacity to produce a certain quantity of whisky, but the market for an individual brand is lesser than this quantity. So instead of producing a larger quantity of a single brand, they produce slightly different whiskies under different names to encourage the consumer to buy more. After all, it makes more sense to have three different whiskies, than three bottles of the same whisky.

\n\n

When it comes to mass-produced bourbons you're not going to see a heck of a lot of difference between different varieties, so if you're set on that style I'd recommend just picking one that's somewhere in the middle of the price range (not on the bottom of the barrel, but also not artificially priced as a 'premium' product). FWIW, my go to bourbon is 'Bulleit'.

\n\n

Another avenue you could take is to go for some entry-level scotches, something like a Glenmorangie Original. It might be a bit higher priced than bourbon, but you're going to get a better whisky.

\n", "OwnerUserId": "938", "LastActivityDate": "2017-06-26T23:41:13.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6933"}} +{ "Id": "6933", "PostTypeId": "1", "AcceptedAnswerId": "6936", "CreationDate": "2017-06-28T08:32:23.453", "Score": "3", "ViewCount": "167", "Body": "

How do I calculate the market value for a limited edition beer (1700 bottles only)? It cannot be bought anywhere anymore except from private collectors. The beer in question is the Opeth XXV anniversary imperial stout.

\n", "OwnerUserId": "6873", "LastEditorUserId": "5064", "LastEditDate": "2017-06-28T12:11:55.437", "LastActivityDate": "2017-07-13T10:44:50.727", "Title": "Right price for limited edition beer", "Tags": "imperal-stout price", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6934"}} +{ "Id": "6934", "PostTypeId": "2", "ParentId": "6884", "CreationDate": "2017-06-28T13:58:56.970", "Score": "2", "Body": "

It can be red, white, or even sparkling wine (such as 'Crémant', less expensive than Champagne, white or rosé). The choice will affect the taste of the soup, so it's better to know whether the persons you intend to serve the soup to will like this kind of wine. There's no known to be the best wine, there's the one your guests/you like :)\nYou can then make the soup accordingly, and adapt the type of wine/strawberry/ingredients you use (lemon ? mint ? cinnamon ?...)

\n\n

The bitter the strawberries, the sweeter the wine is a kind of good rule AFAIK.

\n\n

If not using wine, I've had a really good experience with a blackcurrent cream (6/8°). It came from Burgundy/France. It gives a more sweet, and a little more thicker soup. It can be use alone, or mixed (40% to 60 % or +/-) with red wine.

\n\n

Pinot noir is my favourite, but @Ken already gave you some good tips about wines (Muscat, Chardonnay, Pinot, Asti, Gamay...) so I'll focus about the if my recipe could be improved somehow part of your question.

\n\n

I made soups with a couple of freshly cut mint leaves in it (feels really refreshing then). You can also add cinnamon, or vanilla, or ginger in the wine when you heat it (but I recommand not to use any two of them at the same time and mixing).

\n\n

A tiny lemon juice (some drops) over the strawberries also adds some refreshing taste.

\n\n

Instead of the toasted bread, little cubes of cinnamon bread is good too (but then, no cinammon in the wine when heating, otherwise, it's too much of it).

\n\n

No strawberries ? any fruit like raspberries, peaches or cherries can do it too...

\n", "OwnerUserId": "6874", "LastEditorUserId": "6874", "LastEditDate": "2017-06-28T15:21:36.490", "LastActivityDate": "2017-06-28T15:21:36.490", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6935"}} +{ "Id": "6935", "PostTypeId": "2", "ParentId": "6933", "CreationDate": "2017-06-28T16:21:03.090", "Score": "0", "Body": "

There is no \"right\" price. It's whatever the market will demand. If you can find the price that bottles are selling on the open market, then that's the price people are willing to pay. Too bad there's no eBay for beer and wine!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-06-28T16:21:03.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6936"}} +{ "Id": "6936", "PostTypeId": "2", "ParentId": "6933", "CreationDate": "2017-06-28T16:23:23.930", "Score": "4", "Body": "

The only way to know the price for sure is to sell it and find out the price at that time, preferably at auction.

\n\n

The only way to price a rare item like this without selling it is to mark it to market. You need to find a number of comparable bottles of special edition beers with similar collectors' markets and use the prices of those bottles to calculate the current price of that bottle. The more similar the comparable bottles are in terms of time since sale, qualities of the beer (style, ABV etc.), number of bottles produced and size of \"following\" or number of collectors, the closer your price will be to a realistic price. If it were really valuable an auction house such as Sotheby's or Christie's could be employed to do the calculations for you as they are quite involved. Note that marking to market only gives a guideline price at a moment in time as prices can fluctuate wildly in collectables markets.

\n\n

The basis of this pricing model is the pricing of any liquid commodity or financial instrument.

\n", "OwnerUserId": "909", "LastActivityDate": "2017-06-28T16:23:23.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6938"}} +{ "Id": "6938", "PostTypeId": "2", "ParentId": "6524", "CreationDate": "2017-06-30T17:37:46.107", "Score": "4", "Body": "

Gin is very simply defined as

\n\n
\n

a clear alcoholic spirit distilled from grain or malt and flavoured with juniper berries.

\n
\n\n

So your differentiation between \"made properly\" and \"just alcohol and flavor\" is meaningless.

\n\n

Many of the finest gins are made by steeping juniper berries and other botanicals in the distilled spirit. Others are created by passing the newly formed vapour through a \"botanicals basket\" prior to condensation. Whichever way they are created, they are still gin.

\n\n

So all the ones in your picture are \"proper\" gins. Many of them are really nice (that Caorunn is good.)

\n\n

Myself - I'm a big fan of the Gilt Single Malt Gin, as well as my own gin - the Metaltech (which is only for sale at our gigs.)

\n", "OwnerUserId": "187", "LastActivityDate": "2017-06-30T17:37:46.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6940"}} +{ "Id": "6940", "PostTypeId": "1", "AcceptedAnswerId": "6941", "CreationDate": "2017-07-01T22:24:36.030", "Score": "5", "ViewCount": "167", "Body": "

How to get specific recommendation on such a wine? I have seen this description but do not know which wine could this be.

\n", "OwnerUserId": "6886", "LastActivityDate": "2017-07-04T22:25:21.387", "Title": "Bold red wine which stains teeth purple", "Tags": "red-wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6941"}} +{ "Id": "6941", "PostTypeId": "2", "ParentId": "6940", "CreationDate": "2017-07-02T01:49:11.673", "Score": "3", "Body": "
\n

Why Red Wine Stains

\n \n

Strong pigments in red wine are instant stain-makers for porous surfaces like your teeth. These pigments, called chromogens, give it that deep, intense hue, and leave their mark on your teeth after just a few sips. The nature of enamel plays a big part in this process.\n \"Enamel isn't perfectly smooth,\" says Benjamin Rudow, D.D.S. \"It has small cracks and irregularities, and pigmentation from red wine will settle in them

\n
\n\n

So you need to seek out wines that have the highest amount of tannins possible. Your run of the mill grocery store wines will not have a lot of tannins because it's more work and that makes the wines more expensive. Wines meant to age a long time will usually have more tannins since they help buffer the effects of oxidation and help the wine last longer.

\n\n

So, really you want expensive, long lived, tannic wines. Those would be Cabernet, Petit Sirah, Tempranillo, Nebbiolo. But if you really want to go full stain, try a Tannat wine. It will stain your lips, gums, teeth and tongue! It's hard to find a 100% Tannat, but there are some that make it.

\n\n

Tablas Creek in California makes a 100% Tannat that I've had before and it will stain like nobody's business!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-07-02T01:49:11.673", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6942"}} +{ "Id": "6942", "PostTypeId": "2", "ParentId": "2127", "CreationDate": "2017-07-02T15:46:05.403", "Score": "0", "Body": "

Consumption of beer in the Czech Republic has been the highest in the world for many years. Bavarians claim that it is the highest in Bavaria, but they are not an independent country. Anyway, if we talked about historical lands then consumption of beer in Bohemia (Czechia's \"mainland\") would be higher than Bavaria.

\n", "OwnerUserId": "6888", "LastActivityDate": "2017-07-02T15:46:05.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6943"}} +{ "Id": "6943", "PostTypeId": "2", "ParentId": "6524", "CreationDate": "2017-07-02T17:15:23.703", "Score": "0", "Body": "

I'm not sure what you mean by properly, but it seems like you mean \"that you would like\".

\n\n

You could try reading http://theginisin.com/ and getting a feel for if you agree with the reviewer based on what you currently like, then use his reviews as a jumping off point either positively or negatively.

\n\n

However, I believe that the only truly valid way it to try them. That said if your mixing the gin with tonic(and perhaps a lime), there is probably very little chance you can taste the difference.

\n\n

Many people think they are alcohol connoisseurs, but in truth very few are -it take real practice and training. This idea has fascinated me for a long time and working over a decade behind a bar has given me insight. It rings true for every kind of alcohol, varietal of wine, and type of beer. Most people can not tell the difference. What I have here is anecdotal, but perhaps it can help to inform you.

\n\n

I worked at a square bar with a partition in the middle(you could not see across the bar completely). On occasion we would run out of something, bud light, Kendall Jackson, Patron, Crown, Tanqueray, Grey Goose etc. If it wasn't too busy, On the order side of the bar, I would make the person something similar: miller light instead of bud, Cuervo Silver instead of patron, Rail gin instead of Tanqueray, smirnoff instead of Grey Goose. I would let them try it for a bit and then have another bartender ask what they were drinking under some pretense.

\n\n

Never once did anyone notice or at least speak up, and this happened easily more than 100 times. Afterwards I would tell them my \"mistake\" and offer to not charge them for the drink or buy them a round of the correct brand.

\n\n

Less often, but still on occasion(dozens of times) I would hear someone talking about how only brand X will do and everything else is trash. I would tell them that I don't think they can tell the difference and that I was willing to make a bet. Their humiliation against a free drink. I would fill 3 small glasses with enough liquor for a taste. I would then put the bottle for their brand and two other bottles of a similar liquor in front of them.

\n\n

The bet? They have to tell me what liquor is in each glass. If they can, then they get a free shot(or sometimes more than one), if they can't they have to admit they can't tell the difference.

\n\n

I would fill all three glasses with their favorite brand(never said I would use all three bottles). If there was a mixer involved, not a single person figured it out, even though a very large portion of players were certain they were right. If the liquor was straight up, then about 10% - 15% could figure it out.

\n\n

I'm not saying there are no taste differences between gins- there are. For the uninitiated though, they are difficult to detect straight. When you mix it with tonic(or another mixer) many of the differences are completely lost and only practiced connoisseurs will be able to detect what they are specifically drinking. Based on your question, it does not appear you fall into this category(most of us don't).

\n\n

Mostly what you are getting with a certain brand is a feeling from ordering it, not a distinct flavor profile. In that light, let go of the importance of taste and try to consider feeling. Ask yourself, what feeling are you trying to get for yourself? You want the bartender to think well of you? You want to feel like you are drinking something made with high quality methods? You want to feel superior to others? You want to recapture a memory? You want to seem cool? You want to impress someone? You want to feel like you are getting your money's worth? Want to spend as little/ as much as possible?

\n\n

Let the feeling you are chasing help you choose the right brand. Alternatively, you could go about tasting all of these gins in order to gain the actual skill to know the difference. However, this will take years and doesn't have much use in regular bar drinking.

\n\n

These stereotypes may very by locale, but just as a starting point:\nWant to seem urban tough, try Tanqueray.\nWant to seem urban sophisticated, try Tanqueray 10\nWant to seem like you know a good classic, try Saffire.\nWant to show working class grit, try beef eaters or gordon's or rail.\nWant to seem informed or hip (depending on whats available), try Caorunn, Hendrix, or anything local or \"small batch\".

\n\n

I expect I may get some kickback from some folks about difficulty of tasting the difference and I say to you prove me wrong. Perform a blind taste test- mark the bottom of the glass with a label facing down and make sure to put multiples of the each brand in order to make sure you actually able to tell the difference and not just guessing correctly.

\n\n

Also, here is a link to relevant article(for wine not gin) that concludes that people can not tell the difference in brands.

\n", "OwnerUserId": "5969", "LastEditorUserId": "5969", "LastEditDate": "2017-07-02T19:16:08.993", "LastActivityDate": "2017-07-02T19:16:08.993", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6945"}} +{ "Id": "6945", "PostTypeId": "2", "ParentId": "354", "CreationDate": "2017-07-04T07:58:46.540", "Score": "2", "Body": "

I've seen a lot of people commenting to cook with it , which is my advice , but I haven't seen someone speaking about crepes.\nI don't know if we only do this here (france) but I've always used beer to make crepes and it's realy great. I recently thought about using strong flavored beers (like dark ones) but didn't try it yet so if you try it soon a feedback would be appreciated !

\n", "OwnerUserId": "6371", "LastActivityDate": "2017-07-04T07:58:46.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6950"}} +{ "Id": "6950", "PostTypeId": "2", "ParentId": "6892", "CreationDate": "2017-07-06T08:31:42.770", "Score": "2", "Body": "

Don't worry about the sediment, most of it will be yeast and if the beer was preserved properly it will still be alive. It's up to your personal taste to add it or leave it in the bottle. When I sample old bottles I listen to the sound the beer makes when I lift the cap, if it's quiet silent the beer goes down the drain.

\n\n

I wouldn't age La Chouffe Blonde myself, it's a beer that get's most of it's character from subtle hoppy notes and those are lost once the beer gets older.

\n", "OwnerUserId": "5705", "LastActivityDate": "2017-07-06T08:31:42.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6951"}} +{ "Id": "6951", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2017-07-13T00:48:39.270", "Score": "3", "Body": "

I would like to add that although I have not confirmed it I read somewhere the purity laws had less to do with \"making great beer\" and more to do with them being poor. They didn't want certain grains or things being used for beer as it drove up the price of bread and other foods. In the following article it is states they didn't want to waste valuable grains for beer: April 23, 1516: Bavaria Cracks Down on Beer Brewers.

\n", "OwnerUserId": "6922", "LastEditorUserId": "5064", "LastEditDate": "2017-07-13T10:40:19.527", "LastActivityDate": "2017-07-13T10:40:19.527", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6954"}} +{ "Id": "6954", "PostTypeId": "2", "ParentId": "6746", "CreationDate": "2017-07-14T01:00:04.407", "Score": "2", "Body": "

I did not see this mentioned...wood is made up of fibers of cellulose and hemicellulose. Both of these substances are polymers of sugar, just like starch is a polymer of sugar. When the barrel is charred, it will create caramel compounds, just like charring sugar. When bourbon is stored in a charred oak barrel, these caramel compounds will be extracted into the spirit, adding sweetness.

\n\n

Similarly, the cellulose and hemicellulose are bound together by a compound called lignin. When lignin is broken down, phenylpropenes and methoxyphenols are created. Examples of these compounds are vanilla and clove flavors

\n", "OwnerUserId": "4454", "LastActivityDate": "2017-07-14T01:00:04.407", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6955"}} +{ "Id": "6955", "PostTypeId": "2", "ParentId": "6443", "CreationDate": "2017-07-14T01:08:34.330", "Score": "2", "Body": "

In the sour mash process, the distillers beer is distilled, and a portion of the spent beer is added to the next batch. Many organic acids are not very volatile, so they will remain in the spent beer. Adding this to the sweet mash will add free amino nitrogen and organic acids to the sweet mash. Yeast likes a slightly acidic environment, and many bacteria and molds do not. Adding the spent beer help keep these spoilage organisms away while also adding nutrients to the mash. The spent beer also helps with flavor consistency.

\n", "OwnerUserId": "4454", "LastEditorUserId": "4454", "LastEditDate": "2017-07-14T01:41:53.763", "LastActivityDate": "2017-07-14T01:41:53.763", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6956"}} +{ "Id": "6956", "PostTypeId": "2", "ParentId": "256", "CreationDate": "2017-07-14T09:22:10.460", "Score": "2", "Body": "

I just add it at the secondary fermentation stage when I homebrew beer. I made a belgian style wheat beer and simply added some vanilla extract.

\n\n

edit : I just added some cloves to a dark beer brew when decanting it out of my fermentation vessel. Worked very well. Additions don't need to be a liquid.

\n", "OwnerUserId": "6920", "LastEditorUserId": "6920", "LastEditDate": "2017-08-10T09:36:54.570", "LastActivityDate": "2017-08-10T09:36:54.570", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6959"}} +{ "Id": "6959", "PostTypeId": "2", "ParentId": "3416", "CreationDate": "2017-07-19T10:43:43.297", "Score": "3", "Body": "

Since I don't know which EU country you're referring to, here are some of my picks that ship to Sweden.

\n\n
    \n
  • shop.mikkeller.dk
  • \n
  • boxbeers.dk
  • \n
  • www.bieresgourmet.be
  • \n
  • www.bier-deluxe.de
  • \n
  • www.biere-revolution.com
  • \n
  • www.beergium.com
  • \n
\n", "OwnerUserId": "6938", "LastActivityDate": "2017-07-19T10:43:43.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6961"}} +{ "Id": "6961", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2017-07-20T07:58:34.650", "Score": "3", "Body": "

Hangover is the manifestation of poisoning by the intermediate product of alcohol decomposition : aldehydes.

\n

Asian people as well as some blue eyed blond people have harder time decomposing those in harmless molecules. Aldehydes have also a link to the taste of the beverages as they contain some.

\n

Producing the molecule that breaks down aldehydes require lots of water, but most alcoholic beverages are diuretics, meaning that drinking more water will make aldehyde deshydrogenase production a bit higher.

\n

So drink water and have a balanced diet to lessen the effects of hangovers.

\n

Also, smoking reduce the speed of action of aldehyde deshydrogenase since the reaction required oxygen.

\n
\n

Macgregor S., Lind P. A., Bucholz K. K., Hansell N. K., Madden P. A. F., Richter M. M., Montgomery G. W., Martin N. G., Heath A. C., Whitfield J. B. (2008.) "Associations of ADH and ALDH2 gene variation with self report alcohol reactions, consumption and dependence: an integrated analysis", Human Molecular Genetics, 18(3):580-93.

\n

Xiao Q, Weiner H, Crabb DW (Nov 1996). "The mutation in the mitochondrial aldehyde dehydrogenase (ALDH2) gene responsible for alcohol-induced flushing increases turnover of the enzyme tetramers in a dominant fashion". The Journal of Clinical Investigation. 98 (9): 2027–32.

\n
\n", "OwnerUserId": "6943", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2017-08-06T19:56:00.300", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6962"}} +{ "Id": "6962", "PostTypeId": "1", "AcceptedAnswerId": "6965", "CreationDate": "2017-07-23T14:24:35.357", "Score": "0", "ViewCount": "144", "Body": "

I enjoy watching movies with friends as a group and was hoping that some of you could possibly come up with a recommendation and pairing of a liqueur or two with a particular movie?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-07-24T00:20:55.820", "LastActivityDate": "2017-07-24T00:20:55.820", "Title": "What liqueurs can be paired with a particular movie?", "Tags": "recommendations pairing liqueur", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6963"}} +{ "Id": "6963", "PostTypeId": "2", "ParentId": "6962", "CreationDate": "2017-07-23T14:39:37.157", "Score": "1", "Body": "

I am going to make the following recommendation for the \"Harry Potter\" series.

\n\n

Mandrágora Liqueur from the Basque region of Spain.

\n\n
\n

This liqueur from Navarra (in Spain) contains mandrake extract – a plant whose medicinal properties are the subject of many myths and legends. Alkaloid, an active component contained in the plant, can supposedly initiate hallucinatory experiences.

\n \n

The legend goes that a mandrake elixir was consumed by witches who were learning how to fly. Mandrake is also a key ingredient in many of the magical elixirs present in the famous “Harry Potter” series.

\n \n

In Harry Potter, as well as in other more traditional myths, mandrake root is portrayed with human characteristics since the root itself is said to resemble a human body.

\n
\n\n

\"Liquor

\n\n

Liquor Mandrake \"Mandrágora\"

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-07-23T14:39:37.157", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6965"}} +{ "Id": "6965", "PostTypeId": "2", "ParentId": "6962", "CreationDate": "2017-07-23T23:22:24.603", "Score": "2", "Body": "

Most Hollywood blockbusters are well paired with beer. For example boxing scenes from Rocky fit Budweiser.
\nHollywood classic may differ. In my opinion, Gone With The Wind requires Bourbon, and My Fair Lady is all about Campaign. Forrest Gump should fit Dr. Pepper but you can improve the drink with Bourbon or Whiskey. And of course Zorro must go with Tequila. Jesus Christ Superstar best fit to red wine and dry bread as a snack (\"This is my blood and this is my body. Remember this every time you eat and drink.\")
\nSome movies do not match a single drink. For example, National Lampoon European Vacation require Scotch for British episode, cheap red wine for French, Bavarian beer for German, and Cinzano for Italian.
\nAnd never forget pickle juice for the next morning. ;)

\n", "OwnerUserId": "6194", "LastActivityDate": "2017-07-23T23:22:24.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6966"}} +{ "Id": "6966", "PostTypeId": "1", "CreationDate": "2017-07-25T20:10:14.870", "Score": "2", "ViewCount": "214", "Body": "

AFAIK, good distillers discard (or at least reduce) the head (typically the first 5%) of any primary distillation run because it is predominantly less desirable high-VOC compounds.

\n\n

Is distillation ever used to remove these \"head compounds\" from a fermented beverage just to improve its taste?

\n\n

For example, if removing the head improves our cognac, wouldn't removing it from otherwise finished wine also improve the wine?

\n", "OwnerUserId": "5486", "LastActivityDate": "2017-07-25T21:36:20.743", "Title": "Distilling fermented beverages to remove head without concentrating alcohol?", "Tags": "wine production distillation", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6967"}} +{ "Id": "6967", "PostTypeId": "2", "ParentId": "6966", "CreationDate": "2017-07-25T21:36:20.743", "Score": "1", "Body": "

No, this would destroy the wine/mash/beer that your were trying to remove the \"head\" from. Just to make the first pass in a still to remove this head, you would need to get the liquid up to around 200f to start the process, thereby destroying whatever your were trying to get the less desirable aspects out of it.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-07-25T21:36:20.743", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6968"}} +{ "Id": "6968", "PostTypeId": "2", "ParentId": "5015", "CreationDate": "2017-07-26T17:32:16.810", "Score": "-1", "Body": "

Bourbon is not different from whiskey...it is to be understood that \"bourbon\" is a type of whiskey which is distilled in America (USA) this is the answer in laymen language... Try to understand the idea that \"scotch\" is also a whiskey which is distilled in scotland... \nSo be it scotch, bourbon, rye they all are whiskey but the difference lies in their constituent ingredient (barley, corn)...blended or single malted... Origin place, taste and texture anf lastly the alcohol content... \nAsking the difference between \"bourbon and whiskey\" is just like asking the difference between \"BMW and a CAR\"\nI hope you get the idea..

\n", "OwnerUserId": "6962", "LastActivityDate": "2017-07-26T17:32:16.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6970"}} +{ "Id": "6970", "PostTypeId": "1", "AcceptedAnswerId": "7042", "CreationDate": "2017-08-03T11:44:34.827", "Score": "5", "ViewCount": "1439", "Body": "

Is it possible to know what was the most common hard liquor of the Late Middle Ages?

\n\n

I am not asking for the strongest drink in the Middle Ages, but which hard liquor was the most common during the Late Medieval Period.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-10-17T23:18:39.967", "LastActivityDate": "2021-01-06T17:37:39.493", "Title": "What was the most common hard liquor of the Late Middle Ages?", "Tags": "history liquor", "AnswerCount": "5", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6972"}} +{ "Id": "6972", "PostTypeId": "1", "AcceptedAnswerId": "6979", "CreationDate": "2017-08-03T20:58:03.927", "Score": "5", "ViewCount": "26436", "Body": "

I don't mean brands, we could be here all day figuring out that list... I literally mean how many types of gin are there? I know there's dry (London) gin, and sloe gin, but are there any more? Why's dry gin different to just plain gin? Can a gin be two types at the same time? What makes a gin liqueur? Could someone also explain why they are different - is it due to the distilling process, or is it to do with the ingredients added etc.

\n", "OwnerUserId": "6989", "LastActivityDate": "2018-06-10T13:56:34.347", "Title": "How many types of gin are there?", "Tags": "gin differences", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6973"}} +{ "Id": "6973", "PostTypeId": "2", "ParentId": "6970", "CreationDate": "2017-08-04T04:53:43.213", "Score": "0", "Body": "

It would depend on the crop the region had plenty of. Corn and rye would lean towards bourbon and wheat and potatoes towards vodka but it's all shine in the end.

\n", "OwnerUserId": "6991", "LastActivityDate": "2017-08-04T04:53:43.213", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6974"}} +{ "Id": "6974", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2017-08-04T04:59:38.007", "Score": "0", "Body": "

No sugar in your mixed drinks. Diet everything or water. I drink vodka and diet tonics and haven't had a hangover in ages. If you get a hangover from beer then I recommend trying higher quality beers

\n", "OwnerUserId": "6991", "LastActivityDate": "2017-08-04T04:59:38.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6975"}} +{ "Id": "6975", "PostTypeId": "1", "CreationDate": "2017-08-04T13:36:20.567", "Score": "2", "ViewCount": "1023", "Body": "

I know it's made from 1/4 Vana Tallinn and 3/4 Sparkling Wine (or Champaign) but I've spent ages trying to find out where and how it started. Does anyone claim to have invented it? What is the earliest reference to the drink? Also, it's so called as it will hit you over the head and cut your legs off, where does that story come from?

\n\n

Thanks in advance for anyone that can help.

\n", "OwnerUserId": "6993", "LastEditorUserId": "5064", "LastEditDate": "2017-08-04T14:37:53.020", "LastActivityDate": "2017-08-04T14:37:53.020", "Title": "When and how was the Estonian cocktail the Hammer and Sickle invented?", "Tags": "history cocktails", "AnswerCount": "0", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6976"}} +{ "Id": "6976", "PostTypeId": "1", "CreationDate": "2017-08-04T16:51:57.173", "Score": "3", "ViewCount": "971", "Body": "

Am after APIs that will in real-time help me understand by way of providing such APIs with the following inputs:

\n\n
    \n
  1. Store/Location Address/Geocoordinates of the location
  2. \n
  3. Customer Address for receiving the delivery of Beer-Wine-Spirits (BWS)
  4. \n
  5. Provide such an API with a slew of inputs like time of day and day of the week and the pointers discussed in 1 and 2 and the incumbent API should come back and tell me whether I can proceed onto delivering Beer-Wine-Spirits?
  6. \n
  7. From Point 3, the API should also tell me whether I can ONLY deliver Beer or Wine or Spirits or All or what are the appropriate restrictions
  8. \n
\n\n

Thanks for all the responses, I see that this post is still haunting me. Have to confirm that I managed to find a vendor - https://www.shipcompliant.com/ who happens to have all the information that I was after.

\n", "OwnerUserId": "6996", "LastEditorUserId": "-1", "LastEditDate": "2019-09-27T20:31:00.490", "LastActivityDate": "2019-09-27T20:31:00.490", "Title": "Are there any public APIs that will help determine the legality of a location to get Beer-Wine-Spirits delivered?", "Tags": "laws united-states", "AnswerCount": "0", "CommentCount": "6", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6978"}} +{ "Id": "6978", "PostTypeId": "2", "ParentId": "4667", "CreationDate": "2017-08-04T22:41:04.987", "Score": "-1", "Body": "

I am pretty sure it gives you a kick but I don't think it's the one you are thinking of.\nI am interested in a more experienced answer because I went to a rural area near a village in a Mediterranean country recently and they told me to watch out because guys in that area spike girls' drinks with cigarrette ashes so that they can get them more drunk or make them wanna puke so that they both 1) make fun of them and 2) can take advantage of them. \nAnd there were some known solid incidents from the girls I met not just rumors so I'd say it does a good damn job. \nI came across this because I'm looking for a way to avoid drinking something like that because that sounds like a freaking dangerous trap, but I can't find much.

\n", "OwnerUserId": "6998", "LastActivityDate": "2017-08-04T22:41:04.987", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6979"}} +{ "Id": "6979", "PostTypeId": "2", "ParentId": "6972", "CreationDate": "2017-08-05T13:32:02.803", "Score": "7", "Body": "

Before going to the various types of gin, I feel it necessary to define a few terms and for simplification I am going to use Wikipedia.

\n\n

What is gin?

\n\n
\n

Gin is a spirit which derives its predominant flavour from juniper berries (Juniperus communis). From its earliest origins in the Middle Ages, gin has evolved from use in herbal medicine to an object of commerce in the spirits industry. Gin was developed on the basis of the older jenever, and became popular in Great Britain (particularly in London) when William of Orange, leader of the Dutch Republic, occupied the English, Scottish, and Irish thrones with his wife Mary. Gin is one of the broadest categories of spirits, represented by products of various origins, styles, and flavour profiles that all revolve around juniper as a common ingredient.

\n
\n\n

What is a liqueur?

\n\n
\n

A liqueur is an alcoholic beverage made from a distilled spirit that has been flavored with fruit, cream, herbs, spices, flowers or nuts and bottled with added sugar or other sweetener (such as high-fructose corn syrup). Liqueurs are typically quite sweet; they are usually not aged for long after the ingredients are mixed, but may have resting periods during their production to allow flavors to marry.

\n
\n\n

What is a liquor?

\n\n
\n

A distilled beverage, spirit, liquor, hard liquor or hard alcohol is an alcoholic beverage produced by distillation of grains, fruit, or vegetables that have already gone through alcoholic fermentation. The distillation process purifies the liquid and removes diluting components like water, for the purpose of increasing its proportion of alcohol content (commonly expressed as alcohol by volume, ABV).1 As distilled beverages contain more alcohol, they are considered \"harder\" – in North America, the term hard liquor is used to distinguish distilled beverages from undistilled ones.

\n
\n\n

On the web one can see that there generally five types of gin. However Canada and the USA recognize only 3 types of gin (Genever, Gin, London or Dry gin), while the European Union recognizes 4 types (Juniper-flavoured spirit drinks, Gin, Distilled gin and London gin).

\n\n

Here are the different types of gins that can be found around the world and what makes them a certain style of gin.

\n\n
\n
    \n
  • London Dry Gin is what most people think of as “gin.” They are typically very dry, heavily juniper flavored, light in body, and aromatic. To get the flowery, botanical flavor, this style of gin is typically infused with various aromatic ingredients during the 2nd or 3rd distillation process, giving each brand its own unique taste. London dry gin doesn’t have to be made in London and most aren’t. If you’re at the store, common brands include Tanqueray, Bombay Sapphire, and Beefeater. This style is great for classic martinis, gin and tonics, and Aviation cocktails.

  • \n
  • Plymouth Gin is a less dry cousin to London Dry Gin that must be made in Plymouth, England. Infused with more roots, this style of gin has an earthier flavor with softer juniper notes than other styles. Currently, there is only one brand of Plymouth gin produced in the world and, wouldn’t you know it, it’s called Plymouth. It can be used anywhere a London Dry Gin is used.

  • \n
  • Genever or Dutch gin is very different in color and taste to the other types of gins. Unlike most gins which are made with a combination of cereal grains, genever is made from a base of malt grains which gives it a darker color and flavor that is more similar to a light-bodied, botanical whiskey. Recently, genever has been revived by craft mixologists who are using it creatively in cocktails, but it is just as good for sipping straight or chilled. The most commonly available brand is Bols Genever.

  • \n
  • Old Tom Gin is a sweeter cousin to London Dry Gin and is appropriately names as it was the preferred gin in a Tom Collins. It’s often thought of as somewhere in between a London Dry Gin and Genever. It can be difficult to find but look for the Hayman’s brand. Old Tom Gin is most famously used in the Tom Collins and Martinez cocktails but is also delicious in a Ramos Gin Fizz.

  • \n
  • New American or International Style Gin is an umbrella term used to refer to all of the new styles of gin that use the same base distilling process but are predominantly infused with flavors other than juniper berries. The most common one you might be familiar with is Hendrick’s, flavored with cucumber and rose. - The 4 (and Maybe 5) Types of Gin

  • \n
\n
\n\n

A sixth type of gin is the Sloe Gin and is considered by some to be a liqueur and not a liquor because of the amount of sugar added to it.

\n\n
\n

Sloe Gin: A historic style, with neither legal nor geographic protection, sloe gin is a flavored gin, using sloe, or blackthorn, berries, along with sugar. Sloe gin is more of a fruit cordial or a liqueur than it is a true gin, and in fact, some bottom-shelf sloe gins are made not with gin at all but with vodka. - The Serious Eats Guide to Gin

\n
\n\n

More information can be found at the following:

\n\n
\n \n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-08-05T13:32:02.803", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6980"}} +{ "Id": "6980", "PostTypeId": "1", "AcceptedAnswerId": "6981", "CreationDate": "2017-08-05T17:16:21.363", "Score": "1", "ViewCount": "139", "Body": "

I've always thought of Malbec as being a French wine, however when visiting France, it appears to be quite uncommon. Does anyone know why is isn't popular there?

\n", "OwnerUserId": "7000", "LastActivityDate": "2017-08-05T20:25:31.397", "Title": "Why don't the French drink much Malbec?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6981"}} +{ "Id": "6981", "PostTypeId": "2", "ParentId": "6980", "CreationDate": "2017-08-05T20:25:31.397", "Score": "2", "Body": "

Malbec is a French wine and at one point was grown in 30 different departments of France, a legacy that is still present in the abundance of local synonyms for the variety. However this variety of grapes is in decline in part due to its' sensitivities to so many different vine ailments (coulure, downy mildew, frost).

\n\n
\n

In recent times, the popularity of the variety has been steadily declining with a 2000 census reporting only 15,000 acres (6,100 hectares) of the vine mostly consigned to the southwestern part of the country. Its stronghold remains Cahors where Appellation d'origine contrôlée (AOC) regulations stipulates that Malbec must compose at least 70% of the blend, with Merlot and Tannat rounding out the remaining percentage. Outside of Cahors, Malbec is still found in small amounts as a permitted variety in the AOCs of Bergerac, Buzet, Côtes de Duras, Côtes du Marmandais, Fronton and Pécharmant. It is also permitted in the Vin Délimité de Qualité Supérieure (VDQS) of Côtes du Brulhois. In the MIDI region of the Languedoc, it is permitted (but rarely grown) in the AOC regions of Cabardès and Côtes de Malepère. There is a small amount of Malbec grown in the middle Loire Valley and permitted in the AOCs of Anjou, Coteaux du Loir, Touraine and the sparkling wine AOC of Saumur where it is blended with Cabernet Sauvignon and Gamay. But as elsewhere in France, Malbec is losing acreage other varieties—most notably Cabernet Franc in the Loire.

\n \n

The grape was historically a major planting in Bordeaux, providing color and fruit to the blend, but in the 20th century started to lose ground to Merlot and Cabernet Franc due, in part, to its sensitivities to so many different vine ailments (coulure, downy mildew, frost). The severe 1956 frost wiped out a significant portion of Malbec vines in Bordeaux, allowing many growers a chance to start anew with different varieties. By 1968 plantings in the Libournais was down to 12,100 acres (4,900 hectares) and fell further to 3,460 acres (1,400 hectares) by 2000. While Malbec has since become a popular component of New World meritages or Bordeaux blends, and it is still a permitted variety in all major wine regions of Bordeaux, its presence in Bordeaux is as a distinctly minor variety. Only the regions of the Côtes-de-Bourg, Blaye and Entre-Deux-Mers have any significant plantings in Bordeaux. - Malbec (Wikipedia).

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-08-05T20:25:31.397", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6983"}} +{ "Id": "6983", "PostTypeId": "2", "ParentId": "6468", "CreationDate": "2017-08-13T12:34:48.520", "Score": "2", "Body": "

Adding yet another possibility for everyone, but this time I would like to make the national drinking day an international drinking day: International Beer Day (IBD).

\n\n
\n

International Beer Day (IBD) is a celebration on the first Friday of every August founded in 2007 in Santa Cruz, California. Since its inception, International Beer Day has grown from a small localized event in the western United States into a worldwide celebration spanning 207 cities, 50 countries and 6 continents. Specifically, International Beer Day has three declared purposes:

\n \n

1.To gather with friends and enjoy the taste of beer.

\n \n

2.To celebrate those responsible for brewing and serving beer.

\n \n

3.To unite the world under the banner of beer, by celebrating the beers of all nations together on a single day.

\n \n

Popularity

\n \n

International Beer Day began as a celebration at the founders’ local bar, but has since expanded to become a worldwide event. Celebrations are planned throughout the United States as well as in Argentina, Armenia, Australia, Austria, Belgium, Brazil, Bulgaria, Canada, Colombia, Costa Rica, El Salvador, England, France, Greece, Honduras, Hong Kong, Hungary, India, Ireland, Israel, Italy, Japan, Latvia, Lebanon, Lithuania, Luxembourg, Macedonia, Malaysia, Mexico, New Zealand, Nicaragua, Norway, Peru, Poland, Portugal, Puerto Rico, Romania, Scotland, Serbia, Singapore, Slovakia, Slovenia, South Africa, Spain, Sri Lanka, Sweden, Thailand, the Philippines, Turkey, Uganda, United Arab Emirates, Uruguay, Vanuatu, and Venezuela.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2017-08-13T12:34:48.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6984"}} +{ "Id": "6984", "PostTypeId": "2", "ParentId": "6475", "CreationDate": "2017-08-15T19:43:57.667", "Score": "2", "Body": "

As with almost anything that becomes banned or illegal it causes the substance to increase in cost greatly since the acquisition of the substance requires illegal acts from manufacturing to distribution. Therefore, no prohibition does not generally work in stopping consumption but it does result in many other legal issues.

\n", "OwnerUserId": "6991", "LastActivityDate": "2017-08-15T19:43:57.667", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6985"}} +{ "Id": "6985", "PostTypeId": "1", "AcceptedAnswerId": "6986", "CreationDate": "2017-08-17T13:18:19.240", "Score": "4", "ViewCount": "241", "Body": "

What is the difference between \"The Ale\", \"The Brown Ale\", and the \"Mild Ale\" beers? The colour seems more or less the same so, is it the taste that normally is different or is the level of alcohol present on the beer?

\n", "OwnerUserId": "7030", "LastEditorUserId": "6566", "LastEditDate": "2018-05-02T11:24:15.810", "LastActivityDate": "2018-05-02T11:24:15.810", "Title": "Difference between \"Ale's\" beer", "Tags": "taste flavor ale classification", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"6986"}} +{ "Id": "6986", "PostTypeId": "2", "ParentId": "6985", "CreationDate": "2017-08-17T14:09:24.643", "Score": "5", "Body": "

Beers (ales and lagers) are broken down into many, many different styles based on how they are brewed. Most beers have only 3 or 4 different types of ingredients. Malt, water, yeast, hops and sometimes fruit or herbs. While there doesn't seem like there can be a lot of variation, there are almost an infinite amount of ways to combine these ingredients. For the specific beers you mention, Brown Ale and Mild Ale are very similar styles. I'm not sure what you mean by \"The Ale\".

\n\n

Mild Ale vs. Brown Ale

\n\n

English-Style Brown Ale\nStyle Family: Brown Ales\nThe English-style brown ale ranges from dryer (Northern English) to sweeter (Southern English) maltiness. Roast malt tones (chocolate, nutty) may sometimes contribute to the flavor and aroma profile. Hop bitterness is very low to low, with very little hop flavor and aroma. Known for rich and advanced malt aroma and flavor without centering too much on hops, the English-style mild is extremely sessionable and food-friendly.

\n\n

English-Style Mild Style Family: Brown Ales\nMalt and caramel are part of the flavor and aroma profile of the English-style mild while licorice and roast malt tones may sometimes contribute as well. Hop bitterness is very low to low. U.S. brewers are known to make lighter-colored versions as well as the more common “dark mild.” These beers are very low in alcohol, yet often are still medium-bodied due to increased dextrin malts.

\n\n

If you want to dig deeper into this read the Beer Style Study Guide

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-08-17T14:09:24.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6987"}} +{ "Id": "6987", "PostTypeId": "1", "AcceptedAnswerId": "7006", "CreationDate": "2017-08-20T11:26:24.447", "Score": "2", "ViewCount": "269", "Body": "

While reading this question (What other beer brands began as fictional but eventually became real?), I became interested in knowing if there are any fictional alcoholic drinks other than beer that eventually became real?

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-09-10T19:03:37.337", "Title": "Other than beer are there any fictional drinks that eventually became real?", "Tags": "history drink", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6988"}} +{ "Id": "6988", "PostTypeId": "2", "ParentId": "6314", "CreationDate": "2017-08-20T12:36:34.300", "Score": "1", "Body": "

There is a little known Stellina that is produced by the Order of the Sainte Famille in France.

\n\n
\n

Stellina is a herbal liqueur made by the monastic order of the Sainte Famille (Holy Family) in Belley, France. It is considered similar to Chartreuse, both being made by monks in the same region, to secret recipes, and also coming in both green and yellow. However, Stellina is much younger (dating to 1904, rather than 1605), smaller (the Sainte Famille order has 300 members), and much less-known than Chartreuse. - Stellina (Wikipedia)

\n
\n\n

The Order uses the revenues to help the various missions abroad.

\n\n
\n

The secrecy is vital, he says, to protect the monastery’s key asset. “We receive a percentage of the sales and use it to help Third World countries. The money doesn’t pay for beautiful cars or houses, it finances our missions in Burkina Faso, the Ivory Coast and Benin, in India and the Philippines, and in Colombia, Brazil and Ecuador.” - This obscure liqueur may save your soul

\n
\n\n

\"Liqueur

\n\n

Green Stellina Liqueur

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-08-20T12:36:34.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6989"}} +{ "Id": "6989", "PostTypeId": "2", "ParentId": "6987", "CreationDate": "2017-08-20T13:58:16.143", "Score": "1", "Body": "

Star Trek Saurian Brandy. This is a fake drink, along with Klingon Blood Wine and Romulan Ale, that have been recreated in the real world.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-08-20T13:58:16.143", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6990"}} +{ "Id": "6990", "PostTypeId": "2", "ParentId": "6987", "CreationDate": "2017-08-20T17:44:24.517", "Score": "2", "Body": "

The Vesper Martini was first described by James Bond in Ian Fleming's book Casino Royale in 1953. The recipe is:

\n\n
\n

\"Three measures of Gordon's, one of vodka, half a measure of Kina\n Lillet. Shake it very well until it's ice-cold, then add a large thin\n slice of lemon-peel.\"

\n
\n", "OwnerUserId": "6370", "LastActivityDate": "2017-08-20T17:44:24.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6991"}} +{ "Id": "6991", "PostTypeId": "1", "CreationDate": "2017-08-21T06:19:47.037", "Score": "5", "ViewCount": "1420", "Body": "

It is frequently mentioned that drinks of very high ABV should not be drunk neat because of their harmful effects. Examples of such claims can be found e.g. here: What is the strongest drink in the world?

\n\n

I'm curious though, what the exact hazards are? Obviously I'm asking about hazards that stem from the concentration alone and not from the quantity, which is the easier to overdose the higher the concentration is. In other words, how is it worse for health to drink a shot of 95.6% rectified spirits than to drink the same amount of alcohol, but diluted fairly with water?

\n", "OwnerUserId": "5393", "LastEditorUserId": "5064", "LastEditDate": "2017-08-22T11:24:44.800", "LastActivityDate": "2021-09-15T18:09:48.990", "Title": "What are the exact risks of drinking alcohol in a too high concentration?", "Tags": "health alcohol-level spirits", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6992"}} +{ "Id": "6992", "PostTypeId": "2", "ParentId": "6991", "CreationDate": "2017-08-22T11:24:59.767", "Score": "2", "Body": "

Here are some hard alcohol risks.

\n\n
\n

Hard Alcohol Risks:

\n \n

Hard alcohol consumption is contraindicated in certain segments of the population because of the latter’s higher susceptibility to the effects of the beverage. For instance, individuals who have difficulty sleeping, or suffer from depression or other mental disorders, are advised against intake as the psychoactive mechanism of the drink can further worsen said conditions. Consumption is also strongly advised against in pregnant women as it can lead to severe gross motor development, fetal alcohol syndrome, and sudden infant death syndrome, to name a few, in children who got exposed to hard alcohol in the womb. Persons who have to deal with chronic gastrointestinal disorders like irritable bowel syndrome have to steer clear as intake can severely aggravate the conditions as well.

\n \n

This beverage has a substantial concentration of ethanol per volume as well. Excess ethanol consumption inflicts sever damage to the liver and can bring about scarring or cirrhosis, inflammation or alcoholic hepatitis, and even cancer of said organ. This type of alcohol is associated with other cancers such as those afflicting the mouth and pharynx, the bowels, the breasts, the prostate, and the stomach.

\n \n

Hard alcohol has a powerful diuretic effect as well. Because this is the case, individuals who have diarrhea, renal problems, or other medical conditions that are prone to severe dehydration must avoid consumption of this drink as well. Such fluid-draining effect of hard alcohol can instigate premature wrinkling of the skin due to dehydration, and may increase the frequency and severity of dermatological allergies like psoriasis and eczema. - Secrets of the Superhuman Food Pyramid: Negative Effects of Hard Alcohol

\n
\n\n

These are just the tip of the iceberg, for drinking those extremely high levels of alcohol could lead to alcohol poisoning very fast and thus cause unconsciousness or even worse, death.

\n\n
\n

Alcohol overdosing is nothing unusual. It’s hard to come across anything beyond 40 percent at bars (unless on demand) because the higher the ABV (alcohol by volume), the higher are your chances of you getting knocked out. But still, there exists a dark land of spirits where ABV can go up to a suicidal 96 percent.

\n \n

Spirytus Rektyfikowany (96% Alcohol)

\n \n

The purity of rectified spirit has a practical limit of 95.6% ABV; this hard to pronounce Polish Vodka is a murderous 96% ABV. In short, abusing this drink can literally make you meet God! Spirytus is actually more potent than the widely-known Everclear and sits atop as the world’s strongest alcoholic beverage. - 10 Alcoholic Drinks So Strong They Can Knock Out The Manliest Of You

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2017-08-24T10:40:07.820", "LastActivityDate": "2017-08-24T10:40:07.820", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6993"}} +{ "Id": "6993", "PostTypeId": "2", "ParentId": "361", "CreationDate": "2017-08-22T23:29:50.453", "Score": "1", "Body": "

I believe the lid was also used during the Revolutionary War to keep the Kings naval soldiers from throwing a British coin into the beer of an unsuspecting drunk colonist in a tavern. Legend has it that once the ale was consumed, the remaining coin would signify that the owner of the stein would be incriminated by default, to the loyalty of the King. He would then be immediately drafted into the Naval Army of the King. Consequently, the need for a glass bottom to the stein was adopted as a precaution for colonists to be able to see the naval officers by simply lifting up the stein and prevent capture..

\n", "OwnerUserId": "7041", "LastActivityDate": "2017-08-22T23:29:50.453", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6995"}} +{ "Id": "6995", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2017-08-27T00:20:19.093", "Score": "3", "Body": "

28% ABV is the best I have managed with my yeast though it needs plenty of sugar added to whatever you are brewing apart from mead. Getting the yeast from the boot's from it's original 8% to 20% took 8 years getting it from 20% to 28% has taken 25 year's and I haven't been able to get any increase on that 28% in the last 5 years though it is getting more consistent & given enough sugar it rarely dips below 28%.

\n\n

Ignore any references to Brewmeister here there \"cold brewing\" process is Fractional freezing more conmanly called Freeze distillation where they remove water by freezing it out this has nothing to do with the brewing process.

\n", "OwnerUserId": "7052", "LastEditorUserId": "7052", "LastEditDate": "2017-08-27T00:36:39.533", "LastActivityDate": "2017-08-27T00:36:39.533", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6996"}} +{ "Id": "6996", "PostTypeId": "1", "AcceptedAnswerId": "6997", "CreationDate": "2017-08-27T20:23:34.080", "Score": "6", "ViewCount": "129", "Body": "

I find drinks that are traditionally served in stemmed glasses are difficult to carry (I'm a wheelchair user). What terminology would I use if I wanted to order a drink like a martini or Manhattan served in a rocks glass (but without the ice)?

\n", "OwnerUserId": "7053", "LastEditorUserId": "5064", "LastEditDate": "2017-08-28T11:47:44.763", "LastActivityDate": "2017-08-28T13:56:41.340", "Title": "Ordering a Drink in Non-Traditional Glassware", "Tags": "glassware terminology substitutions", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6997"}} +{ "Id": "6997", "PostTypeId": "2", "ParentId": "6996", "CreationDate": "2017-08-28T13:56:41.340", "Score": "5", "Body": "

I believe the type of glass you are looking for is called an \"Old Fashioned glass\" named for the cocktail typically served in it. Depending on the size of the drink you may possibly want request your drink in a \"Double Old Fashioned glass\". I would hope that simply requesting your martini be served in an Old Fashioned glass would suffice.

\n", "OwnerUserId": "6370", "LastActivityDate": "2017-08-28T13:56:41.340", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6998"}} +{ "Id": "6998", "PostTypeId": "1", "CreationDate": "2017-08-29T09:47:18.817", "Score": "3", "ViewCount": "238520", "Body": "

I know alcoholic drinks are \"restricted items\" for a gout patient diet list. So just wanted to check if we have any specialist here :)

\n\n

Which drink is less imapct ? Beer/Wine/Other Liquors ?

\n", "OwnerUserId": "7059", "LastActivityDate": "2018-08-04T19:41:52.997", "Title": "What is the best alcoholic drink for gout patients?", "Tags": "health", "AnswerCount": "6", "CommentCount": "2", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"6999"}} +{ "Id": "6999", "PostTypeId": "2", "ParentId": "6998", "CreationDate": "2017-08-29T10:16:43.923", "Score": "0", "Body": "

Last I knew malt gave the most chance of gout. Whisky is less. Wine 0%. You can get gout from other ways as well (too rich diet).

\n", "OwnerUserId": "7060", "LastActivityDate": "2017-08-29T10:16:43.923", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7000"}} +{ "Id": "7000", "PostTypeId": "1", "CreationDate": "2017-08-29T12:56:05.543", "Score": "1", "ViewCount": "215", "Body": "

I was on a webshop for beer and was surprised to find a \"selection of beer for women\". It consisted mostly of fruit-flavored beers and other sweet-type beverages such as ciders.

\n\n

This struck me initially as sexist, since women can, and do, like all kinds of beer. I decided to ask the company and they said that those are the beers that their female customers order most (although I'm doubtful that they did a statistical analysis...).

\n\n

I'm curious if beer experts out there believe there should be a category of \"beer for women\" and if so, what would be in that category.

\n", "OwnerUserId": "4095", "LastActivityDate": "2017-08-30T12:05:25.253", "Title": "Would it be sexist for a beer shop to have a \"selection of beer for women\"?", "Tags": "specialty-beers classification", "AnswerCount": "2", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7001"}} +{ "Id": "7001", "PostTypeId": "2", "ParentId": "7000", "CreationDate": "2017-08-29T16:59:15.363", "Score": "4", "Body": "

Yes, I think this is a pretty unnecessary (and non-descriptive) label to put on a category of alcohol. If I go to a liquor store looking for cider or for a dry stout or for anything else and I see a section labeled \"women\" that effectively tells me absolutely nothing about what it is I'll find over there. Not to mention it basically assumes a woman will have no clue what it is she's looking for, so we'll just label this shelf \"women\".

\n\n

I would definitely opt for something more descriptive and that doesn't imply clueless-ness i.e. \"Radlers and Ciders\", \"IPAs\", etc.

\n", "OwnerUserId": "7061", "LastActivityDate": "2017-08-29T16:59:15.363", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7002"}} +{ "Id": "7002", "PostTypeId": "2", "ParentId": "7000", "CreationDate": "2017-08-30T12:05:25.253", "Score": "2", "Body": "

Why would you have a “selection of beer for women”?

\n\n
    \n
  1. this is a marketing strategy that aims both women and men.
  2. \n
  3. women like to be treated differently, as a consumer with special needs and expectations.
  4. \n
  5. men looking for a gift to a woman will most likely be attracted by this selection.
  6. \n
\n\n
\n\n

From Bridget Brennan, a contributor to Forbes, and head of Female Factor: The often repeated phrase, “I know 50% of my marketing budget is wasted, I just don't know which 50%” – has an answer. It's the 50% that doesn't appeal to women.

\n\n

She stressed the importance of thinking holistically and practically when working to promote any product to women. Be it color, size, or smell, it's all intended to catch woman's attention.

\n\n
\n

Women shop with all their senses. Is your store a place that people want to linger? How does it smell, how does it sound? This creates an opportunity to reach the senses that e-commerce can't. Women consumers in particular are highly attuned to the details of a retail environment, from scent to lighting to music to the tactile nature of touching and examining products.

\n
\n\n

From Tom Peters the truth about marketing to women:

\n\n
\n

The times they are a-changing. So the situation is as follows:\n Women are the number one business opportunity. They buy lots of stuff. Men and women are very different. Men are (still) in control and are totally, hopelessly, clueless about women. Not enough “stuff” is designed for women or communicated in a way that appeals to women. Most stuff for women is, to be frank, pretty patronising.

\n \n

This is a straight-down-the-line commercial argument. Women are not a niche market or a minority - they have wallets and, for many businesses, women as decision-makers and consumers hold the key to future success.

\n
\n\n
\n\n

Now, is it sexist?

\n\n

I can't say, but my 2 cents: when targeting women, you're even more willing to add a pink tax.

\n\n

Read more about it here: how gender based pricing hurts women's buying power

\n", "OwnerUserId": "6874", "LastActivityDate": "2017-08-30T12:05:25.253", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7003"}} +{ "Id": "7003", "PostTypeId": "1", "CreationDate": "2017-09-06T08:04:50.257", "Score": "7", "ViewCount": "2965", "Body": "

If I open a bottle of Belgian beer-with a cork- drink a little then put the cork back in the bottle will the cork randomly pop or the bottle explode from any pressure?

\n", "OwnerUserId": "7080", "LastActivityDate": "2017-12-07T04:51:29.183", "Title": "Can I re-cork a beer bottle?", "Tags": "preservation belgian-beers", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7004"}} +{ "Id": "7004", "PostTypeId": "2", "ParentId": "7003", "CreationDate": "2017-09-06T17:14:46.267", "Score": "9", "Body": "

Yes, you can do this just like a bottle of sparkling wine. It should keep the beer for a couple of days, but not forever. Sometimes the corks don't work great, so I would buy a Champagne bottle stopper like the one below \nDon't get the one that hold onto the ridge under the bottle opening. They work great for Champagne bottles but not so good on Belgian beer bottles.\n\"champagne

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-09-06T17:14:46.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7006"}} +{ "Id": "7006", "PostTypeId": "2", "ParentId": "6987", "CreationDate": "2017-09-10T18:10:44.150", "Score": "2", "Body": "

The world of Harry Potter has spawned an entire universe of beverages, both with and without alcohol, including those served at Universal Studios theme parks, and many independently-inspired creations.

\n\n

Eater Miami describes Everything You Need to Eat and Drink at The Wizarding World of Harry Potter by Olee Fowler (May 27, 2016) (emphasis added).

\n\n
\n

Non-Alcoholic: Just as the food remains true to the books and the setting, so do the drinks. The real star of the area is the famous Butterbeer and can be found roughly every 20 feet inside both parks. Butterbeer is a butterscotch meets caramel meets cream soda flavored drink. It’s offered in regular form, frozen and even hot for the few days out of the year it drops below 70 degrees.

\n \n

Almost as popular as the butterbeer is the Pumpkin Juice, which is combination of pineapple and apple juices mixed with pumpkin spice flavoring, and tastes like fall in a cup. Diagon Alley also features the almost neon-bright Fishy Green Ale, which is a mash up of mint and cinnamon with blueberry flavored pearls akin to boba at the bottom. Then there is the twist on lemonade called Tongue Tying Lemon Squash, a fizzy orange concoction known as the Otter’s Fizzy Juice and the Peachtree Fizzing Tea, an unsweetened ice tea.

\n \n

Alcoholic: But we know what you’re really thinking — what about the booze? Unlike its theme park counterpart Disney World down the street, all Universal parks allow alcohol on-site. Both Hogsmeade and Diagon Alley serve two proprietary beers: the dark, malt-heavy porter known as Wizard’s Brew and the lighter lager-style Dragon Scale beer, both created by the Florida Beer Brewing Company.

\n \n

Adjacent to Three Broomsticks is Hog’s Head Pub is the only bar in the two worlds, which is a bit grim and dark in keeping with the theme of the books. The highlight of the menu is the pub’s own Fire Whiskey, which is its take on cinnamon-flavored Fireball. It also happens to pair well with the Butterbeer. No sodas can be found in Hog’s Head, but there are a few specialty drinks like Hog’s Tea, a Long Island iced tea riff and the strongest drink on the menu, and the Pear Dazzle, which is a mix of vodka and pear cider.

\n
\n\n

And a recipe sampling from the BuzzFeed article on 8 Magical And Delicious Harry Potter Cocktails

\n\n
\n

Unicorn Blood
\n 1.5 oz silver tequila
\n 1.5 oz St. Germain (elderflower liqueur)
\n 1 oz lemon juice

\n \n

Add everything to a cocktail shaker with ice and shake (hard!) for a full 20 seconds. Strain into a coupe glass. Serves 1.

\n \n

Hair Of The Three-Headed Dog
\n 1.5 oz tequila
\n 1/2 cup tomato juice
\n 1 tablespoon lime juice
\n 1 tablespoon Worcestershire sauce
\n 1 teaspoon Tabasco
\n 1 12-oz bottle Mexican beer (like Corona or Modelo)
\n 2 tablespoons kosher salt
\n 1/2 teaspoon chili powder
\n 1 celery stalk, washed, root end trimmed (optional)

\n \n

Mix tequila, tomato juice, lime juice, Worcestershire and Tabasco sauces. Mix salt and chili powder together in a small bowl or saucer. Rub the rim of a pint glass with a slice of lime and roll the outside of the glass rim in the chili salt to coat it. Fill glass halfway with ice, add tomato mixture, stir well, and top with beer. Garnish with celery if you like. Serves 1.

\n \n

Wolfsbane Potion
\n 1.5 oz Scotch whiskey
\n 1.5 oz Fernet-Branca\n Coca-Cola

\n \n

Combine Scott and Fernet in a shaker with ice and stir vigorously for 20 seconds, until fully chilled. Strain into a rocks glass with a large ice cube. Top with cola, to taste. Serves 1.

\n \n

The Phoenix Feather
\n 2 oz Lillet Blanc
\n 1.5 oz Campari
\n 1 oz fresh-squeezed grapefruit juice
\n seltzer or club soda

\n \n

Combine Lillet, Campari, and grapefruit juice in a cocktail shaker with ice and shake, vigorously, for about 20 seconds. Strain into a Collins glass filled with ice cubes and top with seltzer. Serves 1.

\n \n

Butterbeer
\n 6-8 tablespoons butterscotch sauce (depending how sweet you like it)
\n 3 cups apple cider
\n 1 cup bourbon whiskey (optional)
\n 2 cups ginger beer
\n Whipped cream, for garnish

\n \n

Heat cider, bourbon and butterscotch syrup in a medium saucepan until the butterscotch dissolves and the mixture is steaming hot. Remove from heat and stir in the ginger beer. Ladle into mugs and serve with loads of whipped cream on top. Serves 6-8.

\n \n

Polyjuice Potion
\n 1.5 oz gin
\n 1.5 oz fresh-pressed or bottled green juice
\n 1 oz green Chartreuse
\n ½ oz lime juice
\n 7-Up or Sprite (optional)

\n \n

Shake gin, juices, and Chartreuse in a shaker with ice. Strain into a glass (you can serve up or over ice) and top with a splash of soda if you'd like it a little lighter. Serves 1.

\n \n

Felix Felicis (\"Liquid Luck\")
\n 1/4 oz simple syrup
\n 1/4 oz lemon juice
\n 1.5 oz ginger beer
\n Champagne or other sparkling wine

\n \n

Mix simple syrup and lemon juice in the bottom of a champagne flute. Add ginger beer and fill with Champagne. Serves 1.

\n \n

Amortentia Love Potion Punch
\n For ice ring:
\n 1 pint fresh red raspberries
\n 1 cup fresh pomegranate seeds
\n 4 cups water, boiled and cooled
\n ice cubes
\n For punch:
\n 1 750-ml bottle Aperol
\n 4 cups pomegranate juice
\n 2 cups gin
\n 2 750-ml bottles chilled rosé sparkling wine

\n \n

Spread raspberries and pomegranate seeds in the bottom of a bundt or ring cake pan. Cover fruit with a layer of ice cubes to keep it in place and pour enough boiled water over to just cover the ice (you don't need to use all the water). Freeze overnight. Mix Aperol, pomegranate juice, and gin together in a large punch bowl. When you're ready to serve the punch, add sparkling wine and stir gently. Float the ice ring on top. Serves about 20.

\n
\n", "OwnerUserId": "6391", "LastEditorUserId": "6391", "LastEditDate": "2017-09-10T19:03:37.337", "LastActivityDate": "2017-09-10T19:03:37.337", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7008"}} +{ "Id": "7008", "PostTypeId": "2", "ParentId": "6970", "CreationDate": "2017-09-14T23:55:09.633", "Score": "2", "Body": "

I would imagine it would be either whiskey or wine brandy came from Brandywine (excuse spelling or similar pronunciation) meaning burnt wine also cider was probably popular due to the fact that the water quality was poor

\n", "OwnerUserId": "7098", "LastEditorUserId": "5064", "LastEditDate": "2021-01-06T17:37:39.493", "LastActivityDate": "2021-01-06T17:37:39.493", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7013"}} +{ "Id": "7013", "PostTypeId": "1", "CreationDate": "2017-09-19T05:52:51.520", "Score": "2", "ViewCount": "227", "Body": "

Red wine is a rich wellspring of a polyphenol called resveratrol, which goes about as a cancer prevention agent. It shields the cells of the body from harm and avoids perpetual infections. These cell reinforcements assume a noteworthy part in the anticipation of disease, including colorectal growth and lung malignancy.

\n\n

Recent studies suggest that resveratrol found in red wine and red grapes may help in preventing age related memory loss.

\n\n

As indicated by the discoveries of the diary Nature, wine restrains the union of endothelin-1, a supermolecule to blame of the operating of fats on the dividers of veins prompting to arterial sclerosis. Wine, in addition, has giant amounts of procyanidins, a category of phenols. that assume a section within the oxidization of cholesterol, decrease the danger of gas ailments.

\n\n

What is the benefit of organic red wine over non-organic red wine?

\n", "OwnerUserId": "7108", "LastEditorUserId": "6111", "LastEditDate": "2017-09-20T22:35:48.283", "LastActivityDate": "2018-03-22T19:33:16.873", "Title": "What is the benefit of organic red wine?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7014"}} +{ "Id": "7014", "PostTypeId": "2", "ParentId": "7013", "CreationDate": "2017-09-19T14:42:56.007", "Score": "6", "Body": "

Your question is a little vague. I'm assuming by the nature of your question, you mean the health benefits as opposed to the environmental benefits. Having been growing organic wine grapes for 18 years I think I can address both issues. I might have a more controversial view than most people, but in the end I don't think it makes a lot of difference to drink Organic wine vs. traditional farming from a health perspective.

\n\n

Grapes are grown, generally, in a dry and hot climate. California, Australia, Spain, Italy. Because of this, there are usually less problems with rot and mildew on grape vines. The two biggest problems are powdery mildew and botrytis. There are some insect problems, but generally they are not a big deal. Compared to other crops like lettuce, strawberries, potatoes, the amount of fertilizer and spraying is minimal.

\n\n

So, what I am trying to say is that amount of chemicals sprayed on grapevines is already at a low level compared to many other foods you might consume. Here is my controversial take on Organic vs. Traditional wine making. Growers will actually spray MORE chemicals on their grapes they are just \"organic\" just because the Organic chemicals are not as effective. That means more tractors, more people contributing to pollution in and around the vineyard.

\n\n

On top of that, in the USA, \"Organic Wine\" is different than in Europe. In Europe, it means that grapes were grown organically. In the USA, it means that they were grown organically AND do not use sulfites. Which the Europeans have known to help preserve wine for thousands of years and are naturally occurring during the fermentation process. (BTW, sulfites are also a nasty chemical in large amounts). There are way more sulfites on your pre-packaged salad and raisins than there are in wine.

\n\n

REMEMBER, you are consuming a beverage that contains about 14% of a known carcinogen, namely Ethanol. So expecting your drink to have these huge health benefits is kind of a false flag.

\n\n

You have to ask yourself why there isn't a lot more Organic wine on the market? A fellow grower told me that it doesn't make economical sense. It costs way more money to grow them vs. traditional or just grow Organic grapes and not have to do all the record keeping, which takes a lot of time and money. High quality growers, for the most part are a thoughtful bunch and really don't want to spray non-organic chemicals and winemakers use non-organic chemicals in the winery.

\n\n

So, here is my recommendation. I really don't think there is a huge environmental or health edge for Organic wine. High volume, low priced wines will generally have more chemicals in them. If you can find an Organic red wine that you like and you can afford, got for it. If you can spend a little more money, say $20 or more for a bottle of wine, those wines probably came from grapes that were babied way more than a box wine grapes and probably have less chemicals in them in general. In fact as you go up the price curve it's generally known they have less and less chemical inputs. So, the more you can spend, the less chemicals will probably be in your wine.

\n\n

(And to blow your mind, many wines are not vegetarian! And you have no way to find out.)

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-09-19T14:42:56.007", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7015"}} +{ "Id": "7015", "PostTypeId": "1", "CreationDate": "2017-09-22T01:12:07.010", "Score": "5", "ViewCount": "248", "Body": "

Among the spirits my grandfather left behind, these four bottles caught my attention. Are they interesting or rare?

\n\n

Liqueur Stregga

\n\n

\"Liqueur

\n\n

Tokay

\n\n

\"Tokay\"

\n\n

Anisette

\n\n

\"Brisette\"

\n\n

Starka

\n\n

\"Starka\"

\n", "OwnerUserId": "7119", "LastEditorUserId": "5064", "LastEditDate": "2017-09-22T11:47:46.077", "LastActivityDate": "2018-03-03T21:06:27.130", "Title": "Do you recognize these foreign bottles?", "Tags": "spirits liquor identification", "AnswerCount": "2", "CommentCount": "7", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7016"}} +{ "Id": "7016", "PostTypeId": "2", "ParentId": "7003", "CreationDate": "2017-09-24T14:27:13.323", "Score": "0", "Body": "

We've tried doing this years ago, so as for any corked drinks, it doesn't pop out or randomly pop out, but in case you're wondering how it would taste like, there's two diversions of the taste, either the taste would randomly contribute to the corkage of the wine to make it taste better.

\n", "OwnerUserId": "7127", "LastActivityDate": "2017-09-24T14:27:13.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7017"}} +{ "Id": "7017", "PostTypeId": "2", "ParentId": "6998", "CreationDate": "2017-09-24T14:41:26.240", "Score": "3", "Body": "

I have friends who has gout who still drinks beer, BUT you should be aware of your alcohol limit before you get the worst out of the scenario. Wine should be the best way for you to get the booze out of the drink. So watch out of the alcohol content before doing so, its no that I'm encouraging you to do so, but any limit due to your condition would not lead to NOT doing so. Better yet consult your specialist if you still have the urge to engage in drinking beer/wine.

\n", "OwnerUserId": "7127", "LastActivityDate": "2017-09-24T14:41:26.240", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7018"}} +{ "Id": "7018", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2017-09-24T14:45:13.830", "Score": "0", "Body": "

It basically counts on \"how bad\" your hangover is. But these are the things I usually do.

\n\n
    \n
  1. Drink a glass of cold coke.
  2. \n
  3. Pure black coffee - If you can't drink it black, try to just add sugar to it.
  4. \n
  5. Milk/Tea with milk.
  6. \n
\n\n

Some people don't suggest any Milk based/Cream based drink - but what can I say, these work for me. Give it a try though.

\n", "OwnerUserId": "7127", "LastActivityDate": "2017-09-24T14:45:13.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7021"}} +{ "Id": "7021", "PostTypeId": "2", "ParentId": "6297", "CreationDate": "2017-09-25T21:17:47.010", "Score": "-1", "Body": "

I am a thin girl so I should not be able to drink like I can but I have secrets to my success. I make sure to drink plenty of clear fluids the day of or before. Always drink beer before liquor. I don't like to eat a bunch before I start drinking but rather save the feasting for the end of the night.

\n", "OwnerUserId": "7135", "LastEditorUserId": "5064", "LastEditDate": "2017-09-25T22:45:46.873", "LastActivityDate": "2017-09-25T22:45:46.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7028"}} +{ "Id": "7028", "PostTypeId": "1", "AcceptedAnswerId": "7033", "CreationDate": "2017-09-29T23:37:25.547", "Score": "-2", "ViewCount": "85", "Body": "

About 10 years ago I had a cabernet that was dry but had a sweet finish.

\n

I've tried to find out what wine that was and have been unable to. Also online has turned up no results. Apparently this is an odd thing.

\n

Does any one know of a dry red wine that has a sweet finish? I know it might be a bit broad but I would like to try literally any red wine that does this.

\n

Thanks!

\n

Edit:

\n

It has taken a few years but I have found my answer. After talking to a sales clerk he explained what I was looking for was a wine that was "jammy". He recommended that instead of a pure cab, that I try a margaux and it did exactly this, dry in the mouth with a finish that seems sweet.

\n", "OwnerUserId": "7137", "LastEditorUserId": "7137", "LastEditDate": "2022-01-05T22:04:35.333", "LastActivityDate": "2022-01-05T22:04:35.333", "Title": "Sweet finishing cabernet", "Tags": "red-wine", "AnswerCount": "1", "CommentCount": "2", "ClosedDate": "2017-10-05T07:29:40.727", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7029"}} +{ "Id": "7029", "PostTypeId": "2", "ParentId": "4906", "CreationDate": "2017-10-01T06:24:01.940", "Score": "0", "Body": "

A Black and Tan refers to Guinness & Bass, and the name black & tan is a reference to the colors of the uniforms the British Soldiers wore. A half and half refers to Guinness & Harp. While I can't speak for what it would be called in Ireland (as I have yet to be, but soon !!), a Blacksmith is usually Guinness & Smithwicks here in the states and it has become my favorite.

\n", "OwnerUserId": "7154", "LastActivityDate": "2017-10-01T06:24:01.940", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7030"}} +{ "Id": "7030", "PostTypeId": "1", "AcceptedAnswerId": "7173", "CreationDate": "2017-10-01T13:42:49.433", "Score": "2", "ViewCount": "522", "Body": "

People put the strangest things in bottles of liquor to be sold commercially. We have all probably heard of liquor stores, pubs or other drinking establishments occasionally selling tequila with a worm in the bottle. Be what the history of the mescal worm is: true or false is not my question.

\n\n

The other day, I was in a local liquor store and noticed bottle of liquor called Eau de Vie de Poire in the Bottle with a real full sized pear inside the bottle containing 40% (ABV) of pear brandy. One can see how they get the pear in a bottle here and here.

\n\n

\"Eau

\n\n

Eau de Vie de Poire Pear In The Bottle

\n\n

My question is quite simple: What other things are sold in bottles of liquor or liqueur commercially other than fruit or possibly worms (tequila)?

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-04-04T22:46:02.113", "Title": "Things people put in bottles of liquor or liqueur and are sold commercially?", "Tags": "liquor liqueur", "AnswerCount": "4", "CommentCount": "10", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7031"}} +{ "Id": "7031", "PostTypeId": "2", "ParentId": "6998", "CreationDate": "2017-10-01T14:43:33.373", "Score": "6", "Body": "

The answer to this question is going to differ from person to person, since gout sufferers react differently to both diet and alcohol. For some individuals alcohol increases pain in gout sufferers, while in others it decreases their pain. One has to know how to micro-manage their personal diets and alcohol consumption.

\n\n
\n

For those who want to micro-manage their gout diet, you should know that there is never a single best alcoholic beverage. You know that your overall diet needs change at different times in your gout treatment plan. This applies equally to alcohol.

\n \n

You should know that the affects of alcohol are different for every gout sufferer. For that reason, I urge you to get a personal gout management plan from your doctor. - What Is The Best Alcoholic Beverage To Drink With Gout?

\n
\n\n

Gout attacks rise with when your diet is high in purines. Purines are found in high-protein foods, and they are also found in some drinks.

\n\n
\n

“Beer contains a large amount of purines and has a strong association with gout attacks. One study estimated that patients who consumed a 12-ounce serving of beer daily were 1.5 times more likely to have gout compared to those without alcohol consumption,” says Dr. Sloane. Beer is especially bad for you if you tend to get gout symptoms because it is high in alcohol and brewer’s yeast, both of which may trigger gout pain.” - Gout and Alcohol

\n
\n\n

It seems that wine, whiskey or scotch may be a reasonable substitute for beer if drank in moderation or small amounts.

\n\n
\n

“In a study published in The Lancet medical journal this spring, researchers followed over 47,000 male medical professionals with no history of gout for up to 12 years. By the end of the study, close to 2 percent of the men had experienced attacks of gout. Men who drank the most alcohol daily had twice the risk of developing the disorder as men who did not drink. Beer drinkers increased their risk by 50% for every daily serving, while those who drank hard liquor increased their risk by 15% for each drink. Men who drank wine did not appear to increase their risk for gout, although few men had more than two glasses of wine daily so these results are less conclusive. - Gout and Alcohol

\n
\n\n

The Lancet Journal \"interprets\" their findings as such:

\n\n
\n

Interpretation

\n \n

Alcohol intake is strongly associated with an increased risk of gout. This risk varies substantially according to type of alcoholic beverage: beer confers a larger risk than spirits, whereas moderate wine drinking does not increase the risk.

\n
\n\n

Even though this study is in favor of drinking wine for gout sufferers, all alcohol consumption must be done in moderation and prudence as individuals react differently to alcohol and different types of alcohol.

\n", "OwnerUserId": "5064", "LastActivityDate": "2017-10-01T14:43:33.373", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7032"}} +{ "Id": "7032", "PostTypeId": "1", "CreationDate": "2017-10-04T01:53:36.607", "Score": "4", "ViewCount": "10741", "Body": "

I'm looking for a wine API with basic info (producer name, name, varietal, region, expert rating, description). Wine.com seems to have deprecated their API last month. I can't find any other ones from sites like WineEnthusiast and WineAdvocate.

\n\n

Wine-searcher.com has one, but it costs $350 a month and they won't give it to me temporarily (I'm just a student building a prototype app).

\n\n

Anybody know of any?

\n\n

Thanks,

\n", "OwnerUserId": "7160", "LastActivityDate": "2018-09-05T15:33:32.777", "Title": "Where can I find open APIs with wine data (such as numerical expert rating)?", "Tags": "wine", "AnswerCount": "4", "CommentCount": "5", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7033"}} +{ "Id": "7033", "PostTypeId": "2", "ParentId": "7028", "CreationDate": "2017-10-04T23:18:02.630", "Score": "0", "Body": "

As far as I know, wine considered dry is allowed to have 9 gr (european unit) of sugar per Liter (european unit). \nTHE ONE cab. you are looking for is most possibly at the end of that range.\nSimply look for Cab. which is not so high in alcohol maybe 12%, not 13,5-15%.

\n", "OwnerUserId": "7163", "LastActivityDate": "2017-10-04T23:18:02.630", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7034"}} +{ "Id": "7034", "PostTypeId": "2", "ParentId": "6836", "CreationDate": "2017-10-06T16:15:06.737", "Score": "1", "Body": "

An orange desert wine such as Quady Essensia pairs well with chocolate deserts.

\n", "OwnerUserId": "7166", "LastActivityDate": "2017-10-06T16:15:06.737", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7036"}} +{ "Id": "7036", "PostTypeId": "1", "AcceptedAnswerId": "7037", "CreationDate": "2017-10-13T15:31:08.043", "Score": "2", "ViewCount": "394", "Body": "

Strip 10 of the Eavesdropper comic strip shows a small bar with a sequence of seven liquor bottles on a shelf. Can you identify them?

\n\n

\"enter

\n\n

The comic strip apparently has a series of puzzles, with one puzzle encoding a word found on each page of the comic strip (except for the first few pages). We don't yet know where the puzzles are going, but then the comic only has 18 pages so far out of approximately 100 planned.

\n\n

We have already identified a few of those bottles, see my answer.

\n", "OwnerUserId": "7187", "LastActivityDate": "2017-10-16T22:48:19.810", "Title": "Liquor bottle puzzle in Eavesdropper comic strip", "Tags": "liquor identification", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7037"}} +{ "Id": "7037", "PostTypeId": "2", "ParentId": "7036", "CreationDate": "2017-10-13T15:31:08.043", "Score": "4", "Body": "

We already have three bottles identified. From left to right

\n\n\n\n

\"Sake\"Advocaat\"Midori\"Benedictine\"Umeshu\"Cointreau\"Antitoxin

\n\n

The solution might be another liquor, Sambuca, from reading together the first letters of \"Skye, Advocaat, Midori, Benedictine, Umeshu, Cointreau, Antitoxin\".

\n\n

\"Sambuca\"

\n", "OwnerUserId": "7187", "LastEditorUserId": "7187", "LastEditDate": "2017-10-16T22:48:19.810", "LastActivityDate": "2017-10-16T22:48:19.810", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7038"}} +{ "Id": "7038", "PostTypeId": "1", "AcceptedAnswerId": "7112", "CreationDate": "2017-10-14T13:58:11.283", "Score": "5", "ViewCount": "1703", "Body": "

It's my understanding that distillation produces alcohol to a very high percentage, over 90%. Obviously this doesn't leave a lot of room for flavour compounds. And indeed a lot of white spirit, such as Vodka, is relatively flavourless.

\n\n

Some spirits, though, are different. Whiskey made from peated barley retains the smoke flavour of the peat fire, for instance.

\n\n

Perhaps the most extreme example, though, is rum. White rum has a sweetness compared to vodka which must come from the sugar base. Darker rums, like most aged spirits, gets the majority of their flavour from the barrel in which they are matured. However, tasting darker rums reveals a lot of sugar product flavours: caramel, fudge and treacle for example. Presumably these also come from the sugar base and not the barrel yet they're a lot stronger in dark rum than in light.

\n\n

Why is this? What governs the flavours that are left behind after distillation and before maturation? Presumably the temperature at which flavour compounds vaporize is key but are there other factors? Is it different for some spirits than for others - would un-matured whiskey, for example, taste much the same as vodka if not peated?

\n", "OwnerUserId": "7189", "LastEditorUserId": "7189", "LastEditDate": "2017-10-14T14:04:14.117", "LastActivityDate": "2017-12-09T20:56:13.483", "Title": "How much of a spirit's flavour comes from the original fermentation?", "Tags": "spirits distillation", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7039"}} +{ "Id": "7039", "PostTypeId": "2", "ParentId": "7036", "CreationDate": "2017-10-15T21:19:39.760", "Score": "3", "Body": "

5th bottle is Choya plum wine.

\n", "OwnerUserId": "4453", "LastActivityDate": "2017-10-15T21:19:39.760", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7041"}} +{ "Id": "7041", "PostTypeId": "2", "ParentId": "6970", "CreationDate": "2017-10-17T15:15:47.927", "Score": "0", "Body": "

It depends on the region. Most produced ales at the time were barley wines and meads, all reaching anywhere from 7% to 12% ABV. (Roughly, I am not an academic in this by any means.) As for liquor, I don't think liquors came around until later.

\n", "OwnerUserId": "7195", "LastEditorUserId": "37", "LastEditDate": "2017-10-19T22:01:08.457", "LastActivityDate": "2017-10-19T22:01:08.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7042"}} +{ "Id": "7042", "PostTypeId": "2", "ParentId": "6970", "CreationDate": "2017-10-17T18:19:18.883", "Score": "5", "Body": "

I finally did a little digging. The Late Medieval Period is generally considered from 1300-1500. Whisky, did not become wide spread until the 1700s. The first recorded instance of Whisky production was in 1494:

\n\n
\n

The Guild of Barber Surgeons.[15] The earliest Irish mention of whisky comes from the seventeenth-century Annals of Clonmacnoise, which attributes the death of a chieftain in 1405 to \"taking a surfeit of aqua vitae\" at Christmas.[16] In Scotland, the first evidence of whisky production comes from an entry in the Exchequer Rolls for 1494 where malt is sent \"To Friar John Cor, by order of the king, to make aquavitae\", enough to make about 500 bottles.

\n
\n\n

There is ample evidence that liquor distilled from grapes and other fermented fruit well before the 1300's and Brandy was widespread by 1500. Neither Brandy or Whisky was drunk as much as wine or beer during this period, but just from the time line it looks like Brandy was a) easier to make since you start with wine and no cooking involved until distillation b) had a several hundred year head start on Whisky.

\n\n

There were distilled beverages in Asia, but again not as widespread as Brandy in Europe.

\n\n

Just based on the fact that the first mention of Whisky production isn't until 1494, only 6 years before the end of the Late Medieval Period and Brandy production is mentioned many times in The History and Taxonomy of Distilled Spirits before 1500, I think we can safely assume that Brandy was the most widespread distilled beverage in this time frame.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-10-17T18:19:18.883", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7043"}} +{ "Id": "7043", "PostTypeId": "1", "AcceptedAnswerId": "7045", "CreationDate": "2017-10-19T05:38:50.763", "Score": "3", "ViewCount": "620", "Body": "

What alcohol is made from the solely from the nectar of flowers (with no hops in it) like honey suckle? Where could I buy that? Pull a honey suckle flower inside there is about two drops of nectar collect enough to ferment.

\n", "OwnerUserId": "7198", "LastEditorUserId": "7198", "LastEditDate": "2017-10-20T04:27:21.900", "LastActivityDate": "2019-03-26T22:17:30.560", "Title": "Made from flowers?", "Tags": "ingredients fermentation", "AnswerCount": "4", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7044"}} +{ "Id": "7044", "PostTypeId": "2", "ParentId": "7043", "CreationDate": "2017-10-19T07:26:12.530", "Score": "4", "Body": "

There is a beer called Honeysuckle Smash by Three Brothers Brewing

\n\n

\"enter

\n\n

This is a golden ale made in North Yorkshire and you can buy it straight from their website here.

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2017-10-19T15:01:16.950", "LastActivityDate": "2017-10-19T15:01:16.950", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7045"}} +{ "Id": "7045", "PostTypeId": "2", "ParentId": "7043", "CreationDate": "2017-10-19T14:27:46.783", "Score": "10", "Body": "

There are no alcoholic beverages made from the \"nectar\" of flowers per se. It would be very difficult/expensive to collect 100% flower nectar straight from flowers in sufficient quantities to make a beverage. Having said that, honey is essentially flower nectar collected by bees and regurgitated in the hive as a future food source. You can enjoy fermented Honey as Mead in a wide variety of flavors and flower varieties. Bees store the nectar in a \"honey stomach\" so there is no digestion of the nectar. Read in more detail here:

\n\n
\n

\"Although many sources refer to the honey bee crop as the 'honey\n stomach,' it is not a place where consumed foods are being digested in\n honey bees.\"

\n \n

In their book, Honey Bee Biology and Beekeeping, authors Dewey Caron\n and Lawrence John \"Larry\" Connor define the honey stomach as a a\n \"honey sac.\"

\n \n

It's \"an enlargement of the posterior end of the esophagus in the bee\n abdomen in which the bee carries the nectar from flower to hive.\"

\n \n

Bee vomit? No way. It's where nectar is stored. It's not a stomach as\n we know it.

\n
\n\n

As mentioned before, beer is made with a flower called hops. There are many other beers and meads flavored with dried flowers.

\n\n

As for where to buy Mead, you can most likely find it any decent beer/wine/liquor store and easily by searching the web.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-10-19T16:41:02.630", "LastActivityDate": "2017-10-19T16:41:02.630", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7046"}} +{ "Id": "7046", "PostTypeId": "2", "ParentId": "6684", "CreationDate": "2017-10-19T15:54:54.513", "Score": "0", "Body": "

In general beer is not considered healthy. In excess it is definitely not healthy. Alcohol is hard on the liver. Alcohol withdrawal has the highest death rate.

\n\n

Up to 2 beers a day is generally considered a maximum intake. You would pick up like 300 calories. There are better ways to pick up 300 calories.

\n", "OwnerUserId": "4903", "LastActivityDate": "2017-10-19T15:54:54.513", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7047"}} +{ "Id": "7047", "PostTypeId": "1", "CreationDate": "2017-10-22T23:48:55.867", "Score": "2", "ViewCount": "74", "Body": "

I have kept a text file of wine notes for years. Each entry is like:

\n\n
Wine #1 maker and wine name\nDate #1: Notes and cost\nDate #2: Notes and cost\netc.\n\nWine #2 maker and wine name\nDate #1: Notes and cost\nDate #2: Notes and cost\netc.\n
\n\n

I don't rely on any online knowledge on wines, and am not looking to do so. That's why I entitled this question using the word \"personal wine notes\". I also don't wish to rate each wine. My notes will tell me what I need to know. Depending on my mood when I review the notes, I may decide to give a wine another try.

\n\n

What I need is to be able to sort the entries by: (i) date of last try or (ii) alphabetically. The former lets me see the most recent wines I tried without being hampered by wines that I tried years ago. The latter lets me look up a specific wine that I may come across, or that someone may have recommended.

\n\n

Additionally, I would like to access the \"database\" of notes from both my desktop/laptop and my smartphone, and I don't want to go through any cloud service (other than webmail, e.g., gmail).

\n\n

The apps that I've read about don't cater to these deceptively simple requirements. As someone who mashes data in my day job, I can envision a some partial conceptual solutions. For example, if I had a Microsoft Access database, then each wine can be a single entry in a data table of wines, which links to a table of notes. The notes table will have a date field and a field for text notes (including cost). I can then write some code to associate each wine with the date of its most recent note, then sort by either that most recent date or by the wine identification text.

\n\n

This is fine if I only want to look up the database on the computer, but it does not permit updating on the smartphone. What works for accessing from phone and computer is to maintain a draft email in my gmail account, which I can access from both the phone and the computer. But it doesn't allow for the sorting described above. I've basically entered wines in chronologically. Sometimes, when someone recommends a wine, it's hard to check whether the wine is deep down in the text file (from years past).

\n\n

I got tired of that, and took a text mashing editor (vim), made all the entries into one physical line of text, with delimiters separating the different date entries, sorted by wine name, then converted each entry back to the multiline format illustrated above. Without a database, however, I can't re-sort the wines by date of most recent trial.

\n\n

Is there a solution that permits the sorting that I want (by wine or by date of most recent trial), accessible for update or lookup from both desktop/laptop and smartphone? Avoiding the cloud would be preferred.

\n", "OwnerUserId": "7208", "LastActivityDate": "2017-10-22T23:48:55.867", "Title": "A geek's app for one's own personal wine notes", "Tags": "wine", "AnswerCount": "0", "CommentCount": "7", "ClosedDate": "2017-11-01T08:38:02.437", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7048"}} +{ "Id": "7048", "PostTypeId": "1", "CreationDate": "2017-10-23T15:41:49.603", "Score": "5", "ViewCount": "2963", "Body": "

I understand bottles or cans may or may not be pasteurized. How about Keg beer? I was under the impression that all keg beers are not pasteurized because of the volume, is that true? Are there exceptions?

\n", "OwnerUserId": "7209", "LastActivityDate": "2017-10-25T02:03:28.123", "Title": "Are ALL keg beer non-pasteurized?", "Tags": "keg", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7049"}} +{ "Id": "7049", "PostTypeId": "2", "ParentId": "7048", "CreationDate": "2017-10-23T16:39:24.433", "Score": "7", "Body": "

Beer kegged in the USA is usually stored cold and consumed quickly. Therefore, sterile filtration is all that's needed. To make it stable in a wider variety of temperatures, especially shipping it over an ocean, they pasteurize it.

\n\n

From Pasteurized Kegged Beer:

\n\n
\n

Non-Pasteurized

\n \n

For the most part keg beer brewed and packaged in kegs in the U.S. is\n not pasteurized. During the packaging process non-pasteurized draft\n beers are sterile filtered and chilled to the point that any surviving\n bacteria, which could ferment the beer, become dormant. Kegs are kept\n cold ( < 50° F ) from the brewery to the point of dispense. Draft beer\n dispensed from a keg should be fresh by storing as short as possible,\n and serving cold at 38° F.

\n \n

Temperatures above 38° F may promote non pasteurized draft beers to\n turn sour or cloudy. Should the temperature rise above 50° F, the\n dormant bacteria which ferments and spoils beer will once again become\n active and, subsequent growth will rapidly begin to spoil flavor and\n cloud the beer.

\n \n

Pasteurized

\n \n

Most of the keg beer brewed and packaged outside the U.S. (Import\n beers), are heat pasteurized during packaging. This process kills off\n the bacteria that ferment and spoils the beer.

\n \n

Pasteurized draft beer kegs can be transported and stored at room\n temperature. The beer in these kegs can be flash cooled at the point\n of dispense. However, most imported kegs are stored and dispensed at\n the same temperature (38° F) as domestic, non-pasteurized kegs.

\n
\n", "OwnerUserId": "6111", "LastEditorUserId": "43", "LastEditDate": "2017-10-25T02:03:28.123", "LastActivityDate": "2017-10-25T02:03:28.123", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7051"}} +{ "Id": "7051", "PostTypeId": "2", "ParentId": "7043", "CreationDate": "2017-10-24T01:20:28.657", "Score": "0", "Body": "

You can tie of the end of banana's in flower. Come back & drink them for a kind of wine. Natives do. 1 taste was enough for me. Or buy the buds at the market. That are cut of trees so it produces larger banana's. Dandalion can be used to make a wine. Very good. Just stuff the jug full of flowers. Ferment , filter, drink.

\n", "OwnerUserId": "7212", "LastActivityDate": "2017-10-24T01:20:28.657", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7052"}} +{ "Id": "7052", "PostTypeId": "2", "ParentId": "6684", "CreationDate": "2017-10-26T19:23:04.303", "Score": "0", "Body": "

One pound can be gained through the consumption of about 3500 calories more than you burn. If you drink a brand of beer with 200 calories per serving, it'd take 18 servings to gain a pound (assuming your diet otherwise negates your metabolism). That pound, likely, would be fat.

\n\n

I don't think you really want to do this, as enjoyable as you may find beer.

\n", "OwnerUserId": "3905", "LastEditorUserId": "3905", "LastEditDate": "2017-11-14T23:41:35.403", "LastActivityDate": "2017-11-14T23:41:35.403", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7053"}} +{ "Id": "7053", "PostTypeId": "1", "AcceptedAnswerId": "7054", "CreationDate": "2017-11-01T15:05:10.857", "Score": "2", "ViewCount": "114", "Body": "

OK, so here I sit, in a fantastic marina (yes I live on a boat), but every Saturday and Sunday night the local cocktail bar has a rather serious disco, or should I say Saturday morning/Sunday morning (as they finish at 6am!). I have friends who state that the cocktails they drink in the bar taste better when they are there during disco night than when they are there on a normal night - how does this happen?

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2017-11-01T15:42:20.043", "LastActivityDate": "2017-11-01T17:26:42.680", "Title": "Do lights and music enhance a cocktail?", "Tags": "taste cocktails", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7054"}} +{ "Id": "7054", "PostTypeId": "2", "ParentId": "7053", "CreationDate": "2017-11-01T17:26:42.680", "Score": "2", "Body": "

Yes, it's been proven scientifically!

\n\n

Here is an article that breaks it down

\n\n
\n

On the other hand, some research suggests that, under the right conditions, loud noise might actually enhance certain flavors

\n
\n\n

Are these people on vacation? It's a well known fact that things taste better on vacation. Why wine tastes better on vacation

\n\n
\n

Reason 1: The answer you’ve probably heard or read before: you’re in Europe! You’re relaxed. Everything is going to taste better.

\n
\n\n

Actually you could scratch \"Europe\" and put anywhere you are on vacation.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-01T17:26:42.680", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7055"}} +{ "Id": "7055", "PostTypeId": "1", "AcceptedAnswerId": "7056", "CreationDate": "2017-11-02T10:39:05.377", "Score": "5", "ViewCount": "118", "Body": "

If one wants to buy alcohol-free beer in a supermarket, the most common beer style is Lager/Pilsner. I have never seen other styles such as alcohol-free Witbier, IPA, Stout etc. in a store, but from doing a quick online research I learned that such beer does exist.

\n\n

Is Lager/Pilsner the most common style for alcohol-free beers because it is the most popular style for normal beer as well, or are there some technical limitations during the brewing process?

\n", "OwnerUserId": "5021", "LastEditorUserId": "7272", "LastEditDate": "2017-12-14T02:16:35.043", "LastActivityDate": "2017-12-14T02:16:35.043", "Title": "Why is Lager/Pilsner the most common beer style for alcohol-free beer?", "Tags": "style lager non-alcoholic", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7056"}} +{ "Id": "7056", "PostTypeId": "2", "ParentId": "7055", "CreationDate": "2017-11-02T17:00:25.020", "Score": "3", "Body": "

There are several ways to make a non-alcoholic beer (which BTW is not alcohol free. These beers can have .5% ABV). Boiling off the alcohol at 175f degrees, vacuum distillation at 120f degrees and reverse osmosis filters. They all take a toll on flavor and mouthfeel.

\n\n

Here is a great article:

\n\n
\n

The most common way that alcohol is removed from beer is through heating. As we've discussed in several previous articles, alcohol has a much lower boiling point than water. At sea level, it's roughly 173 degrees F.

\n
\n\n

Then also:

\n\n
\n

To minimize this, some operations practice vacuum distilling. Depending on the power of the vacuum, the alcohol's boiling point may be lowered as far as 120 degrees, which is much less disruptive to the flavors.

\n
\n\n

Then the last way:

\n\n
\n

\"...beer is passed through a filter with pores so small that only alcohol and water (and a few volatile acids) can pass through. The alcohol is distilled out of the alcohol-water mix using conventional distillation methods, and the water and remaining acids are added back into the syrupy mixture of sugars and flavor compounds left on the other side of the filter.

\n
\n\n

The reason why hoppy and dark beers can't really be made this way:

\n\n
\n

According to Brew Your Own, \"The hop aromas will usually be driven off within the first five minutes, while the hop flavors will be gone within the first 15 minutes.\" This is why neither we nor any of our sources have encountered a half-decent non-alcoholic IPA, which is a damn shame, really.

\n
\n\n

To sum it up, light lager type beers have little color or flavor to begin with so it's easier for them to come through the process pretty close to what they were before they went in. Hoppy or dark beers would be stripped of so much flavor and color that they would be awful so nobody tries...

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-02T17:00:25.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7057"}} +{ "Id": "7057", "PostTypeId": "2", "ParentId": "7032", "CreationDate": "2017-11-03T16:14:20.120", "Score": "1", "Body": "

The closest thing I can find (and am currently aware of) is LCBO API. This free API provides details for products sold through the gov't owned liquor retailer in Ontario, Canada. They have a fairly large selection as they are one of the largest buyers of alcohol products globally.

\n\n

By providing a product's SKU code to the API, you can retrieve some of the product details you're looking for except rating, and varietal. As a consolation, it does provide details on wine type (red, white, rose, champagne etc.) and country (incl. region for some products), but doesn't provide details such as Chardonnay, Sauvignon Blanc, Cabernet Merlot, etc.

\n", "OwnerUserId": "5482", "LastEditorUserId": "5482", "LastEditDate": "2017-11-03T16:19:54.860", "LastActivityDate": "2017-11-03T16:19:54.860", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7058"}} +{ "Id": "7058", "PostTypeId": "1", "AcceptedAnswerId": "7063", "CreationDate": "2017-11-03T19:23:40.507", "Score": "6", "ViewCount": "1279", "Body": "

I live in France. I've found that at least cheaper (supermarket) spirits are almost always exactly 40% ABV. You can find stronger if you buy more niche or expensive alcohols like Chartreuse, but the vast majority seems to be precisely 40, unlike say wine or beer which varies more smoothly.

\n\n

Is there a reason for this? Is 40% the legal minimum to be able to call something whiskey or vodka, for instance? Or am I just flat wrong, and there's no statistical trend towards 40%?

\n\n

I realize the correct answer may vary from country to country. I'll be happy with an answer covering any \"comparable\" first world country (let's just say English speaking countries or West Europe, for simplicity).

\n", "OwnerUserId": "7238", "LastEditorUserId": "5064", "LastEditDate": "2017-11-04T11:02:09.943", "LastActivityDate": "2017-11-08T09:54:11.327", "Title": "Why are spirits typically 40% ABV?", "Tags": "laws spirits abv", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7059"}} +{ "Id": "7059", "PostTypeId": "1", "CreationDate": "2017-11-05T06:56:51.027", "Score": "5", "ViewCount": "177", "Body": "

So, i love to drink Peruan Pisco sours. You make these with Pisco, lemon juice, sugar and egg's white. You are supposed to shake the drink. However, every time i make this drink, i end up with little pieces of cooked egg in the drink. They are disgusting. How can i avoid this problem, while still conserving the the foam obtained with the eggs?

\n\n

Thanks.

\n", "OwnerUserId": "7244", "LastActivityDate": "2018-03-04T04:16:52.363", "Title": "How to avoid egg white being cooked in drinks?", "Tags": "drink alcohol", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7060"}} +{ "Id": "7060", "PostTypeId": "5", "CreationDate": "2017-11-06T15:09:15.003", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2017-11-06T15:09:15.003", "LastActivityDate": "2017-11-06T15:09:15.003", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7061"}} +{ "Id": "7061", "PostTypeId": "4", "CreationDate": "2017-11-06T15:09:15.003", "Score": "0", "Body": "This is a special tag that is designed to be used only by the system for questions that have had all of their other tags removed. Do not add this tag to existing questions, it is reserved for use by the system to identify posts with no valid tags.", "OwnerUserId": "6255", "LastEditorUserId": "6255", "LastEditDate": "2017-11-07T11:44:18.163", "LastActivityDate": "2017-11-07T11:44:18.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7062"}} +{ "Id": "7062", "PostTypeId": "2", "ParentId": "3427", "CreationDate": "2017-11-07T18:21:29.613", "Score": "0", "Body": "

The widget is for aesthetic purposes only. Some people think it looks better with a head. But it flattens lager.

\n

I refuse these glasses in pubs as I like a lively lager.

\n

Test it yourself. Test two lagers in two glasses. One with a widget and one without. Taste the difference at the end of the pint. The widget flattens the lager by removing CO2.

\n", "OwnerUserId": "7247", "LastEditorUserId": "49", "LastEditDate": "2020-08-09T17:36:07.310", "LastActivityDate": "2020-08-09T17:36:07.310", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7063"}} +{ "Id": "7063", "PostTypeId": "2", "ParentId": "7058", "CreationDate": "2017-11-08T09:54:11.327", "Score": "5", "Body": "

There is indeed a EU Regulation No 110/2008 about \"the definition, description, presentation, labelling and the protection of geographical indications of spirit drinks\" which prescribes the minimal ABV for different spirits and it happens to be about 40%.

\n\n

So

\n\n
    \n
  • the minimum alcoholic strength by volume of rum shall be 37,5 %.
  • \n
  • the minimum alcoholic strength by volume of whisky or whiskey shall be 40 %.
  • \n
  • the minimum alcoholic strength by volume of vodka shall be 37,5 %.
  • \n
  • with the exception of ‘Korn’, the minimum alcoholic strength by volume of grain spirit shall be 35 %.
  • \n
  • the minimum alcoholic strength by volume of wine spirit shall be 37,5 %.
  • \n
\n\n

and some more.

\n\n

PS. The Vodka myth may be of interest for you too.

\n", "OwnerUserId": "4742", "LastActivityDate": "2017-11-08T09:54:11.327", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7064"}} +{ "Id": "7064", "PostTypeId": "1", "CreationDate": "2017-11-08T14:44:46.483", "Score": "2", "ViewCount": "202", "Body": "

Has alcoholism increased since prohibition days? I've seen the sales outlets for alcohol availability rise since the days of the state liquor stores.\nI checked the National Institute on Alcohol Abuse and Alcoholism and a news article from NBC without any specific results. Moved to Health SE

\n", "OwnerUserId": "7251", "LastEditorUserId": "6273", "LastEditDate": "2017-12-23T00:47:56.483", "LastActivityDate": "2018-02-21T14:33:29.967", "Title": "Has alcoholism increased?", "Tags": "history consumption", "AnswerCount": "2", "CommentCount": "5", "ClosedDate": "2018-02-21T20:43:43.800", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7065"}} +{ "Id": "7065", "PostTypeId": "1", "AcceptedAnswerId": "7074", "CreationDate": "2017-11-09T21:22:56.790", "Score": "3", "ViewCount": "90", "Body": "

I typically drink brown spirits, however, I have some vodka left over from a wedding party so I was wondering if there are any good vodka cocktail recipes which aren't too sweet (or have too many ingredients) and would be enjoyed by someone who has a pallet for whisky/scotch.

\n", "OwnerUserId": "5482", "LastActivityDate": "2017-11-15T16:30:35.257", "Title": "Are there any vodka cocktail recipes for someone who likes whisky/scotch?", "Tags": "vodka whiskey scotch", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7066"}} +{ "Id": "7066", "PostTypeId": "1", "CreationDate": "2017-11-11T20:36:16.730", "Score": "7", "ViewCount": "338", "Body": "

Not even compared to absinth, even SKYY vodka has a higher ABV and we well that everywhere.

\n\n
\n

The end result is a 28 percent alcohol-by-volume beer that's void of any carbonation. According to Forbes, Utopias is illegal to sell in 11 states because it's so alcoholic.

\n
\n\n

This $200 beer is reportedly illegal in 11 states, but not Texas.

\n", "OwnerUserId": "7261", "LastEditorUserId": "7272", "LastEditDate": "2017-12-14T11:13:56.970", "LastActivityDate": "2017-12-14T11:13:56.970", "Title": "Why is Sam Adam's high ABV beer illegal to sell in several US states?", "Tags": "laws united-states craft-beers", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7067"}} +{ "Id": "7067", "PostTypeId": "2", "ParentId": "7066", "CreationDate": "2017-11-11T21:43:52.710", "Score": "7", "Body": "

States often have different laws for beer and spirits, including different licensing requirements, different requirements for sales, and so forth. Because of that, some states have limits on the percentage of alcohol that is allowed in beer. In North Carolina, where I live, all spirits sales are state-controlled, and retail sales are only allowed in state-owned Alcohol Beverage Commission stores. Beer, however, can be sold by traditional private retailers such as grocery stores and convenience stores. Because of this, North Carolina also limits how much alcohol beer can contain; the maximum here is 15% ABV. (alcohol by volume.) So, Samuel Adams Utopias is indeed illegal here, as are a number of Dogfish Head beers, and a few others.

\n", "OwnerUserId": "37", "LastActivityDate": "2017-11-11T21:43:52.710", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7068"}} +{ "Id": "7068", "PostTypeId": "2", "ParentId": "7030", "CreationDate": "2017-11-12T12:50:15.967", "Score": "2", "Body": "

Habushu is a common Japanese liqueur, where they put snakes inside the bottles. There are two methods of inserting the snake into the alcohol. The maker may choose to simply submerge the snake in the alcohol and seal the bottle, thus drowning the snake. Alternatively, the snake may be put on ice until it passes out, at which point it is gutted, bled and sewn up. When the viper is thawed and awakens, it will quickly die in an aggressive striking manner, which is what most producers look for. The manufacturer will then put the habu in an ethanol bath for a month to preserve it.

\n\n

\"Pit

\n\n

Pit vipers immersed in a bottle of habushu.

\n", "OwnerUserId": "7262", "LastEditorUserId": "5064", "LastEditDate": "2017-11-12T22:51:22.503", "LastActivityDate": "2017-11-12T22:51:22.503", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7069"}} +{ "Id": "7069", "PostTypeId": "2", "ParentId": "7059", "CreationDate": "2017-11-13T05:53:03.300", "Score": "0", "Body": "

I’m not familiar with pisco but whatever ingredient is cooking the egg(citrus juice I’d think) needs to be separate when shaking and added afterwords. It may be already in the glass that you pour the cocktail but finding a bartender that makes them often enough will usually be willing to show you the steps.

\n", "OwnerUserId": "6991", "LastActivityDate": "2017-11-13T05:53:03.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7070"}} +{ "Id": "7070", "PostTypeId": "1", "AcceptedAnswerId": "7073", "CreationDate": "2017-11-13T20:32:58.550", "Score": "7", "ViewCount": "121", "Body": "

My favourite wine is a blend of Gewürztraminer and Riesling which (from what I can find) seems to be exclusively made in Australia by Rosemount and Hardys. This wine is becoming harder and harder to find in the UK and is therefore much more expensive when I do find it.

\n\n

On the other hand, both Gewürztraminer and Riesling wines are fairly readily available.

\n\n

I'm wondering if I could buy the two \"component\" wines and just mix them myself to achieve 2 bottles of the blend. Is this equivalent to how the manufacturer achieves the blend, or do they blend the juice before fermentation? Either way, will I make a reasonable version of the blend, or will I ruin two completely good bottles of wine?

\n", "OwnerUserId": "7264", "LastEditorUserId": "7264", "LastEditDate": "2017-11-14T14:02:41.570", "LastActivityDate": "2017-11-14T16:01:46.727", "Title": "How Are Wines Blended?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "8", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7071"}} +{ "Id": "7071", "PostTypeId": "1", "CreationDate": "2017-11-14T06:43:42.960", "Score": "3", "ViewCount": "662", "Body": "

These canned, additive-free cherries are packed in their own juice, watered down. I previously left this juice in a plastic water bottle while drinking it, for only three days, and it became pleasantly bubbly - carbonated juice. A honey and water mix used for eye medicine turned into a strong alcohol over just 1-2 weeks (it was only one ounce of mixture). This time, I used the extra, way-too-high amount of yeast to put in the juice, but after two months, it is still just sour juice, and no tasteable bubbles. So I added a very small piece of kombucha SCOBY - maybe it will become kombucha-like or become fizzy juice. One week later, it tastes exactly the same. Two weeks after that, it is vinegar. It was never wine and it was never kombucha. Why?

\n", "OwnerUserId": "7266", "LastEditorUserId": "7266", "LastEditDate": "2019-11-29T08:36:23.703", "LastActivityDate": "2019-11-29T08:36:23.703", "Title": "Why did my cherry juice turn directly into vinegar while never being wine?", "Tags": "brewing wine yeast fermentation", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7073"}} +{ "Id": "7073", "PostTypeId": "2", "ParentId": "7070", "CreationDate": "2017-11-14T16:01:46.727", "Score": "6", "Body": "

I have pretty extensive experience blending wine in my winery over 15 years. There are two types of blends. Pre-fermentation and post-fermentation. The pre-fermentation is usually called a \"field blend\". This was the old style way of blending wines before we started doing it in the lab. Growers would plant a variety of vines, for example Cabernet Franc, Cabernet Sauvignon and Merlot in Bordeaux, to hedge their bets on what kind of year it was going to be since they all ripen at different times. They do bring different flavor components to the blend. In Ye Olde days, they would just throw everything in the fermenter together relying on mother nature to give them a good blend.

\n\n

Today, most blending is done post-fermentation. Very few people do field blends because they want the control over the blend. This is usually done in a laboratory setting. You would ideally want a few beakers with accurate measurements on it. Taste the two individual wines. Then I would start with a 50/50 blend and go from there. If you like more Riesling, then start blending a 60/40 blend of Riesling and Gewurz. Keep doing this until you end up with a blend you like. I usually will create a series of blends and keep them in separate glasses so I can go back and forth smelling and tasting them and keeping notes as I go.

\n\n

You might dump some wine down the drain to get the blend you want, but once you figure it out, you can go straight to make that blend in the future. I would get an empty wine bottle and put your blend in there. You will have 2-3 days to drink it before it starts to go bad unless you make special effort to preserve it. In theory, you could by X number bottles of Riesling and Y bottles of Gewurz and make a blend of several bottles and rebottle it.

\n\n

Here is a good article on how you can do it at home

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-14T16:01:46.727", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7074"}} +{ "Id": "7074", "PostTypeId": "2", "ParentId": "7065", "CreationDate": "2017-11-15T16:30:35.257", "Score": "2", "Body": "

Here are few cocktails that I can recommend and don't require much ingredients:

\n\n

1) Black Russian - Vodka and coffee liqueur

\n\n

2) Screwdriver - Vodka and orange juice

\n\n

3) Greyhound - Vodka and grape juice

\n\n

4) Vodka Martini - My favorite

\n", "OwnerUserId": "7272", "LastActivityDate": "2017-11-15T16:30:35.257", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7075"}} +{ "Id": "7075", "PostTypeId": "2", "ParentId": "6868", "CreationDate": "2017-11-15T17:21:45.553", "Score": "0", "Body": "

If you're looking for affordable single-malts, I can recommend:

\n\n

Deanston, Cardhu 12, Glenfarclas Heritage and some of the Glenfiddich's whiskeys.

\n\n

Another great Whiskey that I can recommend is \"Jameson Black barrel\".\nThis is an Irish whiskey but it tastes different from most traditional Irish whiskeys.

\n", "OwnerUserId": "7272", "LastActivityDate": "2017-11-15T17:21:45.553", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7076"}} +{ "Id": "7076", "PostTypeId": "1", "CreationDate": "2017-11-15T17:31:02.113", "Score": "2", "ViewCount": "98", "Body": "

I'd like to make a cocktail recipe I found which uses a Ginger Cardamom Simple syrup, but I can't take all that sugar. I typically use Torani's Sugar free syrup for drinks (which uses Splenda and some gums for viscosity), and I was wondering if anyone has tried infusing flavors into that syrup. If so did you heat it or just let it sit for X days?

\n", "OwnerUserId": "7273", "LastActivityDate": "2020-03-20T16:01:35.353", "Title": "Has anyone tried infusing Torani sugar free syrup?", "Tags": "ingredients", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7077"}} +{ "Id": "7077", "PostTypeId": "2", "ParentId": "7064", "CreationDate": "2017-11-17T14:59:40.107", "Score": "0", "Body": "

According to the OECD (The Organization for Economic Cooperation and Development), alcohol consumption in its member countries (which includes the US) has been decreasing since [at least] 2000. Litres of pure alcohol consumed (a metric for standardizing alcohol consumption across drinks of varying alcohol content) has fallen from 9.5 litres per capita in 2000 to 9 litres in 2015 (roughly 5% decline).

\n\n

The definition of alcoholism can vary since it typically includes the frequency of consumption within its own definition. The paper I cited includes stats on binge drinking (at least once a month) by gender, but does not compare data to prior years. There's been a ton of research on this topic, so a bit of googling should quickly turn up something useful. CAMH has useful publications and so does the WHO.

\n", "OwnerUserId": "5482", "LastActivityDate": "2017-11-17T14:59:40.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7078"}} +{ "Id": "7078", "PostTypeId": "2", "ParentId": "7064", "CreationDate": "2017-11-17T17:19:22.043", "Score": "0", "Body": "

But, if you read this, it sounds like Alcohol consumption (along with all it's problems including addiction) has increased significantly in the USA. This study is out just last summer (2017)

\n\n
\n

\"In the '90s, however, alcohol consumption increased — the percentage\n of people who drank at all increased by nearly half, while high-risk\n and disordered drinking increased by about 20 percent and 12 percent,\n respectively.\"

\n
\n\n

If you go all the way back to Prohibition, then it has clearly increased

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-17T17:19:22.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7079"}} +{ "Id": "7079", "PostTypeId": "1", "AcceptedAnswerId": "7080", "CreationDate": "2017-11-19T20:41:33.710", "Score": "2", "ViewCount": "81", "Body": "

I'm making a Beer APP for mobile phones but I need a way to get good quality beer label for specific beers. So far, I'm using this free Beer's Api Service:

\n\n

BreweryDB.com

\n\n

But as you can see, the quality of images is not so good:

\n\n

Heineken Dutch Dark (sample label)

\n\n

Is there another free service where I can found good quality beer's labels/logos?

\n", "OwnerUserId": "7279", "LastEditorUserId": "5064", "LastEditDate": "2017-11-21T13:24:24.483", "LastActivityDate": "2017-11-21T13:24:24.483", "Title": "Where can I found beer's logos / labels in good image quality?", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7080"}} +{ "Id": "7080", "PostTypeId": "2", "ParentId": "7079", "CreationDate": "2017-11-20T15:33:38.560", "Score": "4", "Body": "

No, there isn't a central place where you can find high quality beer or wine labels. Sometimes you can find them at the brewery's website or an app like Untappd. But in general nobody has aggregated those labels. You would also run into intellectual property issue since many labels contain unique art work and you must get permission to reproduce. I know in the wine industry, people stopped putting high quality labels online because they were being downloaded in China and fake wine was being labeled as such.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2017-11-20T17:41:14.600", "LastActivityDate": "2017-11-20T17:41:14.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7081"}} +{ "Id": "7081", "PostTypeId": "1", "AcceptedAnswerId": "7082", "CreationDate": "2017-11-21T07:46:07.463", "Score": "1", "ViewCount": "105", "Body": "

Browsing ALiBaBa International platform I found there are many growlers in the shop. I want to know what a Growler is.

\n", "OwnerUserId": "7281", "LastEditorUserId": "5078", "LastEditDate": "2017-11-21T08:49:20.857", "LastActivityDate": "2017-11-22T17:26:32.350", "Title": "What's the growler?", "Tags": "glassware", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7082"}} +{ "Id": "7082", "PostTypeId": "2", "ParentId": "7081", "CreationDate": "2017-11-21T10:35:40.190", "Score": "4", "Body": "

See the Wikipedia article on it of course: Growler (jug).

\n\n
\n

A growler is a glass, ceramic, or stainless steel jug used to transport draft beer in the United States, Canada, Australia, Brazil and other countries....The significant growth of craft breweries and the growing popularity of home brewing has also led to an emerging market for the sale of collectible growlers.

\n
\n", "OwnerUserId": "7282", "LastEditorUserId": "5064", "LastEditDate": "2017-11-21T13:18:11.927", "LastActivityDate": "2017-11-21T13:18:11.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7083"}} +{ "Id": "7083", "PostTypeId": "2", "ParentId": "6641", "CreationDate": "2017-11-22T15:48:45.807", "Score": "3", "Body": "

Limit: So, I would speculate that if you're \"vaping\" the same quantity of alcohol as you might instead drink, then you're facing the same risk. It's the same as drinking alcohol - the risk is cumulative and hard to define - it really depends on how much you drink and how often.

\n\n

Effect on lungs: Frankly this is hard to say, as I am quite confident there have been no large scale (AKA reputable) studies (nor can I find any) performed on the effect of vaping alcohol on lung tissues. I would expect the effects to be minimal, but then again, personally, I'd probably still just stick to drinking my alcohol.

\n\n

I can't provide any scientific basis to this, but I am thoroughly confident that vaping is simply a fad or novelty to enjoy - think of the increased costs and lack of accessibility compared to just drinking alcohol - you simply need a bottle of beer and a fridge, or a bottle of spirits and a glass versus a specialised glass, tea candle, vapour catching vessel and a glass or metal straw (seriously, who keeps one of them around?).

\n", "OwnerUserId": "6023", "LastActivityDate": "2017-11-22T15:48:45.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7084"}} +{ "Id": "7084", "PostTypeId": "2", "ParentId": "7081", "CreationDate": "2017-11-22T17:26:32.350", "Score": "2", "Body": "

This is what a growler looks like:\n\"growler\"\nIt typically holds beer (usually 64 U.S. fl oz. or 1,892.7ml). Source.

\n", "OwnerUserId": "5482", "LastActivityDate": "2017-11-22T17:26:32.350", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7085"}} +{ "Id": "7085", "PostTypeId": "5", "CreationDate": "2017-11-22T21:47:17.513", "Score": "0", "Body": "

The process by which yeast and sugars turn into alcohol when producing beer, wine, mead, cider, etc.

\n", "OwnerUserId": "7413", "LastEditorUserId": "43", "LastEditDate": "2017-12-14T02:15:55.510", "LastActivityDate": "2017-12-14T02:15:55.510", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7086"}} +{ "Id": "7086", "PostTypeId": "4", "CreationDate": "2017-11-22T21:47:17.513", "Score": "0", "Body": "During fermentation yeast converts sugar into alcohol and carbon dioxide by feeding on a series of increasingly complex sugars, essentially breaking the sugar down into other compounds which enable it to grow.", "OwnerUserId": "7413", "LastEditorUserId": "5078", "LastEditDate": "2017-12-11T14:12:52.090", "LastActivityDate": "2017-12-11T14:12:52.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7087"}} +{ "Id": "7087", "PostTypeId": "1", "AcceptedAnswerId": "7089", "CreationDate": "2017-11-23T11:47:17.913", "Score": "1", "ViewCount": "246", "Body": "

I put my beer on a warm floor for a week (I live in Korea and during winter we keep our floor warm). Does this make my beer go bad enough that it's unhealthy to drink it?

\n\n

The beer is Schneider Weisse Tap 5, and the shelf life written on the bottle says July 2018. I'm just concerned if the warm floor may have made the beer go bad real fast or something.

\n", "OwnerUserId": "7286", "LastActivityDate": "2017-11-24T22:07:54.143", "Title": "Shelf Life of Warm Beer", "Tags": "storage", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7089"}} +{ "Id": "7089", "PostTypeId": "2", "ParentId": "7087", "CreationDate": "2017-11-23T14:35:37.123", "Score": "1", "Body": "

I think any beer that has already been shipped around the world can probably take a week at slightly elevated temperatures. I don't think a week is going to hurt it, but a couple of months might. Relax and enjoy it!

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-23T14:35:37.123", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7091"}} +{ "Id": "7091", "PostTypeId": "1", "CreationDate": "2017-11-27T15:05:29.930", "Score": "3", "ViewCount": "181", "Body": "

I have been searching for Beer education with universally accepted certificate like WSET for a while but I couldn't find one. I've found some courses Prud'homme ,Cicerone, and The Beer Judge Certification Program (BJCP) but I don't think they are like WSET. \nAre there any training program like WSET for beer?

\n", "OwnerUserId": "7295", "LastEditorUserId": "6111", "LastEditDate": "2017-11-27T20:34:39.067", "LastActivityDate": "2017-12-07T04:26:49.500", "Title": "Universally Accepted Beer Education", "Tags": "recommendations cicerone", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7092"}} +{ "Id": "7092", "PostTypeId": "2", "ParentId": "7091", "CreationDate": "2017-11-27T15:48:38.583", "Score": "3", "Body": "

Just like there is no standards for understanding Computer Science education there is no standardized wine or beer education. You get the education where you can. I have pretty extensive experience in both wine and beer education. At one time, long ago, I was a BJCP certified judge. I have a winemaking certificate from UC Davis (short course) Both were a rigorous education. Then I went on to start a winery and eventually taught at a local community college that has a 2 year wine program. I think only the lead instructor had anything like a masters in wine (MW) the rest of us just university classes and self taught.

\n\n

Getting a degree in brewing from an accredited college like UC Davis would have the most clout. I wouldn't say the WSET is universally accepted as the \"gold standard\" in wine education. If all you want to do is get some type of certificate for being a server then the Cicerone or BJCP will probably serve the purpose. Getting a Master Cicerone would probably be the highest for beer. Beer education has always been less formal than winemaking. I'm not sure why since brewing beer is way more complicated than making wine. I'm sure it has to do with the snobbery associated with wine vs. the everyman appeal associated with beer.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-27T15:48:38.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7093"}} +{ "Id": "7093", "PostTypeId": "1", "CreationDate": "2017-11-28T23:36:48.073", "Score": "6", "ViewCount": "583", "Body": "

I'm throwing a party with themed drinks, and one is a shot topped with 151, and set on fire.

\n\n

I'll need to serve about 15 at a time, and don't own that many shot glasses. Is there any disposable shot glass that can be safely held at about 130 °F or 66 °C (the only actual number I found online, but probably not too precise) for less than a minute? What plastic number (the recycling number) should I look for?

\n", "OwnerUserId": "7311", "LastEditorUserId": "5064", "LastEditDate": "2017-12-23T14:32:35.857", "LastActivityDate": "2017-12-23T14:32:35.857", "Title": "Disposable glass for flaming shots?", "Tags": "glassware", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7094"}} +{ "Id": "7094", "PostTypeId": "1", "CreationDate": "2017-11-29T17:18:18.903", "Score": "0", "ViewCount": "1918", "Body": "

I've heard that Brandy can have an impact on blood pressure, but mixed responses of lower or higher feelings in the human body. What exactly does it do? Does the direction of the effects change over time? What about with different amounts of brandy, with different types, or with repeated use over time? What is the science behind it all?

\n", "OwnerUserId": "7320", "LastEditorUserId": "8086", "LastEditDate": "2018-09-14T12:04:29.660", "LastActivityDate": "2018-09-14T12:04:29.660", "Title": "What effect does brandy have on blood pressure?", "Tags": "health spirits", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7095"}} +{ "Id": "7095", "PostTypeId": "2", "ParentId": "7093", "CreationDate": "2017-11-29T23:50:28.533", "Score": "6", "Body": "

Plastic will melt really quickly. Glass might even shatter if it's not the proper type. You need something made out of Pyrex (or similar type glass). I couldn't find Pyrex shot glasses, but they do make 100ml beakers that might serve your purpose!

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-11-29T23:50:28.533", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7096"}} +{ "Id": "7096", "PostTypeId": "1", "AcceptedAnswerId": "7099", "CreationDate": "2017-11-30T19:37:36.560", "Score": "10", "ViewCount": "836", "Body": "

I've recently made the decision to put my whisky collection into storage and slow down my drinking habit.

\n\n

Assuming I keep the bottles under moderate temperature, and out of sunlight, is there a ballpark figure to how long they'll remain palatable?

\n\n

More specifically, I'm interested in real numbers, and not just 'a long time'.

\n", "OwnerUserId": "938", "LastEditorUserId": "938", "LastEditDate": "2017-12-01T14:38:18.343", "LastActivityDate": "2018-11-06T01:14:33.837", "Title": "How long will an opened bottle of whisky last while stored under ideal conditions?", "Tags": "storage whiskey", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7097"}} +{ "Id": "7097", "PostTypeId": "1", "CreationDate": "2017-12-01T09:15:46.900", "Score": "6", "ViewCount": "184", "Body": "

This isn't a question about typical production: I know that Scotch is often peated while Irish rarely is and that Irish is usually triple-distilled whereas Scotch is usually double-distilled. That's covered well by the question Whiskey - Irish vs. Scottish. This more of a question about whether those processes make a noticable difference to the result.

\n\n

Imagine a wine tasting: a skilled wine taster can identify the grape(s) and regions from a sip of the wine without seeing the bottle. I guess my question is: could a consuisseur readily identify whether a whiskey was Scotch or Irish from the flavour alone? Are there typical \"giveaway\" flavours, smells or textures (other than peat) which identify each?

\n\n

Or, put it another way, if you wanted to showcase a typical range of whiskey styles, could you do it solely with a selection from North America and Scotland, or are there examples made in Ireland of a style unique to that country?

\n", "OwnerUserId": "7189", "LastActivityDate": "2017-12-01T13:23:04.547", "Title": "Are there broad stylistic differences between Scotch and Irish whiskey?", "Tags": "spirits whiskey scotch", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7098"}} +{ "Id": "7098", "PostTypeId": "2", "ParentId": "7097", "CreationDate": "2017-12-01T13:23:04.547", "Score": "5", "Body": "

I'd say yes, but with the caveat that I've only tried a limited number of Irish whiskies (mostly big name brands) and so they might be a bit more varied than I'm aware of.

\n\n

I'm largely ignorant of what goes into the distilling process of both Irish whisky and Scotch, but what I notice as a taster is that Irish whisky is often very sweet, with more like a sugary or fruity taste to it. I'd normally recommend them to people with a sweet-tooth.

\n\n

Scotch can be very sweet too, but I find the Sherry versions often with more of a butterscotch/caramel flavour, and if they're well produced the sweetness is usually a bit more balanced than in the Irish whiskies I've tried.

\n\n

If one was a connoisseur I'd imagine they'd be able to differentiate an Irish from a Scottish whisky a majority, but probably not 100%, of the time. But if someone was a beginner they'd most definitely have trouble.

\n\n

So to answer your question more directly, if you were to showcase whisky, I would argue that you could do so with product coming out of Ireland, but that it would probably be more on par quality wise with American whisky, than it would Scottish.

\n", "OwnerUserId": "938", "LastActivityDate": "2017-12-01T13:23:04.547", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7099"}} +{ "Id": "7099", "PostTypeId": "2", "ParentId": "7096", "CreationDate": "2017-12-01T19:57:19.853", "Score": "10", "Body": "

Whisky will never go bad after it's opened and kept closed and away from sunlight.

\n\n
\n

How should I store my Scotch Whisky? Unlike wine, whisky does not mature in the bottle. So even if you keep a 12 year old\n bottle for 100 years, it will always remain a 12 year old whisky. As\n long as the bottle is kept out of direct sunlight, the Scotch Whisky\n will neither improve nor deteriorate, even if it is opened. Whisky\n that is stored at very low temperatures can become cloudy, but the\n cloudiness should disappear when the whisky is returned to room\n temperature.

\n
\n", "OwnerUserId": "6111", "LastActivityDate": "2017-12-01T19:57:19.853", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7100"}} +{ "Id": "7100", "PostTypeId": "2", "ParentId": "6788", "CreationDate": "2017-12-02T02:27:04.407", "Score": "2", "Body": "

Tulsi, aka holy basil tea actually lowers the cortisol levels in your body, and speak as a person who used to drink daily for stress, this has worked the best for me.

\n", "OwnerUserId": "7348", "LastActivityDate": "2017-12-02T02:27:04.407", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7101"}} +{ "Id": "7101", "PostTypeId": "2", "ParentId": "1064", "CreationDate": "2017-12-06T00:57:14.820", "Score": "1", "Body": "

The table prduced by Evil Genius should produce the correct answer. The error reported on 0.01% for 100% ABW is because the siource table given density of 100% alcohol as 0.78934 and he divided by 0.78924. Either the table or his divisor must be wrong.

\n", "OwnerDisplayName": "user7402", "LastActivityDate": "2017-12-06T00:57:14.820", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7102"}} +{ "Id": "7102", "PostTypeId": "1", "CreationDate": "2017-12-06T14:20:42.727", "Score": "1", "ViewCount": "246", "Body": "

I just want to know why draught beer tastes so different at different places in India. I have been to different places all over the country and the beer tastes radically different.

\n", "OwnerUserId": "7408", "LastActivityDate": "2017-12-10T11:07:39.657", "Title": "Why draught beer tastes so different at different places in India", "Tags": "specialty-beers draught", "AnswerCount": "2", "CommentCount": "4", "ClosedDate": "2017-12-12T03:16:19.583", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7103"}} +{ "Id": "7103", "PostTypeId": "2", "ParentId": "7102", "CreationDate": "2017-12-06T16:05:33.843", "Score": "0", "Body": "

It's all in the water. The water has a big role in the beverage's taste.

\n", "OwnerUserId": "7272", "LastEditorUserId": "7272", "LastEditDate": "2017-12-10T11:07:39.657", "LastActivityDate": "2017-12-10T11:07:39.657", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7104"}} +{ "Id": "7104", "PostTypeId": "2", "ParentId": "7102", "CreationDate": "2017-12-07T04:01:07.717", "Score": "0", "Body": "

It's many smaller factors but the most likely if it's the same brand are the following:

\n\n

Storage temperature: in shipping and storage large temperature swings or storage above cellar temperature increase the ageing process of the beer dramatically. In extreme cases of hot temperatures spoilage bacteria, as well as chemical changes, are even more prone to happen.

\n\n

Draft line cleaning: every bar has different ages on their lines as well as different cleaning standards. In high end beer bars, line cleaning is encouraged every two weeks. This removes mineral buildup as well as destroys bacteria growth in plastic lines for a time. These buildups or bacterial produced off flavors will be different to each location and can easily ruin beer, or at least change its intended flavor.

\n", "OwnerUserId": "7409", "LastActivityDate": "2017-12-07T04:01:07.717", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7105"}} +{ "Id": "7105", "PostTypeId": "2", "ParentId": "7096", "CreationDate": "2017-12-07T04:15:01.163", "Score": "4", "Body": "

Aged Whiskey has gone through the majority of its chemical changes during barrel aging. It has been oxidized and condensed. The final product is generally stable, however further evaporation of liquids will occur over time just as in the barrel aging process, so storage in airtight containers would be recommended.

\n\n

Sunlight has been known to increase the amount of substances like hydroxymethlyfurfurals in stored alcoholic beverages like mead and wine. I have not read any studies in direct correlation with whiskey, but with residual sugar present the production seems likely, thus storage in darkness, or non-UV light would also likely be a positive for long term storage.

\n\n

Whiskey's shelf stability, especially if sealed, will bypass that of wine providing one of the most harsh environments for any sort of spoilage organism to take hold, with it's high ethanol content, as well as being more acidic than many more neutral liquors such as vodka.

\n", "OwnerUserId": "7409", "LastActivityDate": "2017-12-07T04:15:01.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7106"}} +{ "Id": "7106", "PostTypeId": "2", "ParentId": "7091", "CreationDate": "2017-12-07T04:26:49.500", "Score": "0", "Body": "

As stated, the BJCP certifications, as well as the Certified Cicerone(r) are the most universally recognized across the craft beer industry.

\n\n

There are many brewing degrees available as well, ranging from certificates to advanced vocational trades and brewmaster educations more common in countries that treat brewing as a tradeskill.

\n\n

It depends on your industry focus, BJCP is most focused on homebrewing, judging homebrewing, and the historical preservation and relevence of beer styles.

\n\n

The Cicerone program is concerned with a well rounded understanding of beer, draft line systems and maintenance, and service. It's suited for primarily industry professionals in a front-of-house role, sales representatives, or Brewers honing their sensory evaluation. The Cicerone program uses the BJCP guidelines for style recognition.

\n\n

Degrees are usually for production Brewers, lab technicians wishing to specialize in beer quality assurance, or sales personnel looking to further their depth of knowledge in regard to the brewing process. Every school will be slightly different, and may be taught according to a general regional style of brewing, (German, English, Belgian), and will differ in style of brewing as well as elective material, but will usually cover the science in regard to wort production and fermentation.

\n\n

And finally, brewing itself can often be a heavy amount of on the job training, with some of the most knowledgeable brewers never having a formal certification, but just a wealth of work experience.

\n\n

There is nothing entirely universal or recognized as a complete education at this time.

\n", "OwnerUserId": "7409", "LastActivityDate": "2017-12-07T04:26:49.500", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7107"}} +{ "Id": "7107", "PostTypeId": "2", "ParentId": "7071", "CreationDate": "2017-12-07T04:38:26.730", "Score": "4", "Body": "

It's difficult to answer why fermentation did not complete without further information.

\n\n

It's quite possible the sugar content was too high and pH to low for whatever yeast was added to survive and begin fermentation.

\n\n

Vinegar however is created when bacteria that produce acetic acid are present in an environment with a sugar source and oxygen. They will thrive off of the sugar just like brewer's yeast, but will also produce acetic acid as a byproduct of their life processes.

\n\n

If you wish to make cherry wine, I would suggest diluting the juice down to somewhere in the range of a sugar concentration of 10 percent, measuring with a hydrometer or refractometer, and using a yeast, possibly a dry wine yeast, that can withstand alcohol in ranges of 10-14 percent abv.

\n", "OwnerUserId": "7409", "LastActivityDate": "2017-12-07T04:38:26.730", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7108"}} +{ "Id": "7108", "PostTypeId": "2", "ParentId": "7003", "CreationDate": "2017-12-07T04:51:29.183", "Score": "1", "Body": "

After opening the bottle the beer will begin to oxidize and degrade in quality, so flavor will begin to suffer shortly after opening.

\n\n

Pressure will not continue to build in the bottle from fermentation, the yeast have consumed what residual sugar is present for bottle carbonation. That being said, the dissolved CO2 will remain in solution at cooler temperatures but escape rapidly as it warms, so capping while the bottle is cool and keeping the bottle cool will preserve more CO2 in solution after opening.

\n\n

A recorked bottle will be most likely to drive out the cork if allowed to warm, or agitated physically.

\n\n

A recorked bottle will be less likely to drive out the cork, if recorked warm, and then placed gently into cold storage.

\n\n

Lastly, volumes of CO2 in Belgian beers can range wildly, but their level of CO2 is generally higher than domestic US beer, however much lower than champagne. Pressure in the bottle will react as such.

\n", "OwnerUserId": "7409", "LastActivityDate": "2017-12-07T04:51:29.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7109"}} +{ "Id": "7109", "PostTypeId": "2", "ParentId": "7094", "CreationDate": "2017-12-07T20:46:27.950", "Score": "-1", "Body": "

Brandy affects blood pressure in the same way that any alcohol affects blood pressure. In the short term, alcohol can temporarily increase blood pressure. In the long term, with too much repeated consumption, there can be long-term more permanent blood pressure increases.

\n", "OwnerUserId": "5980", "LastActivityDate": "2017-12-07T20:46:27.950", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7111"}} +{ "Id": "7111", "PostTypeId": "1", "CreationDate": "2017-12-09T18:42:12.927", "Score": "4", "ViewCount": "178", "Body": "

While we generally focus on glucose, sucrose, and fructose for brewing, there are a lot of sugars out there. Can all of these be used in the brewing process, particularly for beer? What are the effects of using more esoteric sugars such as dextrose, xylose, mycose, or mannose alongside normal brewing grains? What about amino sugars such as glucosamine?

\n", "OwnerUserId": "7415", "LastEditorUserId": "5064", "LastEditDate": "2020-02-15T00:53:21.840", "LastActivityDate": "2020-02-21T01:06:44.197", "Title": "Can all sugars be used for brewing?", "Tags": "brewing craft-beers yeast", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7112"}} +{ "Id": "7112", "PostTypeId": "2", "ParentId": "7038", "CreationDate": "2017-12-09T20:39:01.043", "Score": "3", "Body": "

The type of still used is significant. Vodka is distilled using a fractioning column or reflux still as described here:

\n\n

https://en.wikipedia.org/wiki/Fractionating_column

\n\n

With a fractioning column, the answer is: none of the flavour comes from the original fermentation. There is no flavour (sort of....)

\n\n

Here's what a commercial one looks like:

\n\n

\"Commercial

\n\n

Or a home use version:

\n\n

\"T500

\n\n

I'm not very au fait with exactly how a reflux column works, but the end result is a pure flavourless liquid. Roughly the vapours travel up through a long column which contain elements that prevent all but the purest alcohol vapours to pass through.

\n\n

In the case of Whisky, Rum, Brandy, then yes they do get their flavours from the original fermentation. They are distilled using a pot still (by law in the case of Scotch and Irish whisk(e)ys). This is a much older type of still, less efficient than a column (lower ABV and less yield); key thing is it retains flavor:

\n\n

\"Commercial

\n\n

Or a home use version:

\n\n

\"enter

\n\n

The nature of a pot still is that it is less efficient than a column, but it allows much more flavor to emerge.

\n\n

It is possible to make vodka on a pot still, but great care has to be made to ensure the input alcoholic liquid (the \"wash\") is as clean and neutral as possible, no off flavours from the yeast for example. No commercial distiller would attempt this but some home distillers make do with what they have.

\n\n

Note that even whisky, which is distilled from dark brown malt \"beer\", will come out of the still as clear as vodka. It derives its final color from the barrel ageing process.

\n\n

Re the rums, I think techniques vary but I think usually white rum is similar to dark rum but it is carbon filtered after the oak aging process is complete, which removes the colour and also presumably some flavour.

\n", "OwnerUserId": "7416", "LastEditorUserId": "7416", "LastEditDate": "2017-12-09T20:56:13.483", "LastActivityDate": "2017-12-09T20:56:13.483", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7113"}} +{ "Id": "7113", "PostTypeId": "1", "CreationDate": "2017-12-10T22:48:51.017", "Score": "3", "ViewCount": "2067", "Body": "

We love this tequila but can't find it anywhere any more. Can somebody recommend something similar?

\n\n
\n

1942 pays homage to the year Don Julio González began his tequila-making journey. Produced in small batches and aged for a minimum of two and a half years. Bright golden amber colour; the bouquet is filled with notes of caramel, chocolate and flavours of toasty oak, vanilla and cooked agave; with a long lingering finish. - Tequila Don Julio 1942

\n
\n", "OwnerUserId": "7417", "LastEditorUserId": "5064", "LastEditDate": "2017-12-11T13:27:31.487", "LastActivityDate": "2019-11-19T14:01:05.163", "Title": "Something similar to Don Julio 1942", "Tags": "recommendations tequila", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7114"}} +{ "Id": "7114", "PostTypeId": "1", "AcceptedAnswerId": "7115", "CreationDate": "2017-12-12T17:47:39.597", "Score": "8", "ViewCount": "221", "Body": "

It's established in the Scotch world that the age of a whisky pushes it's price up. A MacAllan or Glenmorangie 18 will fetch a much higher price than their respective 12 year old versions.

\n\n

Having tried a small number of 18 year olds, I've found them highly variable in quality, just as you would with those in the 12 category, but those which were of higher quality seemed to be more mellow and subtle than their twelve year old counter-parts. But that's only my understanding from a very small sample size.

\n\n

So the questions are:

\n\n
    \n
  • What does aging a Scotch do to the whisky chemically?
  • \n
  • What properties do 18 year old Scotches tend to share for tasters?
  • \n
  • Are 18 year old Scotches ever crafted with special care, to make them superior aside from the aging process?
  • \n
\n", "OwnerUserId": "938", "LastActivityDate": "2017-12-13T12:29:43.663", "Title": "What are the main qualitative and quantitative differences between 18 and 12 year old Scotches?", "Tags": "aging scotch", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7115"}} +{ "Id": "7115", "PostTypeId": "2", "ParentId": "7114", "CreationDate": "2017-12-13T12:21:47.280", "Score": "6", "Body": "

Right now I can think about some characteristics of a Sotch, that depend partly on the age:

\n\n
    \n
  1. Flavours: The longer a whisky matures in a cask, the stronger is the influence of the cask on the flavours. So the character of a very young whisky largely comes from the distillery. That often means some fresh, fruity flavours, with a significant alcoholic taste. The character of an older whisky is largely defined by the cask(s). That often means some sort of wooden and softer flavours, besides other flavours that depend on the concrete cask.
  2. \n
  3. Color: Assuming the same cask, an 18 years old whisky is always darker than a 12 years old one, because the former had more time to absorb the color from the cask. (Ignoring the fact that many distilleries add caramel colouring before the whisky is bottled)
  4. \n
  5. Alcohol and volume: Over the years, the whisky constantly evaporates through the cask. Therefore, the amount of whisky in the cask is constantly decreasing (that's one reason why old whisky tends to be more expensive than young whisky). As alcohol evaporates easier than water, the alcohol concentration is decreasing as well.
  6. \n
\n\n

I'm sure that a distillery doesn't use the same distillate for all products. But I have no idea if that means, that the distillate that is designated for an 18 years old whisky is crafted with more care than the one that's designated for a 12 years old whisky. Only differently, I guess.

\n", "OwnerUserId": "7424", "LastEditorUserId": "7424", "LastEditDate": "2017-12-13T12:29:43.663", "LastActivityDate": "2017-12-13T12:29:43.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7116"}} +{ "Id": "7116", "PostTypeId": "1", "CreationDate": "2017-12-13T23:33:40.930", "Score": "7", "ViewCount": "9905", "Body": "

I generally use rum extract to make a \"non-alcoholic\" version of my eggnog recipe (which calls for rum and bourbon). However, the rum extract in my cupboard still technically has some alcohol in it, and therefore might not always be an acceptable substitute, depending on who I'm cooking for.

\n\n

What is the approximate difference in alcohol concentration when using an extract to mimic flavor, compared to the original spirit? I have always heard that the alcohol in (e.g.) rum extract is \"trivial\" or \"insignificant,\" and certainly don't disagree -- but I am hoping for a more quantitative measure.

\n", "OwnerUserId": "7420", "LastActivityDate": "2019-12-09T10:41:42.520", "Title": "How much alcohol is in rum extract?", "Tags": "flavor alcohol-level", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7117"}} +{ "Id": "7117", "PostTypeId": "2", "ParentId": "7116", "CreationDate": "2017-12-14T01:59:00.307", "Score": "4", "Body": "

As an example, McCormick Rum Extract has 35 percent alcohol, and lists the other ingredients as water, run, and natural flavor, in that order. Depending on the volume of your other ingredients, the alcohol content may become insignificant. Even imitation extracts, rum and others, contain alcohol. Bakery emulsions are an alcohol-free alternative, a water-based flavor concentrate, such as those marketed by LorAnn Oils and Flavors.

\n", "OwnerUserId": "6391", "LastActivityDate": "2017-12-14T01:59:00.307", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7118"}} +{ "Id": "7118", "PostTypeId": "2", "ParentId": "7059", "CreationDate": "2017-12-14T03:03:32.023", "Score": "2", "Body": "

Several suggestions:

\n\n
    \n
  • On a fresh egg, remove the chalazae, the ropey bit in the white (it anchors the yolk);
  • \n
  • Use either pasteurized egg whites or powdered egg whites;
  • \n
  • Add ice only after the mixture has become foamy and voluminous;
  • \n
  • Use a finer mesh strainer (if bits are getting through your shaker strainer).
  • \n
\n", "OwnerUserId": "6391", "LastActivityDate": "2017-12-14T03:03:32.023", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7119"}} +{ "Id": "7119", "PostTypeId": "1", "AcceptedAnswerId": "7121", "CreationDate": "2017-12-14T21:35:12.950", "Score": "2", "ViewCount": "8500", "Body": "

Sake is commonly known as \"wine rice\". But the process of obtaining sake is more similar to the beer one, according to Wikipedia. And its alcohol content is closer to a spirit drink.

\n\n

Why is called wine then?

\n", "OwnerUserId": "7429", "LastActivityDate": "2017-12-15T13:19:22.513", "Title": "Is sake a wine, beer or spirit drink?", "Tags": "sake", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7120"}} +{ "Id": "7120", "PostTypeId": "2", "ParentId": "7119", "CreationDate": "2017-12-15T02:22:46.597", "Score": "3", "Body": "

From the Wikipedia page (bolded for emphasis):

\n\n
\n

Sake (Japanese: 酒, IPA: /ˈsɑːkɛ/ SAH-keh), also spelled saké, (IPA:\n /ˈsɑːkeɪ/ SAH-kay or American English /ˈsɑːki/ SAH-kee)[1][2] also\n referred to as a Japanese rice wine, is made by fermenting rice that\n has been polished to remove the bran. Unlike wine, in which alcohol is\n produced by fermenting sugar that is naturally present in fruit,\n typically grapes, sake is produced by a brewing process more akin to\n that of beer, where starch is converted into sugars which ferment into\n alcohol.

\n \n

The brewing process for sake differs from the process for beer in\n that, for beer, the conversion from starch to sugar and from sugar to\n alcohol occurs in two distinct steps. Like other rice wines, when sake\n is brewed, these conversions occur simultaneously. Furthermore, the\n alcohol content differs between sake, wine, and beer. Wine generally\n contains 9%–16% ABV,[3] while most beer contains 3%–9%, and undiluted\n sake contains 18%–20% (although this is often lowered to about 15% by\n diluting with water prior to bottling).

\n \n

In the Japanese language, the word \"sake\" (酒, \"liquor\", also\n pronounced shu) can refer to any alcoholic drink, while the beverage\n called \"sake\" in English is usually termed nihonshu (日本酒, \"Japanese\n liquor\"). Under Japanese liquor laws, sake is labelled with the word\n seishu (清酒, \"clear liquor\"), a synonym less commonly used in\n conversation.

\n
\n\n

The bolded would suggest that etymologically and legally it would be classified as a liquor.

\n\n

What this says to me is that a) it's culture of origin perceived it to be a spirit, and b) so did those who wished to regulate it's use.

\n", "OwnerUserId": "938", "LastActivityDate": "2017-12-15T02:22:46.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7121"}} +{ "Id": "7121", "PostTypeId": "2", "ParentId": "7119", "CreationDate": "2017-12-15T13:19:22.513", "Score": "7", "Body": "

Short Answer
\nSake is categorized as sake, and should not be grouped together with other types of liquor. In Japan, you need a license specifically for making sake, even if you have licenses for making beer, wine and spirits!

\n\n

Long Answer
\nTo help clarify, let's compare the different liquor types.

\n\n
\n

Is sake a spirit?
\n No. Sake is brewed. By this definition alone, it disqualifies itself to be classified as a spirit, which are distilled. Shochu (焼酎) would be a closer Japanese counterpart there.

\n \n

Is sake a wine?
\n No. Sake uses a complex fermentation process known as a parallel multiple fermentation, where the rice is converted from start to glucose, then glucose to alcohol simultaneously in the same container. Wine uses the glucose from the grapes, making it a simpler process single fermentation process.

\n \n

Is sake a beer?
\n No. While beer is like sake in the fact that it must first convert starch into glucose, this is done in two separate steps, making it a serial multiple fermentation process.

\n
\n\n

By comparing the processes of making the different liquors, we can see that sake does not fall under spirits, wine, or beer. It is somewhere in between wine and beer in terms of process.

\n\n

Why is it often referred to as a wine?
\nI do not have the definitive answer, as there is no source that tells me the story behind that. But I can point the similarities between the two liquor types.

\n\n
\n

1) Alcohol content is similar.
\n A rough average for red and white wines combined is about 13-14%. It's about 15-16% for sake. Spirits like whisky are at 40%, so sake is nowhere near there.

\n \n

2) They are both highly dependent on ingredients (location).
\n For wine, it's the terroir, and for sake, it's the water. This makes the location of both liquors' makers an important factor to the flavors.

\n \n

3) Taste-wise they are close to each other.
\n Especially white wine. Sake can also have sweet, fruity tastes.

\n \n

4) The way of drinking is similar.
\n When you drink a good wine, you let it roll on your tongue a little, try to find the different flavors. The same goes with sake (God forbid you'd just chug it down like a shot of bad tequila!).

\n \n

5) They way they are sold are similar.
\n You don't buy 6-packs of sake, but a large sake bottle, similar to (but usually wider than) wine bottles. There are of course small one-cup sizes, and carton sake (similar to box wine), but the main method of purchase has always been the large bottle.

\n \n

6) In the US, it's branded as a wine.
\n It certainly isn't beer, but if it gets grouped into spirits, sake would be harder to sell in the States, as it would require a separate liquor license to sell it. By counting it as a \"wine\", stores only need a beer/wine license to sell.

\n
\n\n

In the end, I feel like wine is \"similar enough\" to most people to use as a comparison. I said that sake is sake, but really phrasing it like that doesn't help explain things to people. Having something familiar to compare to makes it easy, though I do wish people didn't stop at \"sake equals wine\", since that isn't an accurate explanation either.

\n\n

Here are few sites I referenced when looking into the details:
\nDocuments from the Japanese National Tax Agency regarding liquor types (JP).
\nHomare sake maker website, describing the process of sake-making (JP)
\nA small article on the similarities of sake and wine (EN)
\nOenon, another sake maker. Has pics of the sake-making process (JP)

\n", "OwnerUserId": "7430", "LastActivityDate": "2017-12-15T13:19:22.513", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7124"}} +{ "Id": "7124", "PostTypeId": "2", "ParentId": "3429", "CreationDate": "2017-12-18T15:30:08.540", "Score": "0", "Body": "

Reaction to O2, full spectrum uv light, and cigarette butts from drunken friends would affect beer faster. \nHeat energy is produced by catalytic components at variable rates during the brewing process. The outcome is pretty stable. and delicious.

\n", "OwnerUserId": "7438", "LastActivityDate": "2017-12-18T15:30:08.540", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7125"}} +{ "Id": "7125", "PostTypeId": "2", "ParentId": "83", "CreationDate": "2017-12-18T15:33:02.283", "Score": "2", "Body": "

Using a 12% salt brine ice slurry in your esky (cooler). The salt allows the water to \"superchill\" without freezing.

\n", "OwnerUserId": "7438", "LastActivityDate": "2017-12-18T15:33:02.283", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7127"}} +{ "Id": "7127", "PostTypeId": "2", "ParentId": "83", "CreationDate": "2017-12-18T16:01:48.587", "Score": "1", "Body": "

A couple at time does not reduce the amount of ice you need to replace. The cooler has the same insulation and same surface area. It will have the same heat loss.

\n\n

Why put it on ice when you get there? Pack the cooler before you leave and ice it down. Top off the cooler at the last store.

\n\n

I suggest a separate cooler for drinks as you are in and out of it more. If ice runs out nothing will spoil.

\n\n

As for food you can get a week in a good cooler. Pack as many foods frozen as possible. Open and close as few a times as possible.

\n", "OwnerUserId": "4903", "LastEditorUserId": "4903", "LastEditDate": "2017-12-18T16:08:46.547", "LastActivityDate": "2017-12-18T16:08:46.547", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7128"}} +{ "Id": "7128", "PostTypeId": "2", "ParentId": "4562", "CreationDate": "2017-12-18T19:20:39.977", "Score": "0", "Body": "

Beer is best to be drank at the temperature of 10C, but there are no real testing done on beer at room temp. You must do it yourself. It is pretty hard job to do LOL.

\n", "OwnerUserId": "7440", "LastActivityDate": "2017-12-18T19:20:39.977", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7129"}} +{ "Id": "7129", "PostTypeId": "1", "CreationDate": "2017-12-21T19:11:28.787", "Score": "3", "ViewCount": "119", "Body": "

As per title... I don't know where to find the Leffe Brune (my favourite) in London at \"normal\" price.\nI live near Elephant & Castle... south London.

\n\n

By normal price I mean like 2 or 2.5£ (better around 1.59£).\nIt is common to find in little shops and on Tesco/Sainsbury's the Leffe Blonde (33cl) at 1.29£ or 1.59£.

\n\n

I have found sometime the Brune one (at same price) but probably it was really an old stock in some shops. I bought all of them and after months I never seen them again (but they have the Blonde every time).

\n\n

I'm also interested in:

\n\n
    \n
  • Westemalle Dubbel
  • \n
  • Chimay Red
  • \n
  • Chimay Blue
  • \n
  • Achel
  • \n
  • Kwack
  • \n
  • Delirium Tremens
  • \n
  • Rochefort
  • \n
\n\n

Do you know some shops that have these ones?

\n\n

When I lived in Reading the local M&S (near the train station and city center) had a lot of Belgian beers at reasonable price. Not the one in London (in my area).
\nIn Reading I can suggest \"The Grumpy Goat\", it is a tiny shop near the station (hidden in a gallery, you have to know were it is) specialized in beers and cheese. It's a gem in Reading. Vary good choice and prices.

\n\n

The only option is online? Which shop/site do you suggest?

\n\n

Thanks,

\n\n

Alex

\n", "OwnerUserId": "7449", "LastEditorUserId": "7449", "LastEditDate": "2017-12-24T21:01:21.680", "LastActivityDate": "2018-03-02T18:25:04.210", "Title": "Where to find the Leffe Brune (and other Belgian beers) in South London", "Tags": "stout belgian-beers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7130"}} +{ "Id": "7130", "PostTypeId": "2", "ParentId": "435", "CreationDate": "2017-12-22T20:27:16.100", "Score": "2", "Body": "

Yes, you can re-carbonate long flat beer. If the beer has been only gone flat. Once re-carbonated I doubt that you would be able to tell the difference. I did this once with Corni Kegs and a CO2 pressure system over a couple days for 10 gallons. Tasted great. Beer doesn't go stale without contamination, but will go flat without a seal to keep pressurized. Next I am going to try to to rejuvenate a Growler from a microbrewery that I didn't screw the cap on tightly. This time, however, I will be using 2 ltr bottles, baking soda and vinegar!

\n", "OwnerUserId": "7450", "LastActivityDate": "2017-12-22T20:27:16.100", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7132"}} +{ "Id": "7132", "PostTypeId": "1", "AcceptedAnswerId": "7154", "CreationDate": "2017-12-23T14:18:59.797", "Score": "7", "ViewCount": "506", "Body": "

Is it possible to know where, when and how the custom of clinking glasses (usually filled with beer or wine) originated, while saying \"cheers\" or \"to your health\"? Do any historical documents support a possible origin?

\n\n

Many of us here will follow this tradition at times like New Year's Day, Christmas, weddings and so on.

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-03-20T16:36:27.897", "Title": "When, where and why did the tradition of clinking glasses and saying \"cheers\" or \"to your health\" first start?", "Tags": "history drinking glassware tradition", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7134"}} +{ "Id": "7134", "PostTypeId": "1", "CreationDate": "2017-12-24T22:20:23.713", "Score": "1", "ViewCount": "64", "Body": "

I don't understand how beer can be sold in a supermarket, yet not be required to have the alcohol content listed on the bottle. This can lead\nto serious consequences, if the person drinking does not realize the amount. Triple IPAs up to 13%...Not good.

\n", "OwnerUserId": "7454", "LastActivityDate": "2017-12-25T21:34:46.697", "Title": "Why is there no mention on labels especially IPAS of alcohol content?", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "0", "ClosedDate": "2017-12-28T01:03:18.533", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7135"}} +{ "Id": "7135", "PostTypeId": "2", "ParentId": "7134", "CreationDate": "2017-12-25T21:34:46.697", "Score": "1", "Body": "

There is no requirement from the TTB at the federal level to include ABV% on beer labels. Individual states can mandate that. Washington state, where I live, mandates that any beer over 6% needs to put it on the label. So, what you end up having is a hodgepodge of different beer labels. Nationally distributed beers usually put it on the label since they don't want to have different labels for each state. Locally made beers in your state may not require it, so that's why you aren't seeing it.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-12-25T21:34:46.697", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7136"}} +{ "Id": "7136", "PostTypeId": "1", "CreationDate": "2017-12-26T16:09:50.190", "Score": "4", "ViewCount": "199", "Body": "

I'm one of those people who puts nearly all my energy into things other than brewing. And yet I still do it a little. That's why I have a carboy of cider that is 18 months old in my basement.

\n\n

I don't know if the cider will be good or not when I try to bottle it, but I do know that all bubbling stopped long, long ago. I'm not sure if all the yeast is dead at this point (does that happen?) or if all the sugar is gone. Seems like one or the other must be true though.

\n\n

So on the off chance that I don't need to just pour this down the drain, what's my best bet for getting it carbonated in the growlers? Yeast? Sugar (though I actually used all honey initially)? Both?

\n", "OwnerUserId": "219", "LastActivityDate": "2018-02-12T15:44:53.570", "Title": "How to recover a carboy of cider?", "Tags": "brewing carbonation cider", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7137"}} +{ "Id": "7137", "PostTypeId": "2", "ParentId": "7136", "CreationDate": "2017-12-26T19:56:50.350", "Score": "5", "Body": "

First, I would check to see if it's still drinkable. You might have a carboy of apple cider vinegar if you haven't put any sulfites into it or somehow prevented from oxidation. The way to test it is to get a siphon (that you have sanitized) and suck out a little to taste. If it tastes ok, then you need to prepare for bottling.

\n\n

I would follow these directions except when it says to prime with 1/2 cup of corn sugar, I would put in a little yeast (maybe a tablespoon?) and mix with some water before you bottle. Make sure the yeast has dissolved. I'm sure the yeast in your carboy is dead at this point.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-12-26T19:56:50.350", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7138"}} +{ "Id": "7138", "PostTypeId": "2", "ParentId": "7136", "CreationDate": "2017-12-29T11:19:01.213", "Score": "0", "Body": "

I once did the same thing. I must have added water to the fermentation\n lock 4 or 5 times. The taste was fine so i just bottled it as usual. I always suck up the part of yeast when bottling. by the way, the yeast is dormant not dead. Adding additional yeast would not hurt. Just don't add it before boiling the sugar and water or cider or it will be dead.

\n", "OwnerUserId": "6641", "LastActivityDate": "2017-12-29T11:19:01.213", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7139"}} +{ "Id": "7139", "PostTypeId": "2", "ParentId": "6998", "CreationDate": "2017-12-29T16:51:47.467", "Score": "2", "Body": "

In 1998, my VERY FIRST GOUT ATTACK came on after I decided to get into fine wines. Others may differ, but I will only have a small serving of wine as a toast or with dinner a couple of times a year.

\n", "OwnerUserId": "7463", "LastActivityDate": "2017-12-29T16:51:47.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7140"}} +{ "Id": "7140", "PostTypeId": "1", "AcceptedAnswerId": "7144", "CreationDate": "2017-12-29T19:12:23.067", "Score": "5", "ViewCount": "86", "Body": "

I've noticed the tendency for different regions of Scotland to produce malt whiskies that tend to be similar in character, and I wonder how this came to be.

\n\n

That the distilling methods from each region are different is clear enough, but the question is is this because different distilling methods arose naturally out of each region, historically, and became static once they had established themselves, or something else?

\n", "OwnerUserId": "938", "LastActivityDate": "2018-01-08T04:16:21.630", "Title": "Why have distinct styles of Scotch clustered in different regions of Scotland?", "Tags": "scotch", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7141"}} +{ "Id": "7141", "PostTypeId": "1", "AcceptedAnswerId": "7142", "CreationDate": "2017-12-29T19:56:48.883", "Score": "4", "ViewCount": "14393", "Body": "

A friend of my family gave us an unopened bottle of Bollinger champagne from 1979. It is a vintage champagne. Is it safe to drink? As far as I understand, the worst that could happen to alcohol is that it turns into vinegar. However, we opened it and it does not take like vinegar. It lost all the fizz, and tastes a bit like cheap wine + sweet (desert) wine. But we are not sure it is safe to drink. Any advice?

\n", "OwnerUserId": "7464", "LastActivityDate": "2019-07-09T06:14:41.747", "Title": "Is it safe to drink a four decades old champagne?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7142"}} +{ "Id": "7142", "PostTypeId": "2", "ParentId": "7141", "CreationDate": "2017-12-29T20:23:26.927", "Score": "6", "Body": "

Simple answer is yes! The more complex answer is that it might not taste all that great but I've had some aged sparkling wines that were 10+ years old and were quite nice. But having lost it's carbonation does not make it bad, it will taste just like you described, cheap old wine.

\n", "OwnerUserId": "6111", "LastActivityDate": "2017-12-29T20:23:26.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7143"}} +{ "Id": "7143", "PostTypeId": "1", "AcceptedAnswerId": "7145", "CreationDate": "2018-01-07T14:27:54.440", "Score": "4", "ViewCount": "129", "Body": "

Nowadays do grapes squeezed/stomped for juice extraction like Adriano Celentano did it in the \"The Taming of the Scoundrel\" movie? Do some wine-makers still use such method of juice extraction for their exported wines?

\n\n

Personally, I think stomping is not hygienic. But I'm afraid that some wine-makers still use such methods with respect to traditions.

\n", "OwnerUserId": "7477", "LastEditorUserId": "7477", "LastEditDate": "2018-01-07T15:22:46.083", "LastActivityDate": "2018-03-22T10:25:59.183", "Title": "Nowadays do wine makers use squeeze-by-feet method for grape juice extraction to make wine?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7144"}} +{ "Id": "7144", "PostTypeId": "2", "ParentId": "7140", "CreationDate": "2018-01-08T04:16:21.630", "Score": "2", "Body": "

Much of it has to do with the material they used to dry the grain. If the distillery traditionally used peat (because it worked well, was widely available, and cheap, the smell made its way into the spirits (this is why the Islay area has such a concentration of “peaty” whiskies.

\n\n

Much of the flavor and color comes from how the distillery ages the whisky. One of the casks of choice these days is American white oak. Bourbon distillers in the US are only allowed to use a cask once. Scotland distilleries will buy the used casks and reuse them several more times. The best whiskies tend to be aged 12 or more years in ex-bourbon casks (first run of whisky).

\n", "OwnerUserId": "7481", "LastActivityDate": "2018-01-08T04:16:21.630", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7145"}} +{ "Id": "7145", "PostTypeId": "2", "ParentId": "7143", "CreationDate": "2018-01-08T22:07:26.573", "Score": "7", "Body": "

Very few people stomp grapes anymore for commercial winemaking. There are some wineries that still do it, I've heard of several in burgundy. Maybe some really old world stuff in Eastern Europe. The problem is that is super messy. Grapes are very sweet and when that juice dries on you, it is very sticky. Machines are much more efficient at crushing and pressing these days and don't cost a whole lot and last a lifetime. I can't name anyone off the top of my head. A quick google search didn't turn up anything either.

\n\n

As for they hygienic part, grapes are full of bird poop, dead bugs, spider webs, dirt. I've found dead birds, bird nests, dead lizards, snakes, you name it in grapes and vineyards. So, dirty feet don't really have much on all this dirty natural stuff. It's all moot anyways because the alcohol level in wine is high enough to kill any pathogen that makes it way on the grapes. So, you are safe from that standpoint.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-01-08T22:07:26.573", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7146"}} +{ "Id": "7146", "PostTypeId": "1", "AcceptedAnswerId": "7147", "CreationDate": "2018-01-09T16:32:56.480", "Score": "8", "ViewCount": "2999", "Body": "

I found a bottle of sake in my grandfathers basement.

\n\n

\"Picture

\n\n

As there are no Latin characters indicating the age of the bottle (and I don't speak Japanese), I used google Translator and found the following on a card which I assume can be sent back to the manufacturer to give feedback.

\n\n
\n

差出有効期間昭和45年12月14日迄(切手はいりません)

\n
\n\n

which is translated to:

\n\n
\n

Sent validity period Until December 14, 1970 (stamps are not required)

\n
\n\n

So I guess it must be produced somewhere around 1970

\n\n

Does sake age well?

\n\n

Can I sell the bottle, as in: is it worth anything due to its age?

\n\n

How do I know if I can still drink it safely?

\n", "OwnerUserId": "7486", "LastEditorUserId": "5064", "LastEditDate": "2018-01-10T07:55:03.743", "LastActivityDate": "2020-08-08T02:50:24.390", "Title": "What to do with 50 (?) years old sake?", "Tags": "health aging sake", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7147"}} +{ "Id": "7147", "PostTypeId": "2", "ParentId": "7146", "CreationDate": "2018-01-10T00:34:07.447", "Score": "10", "Body": "

Due its high alcohol content, you will still be able to drink the sake without worrying about your health.

\n\n

However, the recommended consumption period is usually one year after bottling. After that, the maker cannot guarantee the flavor of the sake. Whatever the flavor of your sake is right now, whether it aged well or went plain ugly, is not the flavor of the sake as advertised by the sake maker. Oh, and if the bottle is open, like wine, sake will oxidize rapidly.

\n\n

Sake may or may not age well, depending on the sake. I don't have enough knowledge to say what those differences are, though from my experience, old sake can become either a tad acidic or more rich in its original flavor.

\n\n

You may be able to sell the bottle so someone interested, but I don't think there is a giant market for it outside of Japan (though I may be wrong about that). In Japan, there would be plenty demand for old sake there.

\n\n

By law, there should be a date on the bottle (not sure if they print that on the box) which indicates the \"month of bottling\". Although, that law may not have existed 50 years back...

\n\n

Note there is a chance it will go bad in the case it is nama (fresh) sake, which you can tell if you see 生 somewhere on the label. Nama sake is sake that does not undergo the two pasteurization processes after being made, so the yeast is still alive. Taste guarantee is only about a half a year, and something 50 years old will probably taste yogurty or cheesy.

\n", "OwnerUserId": "7430", "LastActivityDate": "2018-01-10T00:34:07.447", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7148"}} +{ "Id": "7148", "PostTypeId": "1", "AcceptedAnswerId": "7149", "CreationDate": "2018-01-15T16:21:37.307", "Score": "6", "ViewCount": "426", "Body": "

Commercial wineries sometimes (often?) dilute the grape juice with water before fermentation. This is done (according to that page) because the grapes have too much sugar and can kill off the yeast and malolactic bacteria. I've been told that wineries that do high-end wines don't dilute, but others do.

\n\n

People have been pressing grapes into wine for thousands of years. Of course, precise control over the yeast and the process is more modern. I'm not an expert, but I've seen some medieval and renaissance research, including recipe redactions, that didn't call for dilution. I used to be part of a brewing club that made some of those recipes, and they didn't taste unusual to me. (Of course, yeast selection might have played a role there.)

\n\n

What drove the need for dilution? Is it that the yeasts that are now preferred (or even available) are more fragile? Are we cultivating grapes with more sugar now? Are we now able to engineer more parts of the process that previously fell to chance, and that's somehow involved? Have tastes changed and historically wine was much different in taste or strength?

\n", "OwnerUserId": "43", "LastEditorUserId": "6111", "LastEditDate": "2018-01-15T17:37:59.287", "LastActivityDate": "2018-01-15T17:37:59.287", "Title": "When and why did wineries start diluting wine?", "Tags": "history wine production", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7149"}} +{ "Id": "7149", "PostTypeId": "2", "ParentId": "7148", "CreationDate": "2018-01-15T17:07:51.237", "Score": "8", "Body": "

There are several factors at play here. If we think about how grapes were maintained hundreds or thousands of years ago, it was kind of a slapdash affair. In the beginning they probably just grabbed whatever grapes they could off a vine growing up a tree. Later they just haphazardly planted grapes in a field hoping for the best and they mixed everything, Red and white grapes and IF they got a harvest they were grateful. This style of grape growing does not lend itself to high sugar grapes.

\n\n

This illustration below shows some middle ages grape growing in Burgundy. It's basically a hillside planted every few inches. No trellis or anything.

\n\n

\"Pruning

\n\n

Several things changed that equation, especially after WW2.

\n\n
    \n
  1. New World grape growing. Growing grapes in the new world exploded after WW2 and continues to expand rapidly to this day. Why is this a problem? It is and it isn't. You have to remember grapes like Pinot Noir, Riesling, Cabernet, Grenache were probably grapes that had been domesticated over hundreds or thousands of years to adapt to the climate the original vines were from. Cabernet is a good example. The dreary coast in Bordeaux where the weather is not especially warm. In a good year, the grapes might make a 13% ABV wine. You take Cabernet and stick it in Napa Valley where it is MUCH warmer and sunnier and voila, you have 17% ABV monster cabs. IMHO, it's mostly too hot in Napa Valley to make a balanced wine. Same with much of Australia and South America.

  2. \n
  3. Modern Viticultural practices. Also after WW2 irrigation was introduced this enabled growers to grow wine in areas that were too dry to grow grapes without it. Washington State is a good example. The Yakima valley gets around 9 inches of rain a year, but the temperatures are within a range of growing grapes, if a little too hot and sunny. Now you have a region that looks nothing like where the grapes originally came from. This also pertains to just about everything about growing grapes today. Trellis systems, fungicides, rootstocks, soil management, canopy management. Everything is done with a high precision to eke out the most of the vines, resulting in wines that are super ripe.

  4. \n
  5. Modern Tastes - As our palates seek out more and more sweet things, many of these modern wines are made with higher alcohols on purpose because many times high octane wines come with a fair amount of residual sugar.

  6. \n
  7. Because we can! In the new world we don't have the baggage that they do in Europe. We are allowed to pretty much do anything to our wines as long as it's legal and food grade. So, if you grapes accidentally got a few extra days in 100+ degree weather and started to turn to raisins and they are at 29 brix. You paid good money for those grapes and you can't waste them so you dump some acidulated water into your fermenter to water them down to acceptable levels and replace some acid that was lost because your grapes are over ripe. All perfectly legal in the New World, but absolutely verbotten in Europe.

  8. \n
  9. Brand name grapes - Everyone wants Cabernet and Chardonnay. Sure you can grow them in the Central Valley in California where it is super hot in the summer, but what type of wine do you get? Hardly recognizable from the original areas they came from, but the consumers just want to have these brand name grapes so we plant them in places of abundant heat having to water them down in the fermenter to make acceptable wines.

  10. \n
\n\n

I remember my viticulture teacher telling me that you should plant grapes that would ripen almost at the last possible day of the season. This would result in grapes that are in harmony with the local climate. What you see in many places like California where grapes are harvested in July and August and there is still MONTHS of hot weather ahead.

\n\n

All of this leads to a situation where many of the grapes we plant in the new world are simply not in the best climate for the best wine. 99% of the time it's grapes planted in a climate that's simply too hot. That's why we water our wines down.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-01-15T17:07:51.237", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7150"}} +{ "Id": "7150", "PostTypeId": "2", "ParentId": "6596", "CreationDate": "2018-01-17T03:34:35.227", "Score": "5", "Body": "

Me and my son ate the two worms that came in a bottle of mezcal we drank on his 21st birthday, it had no effect on us at all above the drunkeness we got from the mezcal apart from its foul taste that stayed for the next few hours. It tasted like wet rotten leather washed with ashtray juice and would be the worst thing i have ever swallowed. My son made his even worse by chewing it first! Definitely not worth trying at all! Even if it offerd some sort of extra kick or effect (which it does not) I would never do it again.

\n", "OwnerUserId": "7499", "LastEditorUserId": "5064", "LastEditDate": "2018-01-18T06:05:32.897", "LastActivityDate": "2018-01-18T06:05:32.897", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7151"}} +{ "Id": "7151", "PostTypeId": "1", "AcceptedAnswerId": "7153", "CreationDate": "2018-01-17T16:14:15.970", "Score": "4", "ViewCount": "16458", "Body": "

Question: If I drink my vodka through a straw will it have a stronger effect. There is a question here that sort of addresses my query, but does it apply to spirits as well?

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2018-11-01T13:12:05.930", "LastActivityDate": "2018-11-01T13:12:05.930", "Title": "Drinking vodka through a straw - stronger or not?", "Tags": "spirits", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7153"}} +{ "Id": "7153", "PostTypeId": "2", "ParentId": "7151", "CreationDate": "2018-01-17T16:50:44.987", "Score": "8", "Body": "

Some people have made the claim that drinking through a straw will get you more drunk than drinking without one. This seems to be a Myth.

\n\n
\n

Many people have claimed that drinking alcohol through a straw gets you drunk faster than drinking it regularly.

\n \n

Proponents of the Straw theory have two primary claims. First, when drinking through a straw, people usually drink faster than if they were drinking regularly. Because they are ingesting more alcohol in a shorter period of time, they will clearly get more drunk faster. Secondly, a straw creates a vacuum, which eliminates oxygen. The feeling of intoxication is created in part, because of the lack of oxygen entering us, so when we form a vacuum with a straw, we should naturally get more drunk. Additionally, by creating a vacuum with the straw, the boiling point of alcohol falls, and alcohol vapors are created within the straw, then inhaled into the lungs. This gets the alcohol into the bloodstream much faster than normal ingestion via the stomach.

\n \n

However, many opponents of the straw method say that although this science is true, the difference would be so negligible it wouldn't even be noticeable. The New York Times even went a step further in ts Q&A section, writing that \"There is no evidence that people get drunk faster if they drink alcoholic beverages through a straw, according to the National Institute on Alcoholic Abuse.\" And even the folks at Mythbusters weighed in on the topic, when it was posted in the community forums of their website, claiming that it was \"Busted.\" - Do you get Drunk Faster with a Straw?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-01-17T16:50:44.987", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7154"}} +{ "Id": "7154", "PostTypeId": "2", "ParentId": "7132", "CreationDate": "2018-01-19T15:28:04.830", "Score": "5", "Body": "

There is the usual great stuff relating to 'Toasting'. From wikipedia - which is normally correct.

\n\n

I then had a quick look at snopes.com, they proclaim the following to be false:

\n\n
\n

Q: Why do people clink their glasses before drinking a toast?\n A: It used to be common for someone to try to kill an enemy by offering him a poisoned drink. To prove to a guest that a drink was safe, it became customary for a guest to pour a small amount of his drink into the glass of the host. Both men would drink it simultaneously. When a guest trusted his host, he would then just touch or clink the host’s glass with his own.

\n
\n\n

ORIGINS: Many explanations have been advanced to explain our custom of clinking glasses when participating in toasts. One is that early Europeans felt the sound helped to drive off evil spirits. Another holds that by clanking the glasses into one another, wine could be sloshed from glass to glass, thereby serving as a

\n\n

Wine glasses

\n\n

proof the beverages had not been poisoned. Yet another claim asserts that the “clink” served as a\nsymbolic acknowledgment of trust among imbibers who did not feel the need to sample each others’ drinks to prove them unadulterated.

\n\n

Each of those explanations is false. While making a racket for the purpose of scaring off evil spirits underpins other customs that carry over to this day (e.g., the tolling of church bells at weddings, and the loud shouts and noisemaking at the stroke of twelve on New Year’s Eve), the “clink” is a relatively new aspect of toasting and, as such, came along well after folks had relinquished the notion that demons both lurked in every corner of typical day-to-day existence and could be sped on their way by a bit of noise. As for sloshing wine from one glass to another, drinking vessels would need to be filled to the brim to effect that, and if they were, such practice would waste valuable potables (because some would be sure to land on the floor) and likely douse the toasters too. And while the poisoning of enemies has long been part of the ordinary mayhem of the world, the practice of touching of one’s filled glass to those of others when participating in a toast is unrelated to suspicion of the wine’s having been tampered with; such killings were not so common at any nebulous point in the past that a signal to one’s host indicating he was clear of suspicion of attempted murder needed to be enshrined in the canon of social gestures.

\n\n

To get at the real reason for the clink of glass on glass, we have to first look at why and how we toast, and where the practice originated.

\n\n

The custom of sealing with booze expressions of good wishes for the health of others dates back so far that its origins are now lost to us, yet in numerous cultures

\n\n

such acts of camaraderie often involved shared drinking vessels. The clinking of individual cups or glasses as a proof of trust wouldn’t have meant much when\neveryone drank from the same bowl. Indeed, in those cultures where shared drinking containers was the norm, to produce one’s own vessel in such company was to communicate an unmistakable message of hostility and distrust; it would have been regarded as akin to bringing along a food taster to sample the repast.

\n\n

“Toasting,” our term for the pronouncement of benedictions followed by a swallowing of alcohol, is believed to have taken its name from a practice involving a shared drinking vessel. Floated in the “loving cup” passed among celebrants in Britain was a piece of (spiced) cooked bread that the host would consume along with the last few drops of liquid after the cup had made one round of the company. In modern times toasting has become a matter of imbibing from individual drinking vessels rather than from one shared flagon, so to compensate for the sense of unity lost in doing away with the sharing of the same cup we have evolved the practice of simultaneously drinking each from our own glass when a toast is made, thereby maintaining a communal connection to the kind words being spoken.

\n\n

The clinking of glasses has been added to the practice of offering toasts for a few reasons, none having anything to do with poison. Prior to such augmentation, toasts pleased only four of the five senses; by adding the “clink,” a pleasant sound was made part of the experience, and wine glasses have come to be prized not only for their appearance but also for the tones they produce when struck. Yet beyond mere aural pleasure, the act of touching your glass to that of others is a way of emphasizing that you are part of the good wishes being expressed, that you are making a physical connection to the toast. The practice also serves another purpose, that of uniting the individuals taking part in the benediction into a cohesive group: as the wine glasses are brought together, so symbolically are the people holding them. On a deeper level, the wine is also being recommuned with itself — that which had been one (when it had been in its own bottle) but was separated (when it was poured into a variety of glasses) is brought back into contact with the whole of itself, if only for a moment.

\n\n

Etiquette mavens say one need not clink glasses with everyone present when participating in toasts among large assemblies. Rather than reach across vast expanses of wide tables (thereby risking losing your balance and ending up in the guacamole), simply raise your glass and make eye contact with the group.

\n\n

MY OWN THOUGHTS ON THE SUBJECT

\n\n

So, with all this in mind, my own thought is that in times gone by as 'rivals' drank each others health, they would drink from the other person's cup (to avoid poisoning - however all one would have to do would be to poison one's own cup - surely that would have worked?!), as the cups were held to the other person's lips they would inadvertantly 'clink' together. As time moved on and we attempted not to kill everyone in our paths the clinking just wort of became symbolic.

\n", "OwnerUserId": "6366", "LastActivityDate": "2018-01-19T15:28:04.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7155"}} +{ "Id": "7155", "PostTypeId": "1", "CreationDate": "2018-01-19T15:42:52.693", "Score": "-2", "ViewCount": "108", "Body": "

The internet is full of hangover cures - (I need a drink just reading them all!)

\n\n

Just how many can claim to be backed by science?

\n\n

Obvious strategies include staying hydrated, getting plenty of sleep, eating a good breakfast and taking certain supplements, all of which could reduce your hangover symptoms.

\n\n

But is there an instant cure?

\n", "OwnerUserId": "6366", "LastActivityDate": "2018-01-19T18:32:58.303", "Title": "Are there any sure fire hangover cures?", "Tags": "hangover science", "AnswerCount": "1", "CommentCount": "3", "ClosedDate": "2018-01-26T11:08:01.603", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7156"}} +{ "Id": "7156", "PostTypeId": "2", "ParentId": "7155", "CreationDate": "2018-01-19T18:32:58.303", "Score": "1", "Body": "

There is no cure for a hangover except to not drink in the first place.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-01-19T18:32:58.303", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7158"}} +{ "Id": "7158", "PostTypeId": "1", "AcceptedAnswerId": "7159", "CreationDate": "2018-01-22T03:46:47.533", "Score": "3", "ViewCount": "253", "Body": "

I would like to know what whiskey is better with cocktails.

\n\n

I've bough the Jack Daniels, but I feel that the taste of the cocktail is off since the flavors of the Jack Daniels is stronger than others. I might be wrong but I really do taste the Jack Daniels in any cocktails involving whiskey.

\n\n

I wonder then what whiskey is mostly used for cocktails and what whiskey is mostly used for shots or straight consumption.

\n\n

If any of my sayings are wrong or badly expressed just let me know.

\n", "OwnerUserId": "7512", "LastEditorUserId": "9887", "LastEditDate": "2020-03-04T02:24:46.563", "LastActivityDate": "2020-03-04T02:24:46.563", "Title": "Are there any Whiskey better for cocktails?", "Tags": "whiskey cocktails", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7159"}} +{ "Id": "7159", "PostTypeId": "2", "ParentId": "7158", "CreationDate": "2018-01-22T08:45:58.487", "Score": "1", "Body": "

Personally, I mix Cocktails with Irish Whiskeys into cocktails because of their smooth taste and generally, because they match so well with other alcohols. So if you don't like that the Jack is getting so much attention in your cocktail, you can switch to something other than a rich Bourbon.

\n\n

If you want a recommendation, you can try mixing Jameson with Ginger Ale as Longdrink.

\n\n

Or if you want to mix a cocktail, the Long Island Icetea is a way to see if your choice of Whiskey mixes well with other spirits. For this cocktail you can even choose a cheaper Whiskey, be it Bourbon like Jim Beam or Tullamore Dew as for an Irish one because it is more difficult to aknowledge the different spirits in the mixture.

\n\n

And after all, you shouldn't mix expensive Whiskey in a cocktail, that's just not right.

\n", "OwnerUserId": "5734", "LastActivityDate": "2018-01-22T08:45:58.487", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7161"}} +{ "Id": "7161", "PostTypeId": "2", "ParentId": "7158", "CreationDate": "2018-01-22T18:46:12.547", "Score": "0", "Body": "

You should really think about all of the different Scotch, Whiskey, and Bourbon selections as spices in a recipe. Cinnamon and sugar go great on doughnuts but not so much with spinach salads.

\n\n

Sure, some people will LOSE THEIR MINDS if you were to put \"a rare sipping ::insert spirit of choice::\" into a coke... But... if that is what you want to do. You do it and enjoy it fully.

\n\n

Start looking at Flavor Profiles and then learn what pairs well with the types of drinks you want to mix into them. There are probably a lot of mixology-style techniques for drink prep (think Flaming Dr Pepper shot) that I am unaware of.

\n", "OwnerUserId": "22", "LastActivityDate": "2018-01-22T18:46:12.547", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7162"}} +{ "Id": "7162", "PostTypeId": "1", "AcceptedAnswerId": "7186", "CreationDate": "2018-01-24T09:50:57.303", "Score": "3", "ViewCount": "148", "Body": "

I came into possession of a bottle of fortified wine - it says on the label \"Premium Vintage Angove's 1995 Port\".

\n\n

I happened to be at Angove's cellar door doing a tasting and I mentioned to them that I had the bottle at home, and the person behind the counter gave me the impression that it was not likely to be worth keeping / drinking (without saying as much).

\n\n

There is little information that I can find about this wine on the internet, which leads my to my question\": would it be possible / likely that this wine would be drinkable and possibly good?

\n\n

Here is the bottle in question:

\n\n

\"Front\n\"enter

\n\n

I cannot vouch for how it has been kept over the years, all I know is I've had it for four years or so but have never dared open it.

\n", "OwnerUserId": "7521", "LastActivityDate": "2018-02-09T00:08:09.090", "Title": "Angove's 1995 \"Port\": Drinkable or Not?", "Tags": "wine cellaring", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7163"}} +{ "Id": "7163", "PostTypeId": "2", "ParentId": "7162", "CreationDate": "2018-01-24T11:19:16.027", "Score": "4", "Body": "

If Angove's are suggesting it may not be good, then its value as an investment is going to be low or zero, so if I were in your shoes I'd probably open it and try it. What's the worst that could happen?

\n\n

That said, Vintage Ports are typically supposed to last a long time. As it mentions on the label, \"extended bottle maturation\" where the port is bottled with unfiltered sediment usually means they should be cellared for 20 or 30 years or even 40 years. So I'd suggest it will be coming into its own soon. Give it another few years and then open it.

\n", "OwnerUserId": "187", "LastActivityDate": "2018-01-24T11:19:16.027", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7164"}} +{ "Id": "7164", "PostTypeId": "2", "ParentId": "7158", "CreationDate": "2018-01-24T11:28:34.670", "Score": "3", "Body": "

Jack Daniels is not a whisky! It is a Tennessee Whiskey!

\n\n

That is very different to the Scotch whisky usually recommended in whisky cocktails, which require more of a bitter/tart edge than the sweetness of Jack Daniels.

\n\n

For any whisky cocktail I personally would use a decent single malt Scotch whisky to get the best taste for me, but everyone's palate is different. I only use Jack Daniels in sweet cocktails, or with cola.

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2018-02-06T15:19:18.127", "LastActivityDate": "2018-02-06T15:19:18.127", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7165"}} +{ "Id": "7165", "PostTypeId": "2", "ParentId": "7162", "CreationDate": "2018-01-24T19:47:11.193", "Score": "3", "Body": "

The person you talked to knows nothing about Port. Port is meant to age a very long time. Personally, I've had 50 year old ports that were excellent. Port is made by stopping fermentation with alcohol leaving behind some unfermented grape juice and about 20% alcohol. Because of the high alcohol, properly stored Port rarely has the problems that regular wine have. Actually, part of the reason they started putting alcohol in wine like this was exactly for abuse. It was meant to ship all over the world in adverse conditions and still be drinkable.

\n\n

Enjoy your Port now or hold for as long as can. Maybe up to another 20 years!

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-01-24T19:47:11.193", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7166"}} +{ "Id": "7166", "PostTypeId": "2", "ParentId": "983", "CreationDate": "2018-01-26T12:18:40.517", "Score": "0", "Body": "

Hangovers are worse depending on sugar content regardless of type of alcoholic beverage. Mixed drinks that use sugar free mixes don’t hurt as much the next day so figure out the sugar content.

\n", "OwnerUserId": "6991", "LastActivityDate": "2018-01-26T12:18:40.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7167"}} +{ "Id": "7167", "PostTypeId": "2", "ParentId": "38", "CreationDate": "2018-01-27T22:21:48.530", "Score": "-3", "Body": "

The two don't mix. Beer is heavy, and wine is lighter in consistency, which would make it hard on your stomach, kidneys and liver to de-toxify.\nWine also contains sulfites, which by themselves can make you sick.

\n", "OwnerUserId": "7534", "LastActivityDate": "2018-01-27T22:21:48.530", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7168"}} +{ "Id": "7168", "PostTypeId": "1", "AcceptedAnswerId": "7171", "CreationDate": "2018-01-28T21:09:52.497", "Score": "4", "ViewCount": "381", "Body": "

A long long time ago (.. I can still remember ♫) there were these old bottle caps. My parents still have 2 or 3 at home from soviet times. They look kinda like this:

\n\n

\"enter

\n\n

What are those called? Ar there some keywords to find them? It took me at least 3- minutes to even find this image (and it was in middle of completely unrelated images down on something like the third image-search page). Or, the best option, where can I buy a box of these?

\n\n

P.S. I know that the image is from \"flip-top\" wikipedia page, but what I am looking for is a cap, that is independent from the bottle itself.

\n", "OwnerUserId": "174", "LastEditorUserId": "174", "LastEditDate": "2018-01-28T21:35:12.133", "LastActivityDate": "2018-02-01T03:41:24.870", "Title": "Trying to find a resealable bottle cap", "Tags": "bottles preservation", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7171"}} +{ "Id": "7171", "PostTypeId": "2", "ParentId": "7168", "CreationDate": "2018-01-29T15:07:12.500", "Score": "3", "Body": "

Found what I was looking for: WESTMARK 3 Flaschenverschlüsse, Flaschenstöpsel mit Hebel und Gummidichtung, 40 x 60 x 15 mm, farblich sortiert.

\n\n

\"Westmark

\n\n

Now I only need to order a box of these.

\n", "OwnerUserId": "174", "LastEditorUserId": "5064", "LastEditDate": "2018-01-30T23:32:38.180", "LastActivityDate": "2018-01-30T23:32:38.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7172"}} +{ "Id": "7172", "PostTypeId": "2", "ParentId": "7168", "CreationDate": "2018-01-29T17:26:43.833", "Score": "0", "Body": "

In the USA you can find this type of cap at most homebrew shops. These originated in Holland but now are popular for many breweries around the world. Here are the caps

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-01-29T17:26:43.833", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7173"}} +{ "Id": "7173", "PostTypeId": "2", "ParentId": "7030", "CreationDate": "2018-01-31T03:19:18.823", "Score": "2", "Body": "

You can see pretty much anything in the bottle. This article provides a good first look (trigger warning!).

\n\n

Besides the stuff described there I witnessed bottles with exotic fish, giant prawns, and kelp. I even tasted some of them; we were not amused.

\n", "OwnerUserId": "7541", "LastActivityDate": "2018-01-31T03:19:18.823", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7174"}} +{ "Id": "7174", "PostTypeId": "2", "ParentId": "607", "CreationDate": "2018-01-31T14:44:38.887", "Score": "3", "Body": "

I home brew ales and stouts all the time and have never carbonated or even bottled it. I have never missed the bubbles or the constant burping. In fact, I am enjoying a glass of English Bitter right now. Tasty and refreshing. Five gallons of beer so that I can dip a jug whenever I want, and no messing with bottles. By the time you finish the 2nd one, you will not miss the carbonation.

\n", "OwnerUserId": "7545", "LastActivityDate": "2018-01-31T14:44:38.887", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7175"}} +{ "Id": "7175", "PostTypeId": "2", "ParentId": "7129", "CreationDate": "2018-01-31T17:51:03.970", "Score": "1", "Body": "

If I want to find a beer, I use the Untappd app. Link to the beer is here: https://untappd.com/b/abbaye-de-leffe-leffe-brune-bruin/5941 \nIf you load it up in the App (certainly on Android), you can 'Find It'. This will search for recent check ins close to you. That should certainly point you in the right direction anyway.

\n", "OwnerUserId": "7546", "LastActivityDate": "2018-01-31T17:51:03.970", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7177"}} +{ "Id": "7177", "PostTypeId": "2", "ParentId": "7030", "CreationDate": "2018-02-01T03:48:34.563", "Score": "2", "Body": "

\"Goldshlager\" has little flakes of gold leaf, which is used for wood signs, and glass. Gold leaf is expensive to purchase at the art supply store, and expensive for the customer who wants gold leaf pounded onto glass, or a customer who wants a sand-blasted redwood sign with gold leaf.

\n", "OwnerUserId": "7534", "LastEditorUserId": "5064", "LastEditDate": "2018-02-01T12:00:41.537", "LastActivityDate": "2018-02-01T12:00:41.537", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7179"}} +{ "Id": "7179", "PostTypeId": "2", "ParentId": "7015", "CreationDate": "2018-02-01T07:11:35.453", "Score": "2", "Body": "

Starka does not age in bottles, and has no vintage, so I don't think it can be of any interest.

\n\n

Tokay ages very well, and 70 years old one might be interesting. On the other hand, I have a serious reservations regarding Richon leZion wine-masters of 1947. I would expect something along the lines of Carmel wines, but less refined. It definitely has a great historic value, because it was produced prior to Israel statehood. Ask your Jewish friends.

\n\n

I have no say on other exhibits.

\n", "OwnerUserId": "7541", "LastActivityDate": "2018-02-01T07:11:35.453", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7180"}} +{ "Id": "7180", "PostTypeId": "1", "AcceptedAnswerId": "7181", "CreationDate": "2018-02-01T19:44:37.167", "Score": "8", "ViewCount": "365", "Body": "

I recently ordered a sensory training kit from Siebel Institute. In short, glass vials of liquid isolating flavors (including off-flavors and contamination) commonly found in beer.

\n\n

The instructions explain how to spike samples of beer, but say nothing about how to select a suitable beer:

\n\n

\"enter

\n\n

I'll be hosting a party of six, and our tastes vary wildly: from craft drinkers to macro drinkers, and an enologist (winemaker).

\n\n

How should I select the base beer(s) to help us get the most out of this experience?

\n\n
    \n
  • Should we all have the same beer? If so, a macro, even though some dislike them? Or should I pick something like a pilsner?

  • \n
  • Or should I have two tiers, a macro and something else? (What kind of ale would be appropriate?)

  • \n
\n", "OwnerUserId": "73", "LastActivityDate": "2018-05-16T22:25:12.310", "Title": "What's a good (neutral) sample beer to spike with a sensory training kit?", "Tags": "taste flavor lager craft-beers", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7181"}} +{ "Id": "7181", "PostTypeId": "2", "ParentId": "7180", "CreationDate": "2018-02-01T20:50:46.387", "Score": "7", "Body": "

You want a mildly flavored, low hop beer for something like this. I would suggest a Kolsch or Helles Lager or a Mild. Pilsners can be heavily hopped. I have done a lot of this with wines when I taught winemaking classes at a community college near here. We used very low aroma wines like a warm climate sauvignon blanc. You want the same for this since you don't want anything to get in the way of your samples. Also keep a small cup of coffee beans and water nearby to \"reset\" your nose and mouth between smelling and tasting. I wouldn't do two different beers it will muddy things. Good luck!

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-05-16T22:08:30.757", "LastActivityDate": "2018-05-16T22:08:30.757", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7182"}} +{ "Id": "7182", "PostTypeId": "1", "CreationDate": "2018-02-05T11:41:04.797", "Score": "3", "ViewCount": "145", "Body": "

Last night, I asked bartender for a cocktail based on orange peel. Then he made a cup of cocktail with orange peel & coconut & lime. It was off sweet taste.

\n

He told me the name of cocktail which is named a after a WoMan chancellor who shut down every bar and pub in her university, and so their students made this cocktail to curse her. But now I can't remember the name...

\n

Is here anybody who knows the name?

\n", "OwnerUserId": "7562", "LastEditorUserId": "12012", "LastEditDate": "2021-07-20T17:05:32.507", "LastActivityDate": "2021-07-20T17:05:32.507", "Title": "Name of a cocktail with orange peel+coconut+lime", "Tags": "cocktails", "AnswerCount": "0", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7183"}} +{ "Id": "7183", "PostTypeId": "1", "CreationDate": "2018-02-07T23:43:32.277", "Score": "2", "ViewCount": "59", "Body": "

I'm becoming more interested in brewing my own beer and due to space considerations am thinking a 1-gallon size may be my ideal choice of setup.

\n\n

The question is:

\n\n

In what ways does brewing with 1 gallon equipment effect the quality of beer that's produced, as opposed to brewing from more robust and expensive setups?

\n\n

edit: May have used the 'kit' terminology in a way I didn't intend. Basically what I'm asking is if 1 gallon equipment will produce a lesser quality beer than a more expensive, and bigger setup.

\n", "OwnerUserId": "938", "LastEditorUserId": "938", "LastEditDate": "2018-02-08T12:39:39.433", "LastActivityDate": "2018-02-08T14:05:24.933", "Title": "The quality of beer from one gallon brewing equipment versus more robust equipment", "Tags": "brewing", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7184"}} +{ "Id": "7184", "PostTypeId": "2", "ParentId": "7183", "CreationDate": "2018-02-08T11:44:27.753", "Score": "1", "Body": "

Well, I've been brewing for more than a year. I already did 1 gallon to 5 gallons, the quality of the beer is the same. You must pay attention in all proccess not just in the used kit.

\n\n

My friends and I use a simple kit, to make the beer most archaic. Except the first time, the others results were very good.

\n\n

I talk more of the beers that we made in https://sommelieria.wordpress.com/. It's in Portuguese but can help you.

\n", "OwnerUserId": "7571", "LastActivityDate": "2018-02-08T11:44:27.753", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7185"}} +{ "Id": "7185", "PostTypeId": "2", "ParentId": "7183", "CreationDate": "2018-02-08T14:05:24.933", "Score": "2", "Body": "

I think it depends on a lot of factors, but you should be able to make high quality beer. You just have to pay a lot of attention to detail. Measuring ingredients becomes super important. A little error can screw up a beer. In bigger batches there is more room for error. Same with mashing. You need to have a really good way to keep the mash at the proper temperature, which can be hard in a small container. Otherwise, there is no reason a 1 gallon batch can't be just as good.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-02-08T14:05:24.933", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7186"}} +{ "Id": "7186", "PostTypeId": "2", "ParentId": "7162", "CreationDate": "2018-02-09T00:08:09.090", "Score": "2", "Body": "

I would open at the next possible occasion. Twenty three years is usually enough time for the majority of vintage ports to mature fully. When the previous commenter says he’s had wonderful 50 year old ports, he surely means ones from the very highest quality :\n (1) Producers - I don’t know much about Angove’s but my quick research has revealed some older vintages of Angove’s (early 70s) retailing for about $90. Top vintage ports from this era typically retail much higher. \n (2) Vintages - how was ‘95 for Australian port? I don’t know. \n (3) Provenance - you said yourself you’re not sure if it’s been stored properly.

\n\n

Good luck!

\n", "OwnerUserId": "7572", "LastActivityDate": "2018-02-09T00:08:09.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7188"}} +{ "Id": "7188", "PostTypeId": "2", "ParentId": "6239", "CreationDate": "2018-02-09T11:45:52.487", "Score": "-2", "Body": "

It's a light beer that tastes great and since it has the name imprinted on the bottle instead of a paper label stuck on, it is not messy when taken out of ice bucket.

\n", "OwnerUserId": "7576", "LastActivityDate": "2018-02-09T11:45:52.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7190"}} +{ "Id": "7190", "PostTypeId": "2", "ParentId": "7136", "CreationDate": "2018-02-12T15:44:53.570", "Score": "0", "Body": "

I have used a soda stream to carbonate wine in the past. It works well with very little work. If you want to go with an old school method of carbonating in the bottle then you must be sure that your bottles are rated for 90PSI. Once the fermenting is done in the bottle, turn the bottle upside down so that the yeast sediment settles in the neck of the bottle. Once the yeast has settled and your wine or cider looks clear, you then place it in a freezer and watch for ice to form in the neck first. Once the yeast sediment freezes in the neck only, remove it from the freezer and open the bottle and the frozen yeast can be easily removed. Most of the time the pressure from the carbonation will push the frozen yeast wad out. You can then top it off with more wine or cider if you plan on storing it for later.

\n", "OwnerUserId": "7580", "LastActivityDate": "2018-02-12T15:44:53.570", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7191"}} +{ "Id": "7191", "PostTypeId": "1", "CreationDate": "2018-02-12T16:34:03.417", "Score": "2", "ViewCount": "100", "Body": "

Constellation Brands (STZ) has agreed to pay $190 million for a 10% stake in Canopy Growth Corporation, which sells medical marijuana in Canada and plans to sell recreational pot there when it becomes legal, as soon as next July. Who will be the next Alcoholic beverage company to strike a deal with a cannabis based company?

\n", "OwnerUserId": "7581", "LastActivityDate": "2018-02-12T16:34:03.417", "Title": "Alcohol and cannabis", "Tags": "specialty-beers", "AnswerCount": "0", "CommentCount": "5", "FavoriteCount": "1", "ClosedDate": "2018-02-12T20:21:48.827", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7192"}} +{ "Id": "7192", "PostTypeId": "1", "CreationDate": "2018-02-12T20:26:03.860", "Score": "2", "ViewCount": "313", "Body": "

I've got this Cooper and Thief bottle. From the label, it is a blend of red wines aged in Bourbon barrils. However, unlike red wine, it is 17% alcohol.

\n\n

I don't really know what to expect.

\n\n
    \n
  • Should I expect something sweet like a vin cuit?
  • \n
\n\n

I would like to try it but I am afraid that once I open it, I will have only a few days to drink it before it becomes too oxygenated (like red wine would). Or can it be kept for a few weeks / months like a Porto wine?

\n\n
    \n
  • How much time do I have to drink it after opening it?
  • \n
\n", "OwnerUserId": "7582", "LastEditorUserId": "7582", "LastEditDate": "2018-02-12T20:49:41.253", "LastActivityDate": "2018-02-13T14:37:45.833", "Title": "What is this Cooper and Thief red wine bottle?", "Tags": "red-wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7193"}} +{ "Id": "7193", "PostTypeId": "2", "ParentId": "7192", "CreationDate": "2018-02-13T14:37:45.833", "Score": "1", "Body": "

The CellarTracker tasting notes for this one are...Interesting. Overall it looks like it leans toward port-ish, so is probably fine for a week at least. And if you end up thinking it is starting to degrade from oxygenation, once it's open you can throw the bottle into the freezer as you would to preserve any open wine.

\n", "OwnerUserId": "37", "LastActivityDate": "2018-02-13T14:37:45.833", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7196"}} +{ "Id": "7196", "PostTypeId": "1", "AcceptedAnswerId": "7197", "CreationDate": "2018-02-26T12:28:56.043", "Score": "3", "ViewCount": "111", "Body": "

My initial SG was 1.090 and now reads 1.026, this should give me an ABV between 8.4% and 9% but the vinometer is reading 16%, and I have a stuck fermentation with Montrechat (Premier Rouge) yeast (max 13%).

\n\n

So obviously the vinometer is lying right?

\n", "OwnerUserId": "7608", "LastActivityDate": "2018-02-26T13:50:32.080", "Title": "Vinometer reads 16% while SG says that can't be possible", "Tags": "wine yeast", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7197"}} +{ "Id": "7197", "PostTypeId": "2", "ParentId": "7196", "CreationDate": "2018-02-26T13:50:32.080", "Score": "6", "Body": "

Vinometers don't work on beer or wine with residual sugars. You need to use a hydrometer. Vinometers only works with dry wine.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-02-26T13:50:32.080", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7198"}} +{ "Id": "7198", "PostTypeId": "1", "CreationDate": "2018-02-26T14:50:46.960", "Score": "1", "ViewCount": "91", "Body": "

I have a berry wine, stuck at 1.026SG and with a high malic acid (quite sour). Should I try to restart the fermentation by adding fresh yeast? What about yeast from another vat? Is there enough sugar still in the vat to continue the ferment?

\n", "OwnerUserId": "7608", "LastActivityDate": "2018-02-26T20:15:19.940", "Title": "Restart fermentation stuck at 1.026SG?", "Tags": "wine yeast", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7199"}} +{ "Id": "7199", "PostTypeId": "2", "ParentId": "7198", "CreationDate": "2018-02-26T20:15:19.940", "Score": "1", "Body": "

There are specific steps to restarting a stuck wine/mead/high gravity beer. You can read the whole procedure here. You'll need some champagne yeast or some other special yeast used to restart stuck fermentations. But it starts with this:

\n\n
\n

For restarting 5 or 6 gallons, take a quart jar and fill it half way\n with the wine in question. Add to that, water until the jar is 2/3\n full. Put in the mix a 1/4 teaspoon of yeast nutrient, and 3\n tablespoons of sugar. Be sure that the sugar becomes completely\n dissolve. Now you can add a whole packet of the Champagne yeast. Cover\n the jar with a paper towel and secure with a rubber band.

\n
\n", "OwnerUserId": "6111", "LastActivityDate": "2018-02-26T20:15:19.940", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7200"}} +{ "Id": "7200", "PostTypeId": "1", "AcceptedAnswerId": "7201", "CreationDate": "2018-02-27T20:41:25.037", "Score": "5", "ViewCount": "190", "Body": "

For the purpose of definition we'll call 'rare 18 year old Scotch' bottles that aren't really common in foreign markets like Canada.

\n\n

What I wonder is, if we're talking about that type of high-grade Scotch, how easy is it to find a bottle if you were visiting distilleries or liquor stores in Scotland directly.

\n\n

In other words, when distilleries produce premium product does it tend to mostly stay in country, or are some of these whiskies just produced in such low quantities that getting your hands on it anywhere is rare?

\n", "OwnerUserId": "938", "LastActivityDate": "2018-11-06T07:59:19.987", "Title": "How hard is it to get rare 18 year old Scotches directly in Scotland?", "Tags": "scotch", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7201"}} +{ "Id": "7201", "PostTypeId": "2", "ParentId": "7200", "CreationDate": "2018-02-28T08:35:00.020", "Score": "10", "Body": "

As an avid whisky fan, and having worked in a distillery and visited most Scottish distilleries, I can tell you this:

\n\n

It's incredibly easy - pretty much all the distilleries have 18 year old single malts. It's not rare at all, in fact I don't think I'd class them as \"premium\" in that way. For many of the whiskies I like I'll buy the 12, 15 and 18 year old. Amusingly enough, many of these whiskies are also available in supermarkets and even local shops.

\n\n

There are a few I'll hunt down that are considerably older, but they really do command a premium. These are the kind that usually go to collectors, or are available through specialist groups, such as the Scotch Malt Whisky Society.

\n\n

If your question is because you plan on a whisky tour and you want to know if you can find these whiskies in the distilleries, then yes - no problem.

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2018-11-06T07:59:19.987", "LastActivityDate": "2018-11-06T07:59:19.987", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7202"}} +{ "Id": "7202", "PostTypeId": "1", "CreationDate": "2018-03-03T00:13:33.757", "Score": "4", "ViewCount": "987", "Body": "

How to check how old this scotch whisky is?

\n\n

\"Grant's

\n", "OwnerUserId": "7617", "LastEditorUserId": "7635", "LastEditDate": "2018-03-22T02:13:03.563", "LastActivityDate": "2018-03-22T02:13:03.563", "Title": "Where I can check the age of this blended scotch whisky?", "Tags": "whiskey age", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7203"}} +{ "Id": "7203", "PostTypeId": "2", "ParentId": "7202", "CreationDate": "2018-03-03T14:53:10.513", "Score": "14", "Body": "

For blended whisky, the age is not generally considered a relevant factor. There will be a range of ages and whiskies in there, chosen to make the end result.

\n\n

Unless a particular blend has ages specified (the Grant's Family Reserve doesn't), all you can guarantee is that the youngest whisky is 3 years old.

\n\n

As an example, another Grant's whisky, the 12 year old, has whiskies that are 12 years old and older blended into it.

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2018-03-16T11:46:39.313", "LastActivityDate": "2018-03-16T11:46:39.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7204"}} +{ "Id": "7204", "PostTypeId": "2", "ParentId": "7015", "CreationDate": "2018-03-03T21:06:27.130", "Score": "2", "Body": "

I recognize Strega. It is a digestif from Benevento, Italy. Flavor can become unstable over time. Used in some modern cocktails as well. I don't have my books in front of me, but it is normally more yellow, from saffron. An herbal liqueur. There's recipes using it in the PDT book and sometimes in Imbibe magazine.

\n", "OwnerUserId": "7466", "LastActivityDate": "2018-03-03T21:06:27.130", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7206"}} +{ "Id": "7206", "PostTypeId": "2", "ParentId": "7059", "CreationDate": "2018-03-04T04:16:52.363", "Score": "1", "Body": "

Chicago bartender here. Try adding your egg whites to one half of the shaker and your pisco and citrus to the other. Dry shake first. Then add ice and shake for 20 seconds. Double strain through a mesh strainer.

\n", "OwnerUserId": "7466", "LastActivityDate": "2018-03-04T04:16:52.363", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7207"}} +{ "Id": "7207", "PostTypeId": "2", "ParentId": "50", "CreationDate": "2018-03-12T06:13:25.147", "Score": "1", "Body": "

Actually beers from Anheiser Busch have preservatives in them witch it can get warm or cold or whatever. Coors beer products on the other hand do not have preservatives and have to stay cold all the time. I worked for Coors Distributing and we kept the beer cold on the train to the warehouse to the trucks, to the customer. All refrigerated.the whole way. That is all I know that i was told..

\n", "OwnerUserId": "7639", "LastActivityDate": "2018-03-12T06:13:25.147", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7210"}} +{ "Id": "7210", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2018-03-19T16:10:10.413", "Score": "4", "Body": "

I usually use either Jägdbitters (a Jägermeister-like bitters sold at Aldi) or my family's version of Bärenjäger (which I prepare at home - nope, it's not bitters, but it was also used historicaly for the same purpose), mostly when I feel a cold coming up due to catching rain.

\n\n

Jägermeister gives a soothing feel to the throat if taken when you're already with the cought, but if taken as a preventive, it makes me feel like a warm blanket was dropped over my shoulders and I don't get the actual cold afterwards. It always works we me too, better than pharmacy bought stuff.

\n", "OwnerUserId": "7654", "LastActivityDate": "2018-03-19T16:10:10.413", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7211"}} +{ "Id": "7211", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2018-03-21T15:15:37.317", "Score": "2", "Body": "

Ramazzotti, an Italian herbal/bitter liquor. I drink a shot glass full of it when ever I have a stomach ailment. Works like a charm. And tastes great on ice and some like it with a touch of lemon in it as well.

\n", "OwnerUserId": "7662", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T02:07:58.977", "LastActivityDate": "2019-08-28T02:07:58.977", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7212"}} +{ "Id": "7212", "PostTypeId": "2", "ParentId": "6262", "CreationDate": "2018-03-22T10:16:04.760", "Score": "0", "Body": "

My own personal experience is that organic wine, red, white or sparkling is an alcoholic beverage which does not give you a headache. Seems that pesticides and additives in regular non-organic wine is the reason for headaches the next day.

\n", "OwnerUserId": "7662", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-28T12:55:12.083", "LastActivityDate": "2019-01-28T12:55:12.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7213"}} +{ "Id": "7213", "PostTypeId": "2", "ParentId": "7143", "CreationDate": "2018-03-22T10:25:59.183", "Score": "2", "Body": "

I have lived in the Provence for a year and currently live on an Spanish island. In both of those locations wine making is one of the most prominent activities, plus those locations are old world and full of character but nowhere have I ever seen grapes being crushed my feet. Only in the movies. In fact in France and in Spain you find 100 year old bodegas where you can see the old wine presses on display.

\n", "OwnerUserId": "7662", "LastActivityDate": "2018-03-22T10:25:59.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7214"}} +{ "Id": "7214", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2018-03-22T12:33:31.080", "Score": "1", "Body": "

I use gentian bitters (made from violets, such as Fee Brothers Aromatic Bitters, Peychaud's Bitters or Angostura) with soda water for stomach ailments. It really does the trick.

\n", "OwnerUserId": "7665", "LastActivityDate": "2018-03-22T12:33:31.080", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7216"}} +{ "Id": "7216", "PostTypeId": "2", "ParentId": "7013", "CreationDate": "2018-03-22T17:44:22.273", "Score": "-1", "Body": "

Organic wine gives you no hangover! That much i can tell you from personal experience. I do live on an allover organic diet and love red wine, so naturally that is all i drink. I live in Europe and have visited quite a few organic wineries. The benefits become apparent when you talk to these people who tend to their vines personally day in and day out. The output of wine is not sure from year to year, since they can not rely on pesticides to guaranty output. The benefits are in the taste, environmental support, personal well being and knowledge that you drink something which was made with heart and soul.

\n", "OwnerUserId": "7662", "LastEditorUserId": "6111", "LastEditDate": "2018-03-22T19:33:16.873", "LastActivityDate": "2018-03-22T19:33:16.873", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7217"}} +{ "Id": "7217", "PostTypeId": "1", "CreationDate": "2018-03-22T23:44:06.403", "Score": "5", "ViewCount": "1020", "Body": "

I saw this in my carafe after it had been emptied. I am assuming it came from the wine. It almost looks like a vine to me. Can anyone help me identify this?

\n

\"enter

\n", "OwnerUserId": "7667", "LastEditorUserId": "5064", "LastEditDate": "2021-09-28T02:53:02.747", "LastActivityDate": "2021-09-28T02:53:02.747", "Title": "What is this sediment from my wine?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7218"}} +{ "Id": "7218", "PostTypeId": "2", "ParentId": "7217", "CreationDate": "2018-03-23T16:46:08.967", "Score": "5", "Body": "

This is most likely tartrate crystals that have formed around the cork or a seam on the inside of the glass bottle. The like to attach to something rough. I have seen this many times. More often in white wine than red because of the higher tartaric acid levels, but it can occur in both. Generally when the wine has been stored in a cold location for an extended period of time. Like in a cellar or fridge. Nothing to worry about! Here is a picture of white wine crystals that have a similar shape.

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-03-23T16:46:08.967", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7219"}} +{ "Id": "7219", "PostTypeId": "2", "ParentId": "7141", "CreationDate": "2018-03-24T08:06:42.643", "Score": "2", "Body": "

Definitely, I wanted to expand on why you should try it. Some quick points:

\n\n

Vintage champagne, whilst not to everyone’s tastes, is usually only created when harvests are at their best. Furthermore the grapes must be aged in a bottle for longer (a minimum of three times longer if memory serves) before release. This should be at least 18 months so the flavour develops. Finally the taste develops in the bottle, just some reasons but it wasn’t designed to be drank in 1979.

\n\n

As others have said a lot of people don’t often realise that vintage champagne is flat, the carbonation doesn’t last forever. The taste you are experiencing sounds right though and it is safe as long as it’s been sealed for it’s life etc.

\n\n

Hope that makes sense, hope it tastes nice!

\n", "OwnerUserId": "7282", "LastActivityDate": "2018-03-24T08:06:42.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7220"}} +{ "Id": "7220", "PostTypeId": "1", "CreationDate": "2018-03-26T22:37:50.323", "Score": "1", "ViewCount": "209", "Body": "

I just read an article about brewing with Amanita Muscaria. Does anyone know the best way to get the mushroom in California?

\n", "OwnerUserId": "7673", "LastActivityDate": "2018-03-27T17:29:54.160", "Title": "How to obtain Amanita Muscaria in California for brewing", "Tags": "fermentation", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7221"}} +{ "Id": "7221", "PostTypeId": "2", "ParentId": "7220", "CreationDate": "2018-03-27T17:29:54.160", "Score": "1", "Body": "

Check with your local mycological society in your area. If it grows wild near you. You can buy grow kits and try to grow it indoors. But the mycological society is probably your best bet for finding it wild or a supplier that you can get it from.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-03-27T17:29:54.160", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7222"}} +{ "Id": "7222", "PostTypeId": "1", "CreationDate": "2018-03-29T02:29:35.483", "Score": "3", "ViewCount": "398", "Body": "

What was the wine like that people drank during the times of the Roman empire? How alcoholic was it? I heard they diluted their wine with water, but why would they do that?

\n", "OwnerUserId": "7681", "LastEditorUserId": "7681", "LastEditDate": "2018-03-30T04:45:02.063", "LastActivityDate": "2018-03-30T04:45:02.063", "Title": "What wine did people drink during the Roman empire?", "Tags": "history wine", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7223"}} +{ "Id": "7223", "PostTypeId": "2", "ParentId": "7222", "CreationDate": "2018-03-29T08:00:08.683", "Score": "6", "Body": "

You have a lot of information right out of Wikipedia when searching for Ancient Rome + wine, and too much for it to be copied or gathered here. But here is some information I also learnt from History courses or readings.

\n\n

Basically, many wines (Greece, France, Italy...) were kind of \"sour\" and people were used to adding spices (among other things), not only to \"sweeten\" the taste, but also to help store the wine and keep it drinkable for a longer time. (1)

\n\n

Some of the wines the Romans used to drink (there may be more than that, of course):

\n\n
    \n
  • Mulsum -> wine with spices and honey (served during the gustatio, before the meal)
  • \n
  • Turriculae -> dry wine, with sea-water, fenugreek and defrutum (2).
  • \n
  • Carenum -> sweet and liquorous, from very mature / ripe grapes, with quince, various plants and defrutum.
  • \n
  • Vinum picatum -> (pitched wine is the closest I can come with in English) wine that was sweetened by the pitch used to seal the container.
  • \n
\n\n
\n

Why would they add many different plants / herbs / honey / water?

\n
\n\n

Ref. Wikipedia : Romans drank their wine mixed with water, or in \"mixed drinks\" with flavorings. Mulsum was a mulled sweet wine, and apsinthium was a wormwood-flavored forerunner of absinthe. Although wine was enjoyed regularly, and the Augustan poet Horace coined the expression \"truth in wine\" (in vino veritas), drunkenness was disparaged. It was a Roman stereotype that Gauls had an excessive love of wine, and drinking wine \"straight\" (purum or merum = unmixed) was a mark of the \"barbarian\".

\n\n

It seems that it was done for 3 purposes:

\n\n
    \n
  • keep wine longer and help it come from countries hundreds of miles and days of travel away.
  • \n
  • make the wine more \"drinkable\" and enjoyable.
  • \n
  • don't do like barbarians do and look like a well-educated person.
  • \n
\n\n

-> How alcoholic was it? is a question I have no knowledge of and no answer to.

\n\n
\n\n

1 - FWIW: adding spices to a beverage was done again centuries later, when people started drinking hot chocolate (before the refining process / conche was discovered). The taste was so bitter / sour that people put a lot of spices and sugar in it.

\n\n

2 - A reduction of must in Ancient Roman cuisine, made by boiling down grape juice or must in large kettles until reduced to half of the original volume. See also grape syrup.

\n\n
\n\n

Useful links: 1. wines in ancient Rome - 2. History.SE - 3. wine and Rome (University of Chicago) - 4. about ancient roman wines - 5. Rome and wines

\n", "OwnerUserId": "6874", "LastEditorUserId": "6874", "LastEditDate": "2018-03-29T14:23:47.497", "LastActivityDate": "2018-03-29T14:23:47.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7225"}} +{ "Id": "7225", "PostTypeId": "1", "CreationDate": "2018-04-01T08:11:43.630", "Score": "3", "ViewCount": "85", "Body": "

Can you brew beer in an apt? I could let it age in my closet, or the balcony storage shed.

\n", "OwnerUserId": "7688", "LastActivityDate": "2018-04-07T12:41:58.630", "Title": "Brewing in a rented space/place.", "Tags": "storage home-brew", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7226"}} +{ "Id": "7226", "PostTypeId": "2", "ParentId": "7225", "CreationDate": "2018-04-02T12:43:05.050", "Score": "2", "Body": "

The only concern I'd see right away would be making sure you don't lose your deposit if you have a blow out during fermentation and beer sprays all around. I've not done it in an apartment, but I just use my stove and a wort chiller that attaches to my sink, so there isn't anything in that process that would be a problem in an apartment.

\n\n

I suppose if you want to use a big propane burner for boiling the wort you might need to check if such things are permitted at your property. If they don't allow BBQs you probably couldn't use that type of burner. If you've got the time you should be able to do it on most stove tops though. And more time to brew means more time to enjoy previously brewed after all!

\n\n

For the fermentation, ideally you'll want a dark place that's reasonably temperature controlled, but if your apartment has its temps in a reasonable range you could probably make it work without a special fermentation chamber--which you could also likely buy or make if you care enough to.

\n", "OwnerUserId": "6878", "LastActivityDate": "2018-04-02T12:43:05.050", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7229"}} +{ "Id": "7229", "PostTypeId": "2", "ParentId": "7217", "CreationDate": "2018-04-06T18:59:07.450", "Score": "3", "Body": "

Those sediments are frequent in wine (especially in aged red wine). They consist of tartar (we in Germany call it \"Weinstein\" which means \"wine stone\") and colours. Bottles that have been stored horizontally for a longer time frequently have that kind of sediments on the down side of the bottle. Red wine needs air after being opened and is therefore often filled into a decanter. When you do this carefully the sediments remain in the bottle.

\n\n

In general the sediments are not hazardous to your health. The tartar can even be a symptom of good quality.

\n\n

When you store wine you should lay bottles in horizontal and keep the label upside. After opening the bottle you should empty it carefully with label up. So everybody can read the label and the sediments will remain in the bottle to keep the wine in glasses clear.

\n\n

However, in the longer past not all bottles were really carefully cleaned. The result was a wine with a terrible taste, not even vinegar. You can be sure that since decades wine makers take care to have bottles clean, if they want to remain in business.

\n", "OwnerUserId": "7702", "LastEditorUserId": "7702", "LastEditDate": "2018-04-06T19:05:02.873", "LastActivityDate": "2018-04-06T19:05:02.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7230"}} +{ "Id": "7230", "PostTypeId": "1", "AcceptedAnswerId": "7238", "CreationDate": "2018-04-07T12:11:16.647", "Score": "1", "ViewCount": "2444", "Body": "

Which champagne / house is most commonly associated with each decade since the 1920s?

\n\n

For example, a few initial thoughts might be:

\n\n
    \n
  • 1950s - Pol Roger (a Churchill influence?)
  • \n
  • 1960s - Bollinger (all the James Bond references?)
  • \n
  • 1990s - Laurent-Perrier Rosé (it was very cool in the City at that time)
  • \n
  • 2000s - Krug (a hip-hop influence?)
  • \n
\n\n

To be clear, I'm not asking what was the best wine made in each of those decades - either drinking then or since.

\n\n

I suppose, I might clarify the question as follows:

\n\n
    \n
  • If you were producing a period drama for that decade, which champagne would the characters drink (or be seen to drink)?
  • \n
  • If you were hosting a fancy-dress party for that decade, which champagne would you serve?
  • \n
\n", "OwnerUserId": "7705", "LastEditorUserId": "5064", "LastEditDate": "2018-04-13T12:42:14.683", "LastActivityDate": "2018-05-13T13:02:08.427", "Title": "What are some of the iconic champagnes for each decade of the last 100 years?", "Tags": "champagne", "AnswerCount": "1", "CommentCount": "8", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7231"}} +{ "Id": "7231", "PostTypeId": "2", "ParentId": "7225", "CreationDate": "2018-04-07T12:25:28.040", "Score": "2", "Body": "

Can you brew in an apartment?

\n\n

The short answer is yes.

\n\n

Here is a nice read.

\n\n
\n

I brewed my first batch of beer in my tiny Syracuse apartment while the snow piled up outside.

\n \n

Some people are turned off by the idea of small-batch brewing (one to two gallon batches) because they like to produce beer in larger volumes (five to ten gallon batches), and that’s okay—I like beer as much as the next guy, and having a large supply of it is (almost) never a bad thing. There's also a lot of comfort in that many of the homebrewing recipes and kits available cater to the familiar 5-gallon scale. However, there are a number of distinct advantages to small-batch brewing—especially for people living in small spaces—that I’ve come to realize over the years. In this post, I’ll share a few of them.

\n \n
    \n
  1. Your Significant Other Won't Lose a Closet
  2. \n
\n \n

A 5-gallon batch of beer will fill about 50 12-ounce bottles. That’s a lot of beer to store in your living space—even if you are drinking a few a day. And don't forget the pair of 5-gallon buckets you'll need to stash somewhere. At the 1-gallon scale, a single batch of home brew can fit in your fridge (easy access!), and your equipment can sit right on your countertop. Sourcing and storing ingredients is a breeze as well, as most 1-gallon recipes use between 2 and 3 pounds of grain, significantly less than their 5-gallon counterparts. Trust me, your significant other will thank you for the extra space!

\n \n

\"Brew

\n \n

Brew storage in a closet

\n \n
    \n
  1. The Cost to Produce Won't Break the Bank
  2. \n
\n \n

Of course, there’s something to be said for the economies of scale you can experience when buying ingredients in bulk. But as mentioned above, urban dwellers don’t always have the luxury of extra space. And when making only one to two gallon batches, picking up everything you need at the homebrewing supply store won’t break the bank. If you have a favorite recipe, you can scale it down proportionately.

\n \n
    \n
  1. You'll Avoid Some of the Risk
  2. \n
\n \n

For any homebrewer who’s learned a lesson in sanitation the hard way or woke up in the middle of the night to a symphony of bottle bombs exploding, you know it’s a total bummer. But as you scale down the cost of your brew, a bad batch poses less risk to your bottom line. This can be especially beneficial if you’re brewing with some expensive ingredients.

\n \n
    \n
  1. You'll Brew More Often and Learn Faster
  2. \n
\n \n

For most homebrewers, it doesn’t always make sense to brew a five or ten gallon batch every two weeks, especially when a brew can consume the better part of a day. But with small batch brewing if you've got the funds, it's pretty easy to routinely pump out a gallon or two at a time. A shorter process means you're likely to brew more often. Home brewing is so much of a learning-by-doing hobby, that this type of iterative process can elevate your skills at a much faster rate. Testing out variations on the same recipe between small batches is a great way to perfect your beer!

\n \n
    \n
  1. A Hot Plate Could Provide the Heat You Need
  2. \n
\n \n

Brewing a five or ten gallon batch requires a lot of water and considerable heat to achieve the right boil. This is why you might have seen some \"homebrewing porn\" pictures with an awesome garage setup that includes propane burners. We love those, but that's not practical in a small apartment, especially if you're limited to an \"apartment-sized\" appliance. With small batch brewing, you can brew quickly and easily with as little as a hot plate.

\n \n
    \n
  1. You Can Clock a Brew In Two Hours Or Less
  2. \n
\n \n

Just about anyone who's brewed a 5+ gallon batch of beer has spent a long night patiently waiting for water to boil, and after brewing, waiting for the beer to cool to the proper temperature. Although those can be among the most rewarding nights for some, a quicker process is a great bonus for most small-batch brewers, and helps us squeeze in an evening of brewing beer even during a busy week. With a brewing process which can clock in at under two hours from start to finish, brewing small has convenience on its side. You'll need little more than a stirring spoon and your arm to craft a tasty batch of beer. In contrast, the logistical \"bigness\" of a 10-gallon batch can be a big turnoff for some—lugging hefty pots of water and grain hither and yon is a daunting task.

\n \n
    \n
  1. It's a Perfect Recipe For Experimentation
  2. \n
\n \n

The size of your batch does not have to limit the amount of creativity you put into each one. However, the frequency, cost and required storage can absolutely be limiting factors. Brewing small means you're free to experiment with a variety of styles and recipes without going \"all-in.\" With such a quick turnover between batches, you can always keep your fridge stocked with new and interesting choices. Suddenly you can lager your beer without a dedicated fridge, or test out some new and different ingredients you've had your eye on. Oyster stout, anyone?

\n \n
    \n
  1. Cleaning Up Is a Cinch
  2. \n
\n \n

With larger batch brewing, you can easily generate 15 to 30 pounds of wet grain. Managing that waste is a challenge for home brewers living in a city apartment--especially when taking out the trash is already a hassle. Wouldn't you rather deal with 3-5 pounds of waste instead? Better yet, with even a little culinary flair, you can turn your spent grain into all manner of delectable treats!

\n \n
    \n
  1. You're Less Likely to Burn Something
  2. \n
\n \n

Not that you hear about too many homebrewing-related house fires or injuries, it's worth mentioning that brewing in smaller batches gives you a bit more control over what's happening. Coupled with the fact that it's a shorter process, better control more often than not results in a safer brew. Handling big volumes of heated water can result in burns, and over time, large 5-gallon glass carboys can weaken and be quite dangerous when they shatter—not to mention the loss of an entire batch of beer. - 9 Reasons Urban Dwellers Should Consider Small-Batch Brewing

\n
\n\n

Some more information may be found on Homebrewing SE: Small Space & Apartment Brewing: Cellaring

\n\n

More can be gleaned from these sources:

\n\n

Small Batch Brewing: Homebrewing in Tight Spaces

\n\n

Top 10 Tips for Apartment Brewing

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-04-07T12:41:58.630", "LastActivityDate": "2018-04-07T12:41:58.630", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7232"}} +{ "Id": "7232", "PostTypeId": "1", "AcceptedAnswerId": "7235", "CreationDate": "2018-04-07T20:59:52.860", "Score": "5", "ViewCount": "261", "Body": "

I like the taste of wine and the sensation the alcohol creates in the mouth, but I have no interest in the mental effects or the cancer risk. (I've never drunk enough at one time to become even so much as buzzed, so the \"warm feeling\" people describe is just academic for me.) My question is what non-alcoholic drinks, if any, come close to simulating wine as far as just the taste and the burn in the mouth? Is there anything better than sparkling juice?

\n", "OwnerUserId": "7707", "LastEditorUserId": "5064", "LastEditDate": "2018-04-09T12:59:57.397", "LastActivityDate": "2018-04-10T01:27:48.837", "Title": "Non-alcoholic substitutes for wine", "Tags": "recommendations non-alcoholic substitutions", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7233"}} +{ "Id": "7233", "PostTypeId": "1", "CreationDate": "2018-04-09T16:49:17.977", "Score": "3", "ViewCount": "380", "Body": "

I am looking for a beer that is sold in flat top cans or at least cans that require a tool to open it. A friend and I were discussing it and I thought that it would make an excellent present.

\n\n

I am not looking for a vintage buy, preferably it should be drinkable.

\n\n

Any help will be appreciated.

\n", "OwnerUserId": "7710", "LastActivityDate": "2018-04-09T17:08:47.447", "Title": "Where can I find a type of beer that comes in flat top beer cans?", "Tags": "cans", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7234"}} +{ "Id": "7234", "PostTypeId": "2", "ParentId": "7233", "CreationDate": "2018-04-09T17:08:47.447", "Score": "4", "Body": "

You are in luck! There is a retro can operation called the Chuchkey Beer Co. that is canning beer in the old style flat top cans that you need a churchkey to open (I think they supply one with the case). Looks like it's only available on the West Coast. Enjoy it if you can find it! Chuchkey Beer Co.

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-04-09T17:08:47.447", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7235"}} +{ "Id": "7235", "PostTypeId": "2", "ParentId": "7232", "CreationDate": "2018-04-09T21:42:41.000", "Score": "1", "Body": "

There is a number of alcohol reduced wines in the market. I avoid saying \"alcohol-free\" because there is no \"alcohol-free wine\". Most still have less than 0.5 percent of alcohol.

\n\n

First of all: The production of alcohol reduced wine starts in the same way as any other wine as well with fermentation and production of alcohol. But wine without alcohol will never have the same taste as normal wine.

\n\n

As production will always start with wine containing alcohol, it must be reduced or eliminated afterwards. However the process of alcohol extraction has a significant influence to the taste.

\n\n
    \n
  • Warm Distillation destroys a lot of taste components (flavours). So it is the worst method.

  • \n
  • Cold distillation in change is considered to be the best method, because it uses vacuum and alcohol evaporates around 27°C (80 °F), while other flavours retain in the liquid.

  • \n
  • Using a specific membrane is a process like reverse osmosis, separating here the alcohol.

  • \n
  • Thin film evaporation is a warm technology which also eliminates flavours.

  • \n
\n\n

All processes have an influence to the taste, while cold distillation is considered to have the lowest impact to other components and flavours. Almost all producers intend to compensate these effects by adding flavours, but finally, as long as there are no other methods developed to create \"alcohol-free wine\" an alcohol reduced wine will never have the same taste.

\n\n

Cheers

\n", "OwnerUserId": "7702", "LastEditorUserId": "7702", "LastEditDate": "2018-04-10T00:22:11.810", "LastActivityDate": "2018-04-10T00:22:11.810", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7236"}} +{ "Id": "7236", "PostTypeId": "2", "ParentId": "7232", "CreationDate": "2018-04-10T01:19:50.797", "Score": "3", "Body": "

Let us start by defining what non-alcoholic wine is.

\n\n
\n

What is non-alcoholic wine?

\n \n

It's pretty much what it says on the can, (or the bottle in this case). It’s wine with the alcohol removed. However, some of the beverages can still contain some alcohol, because let’s face it, it’s pretty hard to extract every single bit. Under the law, in order to be called ‘non-alcoholic’, a beverage can contain up to half a per cent of alcohol by volume. It can be a bit confusing, so here’s a quick guide to non-alcoholic wines and their labels in the UK:

\n \n
    \n
  • Non-alcoholic: contains no alcohol at all (0.0%)
  • \n
  • Alcohol-free: contains 0.05% alcohol or less
  • \n
  • De-alcoholized: contains 0.5% alcohol or less
  • \n
  • Low-alcohol: contains more than 0.5% but no more than 1.2%
  • \n
\n \n

5 best non-alcoholic wines

\n
\n\n

Here are some recommendations:

\n\n
\n

Best Red

\n \n

Eisberg, Alcohol Free Cabernet Sauvignon

\n \n

BEST ROSÉ:

\n \n

Sainsbury’s Alcohol Free Rosé Wine

\n \n

BEST WHITE:

\n \n

Eisberg, Alcohol Free Sauvignon Blanc

\n \n

BEST MULLED WINE:

\n \n

Marks & Spencer, Non-alcohol Mulled Punch

\n \n

BEST SPARKLING:

\n \n

Asda Extra Special, Alcohol Free Pink Muscat

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-04-10T01:27:48.837", "LastActivityDate": "2018-04-10T01:27:48.837", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7237"}} +{ "Id": "7237", "PostTypeId": "1", "CreationDate": "2018-04-10T10:26:21.057", "Score": "6", "ViewCount": "330", "Body": "

I observed the following. When I was in Brazil I drank some craft beer, which I liked. I bought some bottles and took them with me to Europe. When I opened the bottles here the taste was terrible. Some months later I was revisited by my Brazilian friends who discovered some other nice beer in my town. So they took some bottles to Brazil where they made the same bad taste experience.

\n\n

What happened? The bottles were transported in suitcases (stored in the cold, but not frozen store of the plane) and reached their destination closed and assumed in best condition. I do not suppose any effect of light, temperature or pressure. Even vibrations must have been low because the bottles were covered by clothing. There must have been some impact to the beer which I do not understand.

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-06-17T19:44:34.667", "Title": "Why changes taste of beer when transported by plane?", "Tags": "craft-beers", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7238"}} +{ "Id": "7238", "PostTypeId": "2", "ParentId": "7230", "CreationDate": "2018-04-10T13:06:29.183", "Score": "2", "Body": "

What are some of the possible iconic champagnes from each decade of the last 100 years?

\n\n

Before going on, I would like to define the word iconic which I would like to use as a loose model in the following list of iconic champagnes.

\n\n
\n

Iconic

\n \n

Similar to \"classic,\" iconic is generally restricted to more recent, highly original, influential, or unique, works of art, artists, or performers. As such they are now well-established and widely celebrated in popular culture.

\n \n

\"Oedipus Rex\" is a classic, but the original \"Planet of the Apes\" is truly iconic. - Urban Dictionary

\n \n

Relating to or characteristic of a famous person or thing that represents something of importance:

\n \n

Scenes of Parisians dancing in the streets remain iconic images from World War II. - Cambridge Dictionary

\n
\n\n

For the 1920s: Dom Pérignon logo champagnes

\n\n

Dom Pérignon Brut Champagne 1982

\n\n

For this decade I would like to propose any French champagne that puts Dom Pérignon into the spotlight on the label.

\n\n
\n

Champagne Region

\n \n

Sources estimate that approximately 300 million bottles of champagne were sold in the year of 2015. All this champagne is made from grapes grown in a distinctive part of France, the Champagne region. This region of small 34.000 hectares received the sole right to the champagne brand once the law of 1927 was passed. The law of 1927 defined the champagne production zone and defined restrictions when making champagne. The champagne production is located just 150 kilometers east of Paris and is divided into four geographical areas.

\n \n
    \n
  • Marne (66% of planted area)
  • \n
  • Aube (23%)
  • \n
  • Aisne (10%)
  • \n
  • Haute-Marne and Seine-et-Marne.
  • \n
\n \n

Together these areas form the Champagne region. The reason why the champagne region has been declared the only place in the world to make champagne, is due to the geographical location concerning the latitude and the changing climate, being both influenced by the continental climate as well as the oceanic climate.

\n
\n\n

For the 1930s: Pol Roger

\n\n
\n

Hitler Couldn't Defeat Churchill, But Champagne Nearly Did

\n \n

During the 1930s, as Adolf Hitler was rising to power in Germany, the man who would turn out to be his most implacable foe was drowning — in debt and champagne.

\n \n

In 1936, Winston Churchill owed his wine merchant the equivalent of $75,000 in today's money. He was also in hock to his shirt-maker, watchmaker and printer — but his sybaritic lifestyle, of a cigar-smoking, horse-owning country aristocrat, continued apace.

\n \n

To get an idea of Churchill's annual alcohol consumption, here's what he ordered in 1908, the year he married Clementine:

\n \n

Nine-dozen bottles and seven-dozen half-bottles of Pol Roger 1895 vintage champagne, plus four-dozen half-bottles of the 1900 Pol Roger vintage.

\n \n

Churchill drank several brands of champagne such as Giesler, Moet et Chandon, and Pommery, but Pol Roger was his clear favorite. Every year on Churchill's birthday, the charming and shrewd Odette Pol Roger sent him a case of champagne. (His other great friend, Soviet leader Joseph Stalin, sent him caviar — until they fell out over Churchill's Iron Curtain speech.)

\n
\n\n

\"No

\n\n

For the 1940s: Moët

\n\n
\n

Occupation Begins, Summer 1940

\n \n

In the first weeks of the occupation, more than 2 million bottles of wine were stolen by Germans. It was comparable to full scale looting of the sort seen after natural disasters and coups, but in this case it involved some of the most storied vineyards in the world and Moët suffered more than most.

\n \n

“The Chandon château on the grounds of Dom Pérignon’s abbey had been burned down and many other buildings belonging to Moët were taken over to house German troops. To add insult to injury, the company had also been ordered to supply the Third Reich with 50,000 bottles of champagne a week, or about one-tenth of all the champagne the Germans were requisitioning.”

\n
\n\n

For the 1950s:Piper-Heidsieck

\n\n
\n

The champagne brand of choice for Marilyn Monroe, Marie Antoinette and all the stars at the Oscars, Piper-Heidsieck champagne is one of the most iconic luxury brands and a favourite among fashion and luxury lifestyle brands. So no wonder it's still doing rather well today - after all, how many brands can say that Marie Antoinette was their first brand ambassador?

\n
\n\n

And there is more:

\n\n
\n

In a similarly extravagant vein, Marilyn Monroe was reputed to have taken a bath in 350 bottles of Champagne. - Champagne glass

\n
\n\n

There is even a Marilyn Monroe Champagne Cocktail Recipe.

\n\n

\"Champagne

\n\n
\n

\"Hey, did you ever try dunking a potato chip in Champagne. It's real crazy!\" \n Marilyn Monroe in The Seven Year Itch (1955) - Champagne sips and chips

\n
\n\n

For the 1960s: Mumm: For the Coupe!

\n\n

Going to put the Mumm champagne for this decade. Some may say something else, but I like the Mumm champage in coupe glasses.

\n\n
\n

The Sixties and Seventies saw sales increase in spectacular fashion: shipments rose from three million to six million bottles, making G.H.MUMM the number one Reims Champagne. - G.H.Mumm – The History

\n
\n\n

What about the Mumm champagne in coupe glasses?

\n\n
\n

No matter who inspired the coupe glass, it's safe to say its infamy keeps it popular to this day. Especially in the 1930s prohibition-era and in the 1960s, the coupe glass reigned as the choice for sparkling wine even if its design wasn't ideal. With TV shows like \"Mad Men\" and \"Boardwalk Empire,\" old-fashioned drinks and drinking glasses have been making a comeback. Just stop by any trendy bar in New York City (or any other metropolis) and you'll find cocktails served in the coupe glass. - The Glass Shaped Like Marie Antoinette's Anatomy

\n
\n\n

In 1914, Kate Moss also had a champagne glass modeled after her left breast while pregnant.

\n\n
\n

To celebrate Kate Moss 25 years in the fashion industry, a champagne glass moulded from her left breast has been created.

\n \n

Forty-year-old Moss has teamed up with a sculptor and a London restaurant to create the unique champagne glass in her honour.

\n \n

\"enter

\n \n

Mayfair’s 34 Restaurant, where Moss celebrated her star-studded 40 birthday lunch back in January, commissioned British artist Jane McAdam Freud, daughter of late painter Lucien Freud who Moss posed for while pregnant, to create a mould of the model’s breast. - London Restaurant 34 creates champagne glass modeled on Kate Moss' left breast

\n
\n\n

\"Mumm’s

\n\n

Mumm’s French Champagne (1968)

\n\n

For the 1970s: Bollinger

\n\n
\n

Bollinger champagnes have appeared in 14 James Bond films, dating back to 1973's \"Live and Let Die.\"

\n
\n\n

For the 1980s: Dom Perignon

\n\n
\n

Dom Pérignon was served at the royal wedding of Prince Charles and Lady Diana in 1981. A special insignia just for this event was put on the bottles of the 1961 vintage that was served.

\n
\n\n

For the 1990s: Crystal

\n\n
\n

Since the late 1990s, high-end champagne brands have been featured in rap and hip hop music and videos; bottles featured in videos are often quite blingy and distinctive, often gold. The Louis Roederer brand Cristal, with a gold label, has seen increased popularity since the mid-to-late 1990s due to its association with rap and hip hop artists, notably the New York rappers Biggie Smalls (the Notorious B.I.G.), Puff Daddy, and Jay-Z. This high-end image has been cultivated and managed by Cristal's US importer, Maisons Marques. Since 2006, Cristal has seen a loss of popularity and some boycotts, notably by Jay-Z, due to statements perceived as racist, with other champagnes such as Armand de Brignac (gold bottle) making inroads. - Champagne in popular culture

\n
\n\n

For the 2000s: Dom Pérignon and Dom Pérignon Rosé

\n\n
\n

No New Year's Eve would be complete without welcoming the new year (and bidding an enthusiastic farewell to the prior year) with a bottle of bubbly. It's the stuff of celebrations and special occasions, and it's such a big part of holiday traditions around the world that about 25 percent of all champagne is sold in the days between Christmas and New Year's Eve. Just what is it that makes champagne the perfect New Year's drink? You might be surprised.

\n \n

Champagne became the drink of choice at a huge number of landmark celebrations, from royal weddings to the scaling of some of the world's toughest mountains. It then also became linked with New Year's celebrations, which started first with Julius Caesar. It wasn't until the 1800s that staying up for a midnight party became a common tradition, and we know champagne was a major part of it from at least mid-century.

\n
\n\n

January 1st, 2000 ushered in the New Millennium and drinking champagne is such an iconic symbol for celebrating this event or any other celebration or party as Dom Pérignon and Dom Pérignon Rosé should be a part of it.

\n\n
\n

Dom Pérignon’s vintage-only champagne has earned unquestionable prestige and iconic status for its ability to evolve while “resting on the lees”—this lets the champagne develop better textures and flavours, so the next batch of the same vintage is even more intense. These privileged points in time have been dubbed “plenitudes”, and in the case of its P2 2000—the second plenitude of its vintage 2000—can take as long as 16 years to show.

\n \n

Geoffroy mentions that the wine he is working on now will only be released in around 10 years, and the second plenitude, 15 to 20 years after that. Hence, he reminds us that ripeness is key to a good vintage. In fact, the extreme ripeness of the vintage 2003 harvest, which he describes as “insane and out of balance”, was too much for many but not Dom Pérignon, which saw opportunity in the challenge and eventually declared it a vintage year. “It was the mother of all hot vintages,” he exclaims. - We Taste Dom Pérignon’s P2 2000 Champagne In Beijing With Alain Ducasse

\n
\n\n

\"Dom

\n\n
\n

The 2004 vintage of Dom Perignon is worth the treat and is a Champagne apart from the rest with notes of marzipan and dry cocoa powder and racy minerality. The toasty finish on the palate is pleasantly unexpected. It is a really well-rounded Champagne with even darker notes on the finish with a kick of spice.

\n \n

There’s no better way to ring in the New Year, than with a glass of Dom Preignon. - Dom Perignon 2004

\n
\n\n

For the 2010s: Juglar, Veuve Clicquot and Heidsieck Champagnes (until this decade is over)

\n\n

The decade is not over, so let us wait a few years to truly answer this one. In the meantime I place these three champagnes temporarily as an honorary iconic examples of a champagne that is well made and bottled as preservation in obscure and precarious situations shows!

\n\n
\n

In the summer of 2010 five bottles of beer were discovered in a shipwreck in Föglö in Åland’s outer archipelago. The wreck contained 145 bottles of champagne and five bottles of beer from the 1840s.

\n \n

Owing to the constant temperature between four and six degrees, the dark surroundings, the pressure inside the bottles and the pressure at the bottom of the sea, the champagne was in extremely good condition. Each bottle was uncorked, tasted and classified by international expert Richard Juhlin.

\n \n

Out of the bottles that were salvaged, 95 were from the Juglar champagne house, which closed down in 1829. The same owners produce Jacquesson today. Veuve Clicquot was represented by 46 bottles and Heidsieck & Co by four. The Veuve Clicquot bottles were dated 1841–1850. - The oldest champagne found at the bottom of the sea

\n
\n\n

\"The

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-04-13T01:05:01.523", "LastActivityDate": "2018-04-13T01:05:01.523", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7241"}} +{ "Id": "7241", "PostTypeId": "1", "AcceptedAnswerId": "7242", "CreationDate": "2018-04-13T19:13:38.650", "Score": "12", "ViewCount": "7963", "Body": "

I was given some decent Limoncello from Italy as a gift, 30% proof, brand name 'Villa Massa' from Sorrento.

\n\n

I had a tiny sip of it and it is quite smooth, not too sharp and rather nice.

\n\n

However I'm not sure if I should continue drink it neat or whether to mix it with tonic water, lemonade or something else altogether. I've read it is good as a cocktail ingredient, but I'm not too keen on the hassle of making a cocktail.

\n\n

How should I take it ?

\n", "OwnerUserId": "4309", "LastActivityDate": "2020-04-10T00:38:07.493", "Title": "How should I drink limoncello?", "Tags": "spirits cocktails liqueur mixers", "AnswerCount": "6", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7242"}} +{ "Id": "7242", "PostTypeId": "2", "ParentId": "7241", "CreationDate": "2018-04-13T21:54:14.957", "Score": "9", "Body": "

Drink it neat but chilled. the author of the Wikipedia entry seems to agrees with this statement too.

\n\n
\n

Limoncello is traditionally served chilled as an after-dinner digestiv

\n
\n\n

I would recommend it chilled in a chilled shot glass. It’s an aperitif/digestiv so you wouldn’t want to fill up on it...Separately you are quite right though, it is a nice cocktail ingredient and there are plenty of recipies on your search engine of choice!

\n", "OwnerUserId": "7282", "LastActivityDate": "2018-04-13T21:54:14.957", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7244"}} +{ "Id": "7244", "PostTypeId": "2", "ParentId": "6846", "CreationDate": "2018-04-15T15:17:59.060", "Score": "3", "Body": "

Can't tell you shops or supermarkets, but buying in internet should be possible, e.g. here: bevandeadomicilio.com, trovaprezzi.it, Amazon.it.

\n\n

I didn't look for sales outside Italy, since you mentioned to be in Southern Italy. Sometimes local people do know more.

\n", "OwnerUserId": "7702", "LastEditorUserId": "37", "LastEditDate": "2019-05-11T16:12:06.810", "LastActivityDate": "2019-05-11T16:12:06.810", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7245"}} +{ "Id": "7245", "PostTypeId": "1", "AcceptedAnswerId": "7247", "CreationDate": "2018-04-15T19:25:32.583", "Score": "6", "ViewCount": "1105", "Body": "

I purchased a Montepulciano, added 80 grams of honey and some pepper, and then put it in the fridge. A glass of it after 24 hours seemed to me more alcoholic than what it was originally. \nIs it psychological, as I had read this was the case (but can't find the source right now, and I tend to think it's not true), or is the increase of ABV real?

\n", "OwnerUserId": "7727", "LastEditorUserId": "7727", "LastEditDate": "2018-04-15T19:32:56.823", "LastActivityDate": "2018-04-24T10:26:49.467", "Title": "Does adding honey to bottled wine increase the alcohol content?", "Tags": "wine alcohol-level abv", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7247"}} +{ "Id": "7247", "PostTypeId": "2", "ParentId": "7245", "CreationDate": "2018-04-16T02:38:52.083", "Score": "7", "Body": "

It's pretty unlikely.

\n\n

Given that it was a commercial wine I don't there was much live, viable yeast in the bottle. Particularly if sulfites were added, triggering additional fermentation would probably be difficult.

\n\n

On top of that, refrigerating it for the whole 24 hours means that, even if there was viable yeast uninhibited by sulfites, it's very unlikely it much fermentation could occur. It's possible you could see some fermentation due to the Crabtree effect but it wouldn't have been much.

\n", "OwnerUserId": "4935", "LastActivityDate": "2018-04-16T02:38:52.083", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7248"}} +{ "Id": "7248", "PostTypeId": "2", "ParentId": "7032", "CreationDate": "2018-04-16T02:58:34.867", "Score": "-1", "Body": "

I'm not sure if you are still looking for this information but I found this list on programmableweb.com, https://www.programmableweb.com/category/wine/api

\n\n

Hope it helps.

\n", "OwnerUserId": "7728", "LastActivityDate": "2018-04-16T02:58:34.867", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7249"}} +{ "Id": "7249", "PostTypeId": "2", "ParentId": "7241", "CreationDate": "2018-04-16T11:54:14.587", "Score": "7", "Body": "

This is how limoncello is served in the province of Salerno (where it mainly comes from):

\n\n

\"Limoncello\"

\n\n

Very cold shot glasses (they're not opaque, it's rime on them).

\n\n

But I'd rather drink it in a cocktail, it's just tooo sweet for my taste.

\n", "OwnerUserId": "4742", "LastActivityDate": "2018-04-16T11:54:14.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7250"}} +{ "Id": "7250", "PostTypeId": "2", "ParentId": "7245", "CreationDate": "2018-04-16T19:41:00.863", "Score": "8", "Body": "

Highly unlikely that the alcohol went up. Four reasons.

\n\n
    \n
  1. The alcohol already in the wine is a barrier for the yeast to re-ferment.
  2. \n
  3. The sulfites in the wine could inhibit refermentation if it hasn't dissipated yet.
  4. \n
  5. The cold temperatures that will also inhibit fermentation.
  6. \n
  7. Many commercial wines are sterile filtered so yeast counts are zero to very, very tiny.
  8. \n
\n\n

So, in 24 hours it's highly unlikely that it fermented again. Your perception of alcohol may be enhanced by the sugar that you added. High alcohol wines routinely taste \"sweeter\" to many people even though sugar levels are low. You might have tricked yourself into thinking sweet wine = higher alcohol.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-04-16T22:46:01.933", "LastActivityDate": "2018-04-16T22:46:01.933", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7251"}} +{ "Id": "7251", "PostTypeId": "1", "CreationDate": "2018-04-17T19:47:54.583", "Score": "6", "ViewCount": "179", "Body": "

Recipe in Brazil: Ice-Cubes, white fine sugar, Cachaça, squeezed lemon

\n\n

Recipe in Germany / Europe: Crashed ice, coarse brown sugar, Cachaça, squeezed lemon.

\n\n

The difference is enormous. Made in the Brazilian way the Caipirinha is sweet and strong, made in the European way it is less strong, crispy and sour.

\n", "OwnerUserId": "7702", "LastEditorUserId": "6111", "LastEditDate": "2018-04-17T19:55:53.527", "LastActivityDate": "2018-04-27T21:00:11.977", "Title": "Why do they use different recipe for making a Caipirinha in Brazil and in Germany / Europe?", "Tags": "cocktails drink", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7252"}} +{ "Id": "7252", "PostTypeId": "2", "ParentId": "7251", "CreationDate": "2018-04-19T10:15:46.757", "Score": "3", "Body": "

The use of brown sugar in Europe must give the cachaça a taste of sugarcane. Industrially produced cachaça often doesn't have it. The problem is that brown sugar can be made of beta and it doesn't have taste of sigarcane either. And it dissolves slower than white sugar so the drink becomes sweet when it's almost finished.

\n\n

Source: German Wikipedia.

\n", "OwnerUserId": "4742", "LastActivityDate": "2018-04-19T10:15:46.757", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7253"}} +{ "Id": "7253", "PostTypeId": "2", "ParentId": "7241", "CreationDate": "2018-04-24T09:54:25.300", "Score": "2", "Body": "

I like it as a digestive, refreshed around a few °C above 0.
\nHowever, making some ice cubes in a freezer (nice to have a few of these special plastic bags in the freezer, each filled with a different liquor in fact), and after having crush a cube (e.g. with a mortar and pestle), adding that \"slush\" on top of an adequate cocktail (fruity one for instance) plus a leaf of mint, makes a great beverage.\nDo not abuse those cubes… :o)

\n", "OwnerUserId": "7549", "LastActivityDate": "2018-04-24T09:54:25.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7254"}} +{ "Id": "7254", "PostTypeId": "2", "ParentId": "7245", "CreationDate": "2018-04-24T10:26:49.467", "Score": "1", "Body": "

The feeling of alcoholicity, at tasting, is very dependant of many factors, such as temperature of beverage, sugar, glycerol and a few other molecules content, and of course personal abilities of the taster as well as the preceeding tastings. Concerning the present situtation, a simple experiment is a comparative tasting : keeping two glasses of the same wine, in closed glasses (sealed with plastic film to limit oxygenation/oxidation), put them aside the honeyed bottle in the fridge ; then a few minutes before tasting, get them all off the fridge, serve a glass from the bottle (\"glass 1\"), in \"glass 2\" (one from the fridge) add the same relative quantity of the same honey that was added in the bottle, and in the last fridge glass (\"glass 3\"), add the same relative quantity of white sugar. Again seal the three glasses in order to mix \"2\" and \"3\", and let them dissolve their addings (without forgetting to shake \"glass 1\" as much as the 2 others), and finally get all three be at the same temperature. Then taste, or better, have someone taste them without knowing which is what (blind tasting)… Not a complicated experiment, but sure the best way to know. My bet is \"1\" and \"2\" will be considered almost the same, and eventually a bit more alcoholic than \"3\".
And my proposition for an explanation is that in honey, there are other molecular chemicals that enhance the feeling of alcohol (ethanol) (other \"-ol\"s and esters…?).

\n", "OwnerUserId": "7549", "LastActivityDate": "2018-04-24T10:26:49.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7255"}} +{ "Id": "7255", "PostTypeId": "1", "AcceptedAnswerId": "7257", "CreationDate": "2018-04-27T19:03:23.517", "Score": "4", "ViewCount": "572", "Body": "

I'm aware of a drinking game involving thumbs on the bar, but unsure of it's name or details and how to 'play' it - does anyone know such a game ?

\n", "OwnerUserId": "4309", "LastActivityDate": "2018-04-27T22:27:34.733", "Title": "What’s the drinking game with thumb on the bar?", "Tags": "bartending", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7256"}} +{ "Id": "7256", "PostTypeId": "2", "ParentId": "7251", "CreationDate": "2018-04-27T21:00:11.977", "Score": "2", "Body": "

It's a good question, maybe an answer is on the fact the white sugar in Europe is not producted with cane but beet or other source. In Brazil white sugar used in caipirinha is made with cane.

\n\n

Infact there is a big difference when used brown sugar. \nCrushed ice is not a good option because it dissolve too fast and the caipirinha became a lemon juice.

\n", "OwnerUserId": "7746", "LastActivityDate": "2018-04-27T21:00:11.977", "CommentCount": "1", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7257"}} +{ "Id": "7257", "PostTypeId": "2", "ParentId": "7255", "CreationDate": "2018-04-27T22:17:53.290", "Score": "3", "Body": "

I believe in the U.K. there is one called “Tom Thumb”, basically:

\n\n
    \n
  1. someone is allocated as the “Thumb Boss”
  2. \n
  3. everyone in the group must watch them
  4. \n
  5. when they place their thumb on the bar everyone must follow suit.
  6. \n
  7. The last person looses and has to take a good measure of drink.
  8. \n
  9. Usually this person then becomes the “Thumb boss” and they start over.
  10. \n
\n\n

I never found it especially fun, other more subtle games were more entertaining.

\n\n

There is a better description available here.

\n\n

I would also add there are other games with fingers involved, usually everyone touches the table/bar and the first to move their finger looses etc (basically the reverse).

\n", "OwnerUserId": "7282", "LastEditorUserId": "7282", "LastEditDate": "2018-04-27T22:27:34.733", "LastActivityDate": "2018-04-27T22:27:34.733", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7259"}} +{ "Id": "7259", "PostTypeId": "2", "ParentId": "7241", "CreationDate": "2018-04-29T08:19:32.167", "Score": "3", "Body": "

The sweetness is a little much for me on its own but I find it very refreshing, So I tend to enjoy it as a frappe. Simply equal parts ice and Limoncello and run it through “crushed ice” setting in the blender for a mintute or two. Brilliant summer time drink!

\n", "OwnerUserId": "7750", "LastActivityDate": "2018-04-29T08:19:32.167", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7260"}} +{ "Id": "7260", "PostTypeId": "1", "AcceptedAnswerId": "7261", "CreationDate": "2018-04-30T17:42:21.057", "Score": "5", "ViewCount": "118", "Body": "

I have an already opened bottle of sake in my possession that I'd like to drink. I opened it roughly two years ago, it was sealed with a simple screw-cap and stored at room temperature. Due to its relatively low alcohol content (15%) I wonder if it's still safe to drink.

\n\n

If it isn't, is it safe for cooking?

\n", "OwnerUserId": "7753", "LastEditorUserId": "7753", "LastEditDate": "2018-04-30T17:52:49.707", "LastActivityDate": "2018-05-01T20:34:35.327", "Title": "Is a bottle of Sake that was open for roughly two years safe to drink?", "Tags": "sake", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7261"}} +{ "Id": "7261", "PostTypeId": "2", "ParentId": "7260", "CreationDate": "2018-04-30T18:15:16.773", "Score": "6", "Body": "

It's safe to drink. I don't think you want to drink it or cook with it. The rule of thumb if it tastes bad, why would you cook with it? The chances that it actually tastes good at this point are about zero. You could do a taste test if you really want, but it won't hurt you (unless you drink too much and then you'll get a hangover)

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-05-01T20:34:35.327", "LastActivityDate": "2018-05-01T20:34:35.327", "CommentCount": "2", "ContentLicense": "CC BY-SA 3.0" } +{"index":{"_id":"7262"}} +{ "Id": "7262", "PostTypeId": "1", "CreationDate": "2018-05-02T08:53:51.877", "Score": "4", "ViewCount": "353", "Body": "

About Mezcal I know that Mezcal is a drink made from 100% agave and so a more pure drink than Tequila. Rather bad Mezcal will include a \"worm\" which is a larva of two different kind of insects, as I read.

\n\n

But except of the curious \"tradition\" that the last shot comes with the \"worm\" I do not know much about how to enjoy a good Mezcal in best way. I would take it like a Whisky (pure at ambient temperature), but is it better on the rocks, with soda, cold, with salt and lemon or sugar and orange (like Tequila) or in a much better way as a cocktail? I assume there must be other (better) tradition and receipts on Mezcal than just swallow the worm? Are there any recommendations about the glasses to be taken with respect to the different alternatives?

\n\n

I have read that, comparable to Tequila, Mezcal frequently is consumed with a lemon and a spice made from salt with chilli. I would use that only to cover the taste of a bad product.

\n", "OwnerUserId": "7702", "LastEditorUserId": "7702", "LastEditDate": "2018-05-02T09:21:58.267", "LastActivityDate": "2019-01-28T12:54:34.867", "Title": "Best way to consume Mezcal?", "Tags": "spirits drink tequila", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7263"}} +{ "Id": "7263", "PostTypeId": "1", "AcceptedAnswerId": "7264", "CreationDate": "2018-05-03T09:35:11.830", "Score": "6", "ViewCount": "92", "Body": "

The method to produce Sherry and the respective Brandies, called Solera, uses several layers of barrels (frequently four layers). From the lowest layer they take the annual amount they want to sell and refill from the respective layer above. The layer on top is refilled with the newest production. So every Sherry and Brandy produced in this way contains at least (four?) year old wine or spirits, but also much older components of the first year of production, which means that you may expect a drop of first production year in each bottle. ;)

\n\n

This is why you will not find a year of grape harvest on the bottle labels.

\n\n

However, except those mentioned in Wikipedia I do not know any other winery or distillery working in that way. I know some that blend (mix) different products at the end of production, but that is not the same.

\n", "OwnerUserId": "7702", "LastEditorUserId": "7702", "LastEditDate": "2018-05-04T11:09:29.060", "LastActivityDate": "2018-05-04T11:09:29.060", "Title": "Are there other spirits and/or wines in the world that use the Sherry production method?", "Tags": "wine spirits distilleries", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7264"}} +{ "Id": "7264", "PostTypeId": "2", "ParentId": "7263", "CreationDate": "2018-05-03T17:23:28.927", "Score": "4", "Body": "

One wine comes to mind and that is the Apera wine produced in Australia. If you do a google search on apera and solera you will find numerous hits of wineries in Australia and Canada making something that is Sherry-like. Sherry is now a protected name place like Champagne, Chianti and Burgundy and can only be used in Spain of wines produced in the Jerez-Xeres-Sherry DO province of Cádiz in the region of Andalusia. Everything else produced in a sherry-like manner has to be called something else. Many have settled on the Apera (a play on Aperitif) name. See the \"Protection of Sherry\" in the Sherry Wikipedia.

\n\n

There are several other wines produced in the world using the Solera system and these include spanish Brandy, Marsala, Mavrodafni, Glenfiddich whisky, some Champagne, awamori in Japan and is well covered in your link in Wikipedia

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-05-03T17:23:28.927", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7265"}} +{ "Id": "7265", "PostTypeId": "1", "CreationDate": "2018-05-04T20:48:19.647", "Score": "6", "ViewCount": "201", "Body": "

Many drinks and cocktails are a mixture of different spirits with or without additional tastes introduced by juices, concentrates and/or other ingredients that create their special taste.

\n\n

My personal experience is that less components a cocktail has more specific the character of the drink seems to be. However, are there spirits (don't mention other ingredients) that never should be combined?

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-05-14T11:28:09.120", "Title": "Are there any spirits that never should be combined in a cocktail or drink?", "Tags": "ingredients spirits cocktails", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7266"}} +{ "Id": "7266", "PostTypeId": "2", "ParentId": "6475", "CreationDate": "2018-05-05T10:38:10.510", "Score": "3", "Body": "

No In Gujarat , A state of India There is prohibition since 1958 which has never worked and also created lots of illegal troubles as well as loss of taxes on booze.

\n\n

Bombay State had prohibition between 1948 and 1950, and again from 1958.[17] Gujarat has a sumptuary law in force that proscribes the manufacture, storage, sale and consumption of alcoholic beverages. The legislation has been in force since 1 May 1960 when Bombay State was bifurcated into the states of Maharashtra and Gujarat. The Bombay Prohibition Act, 1949 is still in force in Gujarat state, however there is licensing regime in Maharashtra with granting licenses to vendors and traders.

\n\n

Gujarat is the only Indian state with a death penalty for the manufacture and sale of homemade liquor that results in fatalities. The legislation is titled the Bombay Prohibition (Gujarat Amendment) Bill, 2009. The legislation was prompted by numerous deaths resulting from the consumption of methyl alcohol.

\n\n

But the result is that people dies due to homemade liqueurs every month and every year. You can check this: Gujarat alcohol poisonings.

\n", "OwnerUserId": "7737", "LastEditorUserId": "5064", "LastEditDate": "2019-05-12T14:12:44.070", "LastActivityDate": "2019-05-12T14:12:44.070", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7267"}} +{ "Id": "7267", "PostTypeId": "1", "CreationDate": "2018-05-05T10:55:04.027", "Score": "1", "ViewCount": "1546", "Body": "

I believe that this Rum from India is not limited to India but also having fans from around the world. Is this available in other countries? If it is, what is usage rate?

\n\n

\"enter

\n", "OwnerUserId": "7737", "LastEditorUserId": "5064", "LastEditDate": "2018-05-05T15:33:41.143", "LastActivityDate": "2018-05-11T20:18:55.253", "Title": "How much Old Monk is famous in other countries?", "Tags": "spirits", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7268"}} +{ "Id": "7268", "PostTypeId": "2", "ParentId": "7267", "CreationDate": "2018-05-05T15:16:13.860", "Score": "2", "Body": "

Old Monk Run is sold in Canada, where I presently reside, but it is not all that popular here.

\n\n
\n

Old Monk is sold by some retailers in Russia, USA, UK, Japan, UAE, Estonia, Finland, New Zealand, and Canada. It has also been ranked 5th among Indian spirits brands at the Impact International's 2008 list of \"Top 100 Brands At Retail Value\" with a retail value of US$240 million.

\n \n

There was a time when Old Monk dominated the rum market. There were other brands also but none came close in quality or popularity. About eight million bottles were sold annually. Today the sales are a quarter of that and they continue to decline. There were recent rumours about Old Monk closing down but it's makers Mohan Meakin Ltd, assured that Old Monk is not going to be taken off market. - How popular is Old Monk rum outside India?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-05-05T15:16:13.860", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7269"}} +{ "Id": "7269", "PostTypeId": "2", "ParentId": "6475", "CreationDate": "2018-05-07T16:02:23.307", "Score": "2", "Body": "

In a world where people follow laws and do not attempt to profit from illegal activities, Prohibition of a product would 'in theory' work. However, that is not the reality we live in.

\n\n

Historical evidence shows us that with a vast majority of prohibition of a product, the demand for said product does not immediately drop, but the supply does. This makes the product very profitable for those entities that are able to obtain said product and then distribute it for basically any price they so choose.

\n\n

Thus for the example with alcohol prohibition in the 1920's US, crime families immediately started to acquire or make product, distribute it, and even open facilities to sell and consume. This took out all middle men and gave them full and complete control of the entire supply chain, and thus allowed for them to keep maximum profits.

\n\n

Another example in the US, is how the war on drugs has done little to stop the demand for drug in the country and only made the cartels more money.

\n", "OwnerUserId": "7767", "LastEditorUserId": "5064", "LastEditDate": "2019-05-12T14:13:36.713", "LastActivityDate": "2019-05-12T14:13:36.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7270"}} +{ "Id": "7270", "PostTypeId": "2", "ParentId": "7262", "CreationDate": "2018-05-08T19:21:31.980", "Score": "1", "Body": "

Sadly don't have a link for this, but had a tasting locally put on by a rep from Pierde Almas. The way we were directed for a \"traditional\" drinking was in a snifter and served at room temp.

\n\n

He said that you should always start a drink with a deep smell. To keep your mouth closed and you breathe in the scent, and then open it while taking this breathe so that you go from smelling to tasting the aromas.

\n\n

You then take sips and let it sit in your mouth for about 10 seconds while you exhale slowly through your nose. And that as you keep doing this, you will start to smell and taste all the Mezcal has to offer.

\n\n

Again, I don't have any links for this. Just what I was told in person by the Rep.

\n", "OwnerUserId": "7767", "LastEditorDisplayName": "user5195", "LastEditDate": "2019-01-28T12:54:34.867", "LastActivityDate": "2019-01-28T12:54:34.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7271"}} +{ "Id": "7271", "PostTypeId": "1", "AcceptedAnswerId": "7272", "CreationDate": "2018-05-08T20:31:56.440", "Score": "8", "ViewCount": "471", "Body": "

In Germany it is a tradition to drink warm wine in Winter called Glühwein, especially during the weeks before Christmas. Additional ingredients are (among others) cinnamon, clove, star anise and cardamom. When cooking it should not produce bubbles. Some people like to add a shot of rum, whisky or Amaretto.

\n\n

Are there other countries with comparable warm wine drink traditions for winter?

\n", "OwnerUserId": "7702", "LastEditorUserId": "6111", "LastEditDate": "2018-05-22T13:15:57.497", "LastActivityDate": "2019-05-15T11:36:59.200", "Title": "Germany loves to drink Glühwein (warm wine) in Winter, where else in the world do they practice that?", "Tags": "wine red-wine", "AnswerCount": "8", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7272"}} +{ "Id": "7272", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-05-08T20:42:34.003", "Score": "7", "Body": "

Glühwein is part of a larger category of heated and spiced wines called Mulled Wines. They are popular all over Europe and go by more names than I can cite here. The tradition is first recorded in ancient Rome in the 2nd Century. I could just cut and paste the excellent Wikipedia article, but here is a link to save us all the hassle. Mulled Wines

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-05-08T20:42:34.003", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7274"}} +{ "Id": "7274", "PostTypeId": "2", "ParentId": "6630", "CreationDate": "2018-05-09T20:05:51.617", "Score": "4", "Body": "

The British used the Imperial system of measures from 1824 and India was part of the British Empire until 1947. 1 British Imperial fluid ounce is equal to 28.41 ml, which is close to 30 ml. Maybe this practice evolved from the specification that 1 peg equaled 1 imp. oz. and was rounded up to 30-ml after metrification.

\n\n

Standard Indian-made liquor is packaged in 90-, 120-, 180-, 360-, and 750-ml bottles to make it easier to divide equally into pegs.

\n", "OwnerUserId": "7773", "LastEditorUserId": "-1", "LastEditDate": "2019-08-23T00:55:22.820", "LastActivityDate": "2019-08-23T00:55:22.820", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7275"}} +{ "Id": "7275", "PostTypeId": "1", "CreationDate": "2018-05-10T10:59:42.910", "Score": "4", "ViewCount": "78", "Body": "

As I receive many offers of Latin American spirits and do not have any experience in marketing those (high quality) products I think to buy into an existing distillery with skilled personnel, to use their distribution channels and add further spirits to the existing range of products.

\n\n

But besides sales and distribution channels, what should I pay attention to most?

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-05-10T19:42:20.983", "Title": "If buying a distillery, what would you focus on?", "Tags": "spirits distribution distilleries distillation", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7276"}} +{ "Id": "7276", "PostTypeId": "2", "ParentId": "7275", "CreationDate": "2018-05-10T12:42:59.233", "Score": "3", "Body": "

Having owned and run a winery for 15 years (as well as making the wine, it was a small operation), you should concentrate on Sales, Marketing and Distribution about 90% of your effort. You could bottle paint thinner and with the right sales team and marketing you could make tons of money. I've seen it in the wine industry many times. People will say \"if you make a quality product, people will buy it\" is not true. Branding, marketing and sales make or break almost any product. Look at the Pet Rock for gods sake!

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-05-10T19:42:20.983", "LastActivityDate": "2018-05-10T19:42:20.983", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7277"}} +{ "Id": "7277", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-05-11T15:21:24.053", "Score": "5", "Body": "

In Brazil, we have some festivities on July, and in this period it's common to drink warm and hot wine, pure, or with some fruits and spices. It's called \"quentão\" and is usually made with cubes of apple and cinnamon.

\n", "OwnerUserId": "7778", "LastActivityDate": "2018-05-11T15:21:24.053", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7278"}} +{ "Id": "7278", "PostTypeId": "2", "ParentId": "7267", "CreationDate": "2018-05-11T20:18:55.253", "Score": "3", "Body": "

There is no such Rum for sale in all Latin America, in common liquor stores, malls or grocery stores. Maybe you can find one in a specialized place, or importing it via internet.

\n", "OwnerUserId": "7778", "LastActivityDate": "2018-05-11T20:18:55.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7280"}} +{ "Id": "7280", "PostTypeId": "1", "CreationDate": "2018-05-14T10:43:46.003", "Score": "3", "ViewCount": "58", "Body": "

Distillation of ethereal oils is made with different pressures and temperatures than distillation of alcohol. So when distilling spirits out of mash directly most of the tastes get lost. I wonder if it could be an idea to distil the natural oils and flavours of fruits (ingredients) before fermentation and add those components later to the product to conserve a stronger taste of the ingredients used.

\n\n

Has somebody tried that out?

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-07-17T20:51:06.807", "Title": "Extracting oils and flavours before fermentation", "Tags": "flavor spirits distillation", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7281"}} +{ "Id": "7281", "PostTypeId": "2", "ParentId": "7265", "CreationDate": "2018-05-14T11:28:09.120", "Score": "4", "Body": "

Are there any spirits that never should be combined in a cocktail or drink?

\n\n

The short answer is no.

\n\n

But that said, there are some spirits that some might want to think twice about since they have an overpowering taste. On the top of my list would be absinthe and chartreuse (especially the green).

\n\n
\n

Absinthe traditionally has a natural green colour but may also be colourless. It is commonly referred to in historical literature as \"la fée verte\" (the green fairy). Although it is sometimes mistakenly referred to as a liqueur, absinthe is not traditionally bottled with added sugar; it is therefore classified as a spirit. Absinthe is traditionally bottled at a high level of alcohol by volume, but it is normally diluted with water prior to being consumed. - Absinthe (Wikipedia)

\n \n

Chartreuse has a very strong characteristic taste. It is very sweet, but becomes both spicy and pungent. It is comparable to other herbal liqueurs such as Galliano, Liquore Strega or Kräuterlikör, though it is distinctively more vegetal. Like other liqueurs, its flavour is sensitive to serving temperature. If straight, it can be served very cold, but is often served at room temperature. It is also featured in some cocktails. Some mixed drink recipes call for only a few drops of Chartreuse due to the assertive flavour. It is popular in French ski resorts where it is mixed with hot chocolate and called Green Chaud. - Chartreuse (Wikipedia)

\n
\n\n

Personally I drink chartreuse and bénédictine straight, while I will drink absinthe with water and ice. Absinthe is too overpowering for me to use in a cocktail or mix.

\n\n

In the end, whether or not to use a particular spirit in a cocktail or as a mix is personal choice and there are no fixed rules on the subject, so one must be aware of what a particular spirit might do to your recipe.

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-05-14T11:28:09.120", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7282"}} +{ "Id": "7282", "PostTypeId": "1", "CreationDate": "2018-05-14T20:23:36.220", "Score": "3", "ViewCount": "2413", "Body": "

Can I pour cans of Carling in to a keg to use with a beer tap?

\n\n

It's a 9 liter keg, and all the beer will be drunk that day/night

\n\n

What gas pressure would I need? (If it's possible.)

\n\n

Can the same be done with dark fruit cider? Again, it will all be drunk on the same day/night. (It's just a show off thing for the beer garden.)

\n\n

I will pour the cans in slowly taking my time, I would just like to know if it will be possible.

\n", "OwnerUserId": "7785", "LastEditorUserId": "37", "LastEditDate": "2018-05-14T20:34:58.907", "LastActivityDate": "2020-10-09T20:38:04.080", "Title": "Can I pour cans into a keg?", "Tags": "keg", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7283"}} +{ "Id": "7283", "PostTypeId": "1", "CreationDate": "2018-05-14T22:47:43.093", "Score": "9", "ViewCount": "33365", "Body": "

I have had cola cans explode in my freezer. But I cannot afford to test this on my long neck beer bottles.

\n\n

Do beer bottles (or cans) explode in a freezer (of a typical fridge in a household) ?

\n", "OwnerUserId": "7786", "LastActivityDate": "2018-06-12T16:01:33.903", "Title": "Do beer bottles explode in freezer?", "Tags": "storage", "AnswerCount": "4", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7284"}} +{ "Id": "7284", "PostTypeId": "2", "ParentId": "7283", "CreationDate": "2018-05-14T23:04:16.407", "Score": "11", "Body": "

Yes, they will. Given beer is (generally speaking) more than 90% water, and water expands when frozen, beer will make a mess of your freezer if left in there too long. The bottles themselves don't tend to break, in my experience, but the cap seals fail and the beer will leak out everywhere.

\n", "OwnerUserId": "37", "LastActivityDate": "2018-05-14T23:04:16.407", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7285"}} +{ "Id": "7285", "PostTypeId": "2", "ParentId": "7282", "CreationDate": "2018-05-15T00:22:49.863", "Score": "3", "Body": "

I have done this with homebrew beer, but never commercially-bottled beer. The issues should be the same, though:

\n\n
    \n
  1. You will significantly shorten the beer's lifespan due to the oxygenation, but if you fill the keg as full as you can so there's little to no airspace at the top and you're drinking it all that day, you'll be fine.
  2. \n
  3. When you force-carbonate after sealing the keg, I'd recommend 10-15 psi of pressure.
  4. \n
  5. I have no experience with ciders, so I'll defer to someone else on that, although I can't see why it would be any different.
  6. \n
\n", "OwnerUserId": "7787", "LastActivityDate": "2018-05-15T00:22:49.863", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7286"}} +{ "Id": "7286", "PostTypeId": "2", "ParentId": "7283", "CreationDate": "2018-05-15T08:50:44.593", "Score": "7", "Body": "

They do not explode (in a sense of explosion crushing your freezer) but may break. I have forgotten once three (different) bottles of beer in the freezer over night. Results: a) broken off bottom, b) sealed off cap, c) nothing happened (with the bottle, the beer turned to beer-ice of course).

\n", "OwnerUserId": "4742", "LastEditorUserId": "4742", "LastEditDate": "2018-05-15T08:55:58.747", "LastActivityDate": "2018-05-15T08:55:58.747", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7287"}} +{ "Id": "7287", "PostTypeId": "2", "ParentId": "7283", "CreationDate": "2018-05-15T11:02:11.807", "Score": "3", "Body": "

Bottles do not necessarily break or open. Seems to depend on the thickness of the glass. These three bottles stick together by ice. Brazilians love ice-cold beer.

\n\n

\"enter\n\"enter

\n", "OwnerUserId": "7702", "LastEditorUserId": "7702", "LastEditDate": "2018-05-16T00:51:44.860", "LastActivityDate": "2018-05-16T00:51:44.860", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7288"}} +{ "Id": "7288", "PostTypeId": "2", "ParentId": "141", "CreationDate": "2018-05-15T12:29:19.973", "Score": "2", "Body": "

Don't think it's a marketing trick. Imagine all the costs to get the lemon slices out of the bottles.

\n\n

Lemon in general goes very good with beer. In Germany (not only there) a mixture of beer and lemonade is very common and famous (called Radler or Alsterwasser).

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-05-15T12:29:19.973", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7289"}} +{ "Id": "7289", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-05-15T14:55:21.210", "Score": "4", "Body": "

Sweden - and by extension Scandinavia - has Glögg, which is also a mulled wine, albeit more often spiced with cloves, cinnamon and the like compared to the Glühwein I've tasted.

\n\n

In addition, one may add a shot (Schuss) of brandy to Glühwein, whereas Glögg most often already contains additional alcohol.

\n", "OwnerUserId": "7790", "LastActivityDate": "2018-05-15T14:55:21.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7290"}} +{ "Id": "7290", "PostTypeId": "2", "ParentId": "7262", "CreationDate": "2018-05-15T22:09:37.273", "Score": "3", "Body": "

First of all mezcal does not contain a worm, it's a hollywood misconception and if you ever find one do not drink it

\n\n

The average way to drink mezcal is just raw but there are other ways to drink it

\n\n
    \n
  • Salt or chilli powder around the edge of the caballito (the tiny glass)
  • \n
  • Drops of lemon
  • \n
  • Mixed with grapefuit soda
  • \n
  • Mixed with mineral water
  • \n
  • Blue gatorade mixed with coconut cream (we call it pitufo or smurf)
  • \n
  • Pomegranate glucose syrup and ginger beer with ice
  • \n
\n\n

and a couple of others I don't remember but these are the average ways to drink mezcal

\n", "OwnerDisplayName": "user7793", "LastActivityDate": "2018-05-15T22:09:37.273", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7291"}} +{ "Id": "7291", "PostTypeId": "1", "CreationDate": "2018-05-15T23:24:12.460", "Score": "8", "ViewCount": "2545", "Body": "

I like cold beer. Given the answers in Do beer bottles explode in freezer? -beer bottles may break in a freezer.

\n\n

How can I get my beer to chill as much as possible. Get it so cold that it's only slightly away from being frozen ?

\n\n

If the bottle type of a beer matters, I am happy to propose we talk about Corona Extra or Budweiser as both of these are easily available in USA and Australia (I am looking to chill my beer in Australia) and am hoping their bottles are of a similar quality.

\n", "OwnerUserId": "7786", "LastEditorUserId": "9887", "LastEditDate": "2019-10-22T23:28:02.193", "LastActivityDate": "2019-11-14T16:20:19.720", "Title": "How do I get beer to chill to the maximum possible?", "Tags": "storage temperature", "AnswerCount": "7", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7292"}} +{ "Id": "7292", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2018-05-15T23:35:32.890", "Score": "10", "Body": "

To get beer as cold as possible, as quickly as possible, it should be submerged in a salted ice water bath.

\n\n

Because of the alcohol in beer, the freezing temperature of beer is slightly lower than that of water. (How much lower depends on the actual alcohol content of the beer you're cooling.)

\n\n

The salt in the ice water will in turn lower the freezing temperature of the water slightly, ensuring it is as cold as possible, and the conduction cooling of the water against the cans or bottles will cool them much more rapidly than exposing them primarily to cold air, as they would be either in a freezer or in ice alone.

\n\n

Additionally, since the temperature of ice-water will naturally be moderated by the water, you don't have to worry about your beer freezing, no matter how long you leave it it, and it will get as cold as it is going to get within 15 mintues or so.

\n", "OwnerUserId": "37", "LastEditorUserId": "37", "LastEditDate": "2018-05-15T23:49:11.450", "LastActivityDate": "2018-05-15T23:49:11.450", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7293"}} +{ "Id": "7293", "PostTypeId": "2", "ParentId": "7262", "CreationDate": "2018-05-16T00:34:29.090", "Score": "4", "Body": "

As you said, many of the traditions like salt & lime are primarily used to disguise low-quality tequila and mezcal. If you're buying a reposado, añejo, or aged mezcal, you'll want to get the full aroma and flavor.

\n\n

The colder the drink, the less aroma you get. Room temperature is recommended by most distilleries. Using a snifter glass, as Jedicurt suggested, lets you warm the liquor a bit more with your body temperature, which releases even more of the aromatics.

\n\n

While I certainly know a lot of tequila and mezcal drinkers that add ice to their drinks -- I've been known to do it myself -- we'll generally add a single ice cube after taking that first big whiff to experience the aroma.

\n\n

While there are mezcals that have the \"worm\" (it's actually a caterpillar or larva) in the bottle, they're generally the ones you want to avoid if you're drinking for flavor.

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-05-16T00:34:29.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7294"}} +{ "Id": "7294", "PostTypeId": "2", "ParentId": "7180", "CreationDate": "2018-05-16T01:39:57.010", "Score": "4", "Body": "

You should definitely all use the same beer as the base, and you want a beer that has a good balance of hops and malt. The less flavor the beer has, the more the \"spiked\" flavors and aromas will stand out. Too much aromatic hops (e.g., an IPA) will mask the aromas. Too much malt will mask the flavors. A lighter, neutral beer is the way to go for an educational tasting.

\n\n

I agree with everything farmersteve said except for the part about the coffee beans. That's an extremely strong flavor and aroma that will taint the beer tasting. As one who dislikes coffee, I can say that smelling coffee beans would ruin whatever beer sample I next tasted.

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-05-16T01:39:57.010", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7295"}} +{ "Id": "7295", "PostTypeId": "2", "ParentId": "7180", "CreationDate": "2018-05-16T22:25:12.310", "Score": "2", "Body": "

I would choose Coors. It's easy to get, always tastes the same so it makes for a good control. Also, it is light in flavor so it won't mask anything.

\n", "OwnerUserId": "7796", "LastActivityDate": "2018-05-16T22:25:12.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7296"}} +{ "Id": "7296", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2018-05-16T22:34:03.853", "Score": "3", "Body": "

You could make this a DIY Project. I have a beer fridge that I made from a chest freezer, thermostat, and a heat lamp. I modified the chest freezer that I got from home depot for like $250 bucks and I connected it to a control box (like $20) that turns on and off the freezer when it reaches a certain temperature and turns on and off the heat lamp at a certain temperature. And as a nice touch, I added a renewable dehumidifier to keep the fridge from leaking. Works very well. I have my beer at serving temperatures at all times. It definitely makes a difference in the flavor of the beer and it makes for a great fermentation chamber when I am homebrewing.

\n\n

Materials

\n\n\n\n
\n

Here is an example of someone that went all out and made a trim. I did not do this but it is a good example: Jack's Chest Freezer Fermentation Chamber

\n
\n\n

You could follow those steps up there ^. I have yet to do the wood trim, but you can do all of this without the trim. I am using a heat lamp from home depot instead of an actual heater like that. The heat lamp is 3 parts which are purchased separately: the lamp, the connector from the lamp to a hot and ground wire, and then plug end that plugs into an outlet. You can connect all of these with a shrink rubber that is waterproof.

\n\n

It took me about two hours to make (only because I struggled with making the right sized holes in the project box). It takes very little electrical knowledge to complete this.

\n", "OwnerUserId": "7796", "LastEditorUserId": "5064", "LastEditDate": "2019-08-28T01:32:01.480", "LastActivityDate": "2019-08-28T01:32:01.480", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7297"}} +{ "Id": "7297", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2018-05-16T22:57:55.330", "Score": "5", "Body": "

A freezer is too cold and fridge not cold enough.

\n\n

The alcohol reduces the freezing point by 0.4 C for each 1% of alcohol.

\n\n

So you would need a freezer with a temperature control.

\n\n

Since is is not far below freezing point of water you could use an ice bath and be pretty close. A 10% salt solution is about -6 C.

\n", "OwnerUserId": "4903", "LastActivityDate": "2018-05-16T22:57:55.330", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7298"}} +{ "Id": "7298", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2018-05-17T17:24:04.433", "Score": "1", "Body": "

Don't fool around with freezer or salted water! Either get about 1 gallon of food grade Glycol or Everclear alcohol and put it in your freezer until it's -10F. You can leave it in the bottle or put it in a bucket. Be careful handling it because you can instantly cause frost bite if it comes into contact with your skin. Use gloves. Take it out of the freezer and pour into a metal or pyrex bucket. Stick your wine or beer bottle into it and swirl the liquid around it the bottle. It should get to freezing within a couple of minutes of soaking the bottles. Enjoy!

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-05-17T17:24:04.433", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7299"}} +{ "Id": "7299", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-05-17T20:38:55.007", "Score": "4", "Body": "

In Québec, we drink Caribou. Its \"fortified\" red wine, served warm. \nWe drink it mostly in winter around the holidays.

\n", "OwnerUserId": "7803", "LastActivityDate": "2018-05-17T20:38:55.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7300"}} +{ "Id": "7300", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2018-05-18T00:03:23.940", "Score": "4", "Body": "

Since the question doesn't specify how fast the beer is to be chilled, I think the approach @Aedonis took is a very good one. If you're not up for a that much of a DIY project, there's a cheaper and easier solution that takes no tools:

\n\n

For my fridge, I bought one of the little units like this one. It's cheap and simple. Plug the controller into the wall, plug the freezer into the controller, thread the sensor into the freezer on the hinge side of the door, and set the temperature. A used freezer plus $25 or so for a temperature controller, and you've got beer at the perfect temperature.

\n\n

One possible problem is that the internal temperature of a typical home fridge or freezer isn't very consistent. The bottles in the bottom back may freeze while the ones in the top front are too warm. A small fan, like the muffin fans they sell for electronics, will move the air around inside enough to keep it consistent, and they cost less than $20.

\n\n

Good luck!

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-05-18T00:03:23.940", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7301"}} +{ "Id": "7301", "PostTypeId": "1", "CreationDate": "2018-05-18T08:41:35.203", "Score": "8", "ViewCount": "109", "Body": "

How do people preserve wines and champagnes for decades? Is there a special method or is it like keep in wine storage or cupboard and forget for some decades to be better in taste?

\n", "OwnerUserId": "2647", "LastEditorUserId": "5064", "LastEditDate": "2018-05-19T19:31:54.470", "LastActivityDate": "2018-05-19T19:31:54.470", "Title": "How do people preserve wines, champagne?", "Tags": "wine storage preservation champagne", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7302"}} +{ "Id": "7302", "PostTypeId": "2", "ParentId": "7301", "CreationDate": "2018-05-18T08:52:10.833", "Score": "5", "Body": "

This really depends on the drink itself. Some wines are meant to keep for years. Others should be drunk immediately. Most should be drunk within 1 or 2 years. So choose your wine carefully. There are various vintage wine guides online.

\n\n

That said, once you have chosen a wine meant for ageing, you do want a cellar (or if that is not available, a refrigerator designed for the purpose) that will be able to give you consistent:

\n\n
    \n
  • Temperature: around 12-13 C (55 F)
  • \n
  • Humidity: around 70 percent
  • \n
  • Light: keep wines out of sunlight or even bright lights
  • \n
\n\n

And if the bottles have cork stoppers, they need to be stored on their side to prevent the cork drying out. This isn't an issue with screw tops.

\n\n

And that's pretty much it. If you don't have a cooler or cellar, keeping them in a cool, dark cupboard is still going to help...

\n", "OwnerUserId": "187", "LastActivityDate": "2018-05-18T08:52:10.833", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7303"}} +{ "Id": "7303", "PostTypeId": "2", "ParentId": "7301", "CreationDate": "2018-05-18T16:40:16.593", "Score": "3", "Body": "

I did a deep dive into Stack Exchange because I thought this question would've been asked before! But, it has not. That doesn't mean that the answer isn't super easy to find.

\n\n

First of all, not all wines are meant to be aged. The vast majority of wines are meant to consume when you pick them up at the store. How can you tell which are which? Mainly on price (although not always the case). As the price point goes higher, these wines have been made with aging in mind and many times are unpalatable at a younger age. Red wines are meant to age longer because the tannins (the thing that gives red wine it's color) are an anti-oxidant. Some white wines like Riesling can age for decades. Champagnes can age for a long time, but because of their delicate nature and the cork and the whole CO2 pressure thing, they are harder to age. I've had some nicely aged Champagnes.

\n\n

So basically, keep it in the dark and as close to freezing as possible. Some say that 55F is the best temperature, but actually the closer to freezing you get makes it keep longer. The problem is that for bottles with corks you should have a relatively high humidity so the corks don't dry out.

\n\n

The myth that wines with screw caps don't age has been debunked by the Australian wine industry because the have mostly moved to screw caps and the wines age just fine if differently than bottles with corks.

\n\n

Aging of Wine from Wikipedia pretty much tells you the whole story.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-05-18T16:40:16.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7304"}} +{ "Id": "7304", "PostTypeId": "1", "CreationDate": "2018-05-18T18:52:46.213", "Score": "6", "ViewCount": "87", "Body": "

I've lived on the Canadian border, right next to the U.S. for most of my life. In the past 5 or so years I've noticed that many American craft breweries seem to produce higher quality craft beer than their Canadian counter-parts. Not only is the beer often better, but the styles and flavors seem to be more creative.

\n\n

I've heard inklings here and there that the regulatory environment in the U.S. tends to be more lax, which might be the cause of this, but I'm not certain if this is true. That leads to the questions:

\n\n
    \n
  • In what ways are Canadian and American craft beer different?
  • \n
  • What are the major factors that have led to these differences?
  • \n
\n", "OwnerUserId": "938", "LastActivityDate": "2018-05-18T20:22:04.073", "Title": "What factors cause distinctions between Canadian and American craft beer?", "Tags": "breweries craft-beers", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7305"}} +{ "Id": "7305", "PostTypeId": "2", "ParentId": "7304", "CreationDate": "2018-05-18T20:22:04.073", "Score": "2", "Body": "

I am not 100% versed in this but I am assuming that Canada needs to import most of their hops. This could make it too expensive to provide a quality product when the ingredients are so expensive to buy. If you take that into account and the fact that alcohol, in general, is way more expensive in Canada than in the US, it makes sense that the brewers would skimp out on ingredients to keep their beer prices affordable. There is more variety available to us in States than in Canada too.

\n\n

It seems that Canada is in need for more hop growers to help alleviate this problem.

\n\n
\n

An article about Canadian hop growers that might be relevant. https://www.albertafarmexpress.ca/2017/07/04/hop-in-growing-craft-brewery-market-drives-demand-for-local-hops/

\n
\n", "OwnerUserId": "7796", "LastActivityDate": "2018-05-18T20:22:04.073", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7306"}} +{ "Id": "7306", "PostTypeId": "2", "ParentId": "927", "CreationDate": "2018-05-19T03:20:35.643", "Score": "2", "Body": "

Simplified definition:

\n\n

If you're fermenting grains, it's beer.

\n\n

If you're fermenting fruits, it's wine.

\n\n

If you're fermenting honey, it's mead.

\n\n

It's not really that simple, because there are beers that use fruit (e.g., cherry lambic, raspberry wheat), beers that use honey (it's a fairly common adjunct), wines that use fruit (e.g., elderberry wine), and a whole lot of meads that use fruit. The crossover is substantial. When you consider hard ciders, it gets even more complicated (is apple wine really a cider?).

\n\n

The base ingredient of beer is almost always malted barley. Even beers named for another grain — like wheat beer, oatmeal stout, rye beer — use malted barley as a base. Hops are a critical ingredient in beer for two reasons: bittering and aroma.

\n\n

The base ingredient of mead is always honey. I've had mead with hops (Charm City makes one), but it's uncommon, and I personally don't like the flavor.

\n\n

It's more common to find a winery that makes mead than a brewery that makes mead. There's an outstanding one in Montana called Hidden Legend. They also make a mead/wine blend called a \"pyment,\" which was popular in the 15th century or so.

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-05-19T03:20:35.643", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7307"}} +{ "Id": "7307", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-05-19T12:46:59.953", "Score": "3", "Body": "

Within the Catholic Church and traverse many international borders mulled wine is a favourite drink in many a Catholic homes on the Feast of the Apostle St. John (December 27).

\n

Of Course mulled wine is a very popular tradition on this day and throughout the Christmas season.

\n
\n

St. John the Apostle, is the disciple "whom Jesus loved". It is a custom in the old countries to drink of "St. John's Love". The Church provided a special blessing of wine in honour of the Saint. According to legend St. John drank a glass of poisoned wine without suffering harm because he had blessed it before he drank. The wine is also a symbol of the great love of Christ that filled St. John's heart with loyalty, courage and enthusiasm for his Master; he alone of all the apostles was not afraid to stay close to Our Lord during the Passion and Crucifixion. - St. John's Wine

\n
\n

Nowadays the faithful drink mulled wine (Glühwein) on the Feast of St. John. Many different cultures still take part in this tradition.

\n
\n

This hot mulled wine can be served on St. John's feast day. On St. John's Day, the Roman Ritual tells us that "wine offered by the faithful is blessed in remembrance and in honour of St. John who without any ill effects drank a cup of poisoned wine." It was by faith that St. John was saved, and through the mystical union became the disciple whom the Lord loved best. By love and faith man comes to God. We, too, pray as members of the mystical body. - St. John's Wine

\n
\n

Then there is the Nordic Glögg mulled wine tradition which is served on St. Lucy's Day (December 13) in Sweden.

\n
\n

Glögg, gløgg, glögi and similar words are the terms used for mulled wine in the Nordic countries.

\n

In Sweden, ginger bread and lussebullar (also called lussekatter), a type of sweet bun with saffron and raisins, are typically served on December 13 to celebrate Saint Lucia's Day. It is also traditionally served at the julbord, the Christmas version of the classic, Swedish buffet smörgåsbord. In Denmark, gløgg pairings typically include æbleskiver sprinkled with powdered sugar and accompanied with strawberry marmalade. In Norway, gløgg is paired with rice pudding (Norwegian: riskrem). In such cases, the word graut-/grøtfest is more precise, taking the name from the rice pudding which is served as a course. Typically, gløgg is drunk before eating the rice pudding, which is often served with cold, red cordial (saus). - Mulled Wine (Wikipedia)

\n
\n

Many European countries including Germany celebrate Silvesterabend (New Yerar's Eve) with mulled wine.

\n
\n

Austria, and its neighbour to the north, Germany, call New Year's Eve Silvesterabend, or the eve of Saint Sylvester. Austrian revelers drink a red wine punch with cinnamon and spices, eat suckling pig for dinner and decorate the table with little pigs made of marzipan, called Marzipanschwein. New Year's food traditions around the world

\n

The last day of the year is called "Sylvester" in Europe. This word is derived from the liturgical feast, celebrated on December 31, of St. Sylvester, pope and confessor, who died in the fourth century.

\n

The end of the old and the beginning of the new year was, and still is, observed with popular devotional exercises. Special services are held in many churches on New Year's Eve to thank God for all His favours in the past year and to implore His blessings for the new one.

\n

A distinctive feature of the traditional celebration is the feasting and merrymaking during the night, often combined with masquerades, singing, and noisemaking. This is a relic of the pre-Christian reveling in ancient Rome; its original significance was to salute the New Year and to drive the demons away.

\n

The main item of Sylvester drinking is the punch bowl. Today we have quite a variety of punches. The modern form of punch originated in England in the early seventeenth century. It consists of alcohol, water, spice, sugar, fruit essence. The word seems to be an abbreviation of "puncheon," which was the name of the cask from which grog used to be served on English ships. - Mulled Wine

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2018-05-25T11:20:12.023", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7308"}} +{ "Id": "7308", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2018-05-19T13:33:16.100", "Score": "2", "Body": "

How do I get beer to chill to the maximum possible?

\n\n

Here is a recipe for getting your beer to a perfect temperature without breaking the bottles when a freezer in itself may too cold and a fridge may not be cold enough. The following method is relatively inexpensive.

\n\n
\n

Popping the beer in the fridge will take an hour to cool down. Even just sticking the beer in the freezer would take a good 20 minutes or so. This is just way too slow on a hot summer day. So, here’s how you can cool down a six pack in 3 minutes to the perfect drinkable temperature.

\n \n

What You Need:

\n \n
    \n
  • A six pack (bottles or cans)

  • \n
  • A bowl or pot large enough to fit the bodies of 6 bottles (preferably metal)

  • \n
  • Mixing Spoon

  • \n
  • 2 trays of ice cubes

  • \n
  • 1-2 Cups Table Salt

  • \n
  • Water

  • \n
\n \n

How to Do It:

\n \n

1)Place bowl/pot in a sink.

\n \n

2)Add ice, salt, and enough water to fill up half of the bowl/pot.

\n \n

3)Stir until salt is dissolved.

\n \n

4)Add beers and make sure they are covered up to the neck with the icy water. You may need to add a bit more water.

\n \n

5)Place in the freezer (If you don’t, it may just take an extra minute or 2)

\n \n

6)After 3 minutes, pull the beers out. You should find that they are at the perfect temperature.

\n \n

How It Works:

\n \n

The trick is in the salt. It may sound unusual considering that in winter, we drop salt on the ice to raise the temperature and make it melt, but in this case, the salt is tricked into cooling the beer. Since the salt does in fact melt the ice, it goes through a transition from a solid to liquid. When this occurs, it absorbs extra heat which keeps the water extra cold. In this case, the excess heat comes from the beers and the liquid more actively cools them. - Cool a Beer in 3 Minutes

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-05-19T13:33:16.100", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7309"}} +{ "Id": "7309", "PostTypeId": "1", "CreationDate": "2018-05-20T16:25:05.603", "Score": "3", "ViewCount": "5288", "Body": "

In the UK, I have always enjoyed Fosters lager and as a drink at home. I have always chosen Fosters Gold (Bottled) as my choice of drink at home, however I have just received this email reply saying that the brand will be become defunct in the UK.

\n\n

I was wondering if there is s bottled alternative with a similar taste I should now consider?

\n\n
\n

Dear Steven,

\n \n

“Thank you for your enquiry concerning Fosters Gold.

\n \n

Unfortunately, we have to advise that this has been de-listed from our portfolio.

\n \n

Heineken UK have carried out a review of the brand and its market performance and have concluded that the brand does not have an effective role to play in the highly competitive sector.

\n \n

Sorry to disappoint.\"

\n \n

Dawn McLaren\n Consumer Relations Executive

\n
\n\n

Sent: 16 May 2018 18:40:44\nTo: UK Consumer Care\nSubject: Foster Gold - Bottles

\n\n

Hi.

\n\n

Why is now virtually impossible to buy Fosters Gold in bottles from local shops and major supermarkets?

\n\n

Steve Coopers \niPhone 6s Silver - 16gb

\n", "OwnerUserId": "7808", "LastEditorUserId": "5064", "LastEditDate": "2018-05-26T11:44:27.440", "LastActivityDate": "2020-09-08T10:42:13.043", "Title": "Fosters Gold - Alternative", "Tags": "flavor", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7310"}} +{ "Id": "7310", "PostTypeId": "2", "ParentId": "7309", "CreationDate": "2018-05-21T17:47:12.950", "Score": "3", "Body": "

I'm not personally familiar with Foster's Gold, but a good site to find similar beers is Beer Advocate. If you search you can find their review page for Foster's Gold. On that page the style is listed as Euro Pale Lager. Click on that link to find other beers of that style. There are quite a few familiar beers listed under this style. You can sort by number of reviews or average rating. Don't be too put out if your favorite beer isn't highly rated. Beer Advocate members tend to rate a bit harshly with mass market beers.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2018-05-21T23:40:46.420", "LastActivityDate": "2018-05-21T23:40:46.420", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7312"}} +{ "Id": "7312", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2018-05-24T21:14:31.583", "Score": "2", "Body": "

Tea and beer can be a great combination. I have a blog post here about some tea beers that I made in cooperation with a local brewery. The combination of cinnamon orange spice tea with a hefeweizen worked especially well, as hefes are often served with a slice of citrus.

\n\n

I took a class a few years back on pairing tea with whiskey (or whisky). They were focused on serving the whiskey and tea separately rather than blending them, but blending can work nicely. I'm a fan of smokey malty Scotch — mostly the Islays — and it blends nicely with a powerful black tea. If you really dig the smoke flavor, blend an Islay Scotch with a lapsang souchong or Russian Caravan tea.

\n\n

If you like citrus flavors in your tea, try using a splash of Triple Sec or Cointreau.

\n\n

Enjoy!

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-05-24T21:14:31.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7313"}} +{ "Id": "7313", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2018-05-24T22:53:22.210", "Score": "2", "Body": "

In Northern Germany they handle it in the following way. First they take rock candy and put it into a glass. It can be brown or white rock candy. The glass is filled up with brown rum which has a Vol% between 38 and 40 of alcohol. It is possible to mix and use it immediately, but most people just put it aside for a while.

\n\n

After some time the fluid of rum becomes glutinous and the surface of the rock candy becomes soft. When this mixture is in that status they put some spoons of it into the cup and fill it up with black tea. Could be from Ceylon or comparable. When filling up with the hot tea the rock candy crashes internally and when mixing up the tea with it all it becomes a wonderful experience especially in wintertime.

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-05-24T22:53:22.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7316"}} +{ "Id": "7316", "PostTypeId": "2", "ParentId": "4983", "CreationDate": "2018-05-26T03:17:00.403", "Score": "1", "Body": "

Not a very fair question. Not all scotches are equal in flavor profile so comparing Lagavulin to glenlivet at any price is meaningless!

\n\n

Also, taste is personal. I cannot convince some folks that Lagavulin is worth drinking but to me it is man's greatest creation!

\n\n

That said I was very disappointed in balvenie tun 1509 (don't recall the batch). For the price it was very 1-dimensional. At a similar price point I'd say Highland Park 30 yr was exquisite.

\n\n

On the affordable end Auchentoshan 12 was so bad I poured some down the sink. But again, that is a matter of personal taste.

\n\n

An example of cost, age, and quality correlating is Glenlivet 12 --> 18 yr. The taste is almost identical but the 18yr is much smoother and a little more complex.

\n\n

An example of NO correlation at all is Glenfiddich 12 --> 15 --> 18. The reason they do not correlate is that the flavors are unrelated. 12yr is fruity (apples, pears, etc), 15 is like honey mead, 18 tastes like smoked oak. I love the 18yr at ~90$ USD, compared to the 12 at 40$ USD but I would not say the 12 yr is \"worse\". They don't compare.

\n", "OwnerUserId": "7817", "LastActivityDate": "2018-05-26T03:17:00.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7318"}} +{ "Id": "7318", "PostTypeId": "1", "AcceptedAnswerId": "7373", "CreationDate": "2018-05-29T07:17:25.523", "Score": "4", "ViewCount": "280", "Body": "

Kvass is a low alcoholic drink made of (usually rye) bread. Is there something similar in Italy (like malt beer in Germany)? Or maybe is it possible to buy kvass in big supermarkets?

\n", "OwnerUserId": "4742", "LastActivityDate": "2018-07-05T14:50:51.963", "Title": "Is there a drink in Italy similar to kvass?", "Tags": "non-alcoholic", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7319"}} +{ "Id": "7319", "PostTypeId": "2", "ParentId": "6418", "CreationDate": "2018-05-29T14:00:09.733", "Score": "2", "Body": "

Macerar la flor de sauco en brandy de uva de origen Borgoña,Tamay o chardonay, y Pinot noir. Redestilar una parte de esta filtrar la otra parte y realizar un ensamble de estas dos más brandy de uva de preferencia Borgoña ,Tamay, chardonay y Pinot noir. Agregar azúcar de caña no mucha para no hacer muy dulce.\nPrueba también en vez del azúcar licor de lyches más si propio jarabe y comparte cómo quedó.\nJosé cine\nBartender (mixologo) y estudiando sommelieria\nCozumel palace

\n", "OwnerUserId": "7824", "LastActivityDate": "2018-05-29T14:00:09.733", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7320"}} +{ "Id": "7320", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-06-01T06:03:15.680", "Score": "3", "Body": "

In Russia we call it глинтвейн (glintveyn), and I believe the central ingredient is a melted sugar. Maybe not so much for the taste, but for the magic. It is important for the entire party to watch its making.

\n\n

Sorry could not resist, here is how it goes.

\n\n
    \n
  • Ahead of time make a strong sirup and let it recrystallize in a cylindric mold, about 1\" thick, and as long as your saucepan.

  • \n
  • Put wine and spices into the saucepan and bring to a slow heat.

  • \n
  • Soak sugar cylinder in brandy and arrange it above the wine (you'd need some metal frame to hold it).

  • \n
  • Now the magic: set it on fire, and watch the sugar melting and dropping into the heated wine. Keep pouring brandy over sugar as necessary.

  • \n
\n\n

The process is not easy, but once you've mastered it, your success at the party is guaranteed.

\n", "OwnerUserId": "7541", "LastActivityDate": "2018-06-01T06:03:15.680", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7321"}} +{ "Id": "7321", "PostTypeId": "1", "CreationDate": "2018-06-01T16:05:07.020", "Score": "2", "ViewCount": "74", "Body": "

I would like to take this answer to an other question as an opportunity to ask about an other speciality we Germans like to take in winter. It is about burning sugar with high-proof spirits. The German speciality is called \"Feuerzangenbowle\". It has different receipts whereas mainly mulled wine (with spices) is a basic substance and a sugarloaf is positioned over it. The sugarloaf then is burned by pouring rum (>54 Vol-%) over it until all sugar is burned and melted down.

\n\n

The interesting thing is, that I never had headache the day afterwards, even considering the high level of alcohol in the resulting product. I love it when the liquid in the pot it is still burning after sugarloaf has been melted down totally. Is it possible that burning eliminates the fusel alcohol and other \"bad\" ingredients of the spirits?

\n", "OwnerUserId": "7702", "LastActivityDate": "2018-06-19T09:36:17.297", "Title": "Winterhighlight \"Feuerzangenbowle\" without headache?", "Tags": "spirits rum", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7322"}} +{ "Id": "7322", "PostTypeId": "2", "ParentId": "7321", "CreationDate": "2018-06-01T16:21:22.397", "Score": "2", "Body": "

What is happening is that you are burning off most of the alcohol before you consume it. I can't tell you the exact amount, but it's significant. I would say that it's probably less than 10% alcohol by the time you drink it. That's why you don't have a hangover.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-06-01T16:21:22.397", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7323"}} +{ "Id": "7323", "PostTypeId": "1", "AcceptedAnswerId": "7324", "CreationDate": "2018-06-02T17:50:27.403", "Score": "3", "ViewCount": "125", "Body": "

A brief explanation with beers: I love IPAs, but some of them are a disgrace to the kind, when I'll buy some, I look for the alcohol and IBU level, so I know I'll like the beer before I even buy it.

\n\n

A few months ago I discovered that I also like some wines, more precisely cabernet and malbec, but unfortunately I don't find every malbec tasty. Doesn't matter if it's red or white, I like some and dislike others.

\n\n

I've been looking for a way to know if I'll like the malbec wine or not, but most of the tips I find tell me to memorize the \"wine factory\" I like the most, but I don't think it's a good method.

\n\n

Is there a way, a measure, like the IBU, or some other characteristics, that can help me to see if I'll like the malbec wine or not?

\n\n

PS: I'm good with the cabernet, as for now, I've liked every one I tasted.

\n", "OwnerUserId": "7778", "LastActivityDate": "2018-06-13T18:46:38.173", "Title": "Kinds of wine, how to identify same grape differences", "Tags": "wine", "AnswerCount": "4", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7324"}} +{ "Id": "7324", "PostTypeId": "2", "ParentId": "7323", "CreationDate": "2018-06-02T18:59:57.567", "Score": "5", "Body": "

Your liking one wine over another is a purely subjective practice. This is what makes picking out wines so difficult and expensive because you have to try it before you'll really know if you like it. Some people enjoy the journey and others want to be told what to buy. My suggestion is to try as many Malbecs as you can afford. Narrow down wineries and regions that you like. Let's say you figure out you like Chilean Malbecs or Washington State ones, then I think you know that a region will have similar flavors. Unfortunately, that's probably all we can do for you. So, just get out there and taste as many as you can!

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-06-02T18:59:57.567", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7325"}} +{ "Id": "7325", "PostTypeId": "2", "ParentId": "6666", "CreationDate": "2018-06-02T23:50:21.883", "Score": "1", "Body": "

As a fan of haggis and single-malt Scotch, and host of many a Rabbie Burns night, I'd say you have several good alternatives.

\n\n

Most of the Burns nights I've attended offered malty, full-bodied beers along with the haggis. Scottish ales, porters, wee heavies, and oatmeal stouts are some of the favorites.

\n\n

If there are wines, I'd recommend hearty reds, like a good Zinfandel.

\n\n

Keep in mind that not all haggis is created equal. Just as no two Texans have the same family recipe for chili, no two Scots will make haggis the same. I've had haggis all over Scotland and quite a few places in the U.S., and each one is different. If you're getting it from a butcher that regularly makes haggis, ask for a taste in advance so you can ponder what to pair with it.

\n\n

NOTE: Haggis in a can is an abomination. Don't do it! Get fresh-made haggis from a proper butcher shop.

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-06-02T23:50:21.883", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7326"}} +{ "Id": "7326", "PostTypeId": "2", "ParentId": "6666", "CreationDate": "2018-06-03T21:52:25.807", "Score": "0", "Body": "

Having had (and enjoyed) Haggis many times, and I think it being closer to a red meat than a white meat, I'd say you'd want to pair it with alcohol that is typically served with red meat. Full bodied, medium to dry red wines, or darker bitter ales.

\n\n

I'm not usually one to go 'by the book' with my pairings, but knowing what I know about the flavour and texture of haggis I think red wine or dark beer would be the way to go.

\n", "OwnerUserId": "938", "LastActivityDate": "2018-06-03T21:52:25.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7327"}} +{ "Id": "7327", "PostTypeId": "2", "ParentId": "7323", "CreationDate": "2018-06-03T23:09:54.037", "Score": "3", "Body": "

Farmersteve's answer is good but I'd like to add a little extra to consider. You've only tried wines made with two grapes. The world of wine is much broader than this. The popular red grapes include Pinot Noir, Grenache, Syrah, and many others. Also, there are wines made from blends of grapes such as found in the Southern Rhone. What I do recommend is seeing if you have a good local wine store. I'm lucky to have access to a few and you can get good advice from the salespeople. Good stores won't look down on you for starting with inexpensive wines. A lot of shops have free tastings which is a great way to try different wines without investing in a whole bottle. I was a bit confused by you implying you have had white Malbec. Malbec is a red wine grape and while it might be possible to make a white wine from it, I've never heard of one and it would certainly be uncommon. If you are getting started, you should probably try Chardonnays and Sauvignon Blancs for white wines although there are lots of other white wine grapes.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2018-06-04T00:48:59.043", "LastActivityDate": "2018-06-04T00:48:59.043", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7328"}} +{ "Id": "7328", "PostTypeId": "2", "ParentId": "6998", "CreationDate": "2018-06-04T04:26:52.257", "Score": "2", "Body": "

I had 3 gout attacks last year. I used to drink lots of beer which was the cause for my attacks. I tried everything after the 1st attacks to replace beers but everything including vodka, wine, whiskey were triggering my attacks. \nGreat news is that I have been drinking dry apple cider regularly now and not facing any issues.

\n", "OwnerUserId": "7831", "LastActivityDate": "2018-06-04T04:26:52.257", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7329"}} +{ "Id": "7329", "PostTypeId": "2", "ParentId": "22", "CreationDate": "2018-06-05T18:57:54.780", "Score": "1", "Body": "

I spent many years in Germany and other European countries drinking many different types of beer...I can tell you, for me, a Pilsner is best served in tall thin glasses, export beer in mugs, preferentially stein type and wheat beers in flute style glasses....taste, aroma and the expereince is all different with these glasses...oh and for general knowledge, fruits and other flavors only ruin beer....

\n", "OwnerUserId": "7837", "LastActivityDate": "2018-06-05T18:57:54.780", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7331"}} +{ "Id": "7331", "PostTypeId": "2", "ParentId": "7032", "CreationDate": "2018-06-08T20:20:39.230", "Score": "0", "Body": "

Try this one...it's free, you just have to create an account and request an api key...\nhttps://www.globalwinescore.com/api/

\n", "OwnerUserId": "7844", "LastActivityDate": "2018-06-08T20:20:39.230", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7334"}} +{ "Id": "7334", "PostTypeId": "2", "ParentId": "7283", "CreationDate": "2018-06-12T16:01:33.903", "Score": "1", "Body": "

There is indeed the possibility that a bottle of frozen beer does not break.

\n\n

It depends mainly on the amount of alcohol in the beer and how the bottle was filled.

\n\n

You can expect that a normal beer expands by approx. 6.5-7.5% in volume when you start cooling at approx. 20°C. If the bottleneck can contain this volume increase, the bottle should not break. This would be usually the case with homebrews. The exact amount depends on how much alcohol and solids are in the beer, as ethanol does not expand when the temperature is lowered and solids do not change their density significantly.

\n\n

Depending on the alcohol content and the temperature of the freezer, the beer might not even freeze solid, or at least not fully, as ethanol lowers the freezing point substantially.

\n\n

With a bad freezer, high ambient temperature (e.g. on a hot summer day) or short freezing times, the possibility of breaking the bottles is rather low.

\n\n

Because ice has a very low compressibility compared to water and ethanol, you cannot expect that better and thicker bottles will solve the problem unless they have the necessary amount of elasticity. You could weld your beer into 2 inch thick cast iron and it would break just like your glass bottle. A better container would, however, be less susceptible to leaks.

\n\n

A modern beer can would most likely not survive the process because it deforms at the top and creates a leak at the lid.

\n", "OwnerUserId": "7852", "LastActivityDate": "2018-06-12T16:01:33.903", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7335"}} +{ "Id": "7335", "PostTypeId": "2", "ParentId": "7282", "CreationDate": "2018-06-12T16:18:21.383", "Score": "0", "Body": "

There is no difference between ciders and beers for that matter. Ciders might be easier to pour because the foam less. At very low temperatures, however, this difference should be negligible.

\n\n

If you freeze the cans down to -1/-2°C, you could refill them without losing much CO². Then you wouldn't have to force-carbonate the beer.

\n\n

I would also fill the keg to the top in that case.

\n\n

Use a cold keg that does not warm up the beer in the process. Tilt the keg like pouring a glass, so the beer is always in contact with the keg.

\n\n

Normal serving pressure would suffice.

\n", "OwnerUserId": "7852", "LastActivityDate": "2018-06-12T16:18:21.383", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7336"}} +{ "Id": "7336", "PostTypeId": "2", "ParentId": "6841", "CreationDate": "2018-06-12T18:13:36.190", "Score": "2", "Body": "

The effect of ethanol will always be the same. For that matter, two bottles of 5% beer equal one bottle of 10% wine.

\n\n

Depending on its fermentation, it would contain different and different amounts of more complex fermentation products. Usually, a fermentation process that is very short (and thereby cheaper) would result in something that could easily cause a hangover. Wild yeast strains also tend to produce a larger variety of undesired substances. Modern distilleries have these removed during distillation allowing for faster fermentation.

\n\n

In beers and wines, undesired by-products cannot be removed. Modern breweries and vineyards deal with that by using cultivated yeast strains and/or controlling the fermentation environment, resulting in products that don't give you headache.

\n\n

The amount of hops in standard beers is negligible. Even if there were enough hops in beer to have any effect, hops may not have sleep-inducing effects after all. Apparently, research indicating such effects was conducted in combination with valerian.

\n\n

The reason for adding hops to beer was its inhibiting effect on gram-negative bacteria. Nowadays, it's mostly added for its 'typical' beer flavour.

\n", "OwnerUserId": "7852", "LastEditorUserId": "7852", "LastEditDate": "2018-06-13T12:13:29.820", "LastActivityDate": "2018-06-13T12:13:29.820", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7337"}} +{ "Id": "7337", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2018-06-13T12:50:33.090", "Score": "2", "Body": "

We also drink it in the Czech Republic. We call this \"svařák\" or the \"svařené víno\".

\n", "OwnerUserId": "7855", "LastActivityDate": "2018-06-13T12:50:33.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7338"}} +{ "Id": "7338", "PostTypeId": "2", "ParentId": "7323", "CreationDate": "2018-06-13T16:58:13.497", "Score": "2", "Body": "

The taste of a wine derives from ...

\n\n
    \n
  1. the grape variety
  2. \n
  3. the ripening conditions of the grapes (includes climate, region, year, nutrients etc.)
  4. \n
  5. secondary fermentation (type oak, time etc.)
  6. \n
  7. yeast strain(s) (cultivated or wild etc)
  8. \n
  9. style (e.g. beaujolais, ice wine etc.)
  10. \n
\n\n

Information about the secondary fermentation could give you an idea how the wine tastes, especially about oak tannins.

\n\n

Information about the yeast strains would most likely either be a trade secret or a mix of wild yeasts that depends on the natural blend that occurred in that year in that particular vineyard. This is, at least to some extent, what creates the difference between \"a good vintage\" and a bad one.

\n\n

The effect of the grape variety on the actual taste is often overrated. Oak flavours are sometimes more dominant than most people would imagine and the same variety grown in different regions can create entirely different profiles.

\n\n

Instead of looking for certain varieties, I would suggest considering information about wine regions, vineyards, alcohol content and, if given, descriptions on tannins, oak and fruit flavours. Third party reviews might help but there is never a guarantee that they are in any way correct.

\n\n

IBU is btw a bad way to measure bitterness in most beers where is matters. It entirely neglects large portions of the flavour profile found in hops, in particular those that give an IPA its typical taste. The bitterness also changes with time, which is not accounted for either. Bitterness also changes with stronger beers. The higher the malt content, the more hops you need to compensate for the same taste.

\n", "OwnerUserId": "7852", "LastEditorUserId": "7852", "LastEditDate": "2018-06-13T17:11:39.167", "LastActivityDate": "2018-06-13T17:11:39.167", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7339"}} +{ "Id": "7339", "PostTypeId": "2", "ParentId": "7323", "CreationDate": "2018-06-13T18:46:38.173", "Score": "1", "Body": "

As noted in a comment Malbec is only red.

\n\n

The common term is wine producer. Sometimes referred to as label.

\n\n

In (nominal) order the factors are

\n\n
    \n
  1. Grape
  2. \n
  3. Region / vineyard
  4. \n
  5. Year
  6. \n
  7. Producer / process
  8. \n
\n\n

Malbec has a pretty broad range. Initially was used almost exclusively as a blending wine.

\n\n

A cheaper wine is going to have more variance. They are often buying a grape from an number of vineyards.

\n\n

There are publications. Find a wine reviewer that you match their taste.

\n\n

At your wine store get to know one of knowledgeable sales people. Ask for advice and then next time tell them what you thought of the wine. They will get to know your taste. Or you might tell them some of wines you like and ask for a recommendation.

\n\n

Go to wine tasting were you get to sample a number of wines.

\n", "OwnerUserId": "4903", "LastActivityDate": "2018-06-13T18:46:38.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7340"}} +{ "Id": "7340", "PostTypeId": "2", "ParentId": "7111", "CreationDate": "2018-06-14T14:00:30.720", "Score": "2", "Body": "

Some sugars won't start a fermentation with brewer's yeast at all, such a lactose. In such case, sooner or later other organisms would take over (e.g. lactobacteria).

\n\n

Any sugars that can be fermented, would ferment at different speeds. As there is usually more than one kind of sugar present, the easy ones ferment first until the alcohol kills off the yeast, leaving the more difficult ones behind. Fermentation usually continues at that point, just a lot more slowly.

\n\n

The difference in the effect is minor as long as everything is fully fermented. An example of such a difference is fruit wines and beer. Fruit wines contain minor amounts of methanol while beer usually does not. Differences in flavour are more about what is not fermented.

\n\n

Mannose can definitely be fermented by brewer's yeast. Dextrose is just another name for glucose.

\n", "OwnerUserId": "7852", "LastEditorUserId": "8134", "LastEditDate": "2020-02-14T16:38:48.647", "LastActivityDate": "2020-02-14T16:38:48.647", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7341"}} +{ "Id": "7341", "PostTypeId": "1", "CreationDate": "2018-06-15T06:13:35.253", "Score": "3", "ViewCount": "84", "Body": "

We have 12 can of beer, we boiled 3 of them in some ranges of temperature such as: 122F, 131F, 140F, 149F in some duration (30min, 40min, 50min, and 60min). \nThen we drank them, but we feel their quality very distinguighed. But someone says the temperature no effect on quality of beer. So, what are the true answers?

\n", "OwnerUserId": "7860", "LastActivityDate": "2018-07-22T22:56:07.140", "Title": "Effects of temperature and time handling on beer 's taste?", "Tags": "breweries storage temperature", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7342"}} +{ "Id": "7342", "PostTypeId": "2", "ParentId": "7237", "CreationDate": "2018-06-17T19:44:34.667", "Score": "2", "Body": "

If your craft beer is unfiltered, unpasteurised beer with live yeast, then any kind of transport could alter its flavour profile.

\n\n

Other variables that could effect its flavour are:

\n\n
    \n
  • changes in altitude (not during flight)
  • \n
  • no resting after transport (depending on yeast content up to two weeks)
  • \n
  • bottling problems (oxygen in bottleneck)
  • \n
  • difference between drinking and ambient temperature (e.g. beers taste different in summer and winter)
  • \n
  • olfactory changes (flu, humidity, ambient smells)
  • \n
  • drinking method (glass or bottle make a taste difference)
  • \n
  • transporting bottles that are not so fresh (closer to their exp. date)
  • \n
\n\n

Pure speculation/unlikely:

\n\n
    \n
  • cosmic radiation
  • \n
  • altitude changes during flight irreversible
  • \n
\n\n

Any of the above mentioned changes in temperature as well as choosing a glass instead of a bottle etc. effect CO² in various ways. This results in a different drinking sensation (the tingling in the nose; try \"smelling\" the CO² and compare with a flat beer) and different taste (pH).

\n\n

Humidity, climate, season could alter your perception. An imperial stout for instance takes you over the edge in summer while you would feel perfectly fine in winter.

\n\n

Ambient temperature has an immense effect on the beer. It effects nearly everything from how much CO² is released upon opening the bottles to what the perfect drinking temperature is. The drinking temperature has an immense effect on how strong hops, sugars and alcohol taste.

\n\n

Such changes in taste are not unheard of and more likely to occur in strong, malty beers. Flights are not necessary to have such an effect. Any long-distance transport would do.

\n\n

To test if the beer has actually changed during transport, you could try transporting it back.

\n", "OwnerUserId": "7852", "LastActivityDate": "2018-06-17T19:44:34.667", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7343"}} +{ "Id": "7343", "PostTypeId": "2", "ParentId": "7280", "CreationDate": "2018-06-17T20:23:04.283", "Score": "1", "Body": "

Actually, yes. Though usually not with essential oils. In most cases, as an infusion.

\n\n

For low-alcohol beverages: punch, some dry-hopped beers, vermouth

\n\n

For spirits: liqueur, gin, rumtopf, Chinese paojiu

\n\n

Compound gin is an example where essential oils might be used.

\n", "OwnerUserId": "7852", "LastActivityDate": "2018-06-17T20:23:04.283", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7344"}} +{ "Id": "7344", "PostTypeId": "1", "CreationDate": "2018-06-19T06:54:05.447", "Score": "2", "ViewCount": "60", "Body": "

There are several lists online for craft brews in Melbourne, Australia:

\n\n\n\n

Are there others that are not on any of these lists?

\n\n

Are there any nearby the Melbourne Convention and Exhibition Centre ?

\n", "OwnerUserId": "123", "LastEditorUserId": "5064", "LastEditDate": "2018-06-22T12:09:45.313", "LastActivityDate": "2018-06-25T16:18:42.633", "Title": "Craft beers and Microbreweries in Melbourne?", "Tags": "breweries craft-beers micropub australia", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7346"}} +{ "Id": "7346", "PostTypeId": "2", "ParentId": "7321", "CreationDate": "2018-06-19T09:36:17.297", "Score": "0", "Body": "

Considering the many times I drank Feuerzangenbowle with my friends I can tell you that if the one pouring is disciplined enough to only pour the amount required over the Bowle farmersteve is right and you burn much alcohol in the process.

\n\n

The \"not having a hangover\" part of your question though, I can't confirm as it depends really much on the quality of the Rum that you pour over it and on the amount of it that just flows into the underlying jar (if you pour too much Rum on it like always on such an occasion in my experience).

\n\n

I can assure you that you can get a really heavy hangover from Feuerzangenbowle because the sugar and the Schnaps may most definitely cause the usual hangover effects like dehydration and such.

\n", "OwnerUserId": "5734", "LastActivityDate": "2018-06-19T09:36:17.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7347"}} +{ "Id": "7347", "PostTypeId": "2", "ParentId": "7309", "CreationDate": "2018-06-19T13:12:24.913", "Score": "0", "Body": "

Foster's Gold is rebranded as something else. Beer factories do this often, a beer recipe is not forgotten just shelved or rebranded, like any IP. (I fix beer factories and heard that of this change, I forgot what is the new brand so check anything that is new from the same company)

\n", "OwnerUserId": "7865", "LastActivityDate": "2018-06-19T13:12:24.913", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7348"}} +{ "Id": "7348", "PostTypeId": "2", "ParentId": "5198", "CreationDate": "2018-06-22T18:52:47.507", "Score": "-1", "Body": "

As a detail and hopefully and appropriately informative aside for this topic:

\n\n

In chemistry lab there are two alcohol solvents used:\n1. Medical Grade (surgical alcohol) = 95% Alcohol (getting that last 0.57% is very time consuming to achieve)\n2. (benzene) Alcohol = 98% Alcohol (with 2% benzene still in solution with the alcohol)

\n\n

Benzene is used to drive off or get all of the 5% of water out of distilled alcohol. The (benzene) Alcohol will make you sick because of the benzene.

\n\n

Surgical alcohol provides the most wonderful drunk. It is a body drunk with zero dizziness.

\n\n

Dizziness comes from the long chain fusel oil(s) (alcohols) in fermented alcohol. Fusel oil alcohols are not present in surgical alcohol. All fusel oil alcohols boil off at a different, slightly higher temperature than ethanol (drinking alcohol). Sloppy or rushed distilling gets the higher temperature fusel oil alcohols coming over with the ethanol. Really sloppy and very rushed distilling gets the first run methyl alcohol, methanol . . . which causes permanent eyesight loss. Long chain alcohols cause much of the hangover effect of headaches.

\n\n

Yeasts produce fusel oils when they struggle to produce higher percentage alcohol levels in wines and beers.\nhttps://www.google.com/search?q=FUSEL+OIL+ALCOHOLS

\n", "OwnerUserId": "5508", "LastActivityDate": "2018-06-22T18:52:47.507", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7349"}} +{ "Id": "7349", "PostTypeId": "2", "ParentId": "5168", "CreationDate": "2018-06-22T20:19:57.907", "Score": "1", "Body": "

Building a Good Distillation Tower . . . the down and dirty way:

\n\n

Glass column . . . fill with glass beads. Exit point ==> condensation coil.

\n\n

Why?

\n\n

The glass beads cause vapors to condense while being boiled off (lighter vapor rises higher up the column).

\n\n

And thus different alcohols are separated from each other without having to have a Super Tall tower.

\n\n

A column of vapor has increasingly higher temperature(s) toward the top, lower temperature(s) toward the bottom.\nLighter (less dense) molecules heat up first and rise to the top [e.g. Methanol (ethyl alcohol); that make you go blind].\nLighter alcohols come off first (rise to the exit point), to then condense traveling through a chilled condensation tube.\nAfter all the lighter methyl alcohol is gone (thrown away, or stored separately as a cleaner solvent), the temperature jumps up to the next more complex, more dense, alcohol. That specific temperature is exact.

\n\n

With a thermometer tip (or sensor) placed within the exit point you know when a temperature change occurs. THIS is how you know you are starting to take off ETHANOL, the drinking alcohol. The next alcohol to come off (after methanol) would be ETHANOL . . . that is safe to drink.

\n\n

Just as Matt Fitzgerald said above: “A simple (but effective) rule of thumb for this is to throw away the first 50 mL you collect (per 20 L mash used) for a reflux still. If using a potstill, make it more like 100-200 mL. Do this, and you have removed all the hazardous foreshots, including the methanol.”

\n\n

Fusel oil alcohols (Google)

\n", "OwnerUserId": "5508", "LastEditorUserId": "5064", "LastEditDate": "2018-06-23T10:37:43.300", "LastActivityDate": "2018-06-23T10:37:43.300", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7351"}} +{ "Id": "7351", "PostTypeId": "1", "AcceptedAnswerId": "7354", "CreationDate": "2018-06-25T07:51:17.397", "Score": "5", "ViewCount": "371", "Body": "

Some German pilsner beers have and \"ice-cold filtered\" (\"eiskalt gefiltert\") line on their bottle labels. Is there any difference (regarding the taste first of all) between \"normal\" filtering and the ice-cold filtering of beer?

\n", "OwnerUserId": "4742", "LastActivityDate": "2018-06-28T16:32:52.923", "Title": "Does \"ice-cold filtering\" have additional value for a beer?", "Tags": "german-beers filtering", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7352"}} +{ "Id": "7352", "PostTypeId": "2", "ParentId": "7344", "CreationDate": "2018-06-25T16:18:42.633", "Score": "1", "Body": "

Why don't you do the work yourself. Google lists about 15 craft breweries in downtown Melbourne. I would have to say that's probably the most up to date list

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-06-25T16:18:42.633", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7354"}} +{ "Id": "7354", "PostTypeId": "2", "ParentId": "7351", "CreationDate": "2018-06-26T00:42:04.117", "Score": "6", "Body": "

It suggests that the filtering is somehow better. But really it's Marketing - conjuring the mental image of a delicious cold frosty beer.

\n\n

The base idea is that proteins & yeasts in the beer (which cause haze) will clump together because of the cold - with the implication that somehow this provides better filtering.

\n\n

The truth of it is that no beer is filtered at non-cold temperatures.

\n\n

Filtering can make a very \"bright\" beer - that is, it is clear. Filtering is done with different technologies, and down to different levels. Some beer styles are not filtered at all (e.g. German Hefeweizens - cloudy wheat beers) as are many craft beers, whereas others are filtered to the point where just about all particulates - including yeasts and suspended proteins are removed.

\n\n

Traditionally, lagered beers had a long time for the yeast etc. to settle out, thus producing an quite bright beer without filtering. Many home brewers use this technique too.

\n\n

Filtering can remove a lot of flavour from the beverage, but it does increase shelf-stability and product longevity.

\n", "OwnerUserId": "5160", "LastEditorUserId": "5160", "LastEditDate": "2018-06-26T01:36:28.153", "LastActivityDate": "2018-06-26T01:36:28.153", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7356"}} +{ "Id": "7356", "PostTypeId": "1", "CreationDate": "2018-06-27T13:51:31.633", "Score": "2", "ViewCount": "464", "Body": "

Should non-alcoholic beer be refrigerated to preserve it? How long does non-alcoholic beer last when not refrigerated?

\n", "OwnerUserId": "7887", "LastActivityDate": "2018-06-28T17:28:58.890", "Title": "Refrigerate Non-Alcoholic beer?", "Tags": "taste storage flavor temperature non-alcoholic", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7357"}} +{ "Id": "7357", "PostTypeId": "2", "ParentId": "7351", "CreationDate": "2018-06-28T16:32:52.923", "Score": "4", "Body": "

From a home-brewing point of view: cold-crashing is when you take your fermenting/ed wort and stick it in the refrigerator causing the yeast to become inactive and/or fall out of solution. It can be used as a way to quickly stop fermentation if a desired ABV (% alcohol) has been reached. However, the more common reason this is done is to bring clarity to the beer more quickly. The even less common answer is fractional freezing to increase the ABV.

\n\n

99/100 times the answer is cold-crashing/chill-filtering is a way to bring clarity to the beer. As the beer brews and yeast becomes inactive, it falls out of solution to the bottom (there is a difference on where fermentation occurs in ales v lagers) forming a \"trub.\" Even if you let the beer set in a still, sterile environment for months... you can still get more yeast to fall out of solution by bringing the temperature down a considerable amount. There are definitely times that you don't want this to happen as the yeast strains also impart flavors to beers. The \"banana esters\" you get (or that some perceive) from Belgian beers actually comes from the yeast that remain in the beer. Here is a quick run down of identifying yeast flavors and what you should anticipate tasting in some styles. Here is a neat info-graphic from brew-dog that talks about yeast in the brewing process, how some strains impart flavors, and what the options are for \"finishing\" your beer.

\n\n

Stopping the fermentation too soon can leave unwanted flavors in your beer. The one that immediately comes to mind is Diacetyl. This PDF is an explanation of the timeline for the creation of Diacetyl in the fermenting process. They tend to produce butter flavors but are considered undesirable in higher concentration by BJCP (beer judge certification program). Here is a list of 15 common off-flavors, their sources, and how they affect beers.

\n\n

Fractional freezing is not a filtration method. It is being included because we're talking about making beer cold before we're packaging it. Because beer yeast can't survive in concentrations >14% ABV... Making it so cold the water freezes and can be removed before the alcohol portion freezes is a way to concentrate and jack-up the %ABV. Here is a link from PopSci talking about fractional freezing more in depth.

\n\n

All of this just to say - Chill filtering has a time and a place in beers depending on what you want the end result of your brew to be. The real reason anyone touts a process in advertising is just to help differentiate themselves from the competition. Miller Lite always advertises \"Triple Hops Brewed\" like it is innovative. Really, adding hops at the beginning of the brew impart bitterness, middle of the brew is some bitter more flavor, end is almost purely for aromatic purposes. A lot of beers you have will have been brewed with hops placed into the the process at three different times.

\n\n

Fun link for hop-type-flavor-characteristics in beers.

\n", "OwnerUserId": "22", "LastActivityDate": "2018-06-28T16:32:52.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7359"}} +{ "Id": "7359", "PostTypeId": "2", "ParentId": "7356", "CreationDate": "2018-06-28T17:28:58.890", "Score": "1", "Body": "

Refrigeration has little to do with preservation. As a food product beer and NA beer are pretty strictly regulated for safety so as long as the rubber in the cap maintains a seal it should stay sterile. Refrigeration is mostly for taste and carbonation.

\n", "OwnerUserId": "268", "LastActivityDate": "2018-06-28T17:28:58.890", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7360"}} +{ "Id": "7360", "PostTypeId": "1", "CreationDate": "2018-06-28T20:35:11.550", "Score": "3", "ViewCount": "143", "Body": "

I like teas and I like how some people describe the different beer flavors, and I think it's very interesting, but unfortunately I'm not into alcohol or the beer brewing so far. I've heard the hobbyist brewers describe the grains as something that is basically readily edible and a great material to make tea out of by just steeping some in hot water, but I was never able to get enough information about that from the streams or texts, as it's not their main focus. So I decided to ask here.

\n\n

There are exotic teas which are not teas at all, but collections of herbs or just a single herb or grain. Buckwheat tea is nice and I like the product called \"barley tea\". I don't know for sure whether it's actually what it says on the label, or if there are parts of grains which are usable as tea ingredients and parts which aren't, so I'd like to know everything about turning some tasty grains into non-alcoholic tea by just steeping them in hot water for some minutes.

\n\n

For the sake of clarity, my questions are:

\n\n
    \n
  • Are there any beer brewing ingredients usable in making an \"herbal tea\"?
  • \n
  • Do the flavors which are normally expected to be found in beer after it's ready for pouring into glasses after a long time of sitting in kegs, translate into the tea which steeps for just minutes?
  • \n
  • If there's a gradation, which ingredients are the most appropriate for turning into tea?
  • \n
  • And lastly, if you have any recommendations, please throw them in at the end of your answer.
  • \n
\n", "OwnerUserId": "6788", "LastActivityDate": "2018-06-30T01:55:45.400", "Title": "Can you make \"herbal tea\" out of beer brewing ingredients?", "Tags": "ingredients", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7362"}} +{ "Id": "7362", "PostTypeId": "2", "ParentId": "7360", "CreationDate": "2018-06-30T01:55:45.400", "Score": "4", "Body": "

Whew! There are a lot of good questions in your question! To get the credentials out of the way, I'm a tea writer that owns a tea tavern and has done quite a bit of homebrewing (I've also made some tea beer, which may interest you).

\n\n

First, the only \"official\" ingredients of beer (if you follow the Reinheitsgebot, or Bavarian Purity Law) are barley, water, hops, and yeast. Similarly, \"real\" tea is made only from the leaves of the Camellia sinensis plant, but \"herbal\" tea consists of pretty much any leaf, stem, root, seed, or flower you want to steep in water.

\n\n

With that covered, we can move on to common terminology, where beer can contain a variety of different grains, like malted and unmalted barley, wheat, oats, rye, and corn. I've even used more exotic grains like triticale in a homebrew. A lot of adjuncts are often added, too, ranging from honey to berries, juniper buds, and every imaginable spice.

\n\n

So, as to question 1: Yes, you can use beer brewing ingredients for making herbal teas. You'll want to blend them, though. Steeping straight hops doesn't make for a great drink. If you steep the hops for 3-5 minutes in boiling water, most of the aromatic oils will evaporate and most of the bittering agents won't have a chance to take effect. It's pretty meh. Blend hops with tea leaves or other herbs, though, and you can make an interesting drink.

\n\n

Question 2: Very little of the flavor of a typical beer develops in the keg. It develops during the boil and the primary/secondary fermentation steps. Once it hits the bottle (or keg), beer is ready to drink. You can certainly toss barley in boiling water and let it steep a while to make a drink, but without the fermentation process, it won't taste a whole lot like beer. That doesn't mean it won't be good — especially when blended with herbs — but it won't be beer.

\n\n

Question 3: Since you're using water to make both tea and beer, and yeast has no place in tea, you're really asking whether barley or hops makes a better tea. It depends on your personal taste. I'd probably say hops.

\n\n

And Question 4: I'll give you the same recommendation I'd give any homebrewer or tea lover: experiment. Hops are pretty cheap. Buy some (the flowers, not the pellets), get some teas with flavor bases you like, and play around. Malted barley is cheap enough that you can probably talk a homebrewer into giving you a couple of pounds, especially if you trade for a six-pack.

\n\n

Good luck, and let us know how your experiments turn out!

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-06-30T01:55:45.400", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7363"}} +{ "Id": "7363", "PostTypeId": "1", "AcceptedAnswerId": "7367", "CreationDate": "2018-07-01T09:49:04.540", "Score": "3", "ViewCount": "2347", "Body": "

I'm curious to experience Christopher Hitchens reported favourite drink. He described it as Johnnie Walker black, cut with perrier water, and no ice.

\n\n

I've had a go and it's interesting, but I'm wondering what else needs to be done to get the perfect drink:

\n\n
    \n
  1. What temperature should the whisky be?
  2. \n
  3. What temperature should the perrier water be?
  4. \n
  5. What would be the ideal ratio of whisky to water?
  6. \n
\n", "OwnerUserId": "7894", "LastActivityDate": "2018-07-02T15:03:00.013", "Title": "How to correctly do a \"Hitch Mix\" - Johnnie walker and perrier water", "Tags": "scotch", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7364"}} +{ "Id": "7364", "PostTypeId": "2", "ParentId": "6266", "CreationDate": "2018-07-01T19:33:16.987", "Score": "2", "Body": "

I'm using fresh picked figs from our tree. Pureed and mixed I part good quality vodka to 1 part fig puree. I also added a tablespoon of sugar to the mixture. I'm storing the Mason jars in a cool dark closet. I'll let you know how it turns out.

\n", "OwnerUserId": "7896", "LastActivityDate": "2018-07-01T19:33:16.987", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7365"}} +{ "Id": "7365", "PostTypeId": "1", "AcceptedAnswerId": "7366", "CreationDate": "2018-07-02T11:13:58.800", "Score": "2", "ViewCount": "2500", "Body": "

I recently moved to a new city in Austria and have noticed that many (but not all, so it’s definitely not a problem with my taste perception) of the local red wines taste salty. I’ve tried red wines both on the cheaper and expensive side and they all give off this salty taste. Almost all that I’m referring to are Blauer Zweigelt variety. \nIs this salty taste coming from the grape variety, or could it be something else like my glass or detergent (I make sure that I wash the glass very thoroughly)?

\n", "OwnerUserId": "7898", "LastActivityDate": "2018-07-02T11:52:23.070", "Title": "Why do some wines taste salty?", "Tags": "taste wine flavor ingredients", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7366"}} +{ "Id": "7366", "PostTypeId": "2", "ParentId": "7365", "CreationDate": "2018-07-02T11:52:23.070", "Score": "2", "Body": "

Why do some wines taste salty?

\n\n

Ed C. Kraus, a 3rd generation home brewer/winemaker and has been an owner of E. C. Kraus since 1999 has 4 possible reasons why a wine may have a salty taste. He has been helping individuals make better wine and beer for over 25 years.

\n\n
\n

My first thought would be that if you are aging in a wooden barrel, the remnant salts from the sodium metabisulfite may have built up over the years through insufficient rinsing or no rinsing at all. But this is very unlikely. If you make any kind of conscious effort to rinse a barrel you would be able to keep up with the trace amount of salts that are left behind with each wine batch.

\n \n

My second thought is that a mistake was made in a dosage added to a wine/must. For instance, yeast nutrient (diammonium phosphate) would add what some would call a salty taste to the wine if too much were added, but this would take many times the normal recommend dosage.

\n \n

Third would be saltiness from the grapes themselves. This could add a salty taste in wine. This could apply if you made the wine from fresh grapes from a vineyard. The mineral content of the soil is always reflected in the grape’s flavor to some degree. This is one of the reasons a grape’s origin is always noted. If you are making wine for the first time from a particular soil or terroir, then this is what could be going on.

\n \n

The fourth thing that comes to mind is a mold infection. The only reason I left this for last is because it is the least likely of the four. This is because by the time the wine has a salty taste from mold, it is already blatantly obvious from a visual inspection that mold as set in. So if you don’t see any patches of dried crust on the surface anywhere, or a rainbow-ed, oil-slick look on the wine’s surface, the salty taste in the wine is not being caused by a mold.

\n \n

Beyond these things the only thing that comes to mind is accidentally putting salt in the wine.

\n \n

What Causes A Salty Taste In Wine?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-02T11:52:23.070", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7367"}} +{ "Id": "7367", "PostTypeId": "2", "ParentId": "7363", "CreationDate": "2018-07-02T15:03:00.013", "Score": "3", "Body": "

The answer really depends on what you're looking for in the drink.

\n\n

1) The hotter the whiskey the more rapid the alcohol evaporates out and more of the bitter-notes shine through. Adding ice is cold + water which can also mask some of the whiskey characteristics while taking away some of the \"harsh\" fore taste of the whiskey.

\n\n
\n

*Whiskey stones could be a good alternative if you want cooler whiskey without the effects of the water.

\n
\n\n

2) The Perrier Water is going to add some fizz + bring the whiskey toward the temperature of the Perrier. The cooler the Perrier, the more the temperature drop on the finished product will be. Conversly, the hotter the Perrier is served, the more rapid the loss of CO2 will be.

\n\n
\n

*Freezing the Perrier (or being cold enough to almost freeze) can be dangerous because the H2O (32ºF/0ºC) freeze before the CO2 (-109.3ºF/-78.5ºC) causing a lot of pressure and potentially an pressurized explosion to occur.

\n
\n\n

3) The ideal ratio of Perrier+Whiskey is going to solely depend on the imbiber's taste. The more Perrier, the more fizz and more \"watered down\" the final drink. The less Perrier, the less fizz and more whiskey you will taste.

\n\n
\n

*Watered down is not being used in a negative connotation here. It is being used as a catch all to describe all of the ways water (carbonated or not) affect whiskey and other liquors.

\n
\n\n

The real answer is... Experiment!

\n\n
\n

Try:

\n
\n\n
    \n
  • Johnny Walker, neat, at room temp.
  • \n
  • Johnny walker, neat, chilled
  • \n
  • Perrier at room temp.
  • \n
  • Perrier chilled
  • \n
\n\n

Then measure out ratios based on what your perceptions were.\nIf you liked the Johnny Walker closer to room temp, both should be closer to room temp. Adding measured volumes of each until you achieve your perfect ratio.

\n\n
\n

*An important note: The reason you don't add ice on top of the Perrier is because of the dilution when the ice melts. Therefore you could add whiskey-stones that chill without the dilution.

\n
\n", "OwnerUserId": "22", "LastActivityDate": "2018-07-02T15:03:00.013", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7368"}} +{ "Id": "7368", "PostTypeId": "1", "AcceptedAnswerId": "7369", "CreationDate": "2018-07-02T19:11:50.173", "Score": "5", "ViewCount": "232", "Body": "

I am an amateur in the topic, so I was wondering, can all edible fruits be turned into a fruit wine? Why have grapes historically become the main fruit for wine making over other fruits?

\n", "OwnerUserId": "7898", "LastEditorUserId": "5064", "LastEditDate": "2018-07-31T10:27:55.850", "LastActivityDate": "2018-07-31T10:27:55.850", "Title": "Can wine be made from all edible fruits?", "Tags": "wine history ingredients", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7369"}} +{ "Id": "7369", "PostTypeId": "2", "ParentId": "7368", "CreationDate": "2018-07-02T22:59:25.283", "Score": "7", "Body": "

Yes, wine can pretty much be made from all edible fruit, including tomatoes. But the reason we make wine out of grapes is three fold. Sugar, tannins and acids.

\n\n
    \n
  1. Sugar. Grapes produce the highest naturally occurring amount of sugar of any fruit. Almost no other fruit comes close. Grapes have the ability to make wines that are anywhere from 10-18% alcohol and even higher in the case of late harvest grapes that have too much sugar to finish alcohol production.
  2. \n
  3. Acid. Grapes have a very high naturally occurring acid levels coming from Tartaric acid. Acids help preserve wine and keep the nasty bugs from eating the sugar. They also make it more drinkable. Wine without any acid is flat and awful. It's like beer without hops.
  4. \n
  5. Tannin. Red and white grapes contain tannin in both the skins and seeds. These are a natural antioxidant that help preserve the wine for long term storage.
  6. \n
\n\n

Since grapes have such natural high sugar levels, they also have large colonies of yeast on the skin (aka the bloom) and because of this, grapes are a complete package requiring nothing else to make a high alcohol beverage that can be stored for a very long time without spoiling. No other fruit has the right combination of attributes to do this on it's own.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-07-05T15:57:55.130", "LastActivityDate": "2018-07-05T15:57:55.130", "CommentCount": "7", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7370"}} +{ "Id": "7370", "PostTypeId": "2", "ParentId": "7368", "CreationDate": "2018-07-03T11:55:10.047", "Score": "3", "Body": "

If they can make wine out of durian fruit, then one can make wine out of any fruit.

\n\n

Most people find the taste or flavor of this fruit disgusting.

\n\n

In fact durians are not allowed on the Singapore subway or on many commercial flights at all.

\n\n

\"Sign

\n\n

Sign informing that Durian fruit is not allowed inside the Singapore subway.

\n\n

Yet durians can be made into wine and what is great about it, is the fact that the durian wine is devoid of its' pungent smell.

\n\n
\n

It's a formidable feat pulled off by a team of student researchers at the National University of Singapore who hope to commercialize their durian wine and see the product on store shelves.

\n \n

Known as both the \"King of Fruits\" and the world's stinkiest fruit, the durian is likewise perhaps the most polarizing food with people who either love it hate it.

\n \n

After testing out different fermentation methods, the end result is a wine of 6 percent alcohol which is devoid of the fruit's pungent smell.

\n \n

World's stinkiest fruit is turned into wine

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-03T11:55:10.047", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7371"}} +{ "Id": "7371", "PostTypeId": "2", "ParentId": "50", "CreationDate": "2018-07-04T16:31:07.953", "Score": "2", "Body": "

I've hauled everything that comes out of the brewery in Golden, CO. None of it was hauled in a reefer trailer. All in a dry van. Some loads sat in 95 degrees for days before delivery. Just saying.

\n", "OwnerUserId": "7904", "LastActivityDate": "2018-07-04T16:31:07.953", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7372"}} +{ "Id": "7372", "PostTypeId": "2", "ParentId": "7368", "CreationDate": "2018-07-05T13:10:24.607", "Score": "1", "Body": "

Contrary to the others, I'll say no, at least if you're going to have some reasonable definition of the word \"wine\". Fruits which will produce no fermentable juices are simply not going to work. If you have to treat the fruits in such a way as to convert starches in order to get sugars to ferment, can you really call the product a \"wine\", even in a loose sense?

\n\n

You are going to struggle mightily to produce wine from avocados or eggplants, for example... even limes are so low in sugar and high in acidity that even after neutralizing some acid you will have to add a bunch of sugar to have anything to ferment... in this case, you're really making a flavored kilju, rather than a wine.

\n\n

And if you want to get technical about fruits, then \"all fruits\" is actually a very broad category. Brazil nuts, maple keys, and even carrot seeds are all fully-fledged fruits that are going to be very difficult or impossible to extract a fermentable juice from.

\n\n

Of course, you could probably use a koji to first saccharify your initial base and produce something like a sake, but despite the colloquial misnomer \"rice wine\", if you're going to call this a wine, then you can do it with nearly anything: why limit yourself to fruits? Then is there really a further difference with kvass or even kumis. Is beer now wine?

\n\n

This is completely discounting the whole classes of toxic fruits that you might be able to produce something technically alcoholic but definitely nondrinkable from, e.g. belladonna and other toxic nightshades, baneberries, etc.

\n", "OwnerUserId": "6490", "LastEditorUserId": "6490", "LastEditDate": "2018-07-06T09:15:41.520", "LastActivityDate": "2018-07-06T09:15:41.520", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7373"}} +{ "Id": "7373", "PostTypeId": "2", "ParentId": "7318", "CreationDate": "2018-07-05T14:50:51.963", "Score": "3", "Body": "

Your best bet is likely to be a Russian/Eastern European store. There are some in many larger Italian cities, search for \"negozio russo\" or \"alimentari russo\" in an area you are interested in. Some possibilities:

\n\n

Rome

\n\n
    \n
  • \"Kozak\" - Via dei Conciatori, 1c
  • \n
  • \"Galychnya\" - Via Santa Maria delle Fornaci, 6
  • \n
\n\n

Verona

\n\n
    \n
  • \"Il Negozio Tipico Russo\", Via Vincenzo Cabianca, 10
  • \n
\n\n

Cagliari

\n\n
    \n
  • \"Алёнушка\" - via Francesco Carrara, 22
  • \n
\n\n

Genoa

\n\n
    \n
  • \"Angolo dell'Est\" Vicolo Canneto il Curto
  • \n
\n\n

Carpi

\n\n
    \n
  • \"Europa-Est\" - via Trento Trieste 34/a
  • \n
\n\n

It may pay to call ahead to see if they carry Kvass, if you can find a phone number.

\n", "OwnerUserId": "6490", "LastActivityDate": "2018-07-05T14:50:51.963", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7374"}} +{ "Id": "7374", "PostTypeId": "1", "AcceptedAnswerId": "7378", "CreationDate": "2018-07-07T02:35:03.430", "Score": "1", "ViewCount": "89", "Body": "

What wines pair well with vegetarian or vegan dishes? White wines?

\n", "OwnerUserId": "7914", "LastActivityDate": "2018-07-08T03:40:44.983", "Title": "What wines pair well with vegetarian dishes?", "Tags": "wine pairing", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7375"}} +{ "Id": "7375", "PostTypeId": "1", "AcceptedAnswerId": "7379", "CreationDate": "2018-07-07T03:42:14.010", "Score": "4", "ViewCount": "81", "Body": "

What online Italian wine stores ship internationally? I know Vino75 does not.

\n", "OwnerUserId": "7914", "LastEditorUserId": "8672", "LastEditDate": "2019-06-26T13:01:34.863", "LastActivityDate": "2019-06-26T13:01:34.863", "Title": "What online Italian wine stores ship to USA (South-West)?", "Tags": "wine buying", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7376"}} +{ "Id": "7376", "PostTypeId": "1", "AcceptedAnswerId": "7377", "CreationDate": "2018-07-07T07:43:35.657", "Score": "3", "ViewCount": "153", "Body": "

I live in Sydney. I was wondering if it would be possible to take a trip to the airport and buy a whole bunch of Johnnie walker duty free? Do you actually have to be boarding a flight, or can you just rock up, splash some money around and go home?

\n\n

If you absolutely must be flying somewhere in order to buy some booze, would a domestic flight be sufficient? I've been thinking of visiting Melbourne for a while, and if it were possible to pick up some blue label on the way home I wouldn't complain!

\n\n

Thanks

\n", "OwnerUserId": "7894", "LastEditorUserId": "5064", "LastEditDate": "2019-08-10T14:54:15.997", "LastActivityDate": "2019-08-10T14:54:15.997", "Title": "Do you need to actually be flying somewhere in order to buy booze duty free at the airport?", "Tags": "price australia", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7377"}} +{ "Id": "7377", "PostTypeId": "2", "ParentId": "7376", "CreationDate": "2018-07-07T14:53:08.247", "Score": "5", "Body": "

Duty-Free shops are placed in such a way that travelers must leave the country of origin (sale). Australia is no exception.

\n\n
\n

Duty-free shops (or stores) are retail outlets that are exempt from the payment of certain local or national taxes and duties, on the requirement that the goods sold will be sold to travelers who will take them out of the country. Which products can be sold duty-free vary by jurisdiction, as well as how they can be sold, and the process of calculating the duty or refunding the duty component. - Duty-free shop

\n
\n\n

J. Caron makes this statement about the Sydney airport:

\n\n
\n

Don’t remember the exact layout in Sydney, but in most airports (if not all), you can’t get to the duty-free shops without going through immigration (where applicable) and security, which you generally won’t be able to do without a boarding pass for a flight.

\n \n

The shop will also often require to see the boarding pass, and in some places will make a distinction between people travelling domestic or international. In some countries like the US, as there is not necessarily a separation between domestic and international travellers, and you can exit the departures area at will, they will not give you the goods right away, but deliver them during the actual aircraft boarding.

\n \n

In some airports (especially in the EU), duty-free shops will actually sell duty-free when they can (you are actually leaving the country, or in the case of the EU, leave the EU customs union), and make a discount equivalent to duty-free for other cases.

\n
\n\n

I have seen duty-free sales of liquor and other items sold on in-flight only on some international flights.

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-07T14:53:08.247", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7378"}} +{ "Id": "7378", "PostTypeId": "2", "ParentId": "7374", "CreationDate": "2018-07-08T03:40:44.983", "Score": "3", "Body": "

I was brought up in the fashion that one served red wine with beef and white wine with most fish dishes. But vegetarian dishes are something all together.

\n\n
\n

Vegetarian Dish Pairing

\n \n

White Wines

\n \n

Pinot Gringo

\n \n
    \n
  • Veggie wraps \n \n
      \n
    • bright salads
    • \n
    • pasta with cream sauce
    • \n
    • bruchetta
    • \n
  • \n
\n \n

Chardonnay

\n \n
    \n
  • Starchy foods such as potatoes or risotto\n \n
      \n
    • Spring peas
    • \n
    • Corn
    • \n
    • Roasted vegetables
    • \n
  • \n
\n \n

Riesling

\n \n
    \n
  • Thai food\n \n
      \n
    • Curry
    • \n
    • Summer BBQ
    • \n
    • Cashews
    • \n
    • Mexican Dishes
    • \n
  • \n
\n \n

Gewurztraminer

\n \n
    \n
  • German foods
  • \n
  • Cheeses
  • \n
  • Cajun Cuisine
  • \n
  • Kimchee
  • \n
  • Indian Cuisine
  • \n
\n \n

Red Wines

\n \n

Chianti

\n \n
    \n
  • Pasta with tomato sauce
  • \n
  • Caprese
  • \n
  • Veggie pizza
  • \n
\n \n

Merlot

\n \n
    \n
  • Veggie Burgers
  • \n
  • Olives
  • \n
  • Avocados
  • \n
\n \n

Cabernet Sauvignon

\n \n
    \n
  • Lentil Soup
  • \n
  • Garlic
  • \n
  • Walnuts
  • \n
  • Eggplants
  • \n
\n \n

Pinot Noir

\n \n
    \n
  • Mushrooms
  • \n
  • Bread and olive oil
  • \n
  • Mediterranean Foods
  • \n
\n \n

Quick Guide to Vegetarian Wine Pairings

\n
\n\n

Pairing rules are not set in stone, but there are a few friendly guidline to follow.

\n\n
\n

Match Wine Flavors With Food Flavors

\n \n

Specific body and color types and their flavors are also elements to consider when you are pairing vegan foods and wine. For example, when choosing white wine, a light-bodied flavor, such as Vermentino, Pinot Grigio and Viognier all go well with pasta dishes, salads and stir-fry vegetables because they will not overpower the modest flavor of these foods. If you are barbecuing veggie burgers or preparing baked potatoes on the grill, consider choosing a classic white Chardonnay, Sauvignon Blanc or Riesling, which make a fine complement to the taste of grilled foods.

\n \n

If you prefer red wine, then go with Granache for veggie burgers and sweet potatoes, and try a Merlot for olive-based dishes and grilled asparagus. The most important aspect of pairing wine with a vegan meal is to choose flavors that will not overpower the food. For example, avoid pairing a robust, full-bodied red wine with a simple summer salad or pairing a sweet wine with a tart pesto and lemon dish.

\n \n

While you might make a few errors when you first start pairing wines and vegan dishes, you should never be afraid to experiment and come up with a few interesting combinations of you own. - 5 Tips for Pairing Wines With Vegan Dishes

\n
\n\n

And by the way: Bon Appetite!

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-08T03:40:44.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7379"}} +{ "Id": "7379", "PostTypeId": "2", "ParentId": "7375", "CreationDate": "2018-07-08T11:45:41.330", "Score": "4", "Body": "

\"Italian

\n\n

The Italian Wine Selection will ship internationally. They seem to have a large selection. Caveat: Some countries at any one time may or may not be deliverable due to particular domestic rules and laws of the country being shipped to.

\n\n
\n

We are in the wonderful city of Sorrento, you can come and visit us in our 3 restaurants, where in addition to drink the wines of Italian Wine Selection, you can enjoy specialties of our land revisited by our Chef. - Enoteca on line - Italian Wine Selection

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-08T11:45:41.330", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7381"}} +{ "Id": "7381", "PostTypeId": "1", "CreationDate": "2018-07-12T14:35:02.680", "Score": "6", "ViewCount": "207", "Body": "

I'm thinking of going to Belgium for a week's holiday in the autumn and this time take the car from the UK. This would be perfect for stopping by the monks at Westvleteren and buying a case of beer. How long in advance can you/do you need to call them? Given that we'll probably need to book the holiday at least a month before we go, I don't want to miss out by not getting an appointment!

\n", "OwnerUserId": "7922", "LastActivityDate": "2018-07-26T15:21:58.520", "Title": "How long in advance do you need to order Westvleteren?", "Tags": "trappist buying", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7382"}} +{ "Id": "7382", "PostTypeId": "2", "ParentId": "7381", "CreationDate": "2018-07-13T03:51:56.213", "Score": "2", "Body": "

How long in advance do you need to order Westvleteren?

\n\n

It seems you need to place an order in at least 60 days in advance of the time of pick up at the abbey.

\n\n
\n

The abbey is located at Brouwerij de Sint-Sixtusabdij van Westvleteren, Donkerstraat 12, 8640 Vleteren, Belgium. But be warned: the abbey is not easy to find. When coming from Brussels, the recommended way of travel is by car, which will take an hour and a half. Traveling by bus is doable, but not recommended. You will find yourself taking connection to connection that could possibly rack up to about a nine-hour journey.

\n \n

Here’s the tricky part: if you are interested in buying this special beer, it is exclusive to the abbey and is only sold at two official sale points – the abbey and the visitor’s center. In order to get your hands on some of the world’s best beer is truly a delicate process. To acquire some Westvleteren, you must call the ‘beer phone’ and place a reservation 60 days ahead of time. The phone line tends to be busy with 85,000 calls coming in every hour. Once you finally get to talk to an individual at the brewery, you will give your license plate number and set up a date and time in which you can pick up your order drive-thru style.

\n \n

While these methods may seem extreme, the monks are ultimately striving to eliminate commercial and illegal resales. There should be no pubs or bars supplying Westvleteren, and if they are, that means it’s considered a ‘gray market item.’ If you really can’t wait the 60 days, the abbey also owns a café and visitor’s center called In de Vrede, just across from the brewery, where beer can be bought on the premises to drink right away. - Westvleteren, Belgium's Most Secretive Brewery

\n
\n\n

Customers are limited to one case per person (per license plate) per 60 days.

\n\n

The beer phone for the Abbey of Saint Sixtus is (+32) (0)70-21-00-45.

\n\n

Bierverkoop Trappist Westvleteren

\n\n

Nota Bene: \"The Westvleteren Beer Sale page only mentions that you cannot place another order earlier than 60 days after your previous one. It does not give any information about how long in advance the first order may be made.\" – Altbier is not Old Beer

\n\n

To be safer than sorry, I would still place an order in 60 days prior to pick up, unless the first purchase can be verified to be obtained earlier than that!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-07-14T15:19:39.680", "LastActivityDate": "2018-07-14T15:19:39.680", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7383"}} +{ "Id": "7383", "PostTypeId": "1", "AcceptedAnswerId": "7388", "CreationDate": "2018-07-15T12:31:30.400", "Score": "8", "ViewCount": "4473", "Body": "

After seeing this question once again on this site (Is there a modern wine that is designed to resemble ancient Roman winemaking?) sometime back and I became interested in knowing if there is a modern wine that is designed to resemble Noah's wine from the Turkish region of Mt. Ararat after the biblical deluge? I am not interested if one believes in the story of Noah's Ark or not. Nor am I interested in any possible historical timeline for the great regional flood which spared Noah and his family.

\n\n
\n

Noah's wine is a colloquial allusion meaning alcoholic beverages. The advent of this type of beverage and the discovery of fermentation are traditionally attributed, by explication from biblical sources, to Noah. The phrase has been used in both fictional and nonfictional literature.

\n \n

\"Noah's wine\" refers to alcoholic beverages. In the Bible, the few chapters that come between the creation of Adam and the birth of Noah contain no mention of alcoholic drinks. After the account of the great flood, the biblical Noah is said to have cultivated a vineyard, made wine, and become intoxicated. Thus, the discovery of fermentation is traditionally attributed to Noah because this is the first time alcohol appears in the Bible. Noah's wine has been described as a \"pleasant relief for man from the toilsome work of the crop\".

\n \n

From a biblical view, fermented beverages presumably spread throughout the world after Noah's supposed discovery, as alcoholic beverages are historically widespread. - Noah's wine (Wikipedia)

\n
\n\n

Is there a modern wine, commercially available today, that is intended to resemble the ancient Noah's wine as closely as possible from any of his many possible timelines (more or less)?

\n\n

Noah’s Original Identity: The First Winemaker

\n\n

\"A

\n\n

A depiction from the Holkham Bible c. 1320 AD showing Noah and his sons making wine

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-07-15T14:36:55.033", "LastActivityDate": "2019-04-23T07:40:18.830", "Title": "Is there a modern wine that is designed to resemble Noah's wine?", "Tags": "wine history", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7384"}} +{ "Id": "7384", "PostTypeId": "2", "ParentId": "7383", "CreationDate": "2018-07-15T19:55:10.377", "Score": "4", "Body": "

These guys aren't claiming that it's Noah's wine, but they are saying they are using the same methods that they used 8000 years ago to make wine and you can buy it in the Republic of Georgia. Is Georgia's Ancient Wine Making Method Making a Comeback? You can buy it around the world supposedly.

\n\n

\"Kvevri wines from Georgia can be found in a few stores and restaurants in New York City, San Francisco and Washington DC. Noel Brockett, who distributes both conventional and kvevri wine from Georgia in Washington DC for the Georgia Wine House, says it may take time to reach the general public but, “the Sommelier community is definitely becoming much more interested in the kvevri wines as the general market turns toward authenticity.”

\n\n

Other than trying something out for historical purposes, the wine probably didn't taste all that great. They probably drank it young since they didn't have bottles and it was likely very cloudy and low alcohol. Probably not red since that would require fermenting on the skins in a controlled manner. Probably like a cloudy rose' or a orangeish white. We'll never know what grapes were used by Noah.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6255", "LastEditDate": "2019-04-23T07:40:18.830", "LastActivityDate": "2019-04-23T07:40:18.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7385"}} +{ "Id": "7385", "PostTypeId": "1", "AcceptedAnswerId": "7386", "CreationDate": "2018-07-17T04:00:14.610", "Score": "5", "ViewCount": "503", "Body": "

I'm in search of wine which will taste similar to Georgian red semi-sweet Kindzmarauli

\n\n

Can you give some advice for California citizen?

\n", "OwnerUserId": "7931", "LastActivityDate": "2018-07-17T17:22:23.650", "Title": "Californian red semi-sweet wine similar to Kindzmarauli?", "Tags": "red-wine", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7386"}} +{ "Id": "7386", "PostTypeId": "2", "ParentId": "7385", "CreationDate": "2018-07-17T17:22:23.650", "Score": "3", "Body": "

Kindzmarauli is a region in Georgia that is well known for their wines. There is also seems to be some confusion about if it's a style of wine or not. Wikipedia claims that it's a sweetish red wine made from Saperavi grapes and other sources say it's just the appellation and several grapes can be used. Saperavi is a teinturier grape which means it has both red skin and flesh. Most red grapes only have red skin and clear flesh. They can be very powerfully colored and are many times used to color wines that need a little help in the color department. A well known teinturier in California is Alicante Bouschet which at one time was one of the most grown grapes in California. I suspect if you could track down a off dry California Alicante Bouschet it would have a similar flavor profile. There are Saperavi grapes in California, but I don't know a winery using them.

\n\n

Or you can just buy the real thing from Georgia at your Total Wine store in California.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-07-17T17:22:23.650", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7388"}} +{ "Id": "7388", "PostTypeId": "2", "ParentId": "7383", "CreationDate": "2018-07-18T11:45:08.197", "Score": "4", "Body": "

Karasì is not designed to resemble that of Noah's wine, but it may have some small characteristics of the grapes Noah used.

\n\n
\n

Karasì, is a tribute to the 6100 year wine tradition of Armenia. Aged in traditional amphorae, hence its name, ‘from amphorae’ in Armenia, this wine embraces the living heritage of a country while at the same time it delves back into a long forgotten chapter in the ancient history of wine.

\n \n

Grape Variety

\n \n

The King of Armenia’s grapes and possibly one of the oldest grape varieties in the world Areni has been present in Armenia for millennia. Never grafted and on its own roots, it is 100% indigenous to this land with a unique DNA profile that does not match any other. Elegant and fresh, thick skinned and extremely resistant to disease, through the ages Areni has adapted perfectly to the high altitudes and extreme temperatures variations of Vayots Dzor, its natural habitat.

\n \n

With Karasì we have the pleasure of tasting both place and the exotic personality of an ancient grape most have never heard of! - Karasì

\n \n

The Cradle of Vine and Wine

\n \n

One of the world’s oldest civilizations, steeped in a history and tradition that dates back millennia, Armenia’s territory lies in the southern Trans Caucasus in the highlands surrounding Biblical Mount Ararat. The Cradle of Vine and Wine, the vine has forever been present in the valleys of Armenia with the wild Vitis vinifera silvestris, ancestor of the cultivated vinifera vine species, already established in its highlands over a million years ago.

\n \n

It is also of course in Armenia, at the foothills of Biblical Mount Ararat, where legend has Noah, the world’s first vigneron, plant his vineyards and later became famously drunk on his own wine! - Armenia: The land of the beginning

\n \n

Championing Native Varieties

\n \n

Working uniquely with ancient native varieties the vines are planted on their own roots directly into rocky, limestone soils which have never seen Phylloxera and while ZORAH’S heirloom vineyards tell a story of times gone by, the younger vines, the cuttings of which come from ancient abandoned vineyards of a XIIIth Century monastery, show us vistas into a possible future. - Zorah Wines

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-07-18T12:15:04.920", "LastActivityDate": "2018-07-18T12:15:04.920", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7389"}} +{ "Id": "7389", "PostTypeId": "2", "ParentId": "155", "CreationDate": "2018-07-19T01:27:32.077", "Score": "1", "Body": "

I drink an average of 1.5 litres of beer daily and I get a significantly different effect from different beers. Some give me an agressive feeling and only a select few give me a clean feel. This being said I now believe that most people including you so called experts actually have little sensitivity to this and simply overlook the differences as pure nerdiness or what ever. I do assure you however that after drinking 100s of beers and of different brands only a select few are acceptable. Do you you even have a remote clue what these ones are because I assure you I will not tell you but only that extremely few are from North America or Mexico.

\n", "OwnerUserId": "7934", "LastEditorUserId": "5064", "LastEditDate": "2018-07-24T11:52:01.267", "LastActivityDate": "2018-07-24T11:52:01.267", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7390"}} +{ "Id": "7390", "PostTypeId": "2", "ParentId": "6868", "CreationDate": "2018-07-20T09:31:34.230", "Score": "2", "Body": "

If you like Aberlour you will probably enjoy other Speysides, some well know brands are:

\n\n
    \n
  • Glenfiddich
  • \n
  • Glenmorangie
  • \n
  • Glenfarclas
  • \n
  • The Balvenie
  • \n
  • Dalwhinnie
  • \n
  • The Glenlivet
  • \n
  • Glen Moray
  • \n
\n\n

They vary in price and each brand has different years which will obviusly effect the price. Of the above the Glenlivet Founders Reserve and Glen Maray Classic tend to be on the cheaper end of the scale.

\n\n

You can also pick up some really great whisky that isn't from a well known brand, for example here in the UK we have a discount chain Lidl which does a really great Speyside that is really cheap: Lidl Ben Bracken Speyside Review

\n", "OwnerUserId": "7936", "LastEditorUserId": "5064", "LastEditDate": "2018-07-24T11:49:16.223", "LastActivityDate": "2018-07-24T11:49:16.223", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7391"}} +{ "Id": "7391", "PostTypeId": "5", "CreationDate": "2018-07-20T15:10:37.600", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2018-07-20T15:10:37.600", "LastActivityDate": "2018-07-20T15:10:37.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7392"}} +{ "Id": "7392", "PostTypeId": "4", "CreationDate": "2018-07-20T15:10:37.600", "Score": "0", "Body": "For questions about words, phrases and definitions that are specific to alcoholic beverages.", "OwnerUserId": "6255", "LastEditorUserId": "6255", "LastEditDate": "2018-07-23T07:34:51.457", "LastActivityDate": "2018-07-23T07:34:51.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7393"}} +{ "Id": "7393", "PostTypeId": "1", "CreationDate": "2018-07-21T15:40:31.097", "Score": "3", "ViewCount": "203", "Body": "

I am drinking Rum, Brandy and Whisky regularly. Sometimes beer.

\n\n

In those which boosts body fat? Which is good for obesity prone body?

\n", "OwnerUserId": "7939", "LastActivityDate": "2021-09-19T18:12:44.503", "Title": "Will alcohol boost body fat?", "Tags": "whiskey spirits rum", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7394"}} +{ "Id": "7394", "PostTypeId": "2", "ParentId": "7393", "CreationDate": "2018-07-22T14:58:19.743", "Score": "2", "Body": "

Will alcohol boost body fat?

\n\n

That will depend on several things, such as the type of booze you drink, the amount you drink, the amount you eat and the amount of exercise you do daily.

\n\n
\n

Drink responsibly

\n \n

Alcohol can either give you a beer belly or help you uncover your abs. After all, while one Archives of Internal Medicine study shows that people who put back one or two drinks a day are less likely to gain weight, research in The American Journal of Clinical Nutrition shows that men consume an extra 433 calories on days they have just a couple of drinks.

\n \n

While lowered inhibitions and drink-fueled munchies have something to do with it, 61 percent of the caloric increase comes from the alcohol itself. So, if you're trying to lose weight while still enjoying the occasional drink, you'd better be wise about which drinks you choose. Here are the best and worst booze you can order.

\n \n

Best Wine

\n \n

Red or white, you can expect to consume roughly 100 to 120 calories per glass. (That's assuming, however, that you're drinking a standardized 5-ounce glass. Research from Iowa State and Cornell shows that people tend to over-pour by 12 percent.)

\n \n

However, there are some considerations to make when picking grapes: White wine typically contains fewer carbohydrates than does red wine, which makes a small difference in terms of calories, says Caroline Cederquist, M.D., author of The MD Factor and creator of bistroMD. Meanwhile, red wine is richer in antioxidants, and a 2014 study in The Journal of Nutritional Biochemistry, red wine's ellargic acids delay the growth of fat cells while slowing the development of new ones.

\n \n

Vermouth

\n \n

\"A fortified wine with higher alcohol content and infused spices and herbs, vermouth is a calorie saver if you have it by itself—as it's commonly served in Europe,\" says Georgie Fear, R.D., author ofLean Habits for Lifelong Weight Loss. A 1.5-ounce serving contains a mere 64 calories, and typically contains about 15 to 18 percent alcohol, she says. Plus, research out of Budapest shows that it's jam-packed with polyphenol compounds, which may promote healthy weight loss.

\n \n

Still, remember that if you mix it into a Manhattan or martini, you're probably going to be consuming far more calories and sugar, Fear says.

\n \n

Straight Liquors

\n \n

When it comes to getting the most alcohol for the fewest calories, shots and straight booze are the way to go. \"There is not much of a difference 80-proof hard liquors,\" Cederquist says. \"They all have around the same number of calories and carbohydrates.\" And as calories increase along with the alcohol content, the difference is not huge. For instance, a shot of 86-proof whiskey contains 105 calories and a shot of 80-proof vodka contains 97 calories.

\n \n

However, you also need to keep in mind that the sweeter the liquor, the more calories it typically contains, she says. \"If you're looking for a lower calorie alternative, avoid the flavored vodkas and spiced rums and go for the original or 'plain' option offered,\" she says. \"If you are looking for a flavor boost, try low-calorie mixers like a flavored seltzer or fresh squeezed lemon or lime. This will provide the taste without the calories.\"

\n \n

Light Beers

\n \n

With fewer calories and carbs, these are the best brewskis for weight loss, Cederquist says. Many light beers contain 90 to 100 calories per 12 ounces, while extra-light beers pack about 55 to 65.

\n \n

However, just don't use that as an excuse to have more beers than you typically would, or you'll undo all benefits. Hey, they generally pack less alcohol, right? Well, yeah, but they actually tend to have a higher percentage of their calories coming from alcohol compared to standard brews. Budweiser Select 55 for example derives 88.2 percent of its calories from alcohol, compared to Bud Light at 74.1 percent, and regular Budweiser at 66.9 percent calories, Fear says.

\n \n

The Worst

\n \n

Sugar-Packed Cocktails

\n \n

\"Margaritas and Long Island Iced Teas can set you back more calories than a large order of McDonald's French Fries,\" Fear says. Even worse, calories from sugar-laden drinks come as a sneak attack. When you drink a marg, your body is so overwhelmed with the alcohol content that your body doesn't properly metabolize the sugar. Instead, it stores the sweet stuff as fat.

\n \n

There is never a good excuse to drink these and other sugar-filled cocktails especially if you are trying to lose weight or not develop diabetes, she says. Now, if you've got a skilled mixologist behind your bar, you're probably calorically safe ordering a cocktail. After all, he'd never serve up one of these artless offenses.

\n \n

High-Alcohol Craft Beers

\n \n

\"The last five years have seen an explosion of craft breweries creating high-alcohol varieties, which pack more calories per bottle than you may realize,\" Fear says. Remember, more alcohol means more calories. Every gram of the good stuff contains seven calories.

\n \n

For instance, Flying Dog Horn Dog, which contains 10.2 percent alcohol by volume, also contains 314 calories per bottle, and Dogfish Head 120 Minute IPA boasts 18 percent alcohol by volume, but also packs 450 calories into each bottle. That's a meal in a glass. Unfortunately, though, all that alcohol can wind up making you hungrier. - The Best and Worst Booze to Drink if You Want to Lose Weight

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-22T14:58:19.743", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7395"}} +{ "Id": "7395", "PostTypeId": "2", "ParentId": "7341", "CreationDate": "2018-07-22T22:40:35.580", "Score": "1", "Body": "

Storage temperature absolutely effects the quality of beer.

\n\n

High storage temperatures can produce Dimethyl Sulfide - a cooked corn/vegetable like favour. Also high temperatures can cause the breakdown of yeast (autolyzation) contributing meaty/vegemite/marmite/miso like off flavours. \nRef: https://www.beercartel.com.au/blog/beer-storage-the-dos-and-donts-of-storing-and-cellaring-beer/\n(There are many other references if you search.)

\n\n

The storage time at the temperature is obviously also a factor.

\n\n

The changes also depend on the type of beer being stored. If the beer is a pasteurised and/or completely filtered product, typically all yeast and suspended proteins have been removed. Yeast can't autolyze if they have been removed.

\n\n

Hop-forward beers will lose their flavour, \"hoppiness\" much quicker if stored warm - even when stored properly, it's best to drink these beers sooner rather than cellar them. I keep all my hoppy beers refrigerated at all times (handle them like dairy products).

\n\n

As a rule of thumb, cellar your beers around 10C / 50F without much variation.

\n\n

Personally, I only buy what I can keep in the refrigerator as a stable 10C is impossible where I live.

\n", "OwnerUserId": "5160", "LastEditorUserId": "5160", "LastEditDate": "2018-07-22T22:56:07.140", "LastActivityDate": "2018-07-22T22:56:07.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7396"}} +{ "Id": "7396", "PostTypeId": "2", "ParentId": "1033", "CreationDate": "2018-07-22T23:13:20.353", "Score": "0", "Body": "

While \"Wayne in Yak\" pretty much covers ideal serving temperatures, I would like to add some sensory information.

\n\n

When you drink or eat very cold foods & beverages, the low temperature inhibits the operation of your taste buds and other olfactory tasting parts of your body.

\n\n

Here's a quick experiment: taste a room-temperature soda/soft-drink Vs a refrigerated soft drink. The warm version tastes much sweeter. The sweetness of the beverage is calibrated for consumption at a low temperature. It's too sweet drinking it warm.

\n\n

Sometimes on hot summer days, a cold & frosty beer is great. I wont disagree there. But the point is - if the beverage is too cold, you physically can't taste it very well.

\n\n

This is why many establishments do not freeze their glasses. Just like steaks, soup and ice-cream, there's a specific temperature range at which the producer thinks the product is best.

\n\n

In places where the ambient temperature is over 30C / 86F, then it makes sense to cool the glasses. But here the idea here is that when the beverage at temperature-X is combined with a heavy glass at temperature-Y, the final resultant temperature should be in that ideal serving range.

\n", "OwnerUserId": "5160", "LastActivityDate": "2018-07-22T23:13:20.353", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7397"}} +{ "Id": "7397", "PostTypeId": "1", "AcceptedAnswerId": "7398", "CreationDate": "2018-07-23T21:41:30.997", "Score": "4", "ViewCount": "1421", "Body": "

I have heard about being able to make alcohol in jail. How would that be done?\nI imagine the the ingredient list would be limited like thing that would only be found in a cell. Anybody have first hand experience? As far as utensils you have your hands, socks, toilet other basic supplies found in jail.

\n", "OwnerUserId": "7198", "LastEditorUserId": "7198", "LastEditDate": "2018-07-25T20:01:04.663", "LastActivityDate": "2018-07-25T20:01:04.663", "Title": "How to make alchohol in jail?", "Tags": "specialty-beers ingredients home-brew", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7398"}} +{ "Id": "7398", "PostTypeId": "2", "ParentId": "7397", "CreationDate": "2018-07-24T02:48:57.507", "Score": "2", "Body": "

An acquaintance of mine who did time claimed he used Five Alive to make jail brew. But then what can you believe from inmates! Prison brew generally does not taste all that great.

\n\n

Here is one way to make Jailhouse Brew:

\n\n
\n

Pruno is a type of easy homemade fruit wine that’s often made by inmates in prison. Because pruno is typically made with makeshift ingredients, it doesn’t always taste very good. Making pruno is quite simple, but some recipes create the perfect environment for Clostridium botulinum. This is a bacterium that causes botulism, a form of food poisoning that can be fatal. Because of this, you must be very careful when you're making this homemade wine.

\n \n

Ingredients

\n \n

Artisan Pruno

\n \n
    \n
  • 10 oranges, peeled and roughly chopped

  • \n
  • 10 apples, roughly chopped

  • \n
  • 1 cup (225 g) plus one tablespoon (14 g) sugar

  • \n
  • 2¼ teaspoons (one 7-gram package) yeast

  • \n
  • 3 cups (711 ml) water

  • \n
  • 1 cup (227 g) fruit cocktail

  • \n
  • 1½ ounces (43 g) raisins

  • \n
\n \n

Minimalist Pruno

\n \n
    \n
  • 10 oranges, peeled

  • \n
  • 1 cup (227 grams) fruit cocktail

  • \n
  • 2 cups (474 ml) water

  • \n
  • 6 teaspoons (30 g) ketchup

  • \n
\n \n

Making Artisan Pruno

\n \n

\"Method

\n \n

Method 1

\n \n

1 Gather your supplies. Traditional pruno made by inmates is made with few supplies and the ingredients that are available in prison. But at home, you can also make your own version of pruno using all the convenient equipment and ingredients available in a modern kitchen. To make artisan pruno at home, you'll need:

\n \n

•Immersion blender

\n \n

•Wooden spoon

\n \n

•Large saucepan

\n \n

•Small bowl

\n \n

•One-gallon (3.8-L) sealable plastic bag

\n \n

•Clean bath towel

\n \n

•Heating pad

\n \n

•Strainer

\n \n

•Cheesecloth

\n \n

•Large bowl

\n \n

•Funnel

\n \n

•Large sterile bottle or jar with lid

\n \n

2 Puree the fruit. Combine the apple and orange chunks, plus the fruit cocktail and raisins, in a large saucepan. Use the immersion blender to puree the fruit until it’s juicy and pulpy, but still has some bite-sized chunks in it.

\n \n

•Make sure to move the immersion blender around in the bowl as you blend, to ensure the fruit is pureed evenly.

\n \n

3 Boil the fruit, sugar, and water. When the fruit is ready, add the 1 cup (225 g) of sugar and 2 cups (474 ml) of the water and stir to combine. Put on the lid, transfer the fruit mixture to the stove, and bring it to a boil over medium heat, stirring frequently to prevent burning.

\n \n

•Once the fruit comes to a boil, let it simmer for 30 minutes to kill any bacteria that may be present. Continue stirring the mixture regularly.

\n \n

4 Cool the fruit. After the fruit boils for 30 minutes, remove it from the heat and let it cool. You don’t want it completely cold, but slightly above room temperature to help the yeast flourish. As the fruit cools, continue stirring from time to time so it cools evenly.

\n \n

•The cooling process will take about 30 minutes to an hour

\n \n

5 Activate the yeast. Combine the yeast, the 1 cup of warm water, and the 3 teaspoons of sugar in a bowl. Set the bowl aside for five to 10 minutes to let it activate.

\n \n

•As the yeast comes to life, it will begin to froth and bubble in the bowl.

\n \n

6 Add the yeast and transfer the mixture to the bag. Pour the yeast mixture over the fruit and stir to fully combine. Transfer the mixture to the plastic bag. Press out as much air as you can, then seal the bag.

\n \n

•It’s important to warm the fruit mixture because the yeast will die if it gets too cold.

\n \n

7 Store the mixture somewhere warm and dark. Wrap the fruit mixture in a clean bath towel to help keep in the heat. Then place the towel on top of an electric heating pad turned to low temperature. Transfer the fruit, towel, and heating pad to a dark place, such as a closet.

\n \n

•If you don’t have an electric heating pad, fill a hot water bottle with warm water. Be sure to check on the water ever six to 12 hours, and add fresh warm water as necessary when the bottle starts to get cold.

\n \n

•The reason you have to keep the fruit mixture warm is so the yeast will stay alive to ferment the fruit and turn it to alcohol.

\n \n

8 Burp the bag daily. As the yeast converts the sugars in the bag to alcohol and carbon dioxide, the bag will slowly fill up with gas. To prevent it from bursting, remove the bag from the towel once or twice a day and open the bag to release the gas and pressure.

\n \n

•Reseal the bag, wrap it back in the towel, and return it to its dark spot on the heating pad.

\n \n

•When the mixture stops bloating, it means the yeast has converted all the sugar to alcohol and carbon dioxide, meaning the pruno is ready. This will take about five days.

\n \n

9 Strain the pruno. When the mixture has stopped bloating, it’s ready to strain. Place a cheesecloth-lined strainer over a bowl. Pour the fruit mixture into the strainer and let the juice drain down into the bowl.

\n \n

•To get the most juice out, wring out the cheesecloth with the fruit still inside

\n \n

10 Transfer to a bottle and chill before serving. Place the funnel inside the neck of a sterile glass jar or bottle. Pour the pruno into the bottle. Transfer the bottle to the fridge and allow it to chill for several hours or overnight.

\n \n

•A large mason jar will work to store your pruno, or a large two-liter pop bottle.

\n \n

Source: How to Make Pruno

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-07-24T03:16:46.773", "LastActivityDate": "2018-07-24T03:16:46.773", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7399"}} +{ "Id": "7399", "PostTypeId": "2", "ParentId": "7397", "CreationDate": "2018-07-24T16:52:38.053", "Score": "5", "Body": "

Any fruit juice that will ferment. Apple, grape, orange, peach or whatever sugary concoction you can get your hands on. Raisins are especially good. Prunes. Tomatoes. Fruit Cocktail. Packets of sugar. Maple syrup. Even bread that has been turned into mush will ferment again. The hard part is fermenting it without being caught. Any plastic bucket will do. Ziploc bags. Even the toilet in your cell is good enough. Don't worry about yeast. If you can get a piece of fresh fruit like an apple it will have enough yeast to do the dirty work. Then just like our ancient ancestors, drink it when it's done fermenting. Who cares if it's cloudy or full of chunks, you have one goal and that's to get a buzz...

\n\n

Friends of mine worked for Aramco in Saudi Arabia. Of course there was not alcohol allowed, but the Americans lived in a separate community and the Saudi police turned a blind eye as long as they didn't catch you drunk in public. People got very creative about brewing up stuff from the grocery store. Apple juice and grape juice were easy to get. Baker's yeast and a large bucket and voila, you had apple cider. Then stick it in the freezer until frozen solid and then drain out the alcohol, then you have something about 30% alcohol. Yum!

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-07-24T16:52:38.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7400"}} +{ "Id": "7400", "PostTypeId": "1", "AcceptedAnswerId": "7409", "CreationDate": "2018-07-26T11:21:47.637", "Score": "1", "ViewCount": "340", "Body": "

Are there any historical cases where actual POWs made some form of alcohol while being held prisoner by belligerent forces in a POW camp?

\n\n

While watching the classic movie The Great Escape (1963), I noticed that there is a scene in which three POWs made some moonshine out of potatoes. You can watch this scene on YouTube here.

\n\n

Are there any documented cases of POWs making some form of alcohol under the noses of their enemy while being held in a POW encampment?

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-07-29T17:10:45.627", "Title": "Are there any historical cases where actual POWs made some form of alcohol while being held in a POW camp?", "Tags": "history brewing", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7401"}} +{ "Id": "7401", "PostTypeId": "2", "ParentId": "7381", "CreationDate": "2018-07-26T15:21:58.520", "Score": "1", "Body": "

In addition to Ken's answer, you can also visit the abbey's gift shop at their restaurant. They usually have cardboard sixpacks for sale of one of the three varieties. There is a per person limit of 1 sixpack per day, which may or may not always be perfectly adhered to. The B&B we stayed at last time told us to make a couple of trips to the gift store in different clothes...

\n", "OwnerUserId": "7953", "LastActivityDate": "2018-07-26T15:21:58.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7404"}} +{ "Id": "7404", "PostTypeId": "1", "AcceptedAnswerId": "7405", "CreationDate": "2018-07-27T13:49:56.540", "Score": "2", "ViewCount": "95", "Body": "

I was looking up a wine and found out that one of my favorites received a Gold medal. I felt validated because that meant I wasn't crazy (all of my friends disliked it while I fell in love), so I thought that meant it was in the top tier of quality. But as I kept scrolling I found one that had received a Double Gold medal and it brought me much confusion. I didn't know there was a ranking above gold?!? And I've definitely never heard that term before.

\n\n

I thought that if there was, it would be called something similar to platinum (like records in the music industry), but apparently not.

\n\n

So what is a Double Gold medal? What makes it better than a normal Gold medal?

\n\n

Here is where I came across it.

\n", "OwnerUserId": "7959", "LastActivityDate": "2018-07-27T19:27:26.487", "Title": "Why is there a Double Gold medal?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7405"}} +{ "Id": "7405", "PostTypeId": "2", "ParentId": "7404", "CreationDate": "2018-07-27T16:16:40.147", "Score": "2", "Body": "

It's simply grade inflation. I have won a few Double Golds at the Seattle Wine Awards. Contests were giving out too many Golds and they came up with Double Golds. Here is how it normally works. Judges sit around a table and taste together. Then they discuss and award medals as a group. If the majority thinks it's worth a gold, they give it a gold. If the whole table says it's a gold, then they give it a double gold.

\n\n

There are Platinum awards too. Another group of judges (not from the same contest) taste all the Double Golds from a region or something from other contests and give Platinums. It's all a subjective thing based on the contest. There is no coordination among contests on what a double gold means.

\n\n

Seattle Wine Awards

\n\n

Platinum Awards Northwest Wines

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-07-27T19:27:26.487", "LastActivityDate": "2018-07-27T19:27:26.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7406"}} +{ "Id": "7406", "PostTypeId": "2", "ParentId": "5198", "CreationDate": "2018-07-28T15:27:24.670", "Score": "1", "Body": "

If you want to be a traditionalist, it's not really Moonshine unless it was produced illegally, without all the proper taxes and such. Anything you buy in the store could more accurately be called white liquor, grain liquor or corn liquor, depending on the mash stock.

\n\n

A key feature of both legally and illegally produced Moonshine is that it's unaged. It goes straight from the still into the jar or jug. This facet was born of the need to make quick profits, the need to minimize the amount of evidence on hand in the event of a raid, and by extension, get your liquor into the hands of paying customers before the revenuers could find it.

\n\n

Physically speaking, there is no real difference between vodka and moonshine. Both are unaged neutral spirits, usually cut with water to increase volume and produce a more drinkable product. The difference is mostly geographic. Moonshine, at least commercial varieties, can easily be called American Vodka, much like Poitin could be called Irish vodka.

\n", "OwnerUserId": "7962", "LastActivityDate": "2018-07-28T15:27:24.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7407"}} +{ "Id": "7407", "PostTypeId": "2", "ParentId": "6998", "CreationDate": "2018-07-28T21:06:12.733", "Score": "4", "Body": "

I've found cider to be good for me. I used to drink beer and it took two beer to set off an attack. I can drink 6 or 7 Strongbow and no gout flare-ups

\n", "OwnerUserId": "7963", "LastActivityDate": "2018-07-28T21:06:12.733", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7408"}} +{ "Id": "7408", "PostTypeId": "1", "AcceptedAnswerId": "7422", "CreationDate": "2018-07-29T11:00:26.560", "Score": "7", "ViewCount": "20532", "Body": "

I heard of a case of the Mexican government protecting the Tequila name. From that It made me wonder what exactly is tequila. Just like Champagne is sparkling white wine when not from a specific region in France. What is Tequila?

\n", "OwnerUserId": "5479", "LastEditorUserId": "5064", "LastEditDate": "2018-07-29T11:45:55.043", "LastActivityDate": "2018-08-08T11:52:59.730", "Title": "What is Tequila when its not from Mexico?", "Tags": "tequila", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7409"}} +{ "Id": "7409", "PostTypeId": "2", "ParentId": "7400", "CreationDate": "2018-07-29T17:10:45.627", "Score": "2", "Body": "

Similarly, I recently watched the 2010 Maia Liddell documentary, Colditz The Legend.

\n\n
\n

Colditz Castle was a maximum security prison from which no one was meant to escape... but escape they did. Take a fresh look at the legendary escapes, featuring stories from both Colditz survivors and their extended families.

\n
\n\n

Listening to the narratives by former British officers held captive and memories and anecdotes by family (sons, daughters, grandchildren) prompted Google searches, among them these.

\n\n

George Drew, 87, British POW Brewed Turnip Hooch at Colditz

\n\n
\n

Major George Drew, who has died aged 87, helped his fellow prisoners to cope with the boredom and deprivations of Colditz Castle during World War II by producing potent homemade alcohol.

\n \n

He and his friend Pat Fergusson first tried to brew from the sugar and raisins from Red Cross parcels, but failed. Then they realized that there was sufficient sugar for fermentation in the turnip jam supplied by the Germans. Mixing the jam with yeast and water, they used a piece of purloined drainpipe and a large can, sealed with plaster of Paris from the sick bay, to produce hooch for such events as St. Valentine's and St. Patrick's Days.

\n \n

However, the effects of the more than 100 proof alcohol could be severe, even leading to temporary blindness. Dental fillings would fall out. If a man was having obvious difficulty walking and talking in the castle yard it was said that he was \"jam happy.\"

\n \n

When Drew and Fergusson took part in the British television series \"Escape From Colditz\" in 2000, they made their potion for the first time since 1945. Taking the first glass before the camera, Drew said \"Dear God,\" remarked that the smell was not quite as bad as it used to be, then drank again. \"Oh Christ,\" he gasped.

\n
\n\n

And although not brewed, a group of tunnelers, after nine months of digging, took a wrong turn and emerged, fortuitously, in the castle’s wine cellar, enjoying 137 bottles, about four and a half bottles per person.

\n\n

Article: In 1940 British POWs accidentally tunneled into a Nazi colonel's wine cellar and proceeded to drink everything they saw.

\n", "OwnerUserId": "6391", "LastActivityDate": "2018-07-29T17:10:45.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7410"}} +{ "Id": "7410", "PostTypeId": "2", "ParentId": "7408", "CreationDate": "2018-07-30T05:14:47.480", "Score": "5", "Body": "

According to this CNBC article:

\n\n
\n

Tequila is only produced inside the Mexican state of Jalisco and in some municipalities in Guanajuato, Michoacan, Nayarit, and Tamaulipas. Any agave-based distilled spirit outside those regions are called \"mezcal.\" Other subtypes of mezcal you might see are Bacanora, Sotol and Raicilla. In other words, all tequilas are mezcals, but not all mezcals are tequila. (Just like all bourbons are whiskeys but not all whiskeys are bourbons. )

\n
\n", "OwnerUserId": "7965", "LastActivityDate": "2018-07-30T05:14:47.480", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7411"}} +{ "Id": "7411", "PostTypeId": "2", "ParentId": "7408", "CreationDate": "2018-08-02T01:47:10.933", "Score": "3", "Body": "

According to the article \"Tequila industry taking shape in South Africa\" when sold in South Africa its called \"Agave Spirit\"

\n\n
\n

all Tequilas are agave spirits, but like Champagne or Port there is a\n protection of the Appellation of Origin in order to call it “Tequila”,\n so South African producers are forced to label their drink as Agave\n Spirit and not Tequila.

\n
\n\n

Thanks, @farmersteve for the comment.

\n", "OwnerUserId": "5479", "LastEditorUserId": "5479", "LastEditDate": "2018-08-03T01:06:03.640", "LastActivityDate": "2018-08-03T01:06:03.640", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7412"}} +{ "Id": "7412", "PostTypeId": "1", "CreationDate": "2018-08-02T07:03:03.460", "Score": "10", "ViewCount": "18009", "Body": "

We have lots of Blonde beer which expired last year and some expired May this year.

\n\n

Is it still safe to drink?

\n", "OwnerUserId": "7974", "LastEditorUserId": "9887", "LastEditDate": "2020-01-06T11:44:00.383", "LastActivityDate": "2021-07-25T00:56:52.140", "Title": "Beer expired last year and this year", "Tags": "health preservation", "AnswerCount": "6", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7413"}} +{ "Id": "7413", "PostTypeId": "2", "ParentId": "7412", "CreationDate": "2018-08-02T07:26:18.090", "Score": "6", "Body": "

From experience the only way you will be able to know it to crack one open and give it a try you they will be safe to drink.

\n\n

Of course if you try them and it tastes funny (e.g sour/bitter) or is not what expected in terms of carbonation (don't know what blond beer you are talking about to say) then just pour away there is no harm in giving it a try

\n\n

Overall the only way to see if it is ok is to pour one and give it a taste

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2018-08-02T14:13:49.490", "LastActivityDate": "2018-08-02T14:13:49.490", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7414"}} +{ "Id": "7414", "PostTypeId": "2", "ParentId": "7412", "CreationDate": "2018-08-02T17:06:53.763", "Score": "1", "Body": "

Yes it's safe to drink. There is nothing in there that wasn't in there already. If it was stored properly it should show some signs of aging which can be a good thing if you are into that. The oldest beer I ever drank was a 9 year old doppelbock and it was still pretty darn good. I have had beers turn to malt vinegar after a few years. Just open it and taste it!

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-02-27T14:51:48.477", "LastActivityDate": "2019-02-27T14:51:48.477", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7415"}} +{ "Id": "7415", "PostTypeId": "1", "AcceptedAnswerId": "7417", "CreationDate": "2018-08-02T22:05:41.010", "Score": "7", "ViewCount": "5125", "Body": "

I have heard the term inverse or inverted simple syrup used in cocktail recipes, but I haven't been able to figure out how this is different from \"regular\" simple syrup. For example, the wikipedia page makes no mention of uninverted simple syrup.

\n\n

Are these just longer names for regular simple syrup (sugar melted in water)?

\n", "OwnerUserId": "7977", "LastEditorUserId": "5064", "LastEditDate": "2018-08-02T23:06:19.163", "LastActivityDate": "2019-02-01T23:01:14.987", "Title": "What is the difference between inverted simple syrup and simple syrup (if any)", "Tags": "ingredients cocktails", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7416"}} +{ "Id": "7416", "PostTypeId": "1", "AcceptedAnswerId": "7420", "CreationDate": "2018-08-03T12:21:25.420", "Score": "3", "ViewCount": "1087", "Body": "

I heard something about the moonshine called “rakija“, which is strongly represented in the Balkans. So my questions are:

\n\n
    \n
  • What kinds of rakija do exist?
  • \n
  • How are the made?
  • \n
  • How strong is rakija (how much alcohol does it have)?
  • \n
  • If someone have any experiences drinking rakija, you may include it in your answer (optional).
  • \n
\n", "OwnerUserId": "7980", "LastEditorUserId": "7980", "LastEditDate": "2018-08-03T13:40:07.997", "LastActivityDate": "2019-06-29T23:15:06.640", "Title": "Rakija – a moonshine from the Balkan", "Tags": "liquor alcohol", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7417"}} +{ "Id": "7417", "PostTypeId": "2", "ParentId": "7415", "CreationDate": "2018-08-03T12:33:38.717", "Score": "7", "Body": "

I was surprised at how tough it was to track down anything that clearly mentioned both.

\n\n

Firstly, from several recipes, including this one, it seems that simple syrup is made, as you might expect, by dissolving sugar into an equal amount of water and then cooling.

\n\n

When it comes to invert sugar, recipes seem to call for more sugar and possibly an acid, be it cream of tartar or citric acid (sometimes via lemon juice) to help catalyze the inversion of the sugar. On top of that, they often call for boiling until a temperature of 236 °F (114 °C). This process effectively breaks downs the bond between the glucose and fructose molecules that make up the sucrose.

\n\n

This page explains that water activity (correlated with spoilage) is better minimized by monosaccharides, while simple syrup generally only contains sucrose, a disaccharide. It then goes on to describe a method for making \"partially inverted sugar syrup\" and calls either for acid or more sugar, as well as boiling for 20 minutes. Since this process is less exact and does less to force the system to break down the sucrose it's easy to see why it's \"partially\" inverting the sugar.

\n\n

So to directly answer your question, there is difference. Simple syrup is effectively just sugar (sucrose) dissolved in water, while invert sugar/syrup is dissolved sugar that has been processed to break it down into its component sugars (glucose and fructose). Invert sugar should be slightly sweeter, thicker, and have a longer shelf-life.

\n", "OwnerUserId": "4935", "LastEditorUserId": "4935", "LastEditDate": "2019-02-01T23:01:14.987", "LastActivityDate": "2019-02-01T23:01:14.987", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7419"}} +{ "Id": "7419", "PostTypeId": "1", "CreationDate": "2018-08-05T05:21:16.217", "Score": "4", "ViewCount": "75", "Body": "

I was given a few bottles of 14 year old champagne. The first bottle was flat but doesn't smell off. Can I use it to make vinegar?

\n", "OwnerUserId": "7986", "LastEditorUserId": "5064", "LastEditDate": "2018-08-05T13:31:31.117", "LastActivityDate": "2018-08-05T15:51:27.803", "Title": "Can old flat champagne be used for vinegar?", "Tags": "champagne", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7420"}} +{ "Id": "7420", "PostTypeId": "2", "ParentId": "7416", "CreationDate": "2018-08-05T14:46:16.247", "Score": "5", "Body": "

Rakia or Rakija is the collective term for fruit brandy popular in the Balkans.

\n\n

Wikipedia has this to say about Rakija:

\n\n
\n

Rakia or Rakija is the collective term for fruit brandy popular in the Balkans. The alcohol content of rakia is normally 40% ABV, but home-produced rakia can be stronger (typically 50%).

\n \n

Common flavours are šljivovica, produced from plums, kajsija, produced from apricots, or grozdova/lozova in Bulgaria (raki rrushi in Albania), or \"lozovača\" or \"komovica\" in Croatia, Montenegro, Serbia and Bosnia produced from grapes, the same as \"Zivania\" in Cyprus. Fruits less commonly used are peaches, apples, pears, cherries, figs, blackberries, and quince. Similar spirits are produced in Romania, Moldova, Poland, Ukraine, Czech Republic, Slovakia, Russia and the Caucasus. In Albania, rakia is most commonly made out of grapes in mild climate regions and out of plums (and sometimes out of mulberry or walnuts) in colder climate areas.

\n \n

Plum and grape rakia are sometimes mixed with other ingredients, such as herbs, honey, sour cherries and walnuts, after distillation. A popular home-made variant in Montenegro, Bosnia and Herzegovina, Bulgaria, Macedonia, and Serbia is rakia produced from mixed fruits. In the Istrian and Dalmatian regions of Croatia, rakija tends to be home-made exclusively from grapes, where the drink is also known locally as trapa or grappa (the latter name also being used in Italy).

\n \n

Normally, rakia is colorless, unless herbs or other ingredients are added. Some types of rakia are kept in wooden barrels (oak or mulberry) for extra aroma and a golden color.

\n \n

It is supposed to be drunk from special small glasses which hold from 30 to 50 ml.

\n \n

Greek ouzo (from grape) and tsipouro (from pomace), Turkish rakı (from sun dried grapes) and arak in Lebanon and Levant region differ from rakia as they are redistilled with some herbs (commonly anise). Some tsipouro in Greece is made without anise in the same manner as pomace rakia (or pomace brandy). \"Boğma rakı\" in Turkey (common name of the domestic raki which is produced at homes and villages) is similar to rakia in the Balkans.

\n
\n\n

Slivovitz is a fruit brandy made from damson plums. The primary producers are Bosnia, Croatia, Czech Republic, Hungary, Poland, Romania, Serbia and Slovakia. The usual proof of private-produced slivovice is over 50% of alcohol in the final product, commercially available mass-produced slivovice is proofed less.

\n\n
\n

Šljivovica is the national drink of Serbia in domestic production for centuries, and plum is the national fruit. Šljivovica has a Protected Designation of Origin (PDO). Plum and its products are of great importance to Serbs and are a part of numerous traditional customs. A Serbian meal usually starts or ends with plum products and Šljivovica is served as an apéritif. A saying goes that the best place to build a house is where a plum tree grows the best. Traditionally, Šljivovica (commonly referred to as \"rakija\") is connected to a Serbian culture as a drink used at all important rites of passage (birth, baptism, military service, marriage, death, etc.). It is used in the Serbian Orthodox patron saint celebration, slava. It is used in numerous folk remedies, and is given certain degree of respect above all other alcoholic drinks. The fertile region of Šumadija in central Serbia is particularly known for its plums and Šljivovica. In 2004, over 400 000 litres of Šljivovica was produced in Serbia.

\n
\n\n

Here follows a few sources on how to make some Raki (Brandy).

\n\n

Making Rakija – The Basics:

\n\n
\n

Making rakija involves five main stages: harvest, preparation for fermentation, fermentation, distillation and aging & storage.

\n
\n\n

How to Make Rakia (Ракия):

\n\n
\n
    \n
  1. Select a Fruit. Rakia is typically made from fruit, so the first thing you need to do is choose one. Grape and plum rakias are the two most traditional varieties, but Bulgarians make rakia out of whatever is readily available and cheap – apple, pear, peach, apricot, and cherry rakias are all popular in certain parts of the country. Other varieties are made less frequently.

  2. \n
  3. Pick and Gather the Fruit. Once you’ve selected a fruit, you have to “pick” it. Picking a fruit is often as simple as going to the market and buying as much of it as you need. But grape vines and fruit trees grow aplenty in Bulgaria, and most Bulgarians hand-pick the fruit they use to make rakia. With grapes, this means waiting until the right time in fall and bringing together friends and family for a grape-picking weekend. With other fruits, Bulgarians typically wait until the fruit is slightly overripe and then they shake the fruit out of the tree by vigorously shaking the branches and/or swatting at the branches with a long stick. Only the fruit ripe enough to make rakia falls out of the tree, after which it is all collected.

  4. \n
  5. Make Juice. Once you’ve collected the fruit, you mash it up, make juice, and dump it into a large barrel. The mashing process can be done by machine or the old-fashioned way – by foot.

  6. \n
  7. Measure the Sugar Content and Add Dissolved Sugar as Necessary. After the fruit has been mashed into juice, you measure the concentration of sugar in the juice with a saccharometer (захаромер). An ideal reading for making rakia is 23°, and a sugary water solution of approximately three pounds of sugar to every gallon of water should be added to the mash until the ideal sugar level is attained.

  8. \n
  9. Stir the Juice and Allow it to Ferment. The fruit juice will settle to the bottom, and the fruit skins will harden and float to the top of the mash. To make sure the juice ferments, it is necessary to push the fruit skins down and stir the juice once daily. The amount of time for proper fermentation depends in large part on the weather, but fermentation generally takes around three weeks. You might notice that thousands upon thousands of fruit flies are attracted to the mash. Don’t fret. Believe it or not, fruit flies assist greatly in the fermentation process. As a matter of fact, the Bulgarian word for fruit fly, муха-винарка, takes its name from the Bulgarian word for wine, вино, and literally translates to wine fly. Not surprisingly, more than one Bulgarian friend of mine hopes someday to be reincarnated as a муха-винарка.

  10. \n
  11. Distill the Fermented Juice. Distillation day is one of the most enjoyable days of the entire process; it is the day when rakia begins to flow. There isn’t much to the distillation process, although some people do a double distillation while others only do a single distillation. Regardless, the initial steps are the same. The mash is dumped into a still, which is sealed with a flour mixture to insure the still is air tight, and then a fire is lit under the still and distillation commences. Then you sit and wait. It typically takes about an hour before the first alcohol fumes begin to separate from the mash. This steam then makes its way through the sealed pipes before working its way through a cooling condenser and emerging as rakia. As the alcohol collects, measurements are taken. When I made rakia, we did a double distillation. On the first distillation, our rakia started with an alcohol content of around 60%, and we stopped the distillation when the alcohol content dropped to 20%. We then emptied and cleaned the still, dumped the alcohol we had produced into the still, and started a second distillation. On the second distillation, our rakia started with an alcohol content of 75%, and we stopped the distillation when the alcohol content dropped to 40%. The finished product was a potent 124 proof rakia (62% alcohol).

  12. \n
\n \n

\"Distillation

\n \n
    \n
  1. Age the Rakia. Once distillation is complete, your rakia is ready to drink. Some Bulgarians do nothing more, but most prefer to age and dilute their rakia to make it more pleasurable to drink. Rakia may be diluted by adding distilled water until the desired alcohol percentage is attained. It may be aged as long and in whatever manner you see fit, but most Bulgarians only age their rakia long enough to give it some color and a little taste. We aged our rakia in oak chips for a month and added distilled water to make it more drinkable at 90 proof (45% alcohol).

  2. \n
  3. Enjoy. Of course, the final step of the rakia making process is drinking it and sharing it with friends. Хайде наздраве!

  4. \n
\n
\n\n

How to Make Homemade Brandy (with pictures).

\n\n

The Making of Traditional Croatian Rakia Brandy (YouTube video).

\n\n

Making Rakia with a Bulgarian Master (Youtube Video).

\n\n

I once tried some quince brandy (Srpska Trojka Quince Brandy) and although I found it a great drink, I also admit that because of the quince one has to have an acquired taste for it. Plum Rakia would definitely be my next one to try.

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2019-06-29T23:15:06.640", "LastActivityDate": "2019-06-29T23:15:06.640", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7421"}} +{ "Id": "7421", "PostTypeId": "2", "ParentId": "7419", "CreationDate": "2018-08-05T15:51:27.803", "Score": "2", "Body": "

Yes, pretty much any old wine, if it hasn't already turned into vinegar, can be made into vinegar. The best is to start with clean wine, but if it already tastes kind of funky just push it towards the final goal of becoming vinegar. You can let this happen naturally, or you can buy vinegar \"mother\".

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-08-05T15:51:27.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7422"}} +{ "Id": "7422", "PostTypeId": "2", "ParentId": "7408", "CreationDate": "2018-08-06T21:09:26.413", "Score": "4", "Body": "

What is Tequila when its not from Mexico?

\n\n
\n

Tequila is a regional distilled beverage and type of alcoholic drink made from the blue agave plant, primarily in the area surrounding the city of Tequila, 65 km (40 mi) northwest of Guadalajara, and in the highlands (Los Altos) of the central western Mexican state of Jalisco. Aside from differences in region of origin, tequila is a type of mescal (and the regions of production of the two drinks are overlapping). The distinction is that tequila must use only blue agave plants rather than any type of agave. Tequila is commonly served neat in Mexico and as a shot with salt and lime across the rest of the world. - Tequila (Wikipedia)

\n
\n\n

Within Mexico tequila terms are somewhat varied as follows:

\n\n
\n

What’s The Difference: Tequila, Mezcal, Bacanora, Raicilla, Sotol?

\n \n

A wide range of spirits can be distilled from agaves. Here’s a quick rundown of that spectrum and a look at what defines each different category of agave spirits [from Mexico]:

\n \n

Tequila

\n \n

Tequila is a type of mezcal produced under strict regulations as to how and where it can be made. Tequila is fermented and distilled from a single type of agave plant, Agave tequilana Weber blue. Tequila is not smoky because the agave hearts are steamed or kilned during production; it can only be produced in Jalisco, and designated areas in four other Mexican states.

\n \n

The best tequilas are 100% blue agave, which is noted on the label. Distinctions are often made between tequila made from blue agave grown in highland regions, which tend to be fruitier, and from lowlands, which are earthier.

\n \n

Mezcal

\n \n

Mezcal is the over-arching category of Mexican spirits fermented and distilled from several varieties of the agave plant. It is produced all over Mexico under various names and designations, including tequila.

\n \n

Bottles labeled “mezcal” are usually from the state of Oaxaca and often have a smoky flavor because during production the agave hearts are roasted in rock-lined pits fired by mesquite.

\n \n

Bacanora

\n \n

Named for the eponymous town in Sonora, this mezcal variant is made from wild plants of agave Pacifica. Bacanora is often lighter and less smoky than most mezcals, even though the agaves are also pit roasted.

\n \n

Raicilla

\n \n

Like tequila, raicilla is made in Jalisco state; unlike tequila, it is made from two varieties of agave—lechuguilla and puta de mula. Raicilla tends to be sweeter and fruitier than most other mezcals.

\n \n

Sotol

\n \n

Although a gringo might mistake it for agave, sotol is made from another succulent plant called Desert Spoon. Produced mainly in the Mexican states of Chihuahua, Durango and Coahuila, the process is similar to mezcal, with roasting of the hearts of Desert Spoon in volcanic rock-lined pits. Flavor varies according to the terroir, say aficionados; predominately herbal notes, as well as eucalyptus, pepper and cocoa, with lighter smoke accents.

\n
\n\n

Outside of Mexico Tequila and Mezcal are known as Agava in South Africa.

\n\n
\n

Agava was also available in bottled form. Agave Distillers claimed to be moving between 12,000 and 15,000 cases a month at its peak. The bottled form has been sold in the LCBO, in Canada.

\n
\n\n

Agava is labeled an agave product and not a tequila product.

\n\n
\n

It should be noted that all Tequilas are agave spirits, but like Champagne or Port there is a protection of the Appellation of Origin in order to call it “Tequila”, so South African producers are forced to label their drink as Agave Spirit and not Tequila. - Tequila industry taking shape in South Africa

\n
\n\n

\"Agava\"

\n\n

In California, some are trying to name their agave product “El Ladron,\"which means “the thief”. This too is not to be known as a tequila product, but as an agave spirit product.

\n\n

Before closing my answer, I would to mention that the first agave beverage that was ever fermented is known as Pulque.

\n\n
\n

This sweet beverage has a long history in Mexico. Before mezcal or tequila, there was pulque, the first fermented agave beverage. Murals that date as far back as 200 A.D. in Cholula, Mexico show villagers drinking pulque. While it’s relatively low in alcohol and more like an agave beer, it was the agave beverage that started it all.

\n \n

Pulque is a product of the sap of the heart of agave. Rather than being distilled like mezcal or tequila, it’s fermented from the \"honey water\" of the plant. This sacred beverage has milky like appearance and is sweet in flavor. If you want a taste of Mexico, then try the fermented agave beverage that started it all. - From Tequila to Sotol, Your Guide to the Agave Spirits of Mexico

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-08-08T11:52:59.730", "LastActivityDate": "2018-08-08T11:52:59.730", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7423"}} +{ "Id": "7423", "PostTypeId": "1", "CreationDate": "2018-08-07T18:54:00.717", "Score": "4", "ViewCount": "368", "Body": "

I was going through a brochure in brewing and it mentioned Single Turn, Double Turn and Triple turn brewing. However, it did not mention what those mean. I would really appreciate if anyone with knowledge of this enlighten me on this.

\n", "OwnerUserId": "7991", "LastActivityDate": "2018-12-19T15:28:38.030", "Title": "What does Single Turn, Double Turn and Triple Turn mean in brewing?", "Tags": "brewing breweries craft-beers", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7424"}} +{ "Id": "7424", "PostTypeId": "1", "AcceptedAnswerId": "7425", "CreationDate": "2018-08-09T11:03:28.823", "Score": "4", "ViewCount": "151", "Body": "

I have had much success making Elder Flower champagne in the past by adding the flower heads to large container of water, add sugar and little lemon for taste and leave for 2-4 weeks to ferment before filtering and bottling up in screw top bottles to get fermentation in the bottle and add some fizz to the drink.

\n\n

I have always used the natural yeast that occur on the elder flower and produce a 4-5% alcoholic drink. Just wondering if anyone had any advice on using any store bought yeast for obtaining higher % of alcohol and what side effects this might have on the taste etc.

\n\n

Many thanks

\n", "OwnerUserId": "7935", "LastActivityDate": "2018-08-11T15:59:38.287", "Title": "Elder flower champagne best to use natural yeast or add a wine yeast?", "Tags": "alcohol-level yeast home-brew champagne", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7425"}} +{ "Id": "7425", "PostTypeId": "2", "ParentId": "7424", "CreationDate": "2018-08-09T15:17:33.850", "Score": "3", "Body": "

I will try to answer your questions to the best of my ability.

\n\n

Your description of your earlier wine makes me question you: \nHave you used a hydrometer to calculate the alcohol percentage of your earlier wines?

\n\n

If your wine tasted sweet after fermentation, it means your wine wasn't finished fermenting. If you bottle the wine and let it stay in room temperature with unfermented wine, then you may create bottle bombs.

\n\n

Comparison between wild yeast and adding wine yeast:

\n\n
    \n
  • Duration of Fermentation: Naturally occurring wild yeast will use longer time than wine yeast. Adding Wine yeast is a lot faster, and will substantially reduce the fermentation time.
  • \n
  • Taste: The taste is subjective, where wine yeast may create a safer and cleaner taste, meanwhile wild yeast and other bacteria may produce 'unwanted flavors' or 'wanted flavors'. Everything depends on what you want. I don't know enough about the specific tastes to tell you here.
  • \n
  • Alcohol percentage: I recommend using a hydrometer before and after fermentation to calculate the alcohol percentage of your wine. Adding wine yeast will eat up all the sugar in your wine very fast. 1-2 weeks, while wild yeast may use several months. Everything depends on how much yeast is present in the fermentation, temperature and how much sugar is in the unfermented wine.
  • \n
\n\n

Wild yeast takes time to grow into a culture which can eat up all the sugar, where wine yeast usually already has ~1 billion cells in the package.

\n", "OwnerUserId": "7954", "LastEditorUserId": "7954", "LastEditDate": "2018-08-11T15:59:38.287", "LastActivityDate": "2018-08-11T15:59:38.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7426"}} +{ "Id": "7426", "PostTypeId": "2", "ParentId": "7412", "CreationDate": "2018-08-09T15:27:11.000", "Score": "9", "Body": "

Most likely - Yes, it is safe to drink it.

\n\n

Your beer is almost guaranteed to be safe to drink for humans. No pathogens like alcoholic beverages. If you have bacteria in your beer, you will just have another style of beer (see Sour Beer).

\n\n

Your beer could taste bad, but 1 year over expiration date is usually nothing serious. A lot depends on the type of beer + alcohol percentage + earlier exposure to oxygen + present bacteria in the beer.

\n\n

When I brew Blondes, wheat beer or beers with belgian yeast, I'd rather have them condition in the bottle for several months before I drink them. Maybe your beer has become even better and more conditioned.

\n\n

Good luck tasting!

\n", "OwnerUserId": "7954", "LastEditorUserId": "7954", "LastEditDate": "2018-08-11T18:32:51.290", "LastActivityDate": "2018-08-11T18:32:51.290", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7427"}} +{ "Id": "7427", "PostTypeId": "2", "ParentId": "50", "CreationDate": "2018-08-09T15:38:38.173", "Score": "0", "Body": "

Fluctuating temperatures cause oxygenation of your beverage, but only over one or several years. This may spoil your beer, but not \"skunk\" it.

\n\n

I have read that wine in wine cellars at around 14-16 degrees celsius last the longest, and that unstable and fluctuating temperatures over many years will spoil your wine by oxygenation. The same would apply for all alcoholic beverages.

\n", "OwnerUserId": "7954", "LastActivityDate": "2018-08-09T15:38:38.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7428"}} +{ "Id": "7428", "PostTypeId": "1", "CreationDate": "2018-08-09T19:49:46.350", "Score": "6", "ViewCount": "671", "Body": "

I enjoy drinking scotch, and I am about to have my first child. I would like to buy a bottle of scotch that has the year my child is born printed on it, and then give them the scotch as a gift when they turn 30 or so. I am well aware that the scotch won't age the same in a bottle as it would in a cask, but the idea is that I will be able to give my child something that I have held for them for 30 years. I am aware that I could find a special one-time release of some sort, but I am looking for a brand of scotch that routinely prints the year it was released somewhere on the bottle because when I have my second child a few years down the road, I would like to do the same thing for them, and I thought it would be nice if they were the same scotch. The closest thing that I can find is Booker's Small Batch Bourbon from Jim Beam. They do a few special releases a year, and the release year is printed on every bottle. If I cannot find a brand of scotch that does something similar I will just go with the Booker's. However, I thought I would ask this question here in case anyone is familiar with the sort of thing I am looking for. It would also be nice if it was a speyside or highland scotch, but that is not really necessary. I thank anyone in advance for taking the time to read this, and hopefully being able to point me in the right direction.

\n\n

Best regards,\nJosh

\n", "OwnerUserId": "7995", "LastActivityDate": "2018-11-06T00:48:33.500", "Title": "A brand of scotch that routinely prints the release year on the bottle?", "Tags": "whiskey scotch production", "AnswerCount": "5", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7429"}} +{ "Id": "7429", "PostTypeId": "2", "ParentId": "7428", "CreationDate": "2018-08-10T16:06:19.063", "Score": "1", "Body": "

I think there are two ways to look at this. Some distilleries do put the date when they bottled the whisky/scotch it will just take some leg work. Even cheap Old Turkey has a bottled date stamped on the label

\n\n

Then the other way is to do some reverse math. There is such a thing as vintage whisky. Distilled and put into barrels in say 1990 and aged 25 years. So it would be bottled in the year 2015. Obviously you might have to wait until they bottle it the year someone is born. You can see some of this at the Glenfiddich website (unfortunately they have an \"are you old enough question\" to get past).

\n\n

The last option is to just buy a bottle of 20 year old whisky the year someone turns 20 (or whatever year you want) and just give it to them then when it's released by the distillery. Holding on to a bottle for 20 years or so can leave it vulnerable to all types of accidents. Don't risk it and just buy the bottle when they turn 21 or whatever age you want to bestow it upon them.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-08-10T16:06:19.063", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7430"}} +{ "Id": "7430", "PostTypeId": "1", "CreationDate": "2018-08-11T18:48:21.547", "Score": "0", "ViewCount": "89", "Body": "

I want to brew beer and I wonder which temperature I should ferment it at?\nI want to brew ales like IPA and Pale Ale.

\n\n

What difference does different fermentation temperatures have on the beer? Are there different temperatures needed when brewing different kinds of beers with different yeasts?

\n", "OwnerUserId": "7954", "LastActivityDate": "2018-09-18T05:02:50.303", "Title": "Brewing: Which temperature should I ferment ale beer at?", "Tags": "brewing specialty-beers german-beers craft-beers home-brew", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7432"}} +{ "Id": "7432", "PostTypeId": "1", "CreationDate": "2018-08-11T18:57:15.147", "Score": "7", "ViewCount": "229", "Body": "

I am wondering because I want to brew these styles of beer myself.

\n", "OwnerUserId": "7954", "LastActivityDate": "2018-10-19T20:56:22.110", "Title": "What are the differences between Pale Ale (PA), India Pale Ale (IPA) and American Pale Ale (APA)?", "Tags": "brewing specialty-beers craft-beers hops", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7434"}} +{ "Id": "7434", "PostTypeId": "1", "AcceptedAnswerId": "7436", "CreationDate": "2018-08-12T19:07:37.753", "Score": "4", "ViewCount": "109", "Body": "

I received a very large bottle of Sake, but have not opened it because I am sure I can't drink it all quickly. Once I open it how long can I expect it to last, and what's the best way to keep it good for the longest possible.

\n\n

What temperature should it be stored at, and what's the best temperate when drinking it?

\n", "OwnerUserId": "8002", "LastEditorUserId": "5064", "LastEditDate": "2018-08-12T23:21:44.707", "LastActivityDate": "2018-08-14T18:07:26.060", "Title": "How long does an open bottle of Sake last?", "Tags": "storage temperature sake", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7436"}} +{ "Id": "7436", "PostTypeId": "2", "ParentId": "7434", "CreationDate": "2018-08-14T18:07:26.060", "Score": "1", "Body": "

Split it into small aluminum containers and store it in the fridge. Fill it to the top so there is very little air in the container. You can find kid sized 12 oz water bottles on sell for just a few bucks. It should last weeks but best used in one week.

\n\n

There is also suction pumps and nitrogen.

\n\n

Temperature for drinking is personal taste.

\n", "OwnerUserId": "4903", "LastActivityDate": "2018-08-14T18:07:26.060", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7437"}} +{ "Id": "7437", "PostTypeId": "1", "CreationDate": "2018-08-15T12:55:12.803", "Score": "7", "ViewCount": "966", "Body": "

Mandatory disclaimer: I'm not asking for health related advices, this question is just out of pure curiosity.

\n\n

I drink the occasional beer, wine, or whatever other alcoholic drinks: no issues with that, not getting drunk with just a beer, etc. etc. But...since I have memory, a single red beer can put me under the table.

\n\n

From the next day. (yeah, not the same day)

\n\n

With lot of stomach and intestinal pain and \"funny\" side effects.

\n\n

And a few days needed to recover.

\n\n

Now, it's not a big deal: on my list of things to avoid \"Red beer\" has been put in the top 5, and problem solved. It doesn't happen with 100% of the reds, but at 95% occurrence I just play safe...plus I prefer dark beers anyway :-D

\n\n

Only, exactly one week ago I got the same amazing effects, but worst, and I'm still halfway from full recovery...from a bock. Ok, \"bock\" is a pretty wide definition, but while I'm not an expert on beers I've always been pretty certain that if I order a bock I never feel bad the next day.

\n\n

So now I'm extremely curious to understand what it may be to knock me down this way, but as I said I'm no expert and that's the reason I'm asking here.

\n\n

Question: What 95% of red beers and a Scheyern Kloster Doppelbock Dunkel (Poculator) have in common, in terms of ingredients and/or preparation?

\n\n

(bonus: I get the same effect with some Scotch)

\n", "OwnerUserId": "8015", "LastEditorUserId": "5064", "LastEditDate": "2018-12-21T02:52:09.577", "LastActivityDate": "2018-12-28T01:53:00.173", "Title": "What ingredient may I be allergic to in certain beers?", "Tags": "ingredients health", "AnswerCount": "3", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7438"}} +{ "Id": "7438", "PostTypeId": "2", "ParentId": "7428", "CreationDate": "2018-08-15T22:32:15.717", "Score": "1", "Body": "

Just to extend farmersteves answer...There are quite a few that produce limited releases annually. These tend to be limited releases produced either by a new brand or established distilleries but they are usually limited to smaller cask numbers. As they are limited I would expect you to have to pay a bit more, many sell out quickly from shops so you may have to use an Online Auction.

\n\n

The following auction is highly regarded and this search (simply for the year 2018) will contain many of this years release. Note in these cases 2018 is the year it was bottled, the age determined by when the cask was put down.

\n\n

Whisky Auctioneer search for 2018 whiskies

\n\n

Just yesterday MacAllan released one limited to a few hundred but very difficult to get and managed very poorly by them if I say so myself...

\n\n

Finally. I am also aware some distilleries let you buy casks to bottle at a later date, or alternatively buy a bottle from a yet to be bottled cask. If you do it this year you could request the bottling at a specific milestone for your child (I know people who have done this).

\n", "OwnerUserId": "7282", "LastActivityDate": "2018-08-15T22:32:15.717", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7439"}} +{ "Id": "7439", "PostTypeId": "1", "CreationDate": "2018-08-16T15:12:46.147", "Score": "-2", "ViewCount": "248", "Body": "

Just visiting the good old UK, and discover that gin is so expensive - what and where can I buy a cheap gin in the UK, are there any online stores? Yes I have looked but to no avail. Thanks guys.....

\n", "OwnerUserId": "6366", "LastActivityDate": "2019-06-25T16:26:52.083", "Title": "Cheapest Gin in the UK?", "Tags": "spirits gin online", "AnswerCount": "4", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7440"}} +{ "Id": "7440", "PostTypeId": "1", "CreationDate": "2018-08-16T18:19:41.033", "Score": "2", "ViewCount": "158", "Body": "

I'm working on recipe development for a Paw Paw 'brandy' and have had a slight blue cast to the product. Can anyone weigh in on the outcome? Thank you

\n", "OwnerUserId": "8019", "LastActivityDate": "2018-08-16T18:19:41.033", "Title": "Paw Paw 'Brandy' with slight blue cast", "Tags": "spirits", "AnswerCount": "0", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7441"}} +{ "Id": "7441", "PostTypeId": "2", "ParentId": "7432", "CreationDate": "2018-08-17T23:56:55.323", "Score": "2", "Body": "

From what I understand, pale ale is not as hoppy as India pale ale. So, quantity of hops in and IBU of IPA’s will be generally higher compared to pale ales. American pale ales use American hops instead of traditionally popular European hops.

\n", "OwnerUserId": "8021", "LastEditorUserId": "8021", "LastEditDate": "2018-10-19T20:56:22.110", "LastActivityDate": "2018-10-19T20:56:22.110", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7442"}} +{ "Id": "7442", "PostTypeId": "2", "ParentId": "7428", "CreationDate": "2018-08-18T23:33:02.470", "Score": "0", "Body": "

I just looked at several of my bottles, and the only one having a date on the bottle was Ardbeg and it was stamped on the bottle not on the label. You should look at smaller distilleries as they would use it as a marketing gimmick.

\n\n

An alternative would be to buy a bottle of Laphroaig which allows you to register a square foot plot of land at the distillery and get a certificate for it, which includes the date of registration.

\n\n

If you expand your horizons, many bourbon distilleries in the US either batch or date their bottles by hand. Bean-ball Bourbon from Cooperstown does, others such as Hillrock give a batch number, and Hudson Valley also does batch numbers by hand.

\n", "OwnerUserId": "8023", "LastActivityDate": "2018-08-18T23:33:02.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7443"}} +{ "Id": "7443", "PostTypeId": "2", "ParentId": "6490", "CreationDate": "2018-08-18T23:41:22.590", "Score": "0", "Body": "

I agree with most of the comments above, especially about Ralfy on youtube. Also via http://ralfy.com/

\n\n

I have seen Erdradour in the US, but not the Caledonia. I got my bottle in Pilochry at the distillery. Great tour, worth the trip if you are in the Highlands.

\n\n

Other than taking a gamble once in a while, find the ambassador of the brand, and see what events they have in a larger city near you, and make the trip. Another option is to look at some of the social organizations near you. Some of them have fund raisers that include tastings of several brands.

\n", "OwnerUserId": "8023", "LastActivityDate": "2018-08-18T23:41:22.590", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7447"}} +{ "Id": "7447", "PostTypeId": "1", "CreationDate": "2018-08-19T09:39:39.537", "Score": "0", "ViewCount": "40", "Body": "

Which good things happen to a wine if you age it? Are there any wines you should age, and some you shouldn't age?

\n", "OwnerUserId": "7954", "LastActivityDate": "2018-08-31T22:04:38.877", "Title": "Bottle conditioning: What good things can aging to do a wine?", "Tags": "wine red-wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7448"}} +{ "Id": "7448", "PostTypeId": "1", "CreationDate": "2018-08-19T09:44:42.243", "Score": "2", "ViewCount": "134", "Body": "

I have a bottle that has been standing opened in room temperature for a while, and has become a bit sour.

\n\n
\n

How do I make it into vinegar?

\n \n

How long time does it take?

\n \n

Any precautions/instructions I should follow?

\n \n

Will the process affect the alcohol level?

\n
\n", "OwnerUserId": "7954", "LastEditorUserId": "5064", "LastEditDate": "2018-09-08T13:37:09.100", "LastActivityDate": "2018-09-08T13:37:09.100", "Title": "How do I make red wine vinegar from red wine (or clear vinegar from white wine)?", "Tags": "wine red-wine alcohol", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7449"}} +{ "Id": "7449", "PostTypeId": "2", "ParentId": "7428", "CreationDate": "2018-08-20T12:40:07.747", "Score": "0", "Body": "

I've seen several scotches that are labeled \"From the harvest of...\" a particular year, if you want the birth year to correspond to the production year. I got my kids vintage ports since they 1) age well nearly indefinitely if properly stored, and 2) everybody can tolerate a little glass of port even if they don't like alcohol.

\n", "OwnerUserId": "8027", "LastActivityDate": "2018-08-20T12:40:07.747", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7450"}} +{ "Id": "7450", "PostTypeId": "1", "AcceptedAnswerId": "7451", "CreationDate": "2018-08-21T08:49:29.350", "Score": "7", "ViewCount": "32023", "Body": "

All these taste and look pretty similar. What is the difference between them?

\n", "OwnerUserId": "7954", "LastActivityDate": "2018-08-28T17:22:25.100", "Title": "What is the difference between Cognac, Brandy, Bourbon, Scotch and Whiskey?", "Tags": "whiskey spirits liquor scotch bourbon", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7451"}} +{ "Id": "7451", "PostTypeId": "2", "ParentId": "7450", "CreationDate": "2018-08-21T12:23:14.320", "Score": "12", "Body": "

Bourbon and scotch are types of whiskey and cognac is a variety of brandy.

\n\n

Bourbon is a type of whiskey, whereas not all whiskies are bourbons! The main difference between scotch and whisky is geographic: they are made in Scotland.

\n\n

Bourbon is a type of whiskey, whereas not all whiskies are bourbons!

\n\n
\n

Bourbon is a type of whiskey that gets its name from Bourbon County, Kentucky, where it originated. Bourbon tends to be amber-colored, and a little sweeter and heavier in texture than other whiskeys.

\n
\n\n

What is Scotch?

\n\n
\n

The main difference between scotch and whisky is geographic, but also ingredients and spellings. Scotch is whisky made in Scotland, while bourbon is whiskey made in the U.S.A, generally Kentucky. Scotch is made mostly from malted barley, while bourbon is distilled from corn. If you’re in England and ask for a whisky, you’ll get Scotch. But in Ireland, you’ll get Irish whiskey (yep, they spell it differently for a little colour).

\n
\n\n

What are whiskeys?

\n\n
\n

Whisky or whiskey is a type of distilled alcoholic beverage made from fermented grain mash. Various grains (which may be malted) are used for different varieties, including barley, corn (maize), rye, and wheat. Whisky is typically aged in wooden casks, generally made of charred white oak.

\n \n

Whisky is a strictly regulated spirit worldwide with many classes and types. The typical unifying characteristics of the different classes and types are the fermentation of grains, distillation, and aging in wooden barrels. Whisky (Wikipedia)

\n
\n\n

Brandies are not whiskeys, but is a spirit produced by distilling wine.

\n\n
\n

Brandy is a spirit produced by distilling wine. Brandy generally contains 35–60% alcohol by volume (70–120 US proof) and is typically drunk as an after-dinner digestif. Some brandies are aged in wooden casks, others are coloured with caramel colouring to imitate the effect of aging, and some are produced using a combination of both aging and colouring. Varieties of wine brandy can be found across the winemaking world. Among the most renowned are Cognac and Armagnac from southwestern France. Brandy (Wikipedia)

\n
\n\n

What is Cognac?

\n\n
\n

Cognac is a variety of brandy named after the town of Cognac, France. It is produced in the surrounding wine-growing region in the departments of Charente and Charente-Maritime.

\n \n

Cognac production falls under French Appellation d'origine contrôlée designation, with production methods and naming required to meet certain legal requirements. Among the specified grapes Ugni blanc, known locally as Saint-Emilion, is most widely used.2 The brandy must be twice distilled in copper pot stills and aged at least two years in French oak barrels from Limousin or Tronçais. Cognac matures in the same way as whiskies and wine barrel age, and most cognacs spend considerably longer \"on the wood\" than the minimum legal requirement.

\n \n

The white wine used in making cognac is very dry, acidic and thin. Though it has been characterized as \"virtually undrinkable\",4 it is excellent for distillation and aging. It may be made only from a strict list of grape varieties. In order for it to be considered a true cru, the wine must be at least 90% Ugni blanc (known in Italy as Trebbiano), Folle blanche and Colombard, while up to 10% of the grapes used can be Folignan, Jurançon blanc, Meslier St-François (also called Blanc Ramé), Sélect, Montils or Sémillon.5 Cognacs which are not to carry the name of a cru are freer in the allowed grape varieties, needing at least 90% Colombard, Folle blanche, Jurançon blanc, Meslier Saint-François, Montils, Sémillon, or Ugni blanc, and up to 10% Folignan or Sélect. Cognac (Wikipedia)

\n
\n\n

What is Armagnac brandy?

\n\n
\n

Armagnac is a distinctive kind of brandy produced in the Armagnac region in Gascony, southwest France. It is distilled from wine usually made from a blend of grapes including Baco 22A, Colombard, Folle blanche and Ugni blanc, traditionally using column stills rather than the pot stills used in the production of cognac. The resulting spirit is then aged in oak barrels before release. Production is overseen by the Institut national de l'origine et de la qualité (INAO) and the Bureau National Interprofessionel de l'Armagnac (BNIA). - Armagnac (brandy)

\n
\n\n

One last note. There also exists a liquor that is generally known as fruit brandy and is quite popular in various regions around the world.

\n\n
\n

Fruit brandy or fruit spirit1 is a distilled beverage produced from mash, juice, wine or residues of culinary fruits. The term covers a broad class of spirits produced across the world, and typically excludes beverages made from grapes, which are referred to as plain brandy (when made from distillation from wine) or pomace brandy (when made directly from grape pomace). Apples, pears, apricots, plums and cherries are the most commonly used fruits.

\n \n

According to a legal definition in the United States, a \"fruit brandy\" is distilled \"solely from the fermented juice or mash of whole, sound, ripe fruit, or from standard grape, citrus, or other fruit wine, with or without the addition of not more than 20 percent by weight of the pomace of such juice or wine, or 30 percent by volume of the lees of such wine, or both.\"

\n \n

In the European Union, fruit brandies may not be labeled as \"fruit brandy\"; instead, the legal English denomination is fruit spirit, which is \"produced exclusively by the alcoholic fermentation and distillation of fleshy fruit or must of such fruit, berries or vegetables, with or without stones\".4 A great number of European fruit brandies have a protected designation of origin, and are labeled with their respective protected names instead of \"fruit spirit\" (\"apricot spirit\", etc.). Cider spirit and perry spirit (fruit brandy distilled from cider or perry) form a separate legal category. Some fruit spirits may be labeled with alternative names such as kirsch (cherry spirit) or slivovitz (plum spirit) regardless their country of origin.

\n \n

In British usage, \"fruit brandy\" may also refer to liqueurs obtained by maceration of whole fruits, juice or flavoring in a distilled beverage, and such liqueurs are legally labeled as \"cherry brandy\", \"apricot brandy\" etc. all across the European Union.1 Such beverages are used similar to cordials, and as an ingredient in cocktails and cakes. Fruit brandies obtained by distillation are often referred by the French term eau de vie.

\n \n

Fruit brandy usually contains 40% to 45% ABV (80 to 90 US proof). It is often colourless. Fruit brandy is customarily drunk chilled or over ice, but is occasionally mixed.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-08-21T12:23:14.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7452"}} +{ "Id": "7452", "PostTypeId": "2", "ParentId": "7450", "CreationDate": "2018-08-22T21:45:00.633", "Score": "3", "Body": "

The answer above nails the quantitative parts of the question, but I'll spend a little time adding a qualitative answer.

\n\n

In terms of flavour and the experience while drinking, Brandy and Whisky are quite similar. If you gave a taste test to a beginner they could easily mistake one for the other.

\n\n

At the same time, though, someone who was well versed in both liquors could likely distinguish between the two a majority of the time. While there are whiskies out there which border on cloying, brandy usually tends to be sweeter than most whiskies.

\n\n

As far as I know, the flavour profiles for whisky are also much broader. That is, you're likely to see much more variation in the qualitative aspects of whisky than you are brandy.

\n", "OwnerUserId": "938", "LastEditorUserId": "938", "LastEditDate": "2018-08-28T17:22:25.100", "LastActivityDate": "2018-08-28T17:22:25.100", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7453"}} +{ "Id": "7453", "PostTypeId": "1", "CreationDate": "2018-08-23T04:53:05.417", "Score": "2", "ViewCount": "2840", "Body": "

Where does expired beer typically go when sellers rotate their stock?

\n", "OwnerUserId": "8038", "LastActivityDate": "2018-08-25T12:31:19.410", "Title": "How is expired beer typically disposed of by large retailers?", "Tags": "storage", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7454"}} +{ "Id": "7454", "PostTypeId": "2", "ParentId": "7453", "CreationDate": "2018-08-24T13:59:56.467", "Score": "1", "Body": "

It depends on what state you are in but here in Washington State the liquor control board wants you to document the destruction of alcoholic beverages that were damaged or expired if it's a large quantity. Usually this involves taking large amounts of beer or wine to dump or something and taking pictures of it as it's thrown away, dumped into a sewer or crushed. They don't want people giving away free alcohol without paying taxes. If it's a case of wine or a couple of six packs of beer, just throw them out and mark them up to losses.

\n\n

I think if it's expired or has problems, it usually goes back to the distributor who is tasked with disposing of it. Most alcoholic beverages don't have an expiration date so it usually goes into some mark down bin until it sells.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-08-24T21:21:47.030", "LastActivityDate": "2018-08-24T21:21:47.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7455"}} +{ "Id": "7455", "PostTypeId": "2", "ParentId": "7453", "CreationDate": "2018-08-24T23:08:41.223", "Score": "3", "Body": "
\n

Some breweries will by back beer that is past its freshness date (Sam Adams is well-known for this), while some will split the cost with the distributor. - Beer - When good beer goes bad

\n
\n\n

I have had beers that were quite fine well after there expiration date. And I have had beers that were simply horrible after the expiation date. Cooler temperatures will prolong the lifespan of most beers.

\n\n

But how is expired beer typically disposed of by large retailers is a different matter?

\n\n
\n

To avoid getting spoiled beer, check for a “brewed on” or “best by” date stamp, and avoid those that are not so labeled, especially if they have a fine layer of dust on them or visible sediment in the bottle (bottle-conditioned beers, however, are supposed to have a yeast sediment). Most pale ales, lagers and hefewiezens are best within three to six months of brewing. Darker beers and those with higher alcohol content might last a year. A few special beers are meant to be aged, but they are the exception rather than the rule. Beers stored in the cooler are less likely to spoil than those stored at room temperature, although many liquor stores stack case boxes on the floor, and those beers are less likely to be light-struck.

\n \n

Some breweries will by back beer that is past its freshness date (Sam Adams is well-known for this), while some will split the cost with the distributor. In other cases, the retailer is left holding the bag for beer that did not move well. Still, liquor stores should not sell beer that has lost its quality. Let retailers know that a beer is expired or to return beers that you find to be stale (don’t do this just because you don’t like the beer — read some reviews of the beer and see what it is supposed to taste like). Check back in a few days and see how they have responded to your complaints. If the expired beer is still on the shelf, let them know that you plan to shop elsewhere. - Beer - When good beer goes bad

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-08-25T12:31:19.410", "LastActivityDate": "2018-08-25T12:31:19.410", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7456"}} +{ "Id": "7456", "PostTypeId": "1", "AcceptedAnswerId": "7458", "CreationDate": "2018-08-26T14:29:07.253", "Score": "2", "ViewCount": "745", "Body": "

With the weather deteriorating and temperatures dropping my thoughts drifted to mulled wine. Traditionally a Christmas treat, but is it 'fashionable or OK' to drink it even in the summer, or will my dinner guests be appalled? Are there any Summer Mulled wine recipes, and if so do they use drastically different ingredients?

\n\n

MULLED WINE BASIC RECIPE:\n1 (750 ml) bottle of dry red wine.\n1 orange, sliced into rounds.\n8 whole cloves.\n2 cinnamon sticks.\n2 star anise.\n2-4 tablespoons sugar\noptional add-in: 1/4 cup brandy (or your favorite liqueur)

\n", "OwnerUserId": "6366", "LastEditorUserId": "6366", "LastEditDate": "2018-08-26T14:36:07.997", "LastActivityDate": "2018-09-01T11:02:42.757", "Title": "Is mulled wine just for Christmas?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7457"}} +{ "Id": "7457", "PostTypeId": "1", "AcceptedAnswerId": "7471", "CreationDate": "2018-08-26T15:09:26.680", "Score": "2", "ViewCount": "130", "Body": "

Winter is just around the corner, thus what should I be drinking? My normal summer tipple of Gin and Tonic, or should I move over to darker more homely drinks, like perhaps rum and coke? Is there a particular wine that is evocative of cold days and warm fireplaces? Or perhaps I should just simply remove ice from gin and carry on - any suggestions?

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2018-09-08T10:41:49.847", "LastActivityDate": "2021-01-13T17:52:13.090", "Title": "Dark winter days equal dark winter drinks!", "Tags": "wine recommendations gin", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7458"}} +{ "Id": "7458", "PostTypeId": "2", "ParentId": "7456", "CreationDate": "2018-08-27T11:54:13.220", "Score": "2", "Body": "

Is mulled wine just for Christmas?

\n\n

The short answer is no.

\n\n

Drinking mulled wine anytime of the year is more than okay. It can create an excellent atmosphere if done tastefully. I have served it myself on Easter Day to guests at my place and all enjoyed the spiced wine. Okay it was a little cold outside still, but that is besides the point. I live in Canada.

\n\n

In Brazil, they drink Quentão, a type of mulled wine especially during summer festivals.

\n\n
\n

In Brazil, we have some festivities on July, and in this period it's common to drink warm and hot wine, pure, or with some fruits and spices. It's called \"quentão\" and is usually made with cubes of apple and cinnamon. Res

\n
\n\n

Some recipes use cachaça (sugar cane brandy) in lieu of wine and is served very hot.

\n\n
\n

\"Quentão \" is a traditional \"Festas Juninas\" (winter party) grog cocktail, especially in the South Region, the coldest area of Brazil. Its irresistible scents combine sweet and spicy notes and it is traditionally served hot in small earthenware, ceramic or thick glass cups, which retain heat well. \n It is a very popular cocktail recipe in the rural areas, and probably made its first appearance in the hinterland of São Paulo and Minas Gerais states. In absence of formal information, one would assume that this recipe is a variation of European mulled wine and grog recipes, made with \"cachaça\", the Brazilian national sugar cane spirits. In the 18th and 19th Centuries the consumption of \"cachaça\" has become synonymous of \"Brazilianness\" against Portuguese domination. After the \"Modern Art Week \" of 1922 it becomes a symbol of Brazilian cultural autonomy.

\n \n

The word \"quentão\" is derived from \"quente\" which means hot, plus the augmentative suffix -\"ão\" (literally very hot). At the beginning of the 20th Century it came to designate the \"drink made by boiling sugar cane spirits with sugar, ginger and cinnamon. - Quentão

\n
\n\n

Further reading can be found below:

\n\n

‘Quentão’: Spicy Brazilian Mulled Wine

\n\n

Quentão

\n\n

One last note!

\n\n
\n

Bonfire is taking Southern Alberta by storm, and it is warming hearts and melting colds. It is a traditional European winter wine but also warms you up on cool summer nights. Bonfire is pre-mulled, so the only thing you need to do is warm the wine in either a pot or microwave. It is crafted from black currants, saskatoons, cinnamon and cloves. The berry notes make it a great base for a perfectly balanced mulled wine and provide a much smoother finish than the traditional mulled wine made with grape wine due to the absence of tannins. Drinking it will make you feel like Christmas, no matter which time of the year. It will warm you to the bone after a day of skiing, hockey, tobogganing, ice fishing, or around the bonfire on cool summer nights. The perfect wine for Alberta winter and summer camping enjoyments.

\n \n

Bonfire pairs great with Alberta weather winter weather and summer nights.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-09-01T11:02:42.757", "LastActivityDate": "2018-09-01T11:02:42.757", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7462"}} +{ "Id": "7462", "PostTypeId": "2", "ParentId": "7447", "CreationDate": "2018-08-31T22:04:38.877", "Score": "2", "Body": "

Red wines generally benefit from aging. In the right conditions, dark and cool, tannins can smooth out removing some of their bite. Flavors can mellow and blend into something very interesting to the palette. Whites usually can follow suit, but their life span sans a few specific varieties, usually aren’t meant for aging and should be drunk young. IMO few wines are really geared for long aging, notably ports, with their high alcohol levels age well into several decades, giving the drinker unique flavors as the years go by. However, if a wine is flawed at conception, aging won’t make a purse out of a sow’s ear.

\n", "OwnerUserId": "8059", "LastActivityDate": "2018-08-31T22:04:38.877", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7464"}} +{ "Id": "7464", "PostTypeId": "1", "CreationDate": "2018-09-02T03:31:46.593", "Score": "1", "ViewCount": "354", "Body": "

The common saying \"beer before liquor never sicker and liquor before beer have no fear\" always made me wander why is that? What is the science behind it?

\n", "OwnerUserId": "7198", "LastActivityDate": "2018-09-07T20:07:26.110", "Title": "Liquor before beer never fear", "Tags": "specialty-beers recommendations health liquor science", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7465"}} +{ "Id": "7465", "PostTypeId": "2", "ParentId": "7464", "CreationDate": "2018-09-02T15:00:08.110", "Score": "3", "Body": "

I suspect that there is no science behind it and that the saying is something akin to an old wive's tale, something often re-told but not actually scientifically accurate.

\n\n

It might be the case that people who start with beer and end with liquor sometimes get sick because they loosen up with a beer buzz, and start drinking liquor too quickly. But there is no reason why the order of the two alcohols has to have this result if the people drinking stay moderate in how much they're consuming.

\n\n

Conversely, if they ended with beer the rate of alcohol intake slows down meaning they'd be less likely to get sick. But they still could get sick.

\n\n

In my experience when I was a young drinker there were a lot of sayings like this floating around. Usually just things that people said that sounded funny, rather than real warnings.

\n", "OwnerUserId": "938", "LastActivityDate": "2018-09-02T15:00:08.110", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7466"}} +{ "Id": "7466", "PostTypeId": "2", "ParentId": "6752", "CreationDate": "2018-09-03T06:11:41.123", "Score": "-2", "Body": "

I've read that beer is mostly water and that drinking too much floods your system with water and depletes your sodium,etc. My theory is that while it is flavorful it also can help stave off hangover effects?

\n", "OwnerUserId": "8066", "LastActivityDate": "2018-09-03T06:11:41.123", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7468"}} +{ "Id": "7468", "PostTypeId": "1", "AcceptedAnswerId": "7470", "CreationDate": "2018-09-05T07:17:27.450", "Score": "5", "ViewCount": "1762", "Body": "

I've done a cursory search for maple syrup based spirits and have not found any. It appears there are liqueurs with a whiskey base and maple syrup in them but maple syrup is not the base.

\n\n

I'm curious to know if any exist.

\n", "OwnerUserId": "5479", "LastActivityDate": "2018-09-06T12:13:51.607", "Title": "Are there any maple syrup based spirits or other alcholic products?", "Tags": "spirits", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7469"}} +{ "Id": "7469", "PostTypeId": "2", "ParentId": "7032", "CreationDate": "2018-09-05T14:39:25.493", "Score": "0", "Body": "

You can use the free Global Wine Score API: https://www.globalwinescore.com/api/. The api returns a score for each wine along with other practical info (producer, region, etc.).

\n\n

We have a database of over 26,000 wine scores which are calculated as an average from major wine critics. You can read more about it here: https://www.globalwinescore.com/calculation/.

\n\n

If you have any questions please reach out to us at contact@globalwinescore.com. Cheers!

\n", "OwnerUserId": "8071", "LastEditorUserId": "8071", "LastEditDate": "2018-09-05T15:33:32.777", "LastActivityDate": "2018-09-05T15:33:32.777", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7470"}} +{ "Id": "7470", "PostTypeId": "2", "ParentId": "7468", "CreationDate": "2018-09-06T12:13:51.607", "Score": "4", "Body": "

There are some companies which claim to make a maple sugar spirit. But at the same time, I can not verify if they use 100% maple sugar or not.

\n\n

The really reason for people not using maple to make an alcohol spirit is the cost factor. Maple syrup is not cheap.

\n\n
\n

Why isn't there a liquor distilled from maple syrup?

\n \n

Too expensive.

\n \n

To make a liquor out of maple syrup, firstly you have to ferment the maple syrup (turning it into a wort), then distill said wort.

\n \n

A 10kg pack of Maris Otter (common variety of malted barley used in fermentation/distillation) will cost you approximately $15 AUD; genuinely maple syrup, would cost you about $5/500mL. I don’t need to put that through a volume converter to know that it will be exponentially more expensive to source 10kg of maple syrup for the same purpose.

\n
\n\n

Nevertheless some companies seem to be distilling maple sugar into a drinkable item.

\n\n
\n

Tree Spirits Knotted Maple is probably the world's first store-sold maple syrup brandy. Bruce Olson and Steve Buchsbaum are the masterminds behind this spirited maple treat. The two of them originally opened up a winery, but as time progressed, they decided to experiment with apple cider and sap from maple trees.

\n \n

Tree Spirits Knotted Maple provides a unique drinking experience and you're paying for it. A 375-milliliter bottle of Knotted Maple costs $35.99. - Alcoholic Maple Drinks

\n
\n\n

Another company is marking a new Maple Vodka, but I am unable to verify for sure if the base ingredient is in fact maple sugar.

\n\n
\n

The 80 proof Vodka is maple on the nose, clean and crisp, traditional in flavor, and finishes with a soft and delicate maple sweetness. This exclusive distillation, just shy of 1,600 bottles, will be available for sale from their tasting room and at events they attend throughout Vermont. - Caledonia Spirits to release new Vodka distilled from maple syrup on Saturday

\n
\n\n

Maple Sugar has been used for a number of years as an additive to make Maple Liqueurs, especially in Canada.

\n\n
\n

Maple liqueur refers to various alcoholic products made from maple syrup, primarily in the Northeast United States and Canada. It is most commonly made by mixing Canadian rye whiskey and Canadian maple syrup. Maple liqueur is considered an important cultural beverage in certain Canadian festivals.

\n \n

In Canadian French, such a product is known as eau de vie d'érable.

\n \n

Maple liqueur is not commonly found in liquor stores as it is easy to make at home. The production process is simple and does not require any special equipment. Homemade maple liqueur is both easy to make and inexpensive. It can be enjoyed on its own, in coffee, or in various different cocktails. - Maple liqueur

\n
\n\n

\"Tree

\n\n

Tree Spirits Knotted Maple Spirit

\n\n
\n

Knotted Maple Spirit is made from a base of Maine Maple syrup.

\n
\n\n

It seems that if you really want the real McCoy, you will have to do it in Quebec and through French websites.

\n\n
    \n
  • La Gélinotte, un alcool 100% érable, élaborée exclusivement à partir de la sève d'érable, pure et authentique.
  • \n
  • Fine sève est une eau de vie à l'érable. La fine sève est obtenue par une distillation de sirop d’érable fermenté, et ensuite vieillie en fût de chêne pendant deux ans.
  • \n
  • L'Acerum, une eau-de-vie québécoise faite à partir de réduit d'érable
  • \n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-06T12:13:51.607", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7471"}} +{ "Id": "7471", "PostTypeId": "2", "ParentId": "7457", "CreationDate": "2018-09-06T14:10:59.817", "Score": "4", "Body": "

I'll just go ahead and answer this question assuming it's better formed, something like:

\n\n
    \n
  • Which drinks are most popular in the winter?
  • \n
\n\n

The difference to me in which drinks to choose in the summer versus the winter comes from the temperature in which you're drinking. In the summer people typically crave something that is light, cool, and refreshing in the hot weather, where in the winter they want something that sticks to their bones and warms the cockles. Some examples:

\n\n

Summer Drinks

\n\n
    \n
  • Pilsner
  • \n
  • Lager
  • \n
  • Weiss
  • \n
  • IPAs
  • \n
  • Fruity cocktails (vodka, rum)
  • \n
  • Caesars
  • \n
  • Light bodied, medium to sweet wines
  • \n
\n\n

Winter Drinks

\n\n
    \n
  • Stouts
  • \n
  • Porters
  • \n
  • Full bodied, dry red wines
  • \n
  • Mulled Wine
  • \n
  • Whisky
  • \n
  • Brandy
  • \n
  • Autumn or Winter (spiced) ales
  • \n
\n\n

Caveat

\n\n

That said, really just drink and enjoy whatever you want, whenever you want. But in my experience it's usually the summer when I don't want the heavier drinks rather than vice versa. I'm much more likely to drink a light beer in the winter than something dark in the summer, although I'll drink whisky all year round.

\n", "OwnerUserId": "938", "LastActivityDate": "2018-09-06T14:10:59.817", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7473"}} +{ "Id": "7473", "PostTypeId": "1", "AcceptedAnswerId": "7474", "CreationDate": "2018-09-06T20:19:08.960", "Score": "2", "ViewCount": "190", "Body": "

What wine is made from raisins not grapes? What would be different in nutrients in wine made raisins vs grapes? How would the process differ?

\n", "OwnerUserId": "7198", "LastActivityDate": "2018-09-06T22:10:25.753", "Title": "Can wine be made from raisins?", "Tags": "wine brewing ingredients nutrition", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7474"}} +{ "Id": "7474", "PostTypeId": "2", "ParentId": "7473", "CreationDate": "2018-09-06T22:10:25.753", "Score": "6", "Body": "

There are two ways to make wine from raisins.

\n\n
    \n
  1. Soak the raisins in water and boil and then macerate, ferment and separate the solids from the wine and age. You can make something close to wine. Most raisin grapes are Thompson Seedless grapes which are white grapes. It might be cloudy if you don't use pectic enzymes. Here is a recipe

  2. \n
  3. The more traditional method is to raisin wine grapes either on the vine or store them inside to dry them out. Some call it \"Straw Wine\" but there are numerous names for this method. Basically the same principle as late harvest wine except even drier grapes. Sometimes added to regular wine sometimes pressed with super high brix levels, almost like syrup.

  4. \n
\n", "OwnerUserId": "6111", "LastActivityDate": "2018-09-06T22:10:25.753", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7475"}} +{ "Id": "7475", "PostTypeId": "2", "ParentId": "7464", "CreationDate": "2018-09-07T20:07:26.110", "Score": "6", "Body": "

I had never heard of this saying (I'm not a native English speaker), but the funny thing is that in Dutch there is a similar saying, except with wine instead of liquor and the other way around: 'wijn na bier is plezier, bier na wijn is venijn'. This roughly translates to 'wine after beer is fun, beer after wine is poison'.\nI once read an interview with a toxicologist about this and according to him the order in which you drank made no difference.\nOne explanation I heard was that in the olden days, beer was the drink of the poor people, while the upper class drank wine. So if you went from beer to wine, you moved up in society, while the other way around meant you got poorer.\nSo, not really an answer to your question, but there might be a similar, not really alcohol-related explanation to this expression.

\n", "OwnerUserId": "7377", "LastActivityDate": "2018-09-07T20:07:26.110", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7476"}} +{ "Id": "7476", "PostTypeId": "2", "ParentId": "7448", "CreationDate": "2018-09-08T12:44:00.587", "Score": "2", "Body": "

First of all, let us consider what can be turned into vinegar.

\n\n
\n

What you can turn into vinegar?

\n \n

Anything with sugar or starch can be fermented by yeast into alcohol, which can then be converted into acetic acid by acetobacter bacteria. The acidity of commercially made vinegar is at least 4 percent but not more than 7 percent, according to U.S. Food and Drug Administration standards. Vinegar has an almost indefinite shelf life, though some color changes and sedimentation (in unfiltered, unpasteurized bottlings) may occur. Some varieties are aged or reduced, which changes the flavor and character.

\n \n

Wine based

\n \n
    \n
  • Banyuls
  • \n
  • Red wine, including varietals such as Cabernet Sauvignon
  • \n
  • White wine, including varietals such as Champagne
  • \n
  • Sherry
  • \n
\n
\n\n

For starters you must choose the wine (red or white) you desire to turn into vinegar, but do mix the two together. The more aromatic the wine is, the more flavorful the vinegar will be.

\n\n

There are many recipes to make vinegar on the web, so I can only give a small sampling here. For the most part the techniques are somewhat similar.

\n\n
\n

Mixing Wine Vinegar

\n \n

1. Choose your wine. You can combine a few glasses of leftover wine or buy a fresh bottle to use. Don’t mix red and white wine together. Instead, either make white wine vinegar or red wine vinegar. Red wine vinegar is great for bold salad dressings and deglazing cooking pans. White wine vinegar is lovely in rich sauces and tart vinaigrettes.

\n \n

2. Find a “Mother of Vinegar”. This commercially available product is also called a vinegar starter or a mother. The bacteria in a mother creates vinegar when combined with wine, cider, or fresh fruit juice. You don’t have to use a mother when making wine vinegar. However, some people find that using a mother helps create wine vinegar faster.

\n \n

3. Choose a live vinegar. If you don’t want to purchase a mother, use a live vinegar instead. Look for vinegars that are advertised as “unpasteurized,” “unfiltered,” and “active”. For example, Braggs organic apple cider vinegar is a live vinegar.

\n \n

4. Mix the wine and starter together. Use a large, wide-mouthed jar or bowl made of nonreactive materials such as glass or ceramics.[4] Stir everything together well. This will evenly distribute the bacteria throughout the wine and aerate the mixture.

\n \n
    \n
  • If you’re using a live vinegar, add 3 tablespoons of vinegar for every cup of wine.\n \n
      \n
    • If you’re using a mother, follow the instructions on the package. Otherwise, add the mother to the wine and gently mix it in.
    • \n
  • \n
\n \n

5.Cover the jar with a cheesecloth. The cheesecloth will block out the light while letting air circulate through the mixture.[6] First, drape the cheesecloth loosely over the top of the jar. Next, secure the cheesecloth in place with a rubber band.

\n \n

Fermenting Wine Vinegar

\n \n

1. Set the container in a cool, dark place. Place your cheesecloth-covered container in a dark corner of a pantry or under your sink. Choose a spot that won’t get much light or heat. The vinegar will need to sit for two to three months while it ferments.

\n \n
    \n
  • The optimal temperature range is 75 to 86 degrees Fahrenheit (24 to 29 degrees Celsius.) If you store your vinegar outside of this range, the process will take longer.
  • \n
\n \n

2. Monitor your vinegar. After three weeks of fermentation, examine the vinegar for a gelatinous film. This is the new mother. Try not to disturb this layer or you’ll risk agitating the bacteria that creates wine vinegar.

\n \n

3. Taste the vinegar for doneness. Begin tasting the wine vinegar periodically after one month of fermentation. To do so, gently push aside the mother with a spoon and gather a small sample of vinegar. You’re looking for a brightly tart, acidic taste.

\n \n

4. Harvest the vinegar. Once your vinegar tastes ready, it’s time to harvest it. First, use a spoon to push the mother down into the vinegar. Next, pour away the apple cider into a large bowl. While you pour, use the spoon to block the mother and keep it in the jar.

\n \n

5. Save the mother to use in new batch. Add more wine to the jar with the mother in it. Replace the cheesecloth and ferment the vinegar for another two to three months. Once the mother is used up, it will sink to the bottom and another mother will form on the vinegar.

\n \n
    \n
  • Once the mother sinks all the way to the bottom, you can scoop it out and throw it away.
  • \n
  • You can use this method to create wine vinegar indefinitely.
  • \n
\n \n

Storing Your Vinegar

\n \n

1. Choose a secondary storage container. Choose a heat-proof container that’s made of a nonreactive ceramic or glass material. The container should also come with an airtight lid or cork. For example, purchase a swing-top or sealable wine bottle. Some other examples of storage containers include:

\n \n
    \n
  • Mason jars with lids\n \n
      \n
    • An old empty vinegar container
    • \n
    • A glass beaker with a cork
    • \n
  • \n
\n \n

2. Sterilize your storage container. Wash the container with hot water and a strong dish soap. Next, bring a pot of water to boil on your stove. Submerge the container in boiling water for ten minutes to sterilize it. Allow it to air dry completely.

\n \n

Pour the vinegar into your storage container. Use a funnel to siphon the vinegar from the bowl to your storage container. Depending on how much vinegar you make, you may need two or three containers to collect everything. After pouring the vinegar, tightly secure the lid of the storage container.

\n \n
    \n
  • Store your wine vinegar in a cool, dark place such as your pantry for up to one year.
  • \n
\n \n

Source: How to Make Wine Vinegar (wikiHow)

\n
\n\n

And by the way: Bon Appetite!

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-08T12:44:00.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7478"}} +{ "Id": "7478", "PostTypeId": "1", "AcceptedAnswerId": "7546", "CreationDate": "2018-09-10T13:37:02.880", "Score": "5", "ViewCount": "265", "Body": "

I visit Germany a lot (Augsburg, Bavaria) and I can't seem to find a beer that would be similar to Belgian beers, for example to Grimbergen blonde.

\n\n

So far the closest I've come is kellerbier but still it's nothing like a Belgian beer.

\n\n

Is there some beer type or specific brand that manufactures beer similar to Belgian ones?

\n", "OwnerUserId": "8079", "LastActivityDate": "2018-10-29T10:19:41.810", "Title": "What German beers are similar to Belgian abbey beers?", "Tags": "german-beers belgian-beers", "AnswerCount": "1", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7479"}} +{ "Id": "7479", "PostTypeId": "1", "AcceptedAnswerId": "7487", "CreationDate": "2018-09-13T15:16:43.073", "Score": "3", "ViewCount": "238", "Body": "

Is it possible to have a non-alcoholic gin? Tastes like gin but without the alcohol. Tonic on its own just isn't the same, but as the years go by I feel the need to minimise the 'volume' in my glass.

\n", "OwnerUserId": "6366", "LastActivityDate": "2018-09-15T20:56:24.587", "Title": "Is it possible to have a non-alcoholic Gin?", "Tags": "taste spirits non-alcoholic gin", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7480"}} +{ "Id": "7480", "PostTypeId": "2", "ParentId": "7479", "CreationDate": "2018-09-13T16:14:50.170", "Score": "1", "Body": "

There is actually a non-alcoholic Gin substitute called Seedlip which is made in a similar way; by passing steam instead of alcohol vapour through botanicals. Unfortunately I'm not sure how available it is outside of the UK.

\n\n

Please note that I am in absolutely no way connected to the company and have only tried a sip of a cocktail made with it in the past so YMMV.

\n", "OwnerUserId": "909", "LastEditorUserId": "5064", "LastEditDate": "2018-09-15T20:56:24.587", "LastActivityDate": "2018-09-15T20:56:24.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7481"}} +{ "Id": "7481", "PostTypeId": "2", "ParentId": "7439", "CreationDate": "2018-09-13T19:05:59.017", "Score": "-1", "Body": "

Gordon's London Dry Gin in a clear plastic bottle with a yellow label is the cheapest gin I've ever seen, but it's tasty and potent. You can find it in nearly any liquor store, or online if you're really not up to walk around the corner to a store. Do not confuse it with the Gordon's Gin which is in a green glass bottle with white text. Happy travels!

\n", "OwnerUserId": "8086", "LastEditorUserId": "8086", "LastEditDate": "2018-09-14T19:19:39.937", "LastActivityDate": "2018-09-14T19:19:39.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7482"}} +{ "Id": "7482", "PostTypeId": "1", "AcceptedAnswerId": "7486", "CreationDate": "2018-09-13T21:24:09.757", "Score": "2", "ViewCount": "433", "Body": "

Would anyone have recommendations on plum-based spirits? I've had the seasonal R. Jelinek Slivovitz Plum Brandy but that stuff is unpleasant and potent in large amounts, and I rarely see any kind of plum wine in stores anymore. Brands and preparation styles are appreciated all the same, thanks in advance.

\n\n

Addendum: I heard Veil has a Plum Vodka. I'm a fan of their plain and flavored vodkas, but I haven't seen Plum yet. Is it seasonal?

\n", "OwnerUserId": "8086", "LastEditorUserId": "8086", "LastEditDate": "2018-09-16T22:19:10.177", "LastActivityDate": "2018-09-16T22:19:10.177", "Title": "Any recommendations on plum-based spirits?", "Tags": "wine recommendations spirits", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7483"}} +{ "Id": "7483", "PostTypeId": "2", "ParentId": "4858", "CreationDate": "2018-09-13T21:29:41.300", "Score": "0", "Body": "

Thanks for bringing down that long list of recommended ciders. Here are personal recommendations

\n\n
    \n
  • True Companion Hard Cider
  • \n
  • True Friend Semi-Sweet Hard Cider
  • \n
  • Angry Orchard Stone Dry is cheaper but only okay
  • \n
  • Austin East Ciders Dry Cider in various flavors.
  • \n
\n\n

New York State and Long Island have many brands of hard cider. If more come to mind, I'll aim to edit them in here or send them to you another way.

\n", "OwnerUserId": "8086", "LastEditorUserId": "8086", "LastEditDate": "2018-09-14T19:15:28.087", "LastActivityDate": "2018-09-14T19:15:28.087", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7485"}} +{ "Id": "7485", "PostTypeId": "2", "ParentId": "862", "CreationDate": "2018-09-15T08:09:15.980", "Score": "1", "Body": "

If you have beer left in a screw-top (i.e. twist-off) glass beer bottle, immediately screw the cap back on as tightly as possible. Place in the refrigerator UPSIDE-DOWN. The pressure won't escape because the cap now only has to be liquid-tight, not air-tight.

\n\n

It should stay fizzy for at least a week upside-down.

\n\n

Storing right-side up will allow pressure to quickly escape because the re-used cap can never seal as tightly as the original factory seal.

\n\n

This also works for any other carbonated beverage with a screw top.

\n\n

By the way, for long term storage, a bottle or case of any carbonated drink in screw-tops should be stored upside-down. Because even the factory sealed caps will leak CO2 over time.

\n", "OwnerUserId": "8088", "LastEditorUserId": "8088", "LastEditDate": "2018-09-15T08:19:23.410", "LastActivityDate": "2018-09-15T08:19:23.410", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7486"}} +{ "Id": "7486", "PostTypeId": "2", "ParentId": "7482", "CreationDate": "2018-09-15T13:26:52.760", "Score": "1", "Body": "

The problem with recommendations is that it is personal. What one person finds good or excellent is to another poor and unacceptable (too strong, bitter, etc.). The variety of plums used will also make a considerable impact on the taste of a plum based alcohol product as some are tart and others are sweet and juicy.

\n\n

The only way to find a plum based spirit that one enjoys to try and sample a few (not expensive) types of plum based alcohols and see if one enjoys them.

\n\n

In this sense, I would suggest that you try one of the following and then give us back your feedback.

\n\n

A Slivovitz on the lower spectrum of alcohol content (35-40% alcohol) and not that of a higher volume content. This way the true natural flavors more be more apparent to one's taste buds.

\n\n
\n

Slivovitz, often called slivovitsa, is a plum brandy found throughout Eastern Europe. The word \"slivovitz\" is based on the Serbian and Croatian name for a type of plum used to create the drink. Major producers in the Balkans and in Central European nations like the Czech Republic make commercial versions of slivovitz. In rural areas, many people make homemade slivovitz using makeshift stills made from old barrels. In the Czech Republic, this kind of home distilling is now illegal, though lightly regulated community-owned stills are a legal alternative. In Serbia, slivovitz is almost always a part of important events such as celebration of a birth or a wedding reception. The liquor is usually drunk neat because it is said that the flavor of the plums is at its most noticeable at room temperature. Like other types of brandy, slivovitz has a sweet edge. Because so many varieties exist, strengths vary wildly. However, most good slivovitz is between 80 and 100 proof, though homemade versions can be much stronger than that. - Beyond whiskey: 7 exotic spirits worth a try

\n
\n\n

Pearl vodka has a plum vodka on the market based on natural flavors. Just follow the links to see if it is available in your region.

\n\n
\n

Bursting with the sweet, luscious flavor of summertime plums. The tartness of the skin quickly gives way to the jammy flesh within. Purple deliciousness ready to make a splash in your favorite warm-weather cocktail creations (35%). - Plum

\n
\n\n

Japanese plum wine is called a plum wine or Umeshu (梅酒) in Japan but in reality is a vodka based liqueur with green plums.

\n\n
\n

Plum Wine or Umeshu (梅酒) is a Japanese liqueur made by steeping fresh Japanese plum (ume) in shochu/white liquor [vodka] and sugar. The sweet and sour flavors with fruity aroma is very appealing and you can make many kinds of drinks with it! - Plum Wine (Umeshu) 梅酒 – ‘Midnight Diner: Tokyo Stories’

\n
\n\n

Although quite rare, real plum wine does exist and this is where I would start if new to plum drinks. For example Takara Plum Wine or Fuki Plum Wine is available in the USA.

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-15T13:26:52.760", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7487"}} +{ "Id": "7487", "PostTypeId": "2", "ParentId": "7479", "CreationDate": "2018-09-15T14:20:13.747", "Score": "3", "Body": "

Is it possible to have a non-alcoholic Gin?

\n\n

The short answer is yes.

\n\n
\n

Pernod Ricard has signed a deal to launch and distribute South African/Swedish brand Ceder’s in the UK, which describes itself as a “non-alcoholic alt-gin made with classic gin and South African botanicals”.

\n \n

The non-alcoholic ‘spirit’ was launched in early 2017 by husband and wife team Craig Hutchison (South African) and Maria Sehlstrom (Swedish). - Pernod Ricard ventures into non-alcoholic ‘gin’

\n
\n\n

Seedlip also has a non-alcoholic gin on the market but the leading flavour is clove rather than juniper as with gin and is thus not a real gin. It is more a gin alternative.

\n\n
\n

The biggest name in non-alcoholic gin is Seedlip. Seedlip Spice 94 (£22.99, Amazon) is the closest offering Seedlip has to the ‘real thing’ — although they’re quick to offer a caveat.

\n \n

“It’s made like a gin with botanicals, but is definitely not a gin.” The leading flavor is clove rather than juniper as with gin.

\n \n

You may be familiar with non-alcoholic beer, but non-alcoholic gin is a relative newbie.

\n
\n\n

Amongst others non-alcohol gins (gin alternatives) are Brunswick Aces, Herbie Virgin and to a lesser degree Teetotal G&T as it is a pre-mix.

\n\n
\n

Teetotal G‘n’T has all the flavour of Gin and Tonic but without the alcohol. It is made from natural ingredients and botanicals found in a good gin and tonic. - The Temperance Spirit Company

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-15T14:20:13.747", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7488"}} +{ "Id": "7488", "PostTypeId": "2", "ParentId": "6540", "CreationDate": "2018-09-16T23:01:25.093", "Score": "4", "Body": "

What is the evolution of brewing beer in Japan?

\n\n

Beer in Japan seems to have had its start in the 17th century during the Edo period when Dutch traders stationed at Dejima in Nagasaki opened a beer hall for sailors working the trade route between Japan and the Dutch Empire.

\n\n
\n

The Dutch started brewing beer for their own use in Nagasaki during the Edo Period. The first brewery to serve the Japanese market was founded in 1869 in the international port town of Yokohama by a foreign businessman. After changes in ownership, it started producing Kirin-branded beer in 1888. Meanwhile in Sapporo, the government built a beer brewery and established the Sapporo Beer brand in 1876 as part of its efforts to develop the island of Hokkaido. Accordingly, Yokohama and Sapporo vie for the title of birthplace of Japanese beer.

\n \n

The popularity of beer increased sharply in the second half of the 20th century, and beer has long since overtaken sake as the nation's favorite tipple. In recent decades, some Japanese beers have also gained popularity overseas.

\n \n

Variations of beer

\n \n

Because the alcohol laws in Japan dictate that beer be taxed according to its malt content, other beer-like drinks have been created by the Japanese brewers that contain less malt and thus are cheaper to sell. The current three ranks of beer are as follows:

\n \n

Beer

\n \n

Regular beer with regular malt content. Because of higher taxation, it costs more than the two ranks below.

\n \n

Happoshu

\n \n

Happoshu (lit. \"sparkling alcohol\", also known as low-malt beer) is a relatively recent invention by Japanese brewing companies. It has a similar flavor and alcohol content as beer, but it is made with less malt, which gives it a different, lighter taste. Due to the lower malt content, happoshu is taxed differently than beer and costs less.

\n \n

New Genre (Shin Janru)

\n \n

New genre beer (also known as \"third beer\" or \"daisan no bīru\") is the most recent development in the Japanese beer industry. In order to counter tax changes that reclassified the malt content of beer and subsequently raised the price of happoshu, this beer-like beverage contains no malt, instead using pea, soy or wheat spirits. As a result, it can be sold at an even lower price.

\n \n

Over the coming years, the alcohol tax rate will be incrementally adjusted to be unified into a single one for all beer and beer-like beverages by 2026. This means that the price difference between beer and its less-malt-containing alternatives will narrow.

\n \n

Craft beer

\n \n

The craft beer (地ビール, ji-bīru, literally \"local beer\") scene emerged in the mid-1990s. Up until then, stringent brewing laws granted licenses only to large-scale brewers. This all changed in 1994 when the government drastically relaxed the law, enabling small-scale breweries to thrive. Since then, craft beer has become increasingly popular, with hundreds of microbreweries around the country now selling high-quality regional beer domestically and abroad.

\n \n

There is a particularly vibrant craft beer scene in the big cities like Tokyo and Osaka, where various dedicated bars sell beer from a particular brewery they are linked to, if not from a selection of breweries. There are also an increasing number of brewpubs that brew and sell their own beer on premises. Many onsen towns also contribute to the national craft beer presence with celebrated local breweries that take advantage of local pure waters. - Beer in Japan

\n
\n\n

Other informative sources:

\n\n

History of the Japanese Beer Industry

\n\n

Brewed in Japan: The Evolution of the Japanese Beer Industry

\n\n

Hitachino Nest Beer Brewery

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-16T23:01:25.093", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7491"}} +{ "Id": "7491", "PostTypeId": "2", "ParentId": "6261", "CreationDate": "2018-09-17T21:33:43.917", "Score": "2", "Body": "

For me, the best remedy for a particular type of stomach pain is bitters----horrid tasting Underbergs, delicious Jaegermeister, or intermediate Fee Bros Cardamom. Visiting Hungary, I have now discovered Unicum. I believe they all work by triggering the release of acetylcholine, which causes release of gastric acid, increased peristalsis (propelling movement of stomach and intestines), bile secretion and possibly direct effects on intestinal lining cells. Really a godsend sometimes, especially when traveling since they are so widely available abroad.

\n", "OwnerUserId": "8095", "LastActivityDate": "2018-09-17T21:33:43.917", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7492"}} +{ "Id": "7492", "PostTypeId": "1", "CreationDate": "2018-09-18T00:38:14.097", "Score": "1", "ViewCount": "251", "Body": "

I'm making mead, 3 lbs honey topped up to 1 gallon with champagne yeast. My final gravity is ~1.044. Still lots of sugar in there, but fermentation had all but stopped. I put it all into 1 Liter flip top bottles. Here's the question: have I just made bombs? How much pressure can fermentation-grade flip top bottles take?

\n\n

I know 1.044 is still kinda high; I don't need a lecture. I don't think that fermentation will start again, but if it does and this stuff pushes itself dry, how much pressure will that make, and can the bottles handle it?

\n", "OwnerUserId": "8096", "LastActivityDate": "2018-09-18T04:10:59.183", "Title": "How much pressure can a flip top take?", "Tags": "bottles carbonation bottle-conditioning mead", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7493"}} +{ "Id": "7493", "PostTypeId": "2", "ParentId": "7492", "CreationDate": "2018-09-18T04:10:59.183", "Score": "1", "Body": "

The short answer is - \"It depends, probably not\".

\n\n

Bottles are usually rated for Volumes of CO2.

\n\n

Champagne bottles are typically rated for 7 volumes.\nWheat beer bottles should take around 5 volumes.\nAles/Lager beers are normally carbonated at 2-3 volumes.

\n\n

However, flip-top bottles (I assume you mean the ones with the rubber seal) are produced in both CO2-rated and cheap un-rated beverage bottles - found in supermarkets.

\n\n

As you say 1.044 is quite high - plenty of beers start around that point. This could generate a lot of CO2 (> 15 volumes) if it fermented out.

\n\n

The actual CO2 volume calculations are discussed in another answer.

\n\n

It might be better to transfer the mead to PET(plastic) bottles, and store them in a safe location.

\n", "OwnerUserId": "5160", "LastActivityDate": "2018-09-18T04:10:59.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7494"}} +{ "Id": "7494", "PostTypeId": "2", "ParentId": "7430", "CreationDate": "2018-09-18T05:02:50.303", "Score": "2", "Body": "

Short answer: 17-20C (62-68F) is good for ales.

\n\n

The temperature of fermentation is exceedingly important for the final beer. Too low (< 15C) can cause the ale yeast to go dormant, stalling the process. While a high temperature (> 25C) can cause a rapid ferment, where the yeast creates excess esters and fusel alcohols.

\n\n

Yeast also generate their own warmth during fermentation. A commonly cited value is that the ferment is around 3C above ambient temperatures.

\n\n

There are exceptions to this of course. Some beers (\"Saison\" for example) are fermented much warmer.

\n", "OwnerUserId": "5160", "LastActivityDate": "2018-09-18T05:02:50.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7498"}} +{ "Id": "7498", "PostTypeId": "1", "AcceptedAnswerId": "7499", "CreationDate": "2018-09-24T14:59:14.040", "Score": "3", "ViewCount": "118", "Body": "

Many wines are often sold under different brand names, or sold with a very generic label (Merlot - France).

\n\n

Of course these wines will all have come from a chateau/co-operative/blender somewhere, I was wondering if there was anything on the label that would identify these wines further, or if it is pot luck.

\n", "OwnerUserId": "7000", "LastActivityDate": "2018-09-26T11:05:43.193", "Title": "I buy a bottle of wine from a supermaket - can you tell where it's come from?", "Tags": "wine", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7499"}} +{ "Id": "7499", "PostTypeId": "2", "ParentId": "7498", "CreationDate": "2018-09-25T14:30:53.773", "Score": "5", "Body": "

Depends on the country, but companies can make it very hard to find where the wine is made and where the grapes are grown. Looking at large supermarket brands, sometimes all that is necessary is listing country of origin and a vague address on the back (and other things like alcohol % and size of bottle). They don't even need to put the types of grapes on if they don't want too. So, to your questions, if you can't find anything on the label about the manufacturer of the wine, it will be very difficult to track it down if they don't want. That's the price you are paying, a super low price without a lot of questions asked.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-09-25T14:30:53.773", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7500"}} +{ "Id": "7500", "PostTypeId": "2", "ParentId": "7498", "CreationDate": "2018-09-25T21:17:12.670", "Score": "2", "Body": "

Usually you can get a significant amount of information from a wine label. I would suggest simply doing an Internet search for a comprehensive review of what you can glean from a label. Wines, such as those marketed as Trader Joe’s Charles Shaw label, are not specific to a vintage or region for that matter. If I recall correctly these wines referred to as “Two Buck Chuck” has sold for $1.99 a bottle and is a blend of grapes from many unidentified sources, but may be listed as a California Merlot, etc., specificity beyond that is a guess as to region or vintage.

\n", "OwnerUserId": "8059", "LastActivityDate": "2018-09-25T21:17:12.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7501"}} +{ "Id": "7501", "PostTypeId": "2", "ParentId": "7498", "CreationDate": "2018-09-26T11:05:43.193", "Score": "1", "Body": "

For wine from France, all bear address of the producer or the cooperative due to traceability and customs, it may however be retagged out of the country. Most French wines also bear AOP information, which states the geographical domain of production.

\n\n

As for other countries, I don't know.

\n", "OwnerUserId": "6943", "LastActivityDate": "2018-09-26T11:05:43.193", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7502"}} +{ "Id": "7502", "PostTypeId": "1", "CreationDate": "2018-09-26T19:28:42.077", "Score": "3", "ViewCount": "59573", "Body": "

I am a passionate traveller, and this is all I ever wanted. But the only problem I face in the new place is finding the beer shop. Is there any way of finding one without any hassle? My journey is always incomplete without beer.

\n", "OwnerUserId": "8112", "LastEditorUserId": "5064", "LastEditDate": "2018-09-30T13:43:16.483", "LastActivityDate": "2019-12-14T01:36:14.800", "Title": "How can I find beer or wine shops online in India?", "Tags": "wine specialty-beers online", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7503"}} +{ "Id": "7503", "PostTypeId": "1", "AcceptedAnswerId": "7507", "CreationDate": "2018-09-29T11:55:10.263", "Score": "4", "ViewCount": "294", "Body": "

What food stuffs pair well with black wine?

\n\n

Black wine in reality is a very, very dark red wine and I would like to know what pairs well with this wine as well as if there are specials occasions that pair well with this wine if any.

\n\n
\n

Wait, what the heck is black wine? Despite its nickname, it’s a red wine made from Saperavi grapes—but its color is such a rich, dark purple, that it looks black. Saperavi is Georgia’s most popular red wine, and the grapes are now being grown throughout the world, including the Finger Lakes region of the U.S., Australia and Eastern Europe. - Psst: Black Wine Is the New Trend You Need to Know

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "6370", "LastEditDate": "2018-10-01T22:50:29.997", "LastActivityDate": "2018-10-02T17:03:31.207", "Title": "What dishes pair well with black wine?", "Tags": "wine recommendations pairing red-wine", "AnswerCount": "2", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7504"}} +{ "Id": "7504", "PostTypeId": "2", "ParentId": "7502", "CreationDate": "2018-09-30T13:41:46.520", "Score": "2", "Body": "

How can I find beer or wine shops online in India?

\n\n

First of all, try using a search engine and employ the Punjabi language or some other popular Indian language. Many languages are employed locally or are used in very particular regions of India.

\n\n

Here are 3 Websites to Order Alcohol Online in India:

\n\n
\n

You can order alcohol online in India with these websites.

\n \n

Let’s take a quick look at the laws in India to order alcohol before we share the list with you.

\n \n

In India, the retail industry has bloomed a lot in the last ten years, from selling clothes to eyewear, anything and everything can be bought online. But, there is one question that troubles a lot of people especially the youngsters, Can you purchase your drinks online?

\n \n

The short answer is YES, you can buy and sell alcohol online. But, in order to sell it online, you need to seek permissions from the state government and ensure that your business model complies with the state laws. You also require permissions to buy/sell liquor in public places. Every state has different age restrictions regarding hard drinks, hence selling or buying drinks depends on the age restrictions.

\n \n

Prohibition is incorporated in the Constitution of India among the directive principles of state policy which means that legislative powers of alcohol consumption are under the power of respective states. Recently, Bihar had prohibited the sale and consumption of country liquor in April 2016. The Liquor online business model is a risky model but it can be done if you comply with state laws you can run a successful business.

\n \n

Here are few online alcohol vendors, who are running a successful online Alcohol portal:

\n \n

Madhuloka is probably one of the most famous outlets for ordering alcohol online. Based in Bangalore, Madhuloka has a wide range of drinks including premium brands as well. The vision of Madhuloka is to provide their guests with best and widest range of wine and spirits. They operate only in Bangalore.

\n \n

Madhuloka Wine Boutique is about wines to drink – not just wines that impress at tastings. We particularly emphasize drinkability and try to offer wines, which do not just impress on first taste but leave you wanting another glass.

\n \n

Whiskey Marketplace (India)

\n \n

Probably the best place to buy whiskey online, the website is 100% secure and safe for buying rum, cognac, vodka, gin, and Armagnac. The feature that makes the website unique are the filters, age and price filters which allow the users to buy aged whiskey. The website also contains filters for the retailers you want the drinks from and the age of the whiskey you wish to purchase.

\n \n

For people who wish to know about the latest trends and events, detailed analysis of the liquor industry they can browse through the Spiritz Magazine. The website also informs the users about the latest fashionable drinks available in the market.

\n \n

Go on, shop your drinks online!!!

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-09-30T13:41:46.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7505"}} +{ "Id": "7505", "PostTypeId": "5", "CreationDate": "2018-09-30T13:51:19.983", "Score": "0", "Body": "

Questions related to online sources of information concerning the subject of alcoholic drinks, such as sales or national availability.

\n\n

Wikipedia has this to say about the term \"online\":

\n\n
\n

In computer technology and telecommunications, online indicates a state of connectivity, and offline indicates a disconnected state. In modern terminology this usually refers to an Internet connection, but (especially when expressed \"on line\" or \"on the line\") could refer to any piece of equipment or functional unit that is connected to a larger system. Being online means that the equipment or subsystem is connected, or that it is ready for use.

\n \n

\"Online\" has come to describe activities performed on and data available on the Internet, for example: \"online identity\", \"online predator\", \"online gambling\", \"online shopping\", \"online banking\", and \"online learning\". Similar meaning is also given by the prefixes \"cyber\" and \"e\", as in the words \"cyberspace\", \"cybercrime\", \"email\", and \"ecommerce\". In contrast, \"offline\" can refer to either computing activities performed while disconnected from the Internet, or alternatives to Internet activities (such as shopping in brick-and-mortar stores). The term \"offline\" is sometimes used interchangeably with the acronym \"IRL\", meaning \"in real life\".

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-09-30T13:51:19.983", "LastActivityDate": "2018-09-30T13:51:19.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7506"}} +{ "Id": "7506", "PostTypeId": "4", "CreationDate": "2018-09-30T13:51:19.983", "Score": "0", "Body": "Questions related to online sources of information concerning the subject of alcoholic drinks.", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-09-30T13:51:19.983", "LastActivityDate": "2018-09-30T13:51:19.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7507"}} +{ "Id": "7507", "PostTypeId": "2", "ParentId": "7503", "CreationDate": "2018-09-30T22:37:28.827", "Score": "2", "Body": "

I’ve never tried it myself, but I did find an article which includes some pairings. From that article:

\n\n
\n

It’s an excellent food wine as well; black wines pair well with fatty\n meats, fried vegetables, walnuts (widely used in Georgian cuisine),\n and cheeses.

\n
\n\n

By the way, the page you linked in your question has its own pairing suggestions:

\n\n
\n

Got it. So what should I drink it with? Gersamia suggests pairing\n Lukasi Saperavi 2014 ($44), just recently available in the U.S., with\n pork, lamb, grilled chicken, grilled tuna or aged cheese.

\n
\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2018-10-01T21:36:05.280", "LastActivityDate": "2018-10-01T21:36:05.280", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7508"}} +{ "Id": "7508", "PostTypeId": "2", "ParentId": "7502", "CreationDate": "2018-10-01T17:21:10.120", "Score": "3", "Body": "

Yes, finding a nearby beer shop or nearby wine shop is hassle free now all because of Nearbytheka.com.

\n\n

NearbyTheka is India’s first online portal where you can locate the list of nearby beer shops, pubs, bars, wine shops, cafes, and thekas close to your location just within a click. All you need just to search your existing location through GPS and explore the nearby beer shops, just like that.

\n\n

The motto of NearbyTheka is to provide a hassle-free way out to search nearby wine shops. Along with that, they believe to provide a platform for all daaru lovers to spice up their life with the list of nearby thekas, yummiest nearby chakna, nearby cafes, pubs, bars and daaru party theme merchandise with the latest daarubaaz trends at amazing prices.

\n", "OwnerUserId": "8119", "LastActivityDate": "2018-10-01T17:21:10.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7509"}} +{ "Id": "7509", "PostTypeId": "2", "ParentId": "7503", "CreationDate": "2018-10-02T17:03:31.207", "Score": "5", "Body": "

Saperavi is a Teinturier type grape, which usually means red skins and red flesh. I have grown two of these types of grapes. Dunkelfelder and Agria and they both are used to make deep red wines that are almost undrinkable. They are usually used in very small quantities to boost the color of lighter colored grapes like Pinot Noir. On their own you need to take special care in the winery to have a light hand in the wine making area otherwise you end up with a tannic monster that you can't drink. You can pretty easily buy a similar grape in the USA called Alicante Bouchet which has been grown in California for over 100 years. You can usually buy them at a decent wine shop. I have had Saperavi wines and they tend to be huge tannic monsters unless tamed in the winery.

\n\n

Pair with food as you would Cabernet or Nebbiolo, red meats, bold cheeses, heavy sauces, etc.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-10-02T17:03:31.207", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7510"}} +{ "Id": "7510", "PostTypeId": "1", "AcceptedAnswerId": "7511", "CreationDate": "2018-10-02T21:57:14.480", "Score": "2", "ViewCount": "156", "Body": "

If a beer keg is tapped and served but is then untapped before it is empty, and kept cold, does that make the beer in the keg more likely to go flat or become undesirable?

\n\n

Context would be if a bar takes a keg off a line to make room for another keg, but then eventually serves the original keg again.

\n", "OwnerUserId": "8121", "LastActivityDate": "2018-10-03T19:31:26.240", "Title": "Do kegs go bad faster once they are tapped?", "Tags": "keg bartending", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7511"}} +{ "Id": "7511", "PostTypeId": "2", "ParentId": "7510", "CreationDate": "2018-10-03T19:31:26.240", "Score": "3", "Body": "

Soo... There are two main ways to push beer out of a keg. Carbon Dioxide and regular air. Most bars use CO2 (and Nitrogen in some cases) to push the beer out. Your regular backyard kegger uses regular air which is full of oxygen. A keg will not go bad if you take it offline as long as it was being filled with CO2 at the right pressure. (Or let's say it won't go bad for many days or weeks if properly filled with CO2). Your backyard keg with the hand pump, the beer will go stale within a day or two.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-10-03T19:31:26.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7514"}} +{ "Id": "7514", "PostTypeId": "2", "ParentId": "485", "CreationDate": "2018-10-08T10:09:56.387", "Score": "2", "Body": "

Here in the Netherlands, we mostly drink poured beer with like 1/4 of the glass filled with foam and we think the beer is not as good anymore when there is no foam in it as the carbonation is gone. But I don't know how it is in other countries, so I believe it is beer and country-specific how much foam there is in a glass.

\n", "OwnerUserId": "8134", "LastEditorUserId": "8134", "LastEditDate": "2019-03-14T08:05:51.383", "LastActivityDate": "2019-03-14T08:05:51.383", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7517"}} +{ "Id": "7517", "PostTypeId": "2", "ParentId": "6517", "CreationDate": "2018-10-14T11:25:31.233", "Score": "3", "Body": "

I know of three at the moment.

\n\n

The Snow Grouse was already mentioned and is supposed to be served straight from the freezer.

\n\n

Dalwhinnie Winter's Gold is another one.

\n\n

And very recently, Johnny Walker launched the White Walker (base on the Game of Thrones show).

\n\n

A couple of remarks.\nThe Dalwhinnie expression is the only single malt among the named three. The others are blends of malt and other grains.\nAny \"other\" whisky, I personally, would never drink chilled. Neither chilled with ice nor with stones. To explain why, just a little background. Some whisky's are \"unchillfiltered\" or \"non chill filtered\". If so, it says so on the bottle. These whisky's still contain lots of essential oils. Chilling them will cause these oils to coagulate and form a hazy draft in your dram. Not what I want.\nWith this in mind, using ice is bad because it will water down your drink on top of chilling it. Using stones is almost equally bad, because though your drink will not be diluted, it will still turn for the ugly.

\n\n

So I would keep drinking whisky at room temp, and if you don't appreciate it now, you'll learn... If you still want a cold one, take one of the three mentioned, as they were purposely invented to this end.

\n\n

Nick, board member of Angel's Share whisky club, Izegem, Belgium

\n", "OwnerUserId": "8150", "LastActivityDate": "2018-10-14T11:25:31.233", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7518"}} +{ "Id": "7518", "PostTypeId": "1", "AcceptedAnswerId": "7520", "CreationDate": "2018-10-14T22:10:31.880", "Score": "1", "ViewCount": "191", "Body": "

I hear alcohol itself has no delicious flavor, if any, also light drinks have such a small amount of alcohol that won't make you feel tipsy. So it's a question for me why is there alcohol in light drinks and why people take the risk of toxifying themselves by drinking it when it has no good effects? Thanks for any feedback.

\n", "OwnerUserId": "8151", "LastActivityDate": "2018-10-15T23:08:30.957", "Title": "What's the point of drinking light booze?", "Tags": "taste alcohol-level", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7520"}} +{ "Id": "7520", "PostTypeId": "2", "ParentId": "7518", "CreationDate": "2018-10-15T12:42:41.427", "Score": "7", "Body": "

The effects of alcohol are well known. It makes you relax, uninhibited and generally have a good time up to a point. I once had a couple of friends that would order their Coors Light beer on crushed ice. It was awful, but they did it anyway as a way to slow down the consumption. I think that's generally what people are doing when there is less alcohol in a drink. They like to get buzzed and don't want to be drunk. Personally, I like to drink a fair amount of beer so if I know I am going to have more than a couple of beers, I will choose a lower alcohol beer (not necessarily a lite beer) instead of an IPA. I also drink cider instead of wine for the same purpose.

\n\n

So, I think people like to drink something but not get drunk.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-10-15T12:42:41.427", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7521"}} +{ "Id": "7521", "PostTypeId": "2", "ParentId": "7518", "CreationDate": "2018-10-15T23:08:30.957", "Score": "3", "Body": "

In addition to what farmersteve said: Pure alcohol doesn't have a taste, but lower-alcohol beers, wines, ciders, meads, etc do. Sometimes what you're looking for is the taste, not the alcohol -- the grain (or grapes etc), not the alcohol itself. So I challenge the claim that there is no benefit.

\n", "OwnerUserId": "43", "LastActivityDate": "2018-10-15T23:08:30.957", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7522"}} +{ "Id": "7522", "PostTypeId": "1", "AcceptedAnswerId": "7525", "CreationDate": "2018-10-16T18:05:43.217", "Score": "1", "ViewCount": "253", "Body": "

I found interesting video https://www.youtube.com/watch?v=hFSWTHhVdqE, with pouring sake that freezes in the glass at room temperature. How is it possible? Why it is not possible to make ice crystals while standstill in the freezer?

\n", "OwnerUserId": "8157", "LastActivityDate": "2018-10-17T20:05:15.103", "Title": "Why is not sake freezing in the freezer but on the air after serving?", "Tags": "science sake cooling", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7523"}} +{ "Id": "7523", "PostTypeId": "1", "CreationDate": "2018-10-16T18:08:22.507", "Score": "1", "ViewCount": "187", "Body": "

Is this true:

\n\n
\n

Distilled alcohol such as gin, vodka, scotch, whisky and rye are\n produced from fermentation and distillation of wheat, barely or rye.\n The distillation process separates the alcohol from the gluten\n proteins, producing an extracted product that is gluten free. Despite\n being manufactured from grains that contain gluten, the final product\n contains NO gluten.\"

\n \n

Rum is distilled from sugar cane and is high in FODMAPs, so avoid if you can. However, it is a gluten-free option safe for those with\n celiac disease.

\n
\n\n

Why is vodka able to have it's gluten removed after distillation but when rum is distilled the sugar(s) [FODMAPs] is still an issue?

\n\n

Quoted source: Alcohol That Doesn’t Make Your Belly Ache

\n", "OwnerUserId": "8158", "LastEditorUserId": "8158", "LastEditDate": "2018-10-18T15:04:34.623", "LastActivityDate": "2018-10-27T05:02:07.940", "Title": "Why is Rum not affected in the same way by distillation as other alcohols like Vodka?", "Tags": "health vodka distillation rum", "AnswerCount": "2", "CommentCount": "8", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7525"}} +{ "Id": "7525", "PostTypeId": "2", "ParentId": "7522", "CreationDate": "2018-10-17T20:05:15.103", "Score": "3", "Body": "

The sake was most likely supercooled. It was cooled below its freezing point, but there were no impurities to form ice crystals. When it was poured into a glass, as the author of that video suggests in his comment, it created turbulence that produced ice crystals to form, and once that process starts, accelerates until it is completely frozen. It is a fun experiment to do yourself with just water.

\n", "OwnerUserId": "4725", "LastActivityDate": "2018-10-17T20:05:15.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7526"}} +{ "Id": "7526", "PostTypeId": "2", "ParentId": "7523", "CreationDate": "2018-10-21T00:37:58.380", "Score": "3", "Body": "

I don't have any prior knowledge so I Googled the answer. According to this site and this other site, sugar doesn't make it past distillation. However, sugar is often added after distillation in rum.

\n", "OwnerUserId": "6370", "LastActivityDate": "2018-10-21T00:37:58.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7527"}} +{ "Id": "7527", "PostTypeId": "1", "CreationDate": "2018-10-21T16:02:49.870", "Score": "1", "ViewCount": "112", "Body": "

How we can classify tannins used in making of different wines like white wine and red wine on the basis of wood tannins and grape tannins?

\n", "OwnerUserId": "8167", "LastEditorUserId": "5064", "LastEditDate": "2018-10-23T11:37:22.353", "LastActivityDate": "2018-10-23T11:37:22.353", "Title": "What are tannins in wine?", "Tags": "taste wine health red-wine", "AnswerCount": "1", "CommentCount": "4", "ClosedDate": "2018-10-25T08:43:16.613", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7528"}} +{ "Id": "7528", "PostTypeId": "2", "ParentId": "7527", "CreationDate": "2018-10-23T11:36:23.267", "Score": "1", "Body": "

What are tannins in wine?

\n\n
\n

Tannins refer to the diverse group of chemical compounds in wine that can affect the color, aging ability and texture of the wine. While tannins cannot be smelled or tasted, they can be perceived during wine tasting by the tactile drying sensation and sense of bitterness that they can leave in the mouth. This is due to the tendency of tannins to react with proteins, such as the ones found in saliva. In food and wine pairing, foods that are high in proteins (such as red meat) are often paired with tannic wines to minimize the astringency of tannins. However, many wine drinkers find the perception of tannins to be a positive trait—especially as it relates to mouth feel. The management of tannins in the winemaking process is a key component in the resulting quality.

\n \n

Tannins are found in the skin, stems, and seeds of wine grapes but can also be introduced to the wine through the use of oak barrels and chips or with the addition of tannin powder. The natural tannins found in grapes are known as proanthocyanidins due to their ability to release red anthocyanin pigments when they are heated in an acidic solution. Grape extracts are mainly rich in monomers and small oligomers (mean degree of polymerization <8). Grape seed extracts contain three monomers (catechin, epicatechin and epicatechin gallate) and procyanidin oligomers. Grape skin extracts contain four monomers (catechin, epicatechin, gallocatechin and epigallocatechin), as well as procyanidins and prodelphinidins oligomers. The tannins are formed by enzymes during metabolic processes of the grapevine. The amount of tannins found naturally in grapes varies depending on the variety with Cabernet Sauvignon, Nebbiolo, Syrah and Tannat being 4 of the most tannic grape varieties. The reaction of tannins and anthocyanins with the phenolic compound catechins creates another class of tannins known as pigmented tannins which influence the color of red wine. Commercial preparations of tannins, known as enological tannins, made from oak wood, grape seed and skin, plant gall, chestnut, quebracho, gambier[18] and myrobalan fruits, can be added at different stages of the wine production to improve color durability. The tannins derived from oak influence are known as \"hydrolysable tannins\" being created from the ellagic and gallic acid found in the wood.

\n \n

In the vineyards, there is also a growing distinction being made between \"ripe\" and \"unripe\" tannins present in the grape. This \"physiological ripeness\", which is roughly determined by tasting the grapes off the vines, is being used along with sugar levels as a determination of when to harvest. The idea is that \"riper\" tannins will taste softer but still impart some of the texture components found favorable in wine. In winemaking, the amount of the time that the must spends in contact with the grape skins, stems and seeds will influence the amount of tannins that are present in the wine with wines subjected to longer maceration period having more tannin extract. Following harvest, stems are normally picked out and discarded prior to fermentation but some winemakers may intentionally leave in a few stems for varieties low in tannins (like Pinot noir) in order to increase the tannic extract in the wine. If there is an excess in the amount of tannins in the wine, winemakers can use various fining agents like albumin, casein and gelatin that can bind to tannins molecule and precipitate them out as sediments. As a wine ages, tannins will form long polymerized chains which come across to a taster as \"softer\" and less tannic. This process can be accelerated by exposing the wine to oxygen, which oxidize tannins to quinone-like compounds that are polymerization-prone. The winemaking technique of micro-oxygenation and decanting wine use oxygen to partially mimic the effect of aging on tannins

\n \n

A study in wine production and consumption has shown that tannins, in the form of proanthocyanidins, have a beneficial effect on vascular health. The study showed that tannins suppressed production of the peptide responsible for hardening arteries. To support their findings, the study also points out that wines from the regions of southwest France and Sardinia are particularly rich in proanthocyanidins, and that these regions also produce populations with longer life spans.

\n \n

Reactions of tannins with the phenolic compound anthocyanidins creates another class of tannins known as pigmented tannins which influences the color of red wine. - Phenolic content in wine

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-10-23T11:36:23.267", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7529"}} +{ "Id": "7529", "PostTypeId": "1", "CreationDate": "2018-10-24T00:54:44.027", "Score": "4", "ViewCount": "2908", "Body": "

I drink my rum straight. Recently was sipping on a glass of rum and a mate poured some cubes (before filling the rum) into his glass.

\n\n

If this is not the same difference of opinions vis a vis whiskey & cubes, I’d appreciate some (distinct) criticisms of the pros and cons of ice cubes in rum.

\n", "OwnerUserId": "7965", "LastActivityDate": "2018-10-27T04:49:54.587", "Title": "Ice cubes in rum", "Tags": "taste style serving drinking rum", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7530"}} +{ "Id": "7530", "PostTypeId": "2", "ParentId": "7529", "CreationDate": "2018-10-24T08:13:24.560", "Score": "6", "Body": "

When it comes to what is socially accepted in the US, ice is mostly reserved for the harsher stuff like bourbon and scotch. The ice serves a purpose of diluting the liquor, thus making it smoother on the way down. It serves a purpose for different whiskies that have harsher spice notes.

\n\n

Tequila, vodka, brandy, cognac, and rum should be put in the freezer rather than mixed with ice (unless in a mixed drink). This isn't to say ice will ruin any of these drinks, but more so that they are generally considered to be smoother and thus do not need ice. While spiced rum might be harsher than the rest, it is still kept in the freezer with the other rums.

\n\n

That being said, it's all personal preference. Drink it the way you like it!

\n", "OwnerUserId": "8172", "LastActivityDate": "2018-10-24T08:13:24.560", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7531"}} +{ "Id": "7531", "PostTypeId": "1", "AcceptedAnswerId": "7533", "CreationDate": "2018-10-25T07:04:09.477", "Score": "6", "ViewCount": "8560", "Body": "

I usually see bars keeping spirits at the room temperature.\nHowever, I have heard that some people tend to keep them in the freezer.\nAlcohol doesn't freeze, and having ice cold spirits readily available might be convenient.

\n\n

I use hard liquor for both cocktails and to be drank without mixers, on the rocks.

\n\n

So the question is: does it make sense to store hard liquor in the freezer?

\n\n

More info:

\n\n
    \n
  • I understand that cocktail recipes are adapted for spirits kept at room temperature, as introducing ice dilutes the drink. So the result might be different with very cold spirits.
  • \n
  • I live in the tropics and the kitchen (where I keep liquor) is not air-conditioned, so the room temperature is frequently at around 30C and might not be appropriate, which is another reason why I ask this question.
  • \n
\n", "OwnerUserId": "8177", "LastActivityDate": "2018-11-05T00:42:31.617", "Title": "Does it make sense to store hard liquor in the freezer?", "Tags": "storage singapore", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7532"}} +{ "Id": "7532", "PostTypeId": "2", "ParentId": "6517", "CreationDate": "2018-10-25T18:46:10.363", "Score": "0", "Body": "

I’ve noticed that Jack Daniels -stocked at every bar- is typically served on ice (“chilly”), especially when mixed with coke.

\n", "OwnerUserId": "7965", "LastActivityDate": "2018-10-25T18:46:10.363", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7533"}} +{ "Id": "7533", "PostTypeId": "2", "ParentId": "7531", "CreationDate": "2018-10-26T00:04:01.537", "Score": "4", "Body": "

This mostly comes down to personal preference. Think about it this way: beer can be served at room temperature or cold, but when most people (in the US) ask for a beer, they want a nice cold brew. Go to a place like Germany and their beer may be served at room temperature.

\n\n

One overall benefit of storing any liquor in the freezer would be making it smoother on the way down -- it eases any burn on the throat. This can apply to just about any liquor, though some types of liquor have noticeable differences in taste when served warm vs cold. A couple that come to mind are:

\n\n
    \n
  • Cognac (specifically Salagnac)
  • \n
  • Deep Eddy Lemonade
  • \n
  • Fireball
  • \n
\n\n

During the Hennessy shortage of 2017, many customers at our store had to look for alternatives. Those who didn't go for Remy Martin went for Salagnac. When cold, Salagnac has a very similar taste to Hennessy. When warm however, this isn't as much the case.

\n\n

Both Deep Eddy Lemonade and Fireball have stronger, sweeter flavors at room temperature. When cold, the sweetness isn't as much of a smack in the face, and with fireball the flames seem to more along the lines of a smolder.

\n\n

You do not put bourbon or scotch in the freezer. Both are intended to be straight or on the rocks. It doesn't make the liquor go bad in any way, but is seen as heresy and you may be shunned by friends or family. There is a noticeable difference in the taste notes of smoke and oak, so it's best to leave these ones out.

\n\n

When it comes to the bar, it just makes more sense to have the alcohol out on display. It shows the customers what they can have, multiple bartenders don't have to fight for control of the freezer, and a large portion of their sales are from mixed drinks which are served with ice anyway.

\n", "OwnerUserId": "8172", "LastEditorUserId": "8172", "LastEditDate": "2018-11-05T00:42:31.617", "LastActivityDate": "2018-11-05T00:42:31.617", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7534"}} +{ "Id": "7534", "PostTypeId": "2", "ParentId": "7529", "CreationDate": "2018-10-26T11:41:21.070", "Score": "3", "Body": "

I find rum good when it is served neat, but then I am far from a connoisseur on the subject of rum. It really is an amazing drink because it’s made in so many different places and in so many different ways (white, aged, agricole, black strap, spiced, etc).

\n\n

The following may be helpful in drinking rum:

\n\n
\n

Most spirits are distilled to 40 percent alcohol by volume, or 80 proof, but many rums are bottled at higher proofs. For those stiffer rums, “adding ice or a splash of water will mellow it out so the alcohol vapors don't overpower the subtle flavors,” says Vida. His rule of thumb: “I'd say 45 percent [ABV] or lower you should drink it neat, but anything above that you may enjoy more with dilution.” - The 5 Most Useful Rules for Drinking Rum

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-10-26T11:41:21.070", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7535"}} +{ "Id": "7535", "PostTypeId": "2", "ParentId": "7531", "CreationDate": "2018-10-26T11:57:57.620", "Score": "2", "Body": "

Does it make sense to store hard liquor in the freezer?

\n\n

The short answer is: It depends on the liquor and the individual.

\n\n
\n

Here’s the thing, sticking any spirit in the freezer has its benefits. As the temperature drops, the viscosity (thickness) of a liquid increases. That means after vodka hangs out in the freezer for awhile it has a better texture. According to Claire Smith of Belvedere, “[vodka] becomes more viscous, richer. It coats the mouth.” The same can be said for any spirit (or liquid, really). However, with that viscosity comes a tradeoff: the muting of flavors and aromas.

\n \n

As a spirit gets warmer, it releases more volatiles, compounds that easily vaporize. We know that if a spirit is too hot, the smell of pure alcohol can be overwhelming (see: why we put ice in our whiskey). However. when a spirit is too cold, the aromas and tastes might seem downright non-existent.

\n \n

Now for vodka, this isn’t a huge deal, because in general vodka has less flavor and odor than whiskey. We’ll just say it: vodka is less complex than whiskey. It has less impurities. That doesn’t mean vodka is bad. Hey, it reportedly gives you less of a hangover than whiskey. However, to the average person, if you lose some vodka flavor, well, you’re not losing much. However, much of enjoying a dram of whiskey is taking in the nose (the same goes for wine, which is why we also don’t recommend freezing it).

\n \n

Says Kevin Liu, Chief Cocktail Maker at The Tin Pan, “There are comparatively fewer volatiles in vodka, while the whole point of aging whiskey is to create desirable volatiles.” He adds, “[The whiskey doesn’t lose any volatiles, [they’re] just harder to detect when you have cold whiskey. Putting [whiskey] in the freezer and then taking it out will have no effect at all.” In general, spirits that have hung out in a barrel longer will have more depth than vodka, so it’s best to keep them out of the freezer.\n - Why Do We Put Vodka In The Freezer, But Not Whiskey?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-10-26T11:57:57.620", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7536"}} +{ "Id": "7536", "PostTypeId": "2", "ParentId": "7529", "CreationDate": "2018-10-27T04:49:54.587", "Score": "3", "Body": "

Ice in any spirit is always about personal preference. Adding ice does two things to any spirit, regardless of category:

\n\n
    \n
  1. It lowers the temperature, slowing down evaporation of the ethanol, making the spirit more pleasant to smell and softer on the palate.

  2. \n
  3. It dilutes the spirit, again softening the effect of the ethanol on your palate. Some people will opt for a few drops of water instead of ice in order to get the dilution, but more stable (as the ice melts, the dilution increases) as well as not dropping the temperature too low for the nose to really come through.

  4. \n
\n\n

Ultimately, this is about preference. Try a rum neat. Then try it with a few drops of water. Try it with ice. Which way did you prefer? Drink it like that.

\n\n

You'll find that different rums (and different styles of rum) will suit you more with ice, with water, or neat. And those preferences will change over time. When I was tasting new rums for reviews multiple times a week, I became more tolerant of the bitterness of the alcohol and found I was drinking heavier, harsher rums neat more often. These days I'm more likely to add water or even ice on a hot day.

\n\n

Drink what makes you happy (unless it's Captain Morgan).

\n", "OwnerUserId": "6350", "LastActivityDate": "2018-10-27T04:49:54.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7537"}} +{ "Id": "7537", "PostTypeId": "2", "ParentId": "7523", "CreationDate": "2018-10-27T05:02:07.940", "Score": "5", "Body": "

There is nothing different about the distillation of rum. Just like with whiskey, brandy, vodka, etc. no sugar comes off the still.

\n\n

What does happen a lot in the rum industry is the post distillation addition of rum, as referenced in Eric's answer (the author at Alcademics - Camper English - has done a lot of research on sugar in rums).

\n\n

Sugar can have gluten contamination if it is produced near grain processing. Depending on the rum and where the producer sources their sugar, if sugar is added, there is a slight chance of this happening.

\n\n

If you want to avoid any chance of additive sugar, you can target brands that don't use additive sugar like Foursquare from Barbados or any Rhum Agricole from Martinique (additive sugar is illegal for rums produced with the AOC from Martinique).

\n", "OwnerUserId": "6350", "LastActivityDate": "2018-10-27T05:02:07.940", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7538"}} +{ "Id": "7538", "PostTypeId": "1", "CreationDate": "2018-10-27T18:10:24.383", "Score": "1", "ViewCount": "190", "Body": "

There are alcohol free beer and wine, so are there any alcohol free spirits? I know that dealcoholization would make the beer or wine lose its flavor and for spirits the loss would be even larger since the flavor of spirits is largely based on alcohol.

\n\n

While it is still interesting to taste: What do they taste like.

\n", "OwnerUserId": "8180", "LastEditorUserId": "5064", "LastEditDate": "2018-12-08T23:01:07.483", "LastActivityDate": "2018-12-08T23:01:07.483", "Title": "Are there alcohol free spirits and how would they taste like?", "Tags": "spirits non-alcoholic", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7539"}} +{ "Id": "7539", "PostTypeId": "2", "ParentId": "7531", "CreationDate": "2018-10-27T22:48:08.073", "Score": "1", "Body": "

I don't generally like my spirits that cold. One exception is drinks where the flavor of the liquor is largely overwhelmed by the mixers being added to it. If, for example, you are making a batch of cold bloody marys, using ice-code vodka means you don't have to dilute the drink as much with ice cubes.

\n", "OwnerUserId": "7787", "LastActivityDate": "2018-10-27T22:48:08.073", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7540"}} +{ "Id": "7540", "PostTypeId": "1", "CreationDate": "2018-10-28T05:49:35.357", "Score": "4", "ViewCount": "55", "Body": "

Normally I would add ice to a glass, then a piece of lime, pour (in my case) gin over the ice, then top it off with tonic. However, a friend of mind chills their gin in the fridge, but also pours their drink in exactly the same manner. So, my question is: If I pre-chill my gin in the fridge does it have any effect on it, such as taste (other than having a much colder drink)?

\n", "OwnerUserId": "6366", "LastEditorUserId": "5064", "LastEditDate": "2019-08-10T23:10:07.867", "LastActivityDate": "2019-08-10T23:10:07.867", "Title": "Pre-chilled spirits - is there a content difference?", "Tags": "gin", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7541"}} +{ "Id": "7541", "PostTypeId": "2", "ParentId": "7540", "CreationDate": "2018-10-28T11:23:24.263", "Score": "4", "Body": "

Depending on how cold your gin would be served at, it aromas may be altered.

\n\n

As a spirit gets warmer, it releases more volatiles, compounds that easily vaporize. We know that if a spirit is too hot, the smell of pure alcohol can be overwhelming. However, when a spirit is too cold, the aromas and tastes might seem downright non-existent. This applies to whiskeys and gins especially.

\n\n

Cold gins may be okay for some, but I prefer to be able to truly taste my gins. That is why I would only add ice to it, if I had to. Even at that, I truly doubt anyone in my family would chill their gin or put ice in it.

\n\n

But then, to each his own!

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-10-28T11:23:24.263", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7542"}} +{ "Id": "7542", "PostTypeId": "1", "AcceptedAnswerId": "7866", "CreationDate": "2018-10-28T11:53:21.653", "Score": "5", "ViewCount": "667", "Body": "

Human body parts in a cocktail?

\n\n

It is a question that seems to come out of The Twilight Zone.

\n\n

Up in the Yukon (Canada) there existed (exists) a cocktail made with a real severed human toe called The Sour Toe Cocktail.

\n\n

It's like a Halloween cocktail just came to life and a sordid life at that!

\n\n

My question is: Do other drinks or cocktails exist or have existed with other real human body parts?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-10-28T12:03:18.853", "LastActivityDate": "2021-05-09T20:12:08.430", "Title": "Human body parts in a cocktail?", "Tags": "ingredients cocktails drink", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7543"}} +{ "Id": "7543", "PostTypeId": "1", "AcceptedAnswerId": "7545", "CreationDate": "2018-10-28T13:28:17.810", "Score": "1", "ViewCount": "814", "Body": "

Smoked wines have been around since Roman times. In fact, the Romans had a special chamber for smoking wines called a fumarium.

\n\n
\n

A fumarium was a smoke chamber used in Ancient Rome to enhance the flavor of wine through artificially \"aging\" the wine. Amphorae were placed in the chamber, which was built on top of a heated hearth, in order to impart a smoky flavor in the wine that also seemed to sharpen the acidity. The wine would sometimes come out of the fumarium with a paler color. In his book Vintage: The Story of Wine, Hugh Johnson noted that Pliny the Elder and Columella did not recommend that \"first-growth wines\" like Falernian, Caecuban, and Alban be smoked.

\n \n

For preservation, the amphorae were sometimes treated with sulphur dioxide prior to being placed in the fumarium. In his book, The Cyclopedia of Biblical Literature, John Kitto states that the ban on smoked wines as offerings in the Mishna stemmed from the Roman use of sulphur fumes-a uniquely Gentile technique.

\n
\n\n

Can anyone recommend a smoked wine that can be served with fish, seafood, cheese and pasta on All Soul's Day and during Lent?

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-10-29T02:01:10.117", "Title": "Smoked wine recommendation?", "Tags": "wine red-wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7544"}} +{ "Id": "7544", "PostTypeId": "2", "ParentId": "7538", "CreationDate": "2018-10-28T13:43:04.653", "Score": "3", "Body": "

Here are some alcohol free spirits:

\n\n\n\n

\"Black

\n\n

Black Zero Scotch Whiskey

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-10-28T13:43:04.653", "CommentCount": "1", "CommunityOwnedDate": "2018-10-28T13:43:04.653", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7545"}} +{ "Id": "7545", "PostTypeId": "2", "ParentId": "7543", "CreationDate": "2018-10-29T01:51:30.100", "Score": "2", "Body": "

The only wine that I could find undergoing a similar process today is a sweet passito Vino Santo (like this: \"TADDEO\" VINO PASSITO AFFUMICATO) from Umbria, a small region in central Italy. However in this case it is not the wine to be smoked, it is the grapes: they are stored in smoke filled loft while waiting for them to dry. As I said this wine is sweet and probably quite intense, so I am not sure it would go well with your salmon. It is also quite rare to find, you would have to search well even if you are in Italy.

\n\n

Maybe you will have more luck using an earthy Pinot Noir from Burgundy, even a Marsanny Rosé could go well with its flintiness. If you really want something smoky you could try a Syrah from Northern Rhone, but it could be a bit too powerful for what you want to pair, so maybe you should choose a basic AOC like a Crozes-Hermitage from a good producer (for example Paul Jaboulet Aîné).

\n\n

\""TADDEO"

\n\n

\"TADDEO\" VINO PASSITO AFFUMICATO

\n", "OwnerUserId": "8184", "LastEditorUserId": "5064", "LastEditDate": "2018-10-29T02:01:10.117", "LastActivityDate": "2018-10-29T02:01:10.117", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7546"}} +{ "Id": "7546", "PostTypeId": "2", "ParentId": "7478", "CreationDate": "2018-10-29T10:19:41.810", "Score": "0", "Body": "

You can't find a German-style beer that is similar to Belgian beer (as Germany-style beers are low fermented ones, while Belgian beer are top fermented ones).\nBut recently it has become easy to find a German brewery that brews a Belgian beer, e.g. Camba, as well as some IPAs and stouts.

\n", "OwnerUserId": "8185", "LastActivityDate": "2018-10-29T10:19:41.810", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7547"}} +{ "Id": "7547", "PostTypeId": "1", "CreationDate": "2018-10-30T13:28:10.667", "Score": "3", "ViewCount": "336", "Body": "

\"enter\"enter

\n\n

Can anyone please tell me what this drink is?

\n", "OwnerUserId": "8187", "LastEditorUserId": "5064", "LastEditDate": "2018-10-31T11:36:02.417", "LastActivityDate": "2018-11-08T16:41:05.180", "Title": "I have been given this drink as gift, but I don't know what it is?", "Tags": "alcohol", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7551"}} +{ "Id": "7551", "PostTypeId": "1", "AcceptedAnswerId": "7559", "CreationDate": "2018-11-05T11:10:48.540", "Score": "6", "ViewCount": "210", "Body": "

Every wine has its own temperature of serving so how we will predict the best temperature for serving wine or at which best temperature it should be served?

\n", "OwnerUserId": "8167", "LastActivityDate": "2021-08-13T05:36:15.610", "Title": "Which temperature should be recommended in serving wine?", "Tags": "taste wine temperature", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7552"}} +{ "Id": "7552", "PostTypeId": "2", "ParentId": "7551", "CreationDate": "2018-11-05T13:31:27.463", "Score": "8", "Body": "

Some people serve wine at the ambient temperature without knowing that some wines are better served at a specific temperature.

\n\n

Which temperature should be recommended in serving wine?

\n\n
\n

Light dry white wines, rosés, sparkling wines: Serve at 40°F (5°C) to 50°F (10°C) to preserve their freshness and fruitiness. Think crisp Pinot Grigio and Champagne. For sparklers, chilling keeps bubbles fine rather than frothy. This is also a good range for white dessert wines; sweetness is accentuated at warmer temperatures, so chilling them preserves their balance without quashing their vibrant aromas.

\n \n

Full-bodied white wines and light, fruity reds: Serve at 50°F (10°C) to 60°F (15°C) to pick up more of the complexity and aromatics of a rich Chardonnay or to make a fruity Beaujolais more refreshing.

\n \n

Full-bodied red wines and Ports: Serve at 60°F (16°C) to 65°F (18°C) — cooler than most room temperatures and warmer than ideal cellaring temperatures—to make the tannins in powerful Cabernet or Syrah feel more supple and de-emphasize bitter components. - How to Serve Wine 101: Tips on the Perfect Serving Temperature

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-11-17T23:35:31.037", "LastActivityDate": "2018-11-17T23:35:31.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7553"}} +{ "Id": "7553", "PostTypeId": "2", "ParentId": "7538", "CreationDate": "2018-11-05T15:51:03.863", "Score": "1", "Body": "

Arkay Alcohol Free Vodka

\n\n
\n

ArKay is perfect for modern Art Cocktails, the taste gives you the same sensation as any other alcohol based cocktails served today.

\n \n

ARKAY Is Pasteurized The Shelf Life Is 2 Years

\n \n

0% – Alcohol; 0% – Calories; 0% – Sugar; 0% – Carb; Gluten Free; Friendly Veggies

\n
\n\n

\"enter \"enter

\n", "OwnerUserId": "6391", "LastActivityDate": "2018-11-05T15:51:03.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7554"}} +{ "Id": "7554", "PostTypeId": "2", "ParentId": "7423", "CreationDate": "2018-11-05T16:48:06.457", "Score": "0", "Body": "

I suppose it is turn = shift (meaning that they can pack up to 90bbls per day if the packaging department works 24 hours per day).

\n", "OwnerUserId": "8185", "LastActivityDate": "2018-11-05T16:48:06.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7555"}} +{ "Id": "7555", "PostTypeId": "2", "ParentId": "7547", "CreationDate": "2018-11-05T20:45:15.920", "Score": "4", "Body": "

Oh-Bal-Ju is liquor from N.Korea. (of course you can buy in S.Korea)

\n\n

It is made with 9 traditional Korean medicinal herb.

\n\n

OH means crow, Bal means hair, Ju means liquor - If you drink this, you can live long as crow and white hair will change to black.

\n\n

You can see a picture of it here North Korean DMZ store

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-11-05T20:45:15.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7556"}} +{ "Id": "7556", "PostTypeId": "2", "ParentId": "7428", "CreationDate": "2018-11-06T00:48:33.500", "Score": "0", "Body": "

This is not a very common practice, but there are some options:

\n\n
    \n
  • I know for a fact that Laphroaig currently print the bottling year and month on their 27yr old. There are probably others, but I suspect these will all be on the older/expensive end.

  • \n
  • Pick a annual limited release option like the Bowmore warehouseman's selection that has been created for a specific year.

  • \n
  • look for single cask bottlings, as these are more likely to print this information. Single cask bottlings are rarer directly from distilleries, but quite common from independent bottlers.

  • \n
\n\n

Finding more examples is likely to involve manual inspection of labels, some of which might be possible with images posted online.

\n", "OwnerUserId": "5619", "LastActivityDate": "2018-11-06T00:48:33.500", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7557"}} +{ "Id": "7557", "PostTypeId": "2", "ParentId": "7096", "CreationDate": "2018-11-06T01:14:33.837", "Score": "2", "Body": "

In addition to other answers it is worth noting that there are some noticeable changes when the bottle is nearly empty, presumably due to evaporation inside the bottle.

\n\n

Because of this many people either finish the last bit quickly, or decant it into smaller containers. If you have any bottles like this, it may be something to consider with long term storage.

\n", "OwnerUserId": "5619", "LastActivityDate": "2018-11-06T01:14:33.837", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7558"}} +{ "Id": "7558", "PostTypeId": "2", "ParentId": "4959", "CreationDate": "2018-11-06T01:53:57.520", "Score": "1", "Body": "

Whisky age statements refer to the youngest whisky in the bottle, and are often correlated with quality, although in reality there are many good younger whiskys.

\n\n

Its my observation that whisky prices after a certain point in quality are more directly based on rarity. It just happens that older whisky, due to the economics of aging and the angel's share, is always rarer.

\n\n

For no age statement(NaS) whiskys the pros and cons can be summarised as follows, most of the pros apply to the distillery only, but some\nPros:

\n\n
    \n
  • distilleries can sell product sooner, and thus deal with things like\nsurging demand (e.g. Suntory in Japan for an extreme) or startup\ncosts (NaS whiskys are very common in new distilleries).
  • \n
  • customers may not be put off by seeing a very young age on the bottle that may not be representative of the quality, there are plenty of decent young whiskys out there.
  • \n
  • distillers gain more flexibility in blending casks to achieve a desired flavour profile.
  • \n
  • a shorter time to market for experiments/new products (cheaper experimentation). This can be a plus for customers too if they like variety.
  • \n
\n\n

Cons:

\n\n
    \n
  • Many are younger, often leading them having a slightly harsher
    \nalcohol flavour, and less complexity. It is unlikely to be terribly\nbad though, as the distilleries still have a brand to maintain.

  • \n
  • Selling stock earlier means less available for older bottlings later on. How much of a problem this is may depend on storage space and production volumes to begin with.

  • \n
\n", "OwnerUserId": "5619", "LastEditorUserId": "5619", "LastEditDate": "2018-11-06T01:59:33.597", "LastActivityDate": "2018-11-06T01:59:33.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7559"}} +{ "Id": "7559", "PostTypeId": "2", "ParentId": "7551", "CreationDate": "2018-11-07T17:41:52.980", "Score": "8", "Body": "

Here is my take on serving wine at a variety of temperatures and colors after years and years of serving wine and drinking it.

\n\n

Remember storing wine and serving wine are two different things. All wine should be stored in a cool dark spot, preferably on it's side if it has a cork at around 50F degrees.

\n\n

Most people keep their white wine in the fridge at around 37F which is slightly too cool but you know what, but the time you open the bottle and put it in a glass it will quickly warm up to the perfect temperature. I usually keep white wine with one of those freezer bottle coolers thingies to keep it cool. The lighter the bodied the cooler you can go. I am not a fan of warm Chardonnay. Age worthy wines like Chardonnay and Riesling can stand to be slightly warmer but in reality they will warm up in your glass quickly. More aromatics are released as they warm up.

\n\n

Rose' wines for the most part should be served at the lower end of the white wine range.

\n\n

The thing most people don't know is that light red wines like pinot noir and Beaujolais should be served at cellar temperature. Last time I was in Paris (France) I was surprised at how cold they served their red wines. Really almost all of them at refrigerator temperatures. I mostly put all my red wines in the fridge an hour or so before serving unless I already have them at cellar temperature (50ish degrees).

\n\n

Highly tannic red wines actually benefit from being cool. The perception of the rough bitter tannins is reduced by cooler temperatures.

\n\n

Full bodied dessert wines, like Tokay, should also be served at a temperature slightly above cellar temperatures. Most are highly aromatic and you want a little be more warmth to release those aromatics.

\n\n

In general, try to cool off your wines before serving. White wines more so than red but all wines should be served cooler than room temperature.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-11-07T17:41:52.980", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7562"}} +{ "Id": "7562", "PostTypeId": "1", "AcceptedAnswerId": "7565", "CreationDate": "2018-11-20T07:30:47.010", "Score": "2", "ViewCount": "65", "Body": "

Is there a US National Wine Registry of vineyards, varieties, and vintages? Would I really have to contact every vineyard in America to get this information?

\n", "OwnerUserId": "8226", "LastEditorUserId": "5064", "LastEditDate": "2018-11-21T00:59:03.873", "LastActivityDate": "2018-11-21T00:59:03.873", "Title": "National Wine Registry (USA)", "Tags": "wine united-states", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7564"}} +{ "Id": "7564", "PostTypeId": "2", "ParentId": "7437", "CreationDate": "2018-11-20T08:24:06.317", "Score": "2", "Body": "

Sounds like allergy to

\n\n

malted barley or other grains, such as wheat and sorghum\nhops\nyeast\nassorted colorings, flavorings, and preservatives

\n\n

Can you eat rye normally?

\n", "OwnerUserId": "8226", "LastActivityDate": "2018-11-20T08:24:06.317", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7565"}} +{ "Id": "7565", "PostTypeId": "2", "ParentId": "7562", "CreationDate": "2018-11-20T17:09:43.793", "Score": "3", "Body": "

There is no clearinghouse of all wineries in the USA. There are some that attempt to do this like Wine.com but they do not like to share the information unless you pay for it. The TTB (Alcohol and Tobacco and Trade Bureau) has to track every wine bottled because every label has to be approved by them. BUT, there are caveats. You don't need every label approved every year. If your label only changes vintage year every year and everything else is the same, then you don't need a new label. Also, you can get generic style labels approved that just say the appellation and winery name. You can just put \"white wine\" or \"red wine\" on the label. Not many people do this anymore. Then there are blends. If you don't see the blend % on the label you might have to dig more since the TTB doesn't track that kind of information.

\n\n

You might have some luck extracting this information out of individual states, like the Washington Wine Commission's website. But, again nobody has a complete list of all wines, wineries and varietal information.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-11-20T19:50:15.390", "LastActivityDate": "2018-11-20T19:50:15.390", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7568"}} +{ "Id": "7568", "PostTypeId": "1", "CreationDate": "2018-11-21T09:39:52.950", "Score": "3", "ViewCount": "90", "Body": "

Which smells indicate that wine/beer is bad?and can it have any negative effect on health?

\n", "OwnerUserId": "8230", "LastActivityDate": "2018-11-21T14:15:45.717", "Title": "How do you know if wine has gone bad?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7569"}} +{ "Id": "7569", "PostTypeId": "2", "ParentId": "7568", "CreationDate": "2018-11-21T14:15:45.717", "Score": "2", "Body": "

Here is a list from the Wine Faults Wikipedia page. These faults, for the most part, will not do any harm when they are in wine (they aren't strong enough) They just taste bad.

\n\n

Acetaldehyde Smell of roasted nuts or dried out straw. Commonly associated with Sherries where these aromas are considered acceptable

\n\n

Amyl-acetate Smell of \"fake\" candy banana flavoring

\n\n

Brettanomyces Smell of barnyards, fecal and gamey horse aromas Cork taint Smell of a damp basement, wet cardboard or newspapers and mushrooms

\n\n

Butyric acid Smell of rancid butter

\n\n

Ethyl acetate Smell of vinegar, paint thinner and nail polish remover

\n\n

Hydrogen sulfide Smell of rotten eggs or garlic that has gone bad

\n\n

Iodine Smell of moldy grapes

\n\n

Lactic acid bacteria Smell of sauerkraut

\n\n

Mercaptans Smell of burnt garlic or onion

\n\n

Oxidation Smell of cooked fruit and walnuts. Also detectable visually by premature\n browning or yellowing of the wine

\n\n

Sorbic acid plus lactic acid bacteria Smell of crushed geranium leaves

\n\n

Sulfur dioxide Smell of burnt matches. Can also come across as a pricking sensation in the nose.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-11-21T14:15:45.717", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7570"}} +{ "Id": "7570", "PostTypeId": "2", "ParentId": "7309", "CreationDate": "2018-11-21T19:32:53.373", "Score": "1", "Body": "

Foster's Gold was my favourite, too. I also contacted Heineken and got the same email. The nearest thing I've found so far is Brahma, it's a Brazilian lager. I've only seen it in Asda so far; give it a try.

\n", "OwnerUserId": "8231", "LastEditorUserId": "6391", "LastEditDate": "2018-11-28T08:16:56.007", "LastActivityDate": "2018-11-28T08:16:56.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7571"}} +{ "Id": "7571", "PostTypeId": "2", "ParentId": "110", "CreationDate": "2018-11-23T18:40:11.947", "Score": "1", "Body": "

I just finished a batch of Applejack. After freeze distillation, I obtained a 19% ABV, however the yeast kicked back on STRONGLY after it warmed up again. I had to boil it to kill the fermentation. Different yeasts can handle different ABV before being killed off by the alcohol. I used Lavlin EC-118. For your yeast it may differ.

\n", "OwnerUserId": "8234", "LastActivityDate": "2018-11-23T18:40:11.947", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7572"}} +{ "Id": "7572", "PostTypeId": "1", "CreationDate": "2018-11-24T04:16:10.997", "Score": "3", "ViewCount": "408", "Body": "

Most fermenting vessels require a stopper to hold an airlock in place or seal it up while moving so what is the technical name of that stopper?

\n", "OwnerUserId": "8230", "LastEditorUserId": "5064", "LastEditDate": "2018-11-24T21:28:56.617", "LastActivityDate": "2018-11-24T21:28:56.617", "Title": "What is the technical name for the stopper used to seal a barrel of beer or wine?", "Tags": "terminology barrels", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7573"}} +{ "Id": "7573", "PostTypeId": "2", "ParentId": "7572", "CreationDate": "2018-11-24T14:20:38.313", "Score": "3", "Body": "

The stopper is called a “bung”. The hole is called the bung hole.

\n\n
\n

A bung, stopper or cork is a truncated cylindrical or conical closure to seal a container, such as a bottle, tube or barrel. Unlike a lid, which encloses a container from the outside without displacing the inner volume, a bung is partially inserted inside the container to act as a seal. - Bung (Wikipedia)

\n
\n\n

\"Bung\"

\n\n

Bung in the bunghole of a wine barrel

\n", "OwnerUserId": "6370", "LastEditorUserId": "5064", "LastEditDate": "2018-11-24T15:43:29.020", "LastActivityDate": "2018-11-24T15:43:29.020", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7574"}} +{ "Id": "7574", "PostTypeId": "1", "CreationDate": "2018-11-25T02:33:43.450", "Score": "2", "ViewCount": "398", "Body": "

In which country might you find a scorpion in your wine?

\n\n

Every country has its own tradition to serve wine; someone asked me that question but I didn't find the answer yet.

\n", "OwnerUserId": "8230", "LastEditorUserId": "6255", "LastEditDate": "2020-05-24T19:00:02.903", "LastActivityDate": "2020-05-28T11:56:21.557", "Title": "In which country might you find a scorpion in your wine?", "Tags": "wine ingredients tradition", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7575"}} +{ "Id": "7575", "PostTypeId": "1", "AcceptedAnswerId": "7576", "CreationDate": "2018-11-27T16:32:42.270", "Score": "4", "ViewCount": "257", "Body": "

What divides a dry wine from a sweet wine is the level of residual sugar left in the wine after fermentation?

\n", "OwnerUserId": "8230", "LastActivityDate": "2018-11-30T15:47:04.643", "Title": "Is wine dryness or sweetness due to grape variety?", "Tags": "ingredients varieties", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7576"}} +{ "Id": "7576", "PostTypeId": "2", "ParentId": "7575", "CreationDate": "2018-11-27T17:29:42.383", "Score": "5", "Body": "

No, they are not related at all. Except when they are. Let me explain. There are a couple of ways to make a wine sweet.

\n\n
    \n
  1. Ferment to dryness, filter and then add something sweet.
  2. \n
  3. Make a wine with so much sugar that the yeast can't finish
  4. \n
  5. Stop fermentation before it ends (filtering or alcohol) and leave some sweetness
  6. \n
\n\n

Almost all grapes can be made into sweet wine by one of these methods, but not all of them are as tasty as others. Some grapes, like Riesling, can make both an excellent sweet dessert style wine and a dry wine. Then others like Cabernet Sauvignon are rarely made into sweet wine. It has to do with the tannins. The one exception to this is Port and Madeira where they make sweet wines from red grapes but these are meant to age.

\n\n

So, to answer your question. No, sweet wines don't have to be related to a specific grape, but they are for taste purposes and not on the physical properties of the grapes.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2018-11-27T17:36:47.740", "LastActivityDate": "2018-11-27T17:36:47.740", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7577"}} +{ "Id": "7577", "PostTypeId": "1", "CreationDate": "2018-11-28T03:56:03.810", "Score": "2", "ViewCount": "188", "Body": "

When we think of red meat we usually think of a heavy meal, right? Well that's kinda what red wine represents in the wine world...

\n\n

Once again I ask: Why is red wine often paired with red meat?

\n", "OwnerUserId": "8230", "LastEditorUserId": "5064", "LastEditDate": "2018-11-28T13:51:17.707", "LastActivityDate": "2018-11-28T13:51:17.707", "Title": "Why is red wine often paired with red meat?", "Tags": "pairing red-wine", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7578"}} +{ "Id": "7578", "PostTypeId": "2", "ParentId": "7575", "CreationDate": "2018-11-28T13:36:12.380", "Score": "2", "Body": "

Sweetness largely depends on the level of residual sugar left in the wine after fermentation (which may be stopped in order to increase the sugar left).

\n\n

But it does not mean that all grape varieties have the same sweetness. Muscat grape is usually sweeter than other grapes.

\n\n

Please also note that adding sugar to must is strictly forbidden in Italy, except for sparkling wines.

\n\n

Edit: Another important technique to have sweeter wine is to dry grapes. Incidentally, the Amarone/Recioto couple is a typical examples for both sweet and dry wines from the same grape.

\n", "OwnerUserId": "8185", "LastEditorUserId": "8185", "LastEditDate": "2018-11-30T08:33:30.047", "LastActivityDate": "2018-11-30T08:33:30.047", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7579"}} +{ "Id": "7579", "PostTypeId": "2", "ParentId": "7577", "CreationDate": "2018-11-28T13:49:58.047", "Score": "2", "Body": "

Why is red wine often paired with red meat?

\n\n

The old wine pairing phrase goes as thus: “red with red meat and white with fish”. But wine pairing is generally a little more complicated than that.

\n\n

Here is how Dr. Vinifera puts it:

\n\n
\n

The reason red wine typically pairs well with red meat is that red wine tends to be higher in tannins. While on their own, tannins can feel drying, they’re a good complement to the rich fattiness that can be found in red meat. White wine can be better with fish or chicken because it tends to have higher acidity, and it complements food similarly to how a squirt of lemon juice can brighten a seafood dish.

\n \n

But those are just general rules. If you look at how a dish is prepared—say, grilled vs. poached, or sautéed in a bunch of butter, or take into account the side dishes or the setting, you might come up with different pairings based on the situation. So while a chewy grilled steak might call for a robust red, a sautéed filet mignon served with béchamel sauce and rosemary potatoes might work better with a rich, full-bodied white. - Why is white meat served with white wine and red meat with red?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2018-11-28T13:49:58.047", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7580"}} +{ "Id": "7580", "PostTypeId": "2", "ParentId": "7574", "CreationDate": "2018-11-28T14:59:31.303", "Score": "3", "Body": "

Relating to wine, I suspect that the right answer is none.

\n\n

On the contrary, I read about vodka being quite popular: e.g. see here, here (same producer), here and here

\n", "OwnerUserId": "8185", "LastActivityDate": "2018-11-28T14:59:31.303", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7581"}} +{ "Id": "7581", "PostTypeId": "1", "CreationDate": "2018-11-29T04:45:56.967", "Score": "4", "ViewCount": "2176", "Body": "

Has any attempt been made to produce wine(s) using Cotton Candy Grapes? (Also curious what such a wine would taste like.)

\n", "OwnerUserId": "7965", "LastActivityDate": "2018-11-29T17:37:51.970", "Title": "Cotton Candy grapes (wine)", "Tags": "taste wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7582"}} +{ "Id": "7582", "PostTypeId": "2", "ParentId": "7581", "CreationDate": "2018-11-29T17:37:51.970", "Score": "3", "Body": "

I'm sure someone has tried already. They would taste much like they do when you eat them fresh, so probably a lot like cotton candy. BUT, these are eating grapes and not wine grapes. It would take some effort to make a drinkable wine out of them. Eating grapes have rather thick skins and pulpy flesh which doesn't make it easy to get the juice out. If you got past that hurdle and got a decent amount of juice, they would be too low in sugar and the acid content would also be too low. You could adjust with sugar and acid. Wine grapes are much sweeter than table grapes (which is hard to imagine but they are super sweet when you eat them) and have much higher acids and of course seeds which table grapes do not have seeds.

\n\n

It's interesting to note that these guys have created several new grape varieties with different flavor.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-11-29T17:37:51.970", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7585"}} +{ "Id": "7585", "PostTypeId": "2", "ParentId": "6283", "CreationDate": "2018-12-04T06:47:59.883", "Score": "1", "Body": "

Small amount of alcohol can reduce stress, cause relaxation, small improvement in circulatory system and provide psychological benefits. ıf it makes you feel good, tastes good, and causes no harm (if you do not over drink), then it is good for you. All these herbs ins,de may have some additional benefits although not medically proven yet.

\n", "OwnerUserId": "8259", "LastActivityDate": "2018-12-04T06:47:59.883", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7586"}} +{ "Id": "7586", "PostTypeId": "1", "CreationDate": "2018-12-05T15:58:16.590", "Score": "2", "ViewCount": "109", "Body": "

Thanks in advance for your help.

\n\n

I like making a lot of sours based cocktails, but don't do so often enough to keep fresh juice on hand/don't like powdered sour mix.

\n\n

I thought I would try making a sour limoncello and limecello in order to substitute (yes, it will change the cocktails it is used in but I can compensate), via the following process (I know this isn't real limoncello, but closest equivalent I could describe it as):

\n\n
    \n
  • I extracted the zest of ~3lbs each of lemons and limes in half a bottle of 190 proof everclear, and then squeezed the juice and froze it.\n\n
      \n
    • I let the zest extract for a week, and freeze distilled the juice down to ~200ml each for the lemons and lime.
    • \n
    • I mixed simple syrup (~200 ml), distilled juice (~200ml) and extracted zest/everclear (~350ml).
    • \n
  • \n
\n\n

This formed a weird colloid (picture attached).\n\"enter

\n\n

Does anybody know why this would form and how one would get this to a consistent liquid? I was thinking of trying trisodium citrate in case it is a juice protein solubility issue, but trisodium citrate isn't soluble in pure alcohol, so may not help...

\n\n

Any thoughts would be appreciated.

\n", "OwnerUserId": "8269", "LastActivityDate": "2018-12-06T11:00:57.507", "Title": "Lemon Juice Producing Colloid in Everclear", "Tags": "liquor liqueur", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7587"}} +{ "Id": "7587", "PostTypeId": "2", "ParentId": "7586", "CreationDate": "2018-12-06T11:00:57.507", "Score": "2", "Body": "

The good news is that you can find an answer here, the bad news it is not in English.

\n\n

Briefly, it doesn't say how to remove opacity now that you have it, but it gives explanation on not having it in your next try (basically, opacity depends on microemulsions in 190 proof everclear: if you use everclear mixed with water and sugar, and it is lightly heated, opacity will not appear).

\n", "OwnerUserId": "8185", "LastActivityDate": "2018-12-06T11:00:57.507", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7589"}} +{ "Id": "7589", "PostTypeId": "1", "CreationDate": "2018-12-11T02:12:14.160", "Score": "2", "ViewCount": "3022", "Body": "

I read a lot that opened wine bottle can last about 3 to 7 days when it is stored well in the refrigerator, but I want to know how long it will last in a glass?

\n", "OwnerUserId": "8275", "LastEditorUserId": "9887", "LastEditDate": "2020-01-07T22:06:36.793", "LastActivityDate": "2020-01-07T22:06:36.793", "Title": "How long will red wine last after pouring it into a glass", "Tags": "taste storage red-wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7590"}} +{ "Id": "7590", "PostTypeId": "2", "ParentId": "7589", "CreationDate": "2018-12-11T14:15:52.743", "Score": "3", "Body": "

How long red wines last after it’s filled in the cup?

\n\n

The short answer is: Less than one day.

\n\n

Sources:

\n\n

7 Basics to Serving Wine and Glassware

\n\n

How & Why You Swirl Wine In Your Glass

\n", "OwnerUserId": "8185", "LastEditorUserId": "5064", "LastEditDate": "2018-12-12T12:38:02.297", "LastActivityDate": "2018-12-12T12:38:02.297", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7591"}} +{ "Id": "7591", "PostTypeId": "2", "ParentId": "7589", "CreationDate": "2018-12-11T20:05:14.713", "Score": "5", "Body": "

Ultimately, it last until you decide you no longer like the taste. What's happening is that the wine is oxidizing, and the flavor and aroma compounds are being destroyed once they're exposed to a significant amount of air. While temperature does make a different, the larger factor here is the amount of surface area to volume, which is quite high in the glass compared to in the bottle. While a bottle in the fridge will keep it's flavor components intact a bit longer than if it were on the counter (and longer yet if you put it in the freezer) a bottle on the counter will still retain its character longer than a glass in the fridge, or certainly on the table.

\n\n

Another factor to consider is how well aged and tannic the wine is. All red wine is not made alike, and a young tannic wine will hold up better for longer (and indeed even improve for awhile before it starts to degrade) compared to a wine that's well aged and already at or past its peak.

\n\n

In any case, you're probably looking at a matter of hours. While I've never paid close attention, I would guess that depending on the wine, an average of somewhere between 6 and 12 hours is going to be the limit before you start to see noticeable degradation. It could be more or could be less, but not by an order of magnitude.

\n", "OwnerUserId": "37", "LastActivityDate": "2018-12-11T20:05:14.713", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7592"}} +{ "Id": "7592", "PostTypeId": "1", "AcceptedAnswerId": "7593", "CreationDate": "2018-12-13T17:56:55.120", "Score": "4", "ViewCount": "1700", "Body": "

I've had an Irish car bomb (which is dropping a shot of Jamesons into a glass of Guiness and drinking them together) and I believe that is considered a boilermaker. I've done a shot of Jack Daniels and chased with a beer and I believe that is also a boilermaker. Is there a true definition of what makes a boilermaker in terms of how you drink it? Is the definition only when you drop the shot into the beer or does the definition also include doing a shot and then chasing the shot with a beer?

\n", "OwnerUserId": "8165", "LastEditorUserId": "5064", "LastEditDate": "2018-12-13T20:24:33.730", "LastActivityDate": "2018-12-14T21:27:42.067", "Title": "What is the official way to drink a boilermaker?", "Tags": "whiskey beer-cocktails", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7593"}} +{ "Id": "7593", "PostTypeId": "2", "ParentId": "7592", "CreationDate": "2018-12-13T20:22:56.163", "Score": "4", "Body": "

What is the official way to drink a Boilermaker?

\n\n

First of all there are two types of boilermakers.

\n\n
\n

A boilermaker can refer to two types of beer cocktail. In American terminology, the drink consists of a glass of beer and a shot of whiskey.1 The beer is either served as a chaser or mixed with the whiskey. When the beer is served as a chaser, the drink is often called simply a shot and a beer. In Philadelphia, it is commonly referred to as a Citywide Special. In Texas, it is known as a Two-Step. In parts of Florida, it is often referred to as a Git-Right.

\n
\n\n

Apparently there are also two ways to drink a Boilermaker. Neither one is official or wrong. It is up to the individual's choice.

\n\n
\n

There’s a large debate concerning how the boilermaker is supposed to be consumed. While the shot and beer combo might seem straightforward, there are actually several different methods for drinking it, and each one is readily accepted as the best way by those who do it – the only thing that most people agree on is that the shot must be whiskey.

\n \n

The first method is your most basic, and the purists would have you believe it’s the classic: you drink the entire shot and then chase it with the beer. It’s that simple. However, as more high-end cocktail bars have also embraced the boilermaker, and thought more about the pairing of whiskey and beer, drinkers have taken to going back and forth between the two drinks, taking a sip of the shot and then a gulp of the beer, until each drink is finished.

\n \n

But the most exciting way to drink a boilermaker has to be how it often goes down in London – a practice that is gaining popularity in the States as well – dropping the shot directly into the beer. A modification of this is pouring the shot into a beer can or bottle. Fans of this method say it’s the best way to see how the beer and whiskey interplay. Plus, who doesn’t love the sound of a shot glass full of whiskey dunking into a cold glass of beer? - The History Of The Boilermaker – Otherwise Known As A Shot And A Beer

\n
\n\n

The most traditional way to drink a boilermaker is as follows: The liquor is drunk in a single gulp and is then \"chased\" by the beer, which is sipped. Although no official way of drinking it exists The most traditional way would, in my mind, be more closer to an official manner of drinking it.

\n\n

Here how the boilermaker possibly got its' name:

\n\n
\n

Stories are murky at best as to how the boilermaker first came into existence, but it’s pretty clear that the drink was originally consumed by blue collar workers at the end of a long shift – which is why it’s now become the shift drink of choice among bartenders. It’s believed the drink takes its name from the workers who built and maintained steam locomotives in the 1800s. These workers were known to head to the bar at the end of the shift, and a shot of whiskey with a beer became a staple for quickly easing the pain that came from a hard day of back-breaking labor. As it was the drink consumed by boilermakers, it took on the name as well. - The History Of The Boilermaker

\n
\n\n

\"The

\n\n

The ingredients of the American version of a boilermaker: Whiskey and beer.

\n", "OwnerUserId": "5064", "LastActivityDate": "2018-12-13T20:22:56.163", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7594"}} +{ "Id": "7594", "PostTypeId": "1", "CreationDate": "2018-12-14T16:10:46.047", "Score": "3", "ViewCount": "319", "Body": "

Why do you call some wines by region and other wines by grapes varietal?\nWhat is the reason behind?

\n", "OwnerUserId": "8230", "LastEditorUserId": "6874", "LastEditDate": "2018-12-14T16:42:14.463", "LastActivityDate": "2020-09-25T15:48:18.417", "Title": "Why do you call some wines by region and other wines by grapes varietal?", "Tags": "wine", "AnswerCount": "3", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7595"}} +{ "Id": "7595", "PostTypeId": "2", "ParentId": "7594", "CreationDate": "2018-12-14T17:09:07.457", "Score": "1", "Body": "

It depends on the wine.

\n\n

If you have a quality assurance label, and a strong relation between a particular region and a kind of wine, it's better to call wines by region.

\n\n

The same is true if you can get different wines in different regions from the same grape varietal.

\n\n

Also, if the wine is made from different grape varietals, calling by region is an obvious choice.

\n\n

Just thing about Champagne and Franciacorta: they are well-known regions for sparkling wines, the wines are from mixed grapes, and the grapes are \"almost\" the same.

\n", "OwnerUserId": "8185", "LastActivityDate": "2018-12-14T17:09:07.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7596"}} +{ "Id": "7596", "PostTypeId": "2", "ParentId": "7594", "CreationDate": "2018-12-14T20:34:53.330", "Score": "6", "Body": "

This is a historical thing. In Europe in the ye olden days, there was no separation between where someone grew the grapes and what the wine was called, ie Burgundy, Chianti, Bordeaux, Rioja. In most of these regions, these grapes were selected over generations of growers to work perfectly in those regions.

\n\n

Later on, maybe about 100 years ago, people started naming their wines similar names to these well known regions. Champagne is the classic example and probably the first to assert it's region name (aka appellation) around the world. Calling something Champagne in California did not make it Champagne. Champagne only comes from the Champagne region of France not Napa Valley in California.

\n\n

It was intrinsically known what would grow where in Europe and mostly people didn't fiddle with it. Chardonnay and Pinot Noir grew well in Burgundy and that's pretty much all they grew. Then along came the New World. Mostly after WWII, growing regions all over the world started growing grapes and didn't have the history that many of these old European regions had and they wanted to tell people what was in the bottle so the rise of grape names came into being.

\n\n

In Europe they created governing bodies to protect their appellations and making laws about how and what people could grow grapes. Protecting place names became a big deal. Now it's spread to many other things like tea, cheese, tomatoes (San Marzano), etc.

\n\n

In the new world, they have the freedom to pretty much grow whatever they want, how they want and wherever they can so an emphasis on cute names and grape names is emphasis and places where grapes are grown are de-emphasized (OK, there are excepts like Napa Valley and Barossa Valley) As new world areas really figure out what is best grown in their regions you will see more emphasis on regional names and less on grapes.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-12-14T20:34:53.330", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7597"}} +{ "Id": "7597", "PostTypeId": "1", "AcceptedAnswerId": "7606", "CreationDate": "2018-12-14T21:10:13.130", "Score": "3", "ViewCount": "65", "Body": "

What are methods to regulate acidity of home made wine after it is become \"a little bit too acid\"?

\n\n

Somehow remove acid (especially acetic acid) or transform one acid to another (weaker, softer) with aging, temperature or food additives?

\n\n

Once I have told with Riesling wine producer (even not small and from premium Rothenberg area) and he state it very clear : they regulate acidity not each season but quite often... But that time I was not interested in how they do it.

\n", "OwnerUserId": "8285", "LastEditorUserId": "8285", "LastEditDate": "2018-12-17T15:58:55.643", "LastActivityDate": "2018-12-17T15:58:55.643", "Title": "Acidity regulation of home made wine, berry wine or cider?", "Tags": "wine home-brew cider", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7598"}} +{ "Id": "7598", "PostTypeId": "2", "ParentId": "7592", "CreationDate": "2018-12-14T21:22:00.937", "Score": "2", "Body": "

In my lexicon, an Irish car bomb is guinness with a shot of bailey's irish cream and jameson dropped in. Two things to keep in mind with the addition of the irish cream: the cream will curdle quickly with the acidity of the beer, and don't chip your tooth on the shot glass. I foolishly made it once as a sipping drink and it formed a layer of foamy, curdled fat floating on top within 5 or so minutes.

\n\n

Whichever \"bomb\" drink you choose to enjoy, please be very careful when the shot glass slides forward in the pint glass. I someone break their front tooth clean in half doing that. Much safer to do the shot then drink the beer.

\n", "OwnerUserId": "8286", "LastEditorUserId": "8286", "LastEditDate": "2018-12-14T21:27:42.067", "LastActivityDate": "2018-12-14T21:27:42.067", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7599"}} +{ "Id": "7599", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2018-12-15T04:00:13.570", "Score": "1", "Body": "

I just asked for a half and half but this place didn't have Guiness so the bartender told me to try it with Murphy's and Harp instead. Total fail. The densities were too similar and one mixed into the other. Not awful flavor just not a Black and Tan.

\n", "OwnerUserId": "8287", "LastActivityDate": "2018-12-15T04:00:13.570", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7600"}} +{ "Id": "7600", "PostTypeId": "1", "AcceptedAnswerId": "7604", "CreationDate": "2018-12-15T13:49:12.443", "Score": "0", "ViewCount": "130", "Body": "

Why New Zealand Sauvignon Blanc and French one are so different?\nLike they would be two different grapes..

\n\n

And this difference is stable. Or may be this is false and there are French Sauvignon Blanc that tastes as New Zeland and vice versa?

\n", "OwnerUserId": "8285", "LastEditorUserId": "8285", "LastEditDate": "2018-12-15T15:47:49.297", "LastActivityDate": "2019-01-19T16:28:15.477", "Title": "Why New Zealand Sauvignon Blanc and French one are so different?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7601"}} +{ "Id": "7601", "PostTypeId": "1", "AcceptedAnswerId": "7605", "CreationDate": "2018-12-15T14:29:49.760", "Score": "3", "ViewCount": "1252", "Body": "

Why Fox Grape wines (like Izabella) are forbidden on EU market?

\n\n

Or it seems like they are forbidden. Isabella and its blends mostly gone in those two decades in Balcans after they have joined EU. Even if it is sold with this name it is a different kind of wine inside. I expect that this is result of bureaucracy regulations ..

\n", "OwnerUserId": "8285", "LastEditorUserId": "8285", "LastEditDate": "2018-12-16T23:10:44.500", "LastActivityDate": "2019-01-24T19:55:36.083", "Title": "Why Fox Grape wines (like Izabella/Isabella) are forbidden on EU market?", "Tags": "wine europe", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7602"}} +{ "Id": "7602", "PostTypeId": "1", "CreationDate": "2018-12-15T14:38:16.753", "Score": "0", "ViewCount": "253", "Body": "

Is it weird that I like my red wines Slightly chilled? Or is this normal? I constantly hear that we should be drinking reds at “room temperature.\"

\n", "OwnerUserId": "8230", "LastEditorUserId": "37", "LastEditDate": "2018-12-15T16:07:19.373", "LastActivityDate": "2018-12-15T17:31:33.330", "Title": "Is it weird that I like my red wines slightly chilled?", "Tags": "drinking red-wine preparation-for-drinking", "AnswerCount": "1", "CommentCount": "3", "ClosedDate": "2018-12-15T17:31:02.390", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7603"}} +{ "Id": "7603", "PostTypeId": "2", "ParentId": "7602", "CreationDate": "2018-12-15T17:31:33.330", "Score": "2", "Body": "

No, it is not weird. In social situations, such as hosting an event, you should serve the wine at the recommended temperatures only to meet the expectations of your guests. If you are just talking about yourself, you should drink it at whatever you find the most pleasurable.

\n\n

There is much too much nonsense surrounding wine where perceived quality depends too much on the design of the label, the price, and the reputation, and very little depends upon the actual liquid itself. There is a reason that wine competitions are not blind tastings because the few times they have done them that way, the recognized \"best\" have not done so well. The California wine industry burst on the international scene because of the infamous Judgement of Paris, which was done blind (at least one of the French judges was so outraged that California wines won, that she demanded her ballot back for the wines they themselves heaped much praise upon). In a delicious bit of irony, in blind tastings \"Two Buck Chuck\" has taken double gold medals in blind tastings over the \"best\" California wines, leading to some California wine industry people to cry foul over the results just as the French did 25 years earlier.

\n\n

Drink what you enjoy served however you enjoy it best, because isn't that the whole point in the first place?

\n", "OwnerUserId": "4725", "LastActivityDate": "2018-12-15T17:31:33.330", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7604"}} +{ "Id": "7604", "PostTypeId": "2", "ParentId": "7600", "CreationDate": "2018-12-16T13:11:20.570", "Score": "2", "Body": "

It's a climate/weather thing. New Zealand Sauv. Blanc is grown in much cooler climate than in Bordeaux giving you a much crisper, tart style of wine.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-12-16T13:11:20.570", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7605"}} +{ "Id": "7605", "PostTypeId": "2", "ParentId": "7601", "CreationDate": "2018-12-16T13:31:59.360", "Score": "9", "Body": "

It's a fairly long story, but here goes...

\n\n

First \"Fox Grapes\" are American grapes. There are several species of vitis that are used for wine production. I think in this case it's vitis labrusca.

\n\n

So, here's what happened. Somewhere in the 1860s a French researcher brought grapevines from the USA to France in pots with soil. He planted them in a vineyard to study them. What he didn't know is that he brought two problems back with him, powdery mildew and phylloxera.

\n\n

Phylloxera is a root louse you can barely see it with the naked eye. American grapes, having been exposed to this bug for millions of years, adapted to this bug and is now resistant (resistant to powdery mildew too). European grapes, all which are one species vitis vinifera, had no resistance to this bug. So, in a few short years it decimated almost all European grapes.

\n\n

Researchers were desperate to figure out a way to combat this bug. There was a three pronged approach. First they poisoned the soil and that works but is bad for the soil. It literally kills everything in the soil. Bugs, animals, fungus. Most of which is beneficial. This was eventually outlawed in the Europe.

\n\n

Another way was to graft american rootstock to European grapes. This is the way almost all grapes in Europe are grown now. The third way was to breed American vines and European vines. This was quite popular too since it eliminated the hassle of grafting rootstock.

\n\n

These newly bred vines were called \"hybrids\". (BTW, Isabella was not one of these newly bred grapes. They think it was a chance encounter between European grapes and American grapes in the USA as people tried to plant European grapes in the USA). Anyway, back to the hybrids. Many, many new varieties of grapes were produced and with careful breeding they could make decent wine but never quite as good as 100% vinifera.

\n\n

The French, leading the charge, banned all non-French grapes from being grown in France as an act of purity. They force untold acres of grapes to be dug up and replaced with pure French grapes. This spread to other parts of the EU several decades ago and now very rare to find these old hybrids being grown.

\n\n

There are new efforts at using advanced breeding techniques to breed grapes that are almost indistinguishable from 100% but have hybrid features to combat phylloxera and powdery mildew and reduce the amount of chemical sprayed in the vineyard. Hybrids are still quite popular in the USA for these reasons and also they are quite cold tolerant and can withstand much colder temperatures than what is typically found in Europe.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-01-24T19:55:36.083", "LastActivityDate": "2019-01-24T19:55:36.083", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7606"}} +{ "Id": "7606", "PostTypeId": "2", "ParentId": "7597", "CreationDate": "2018-12-17T15:56:51.017", "Score": "4", "Body": "

First thing, pick up a basic winemaking book. All of this is covered in there.

\n\n

If you have an Acetic acid problem, then you have vinegar not wine.

\n\n

If you just have high tartaric acid, you can do a two things. Cold stabilization and potassium bicarbonate. Cold stabilizing is putting the wine in a freezer at about 25 degrees for a couple of weeks. I usually do this naturally on the coldest days of the year. Tartaric acid turns into tartrate crystals and sink to the bottom. Also, you can add Potassium Bicarbonate and it reacts with tartaric acid and reduces it. You'll have to do some research here.

\n\n

If you have a malic acid problem, then malolactic fermentation is a way to turn the harsh malic acid to lactic acid. Again, consult a winemaking book to figure out the details.

\n", "OwnerUserId": "6111", "LastActivityDate": "2018-12-17T15:56:51.017", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7608"}} +{ "Id": "7608", "PostTypeId": "2", "ParentId": "7423", "CreationDate": "2018-12-19T15:28:38.030", "Score": "2", "Body": "

As far as I understand a \"turn\" is a term from Contract Brewing. Though it seems like it's slightly ambiguous term with different meanings depending on context. In this case it refers to a \"turn\" using the brewery and includes time in a fermentation vessel. Which is to say for $5000 you can use the facilities to brew 30 barrels of beer from start to finish, plus extra charges for ingredients and packaging (canning/bottling/kegging).

\n\n

Internally brewers will also use \"turn\" as shorthand for \"turnaround time\" which only refers to how quickly a batch of beer can go from the grain mill to the fermentation vessel and is used for planning how many different batches of beer can be produced in a day.

\n", "OwnerUserId": "268", "LastActivityDate": "2018-12-19T15:28:38.030", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7609"}} +{ "Id": "7609", "PostTypeId": "2", "ParentId": "7437", "CreationDate": "2018-12-21T03:20:16.500", "Score": "2", "Body": "

What ingredient may I be allergic to in certain beers?

\n\n

(Bonus: I get the same effect with some Scotch)

\n\n

If I were to take a guess as to what could possibly cause your medical condition, I would say that it is the possible gluten content in the beer.

\n\n

I am celiac myself and can not drink most beers because of the exact symptoms you are experiencing at times.

\n\n
\n

Though celiac disease and wheat allergies are often confused due to similar diet restrictions, people diagnosed with wheat allergies may still consume rye and barley whereas celiacs cannot. Read: most beers are off limits, but wine and hard alcohols are not. - 10 Myths And Facts About Celiac Disease

\n
\n\n

As for scotch:

\n\n
\n

From a gluten-free standpoint, scotch is safe to drink for most of the celiac population. Even though whiskeys are commonly derived from barley, a gluten-containing grain, they are distilled alcohols, which means the gluten proteins have been removed to less than the proposed FDA standard of 20 parts per million.

\n \n

There is always the potential that the distillation process doesn't completely remove the gluten. If you are ultra-sensitive, then it may be prudent to avoid scotch, but most celiacs tolerate distilled alcohols just fine.

\n \n

Just like with all foods and beverages, it's important to check the ingredients statement to determine if any gluten-containing ingredients have been added, and to call the manufacturer should you have any concerns or uncertainty. - Can I Drink Scotch?

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2018-12-22T23:07:41.637", "LastActivityDate": "2018-12-22T23:07:41.637", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7611"}} +{ "Id": "7611", "PostTypeId": "2", "ParentId": "361", "CreationDate": "2018-12-25T22:01:51.277", "Score": "-2", "Body": "

I visited Bavaria last November and \nnoticed how comfortable the people \nwere outdoors. Maybe they used the lids\nto keep the snow from watering down \ntheir beer. I think it’s the best!

\n\n

\"enter

\n", "OwnerUserId": "8304", "LastEditorUserId": "5064", "LastEditDate": "2020-02-19T02:11:24.053", "LastActivityDate": "2020-02-19T02:11:24.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7613"}} +{ "Id": "7613", "PostTypeId": "2", "ParentId": "7437", "CreationDate": "2018-12-28T01:53:00.173", "Score": "2", "Body": "

Off the top of my head - any allergy to wheats or grains pertaining to the alcohol being consumed, and then also gluten sensitivity, allergy to hops or sensitivity to the alcohol itself

\n", "OwnerUserId": "8311", "LastActivityDate": "2018-12-28T01:53:00.173", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7614"}} +{ "Id": "7614", "PostTypeId": "1", "AcceptedAnswerId": "7615", "CreationDate": "2018-12-31T13:38:38.517", "Score": "11", "ViewCount": "290", "Body": "

My brother-in-law is opening a distillery in Canada, which has got us discussing whisky on the regular. And by the sounds of it it looks like there are certain techniques that can be used these days that 'age' whiskies faster than has classically been done.

\n\n

So what this has got me wondering is whether the 12 or 18 year old labels of some Scotches are more of a placebo, and a product of popular opinion on how Scotch should be distilled? In other words, the history of Scotch has created a situation where the consumer demands a specific age, when in reality it's not really necessary. And so Scottish distillers use this aging method more for image than necessity.

\n", "OwnerUserId": "938", "LastActivityDate": "2019-03-02T17:00:16.967", "Title": "Can modern distilling techniques produce quality Scotch in significantly less time?", "Tags": "scotch whisky", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7615"}} +{ "Id": "7615", "PostTypeId": "2", "ParentId": "7614", "CreationDate": "2019-01-01T22:03:32.487", "Score": "11", "Body": "

As alluded to by Eric Shain, this is more a matter of the mathematics of aging than anything about the distilling process.

\n\n

The key trick going on here is that years of aging have been standardized with respect to interactions with the barrel they are aging in. While time is certainly important when it comes to aging whiskey, much more important is contact with the barrel. As shown here, conversions are done based on the internal surface area to volume ratio of the containers used to age the whiskey. A greater surface-area-to-volume ratio means more rapid interaction between the whiskey and the barrel and therefore faster acquisition of the flavors desired from aging (though the different parameters will almost certainly yield at least subtly different results).

\n\n

It is important to note, however, that this is a trade-off. Yes, you can age whiskey faster using smaller/higher-ratio barrels but you'd need many more to make the same amount of whiskey. So for a smaller producer who wants to match their demand as best they can, using small barrels can be a good way to sell longer aged whiskey more quickly and in more manageable quantities. On the other hand, for a larger producer who expects to have a large demand down the road, full-size barrels are likely a better option.

\n\n

So ultimately, this is more a matter of the fact that \"years\" of aging has an implicit \"in standard size barrels\" as a part of it, we just don't generally think of it that way.

\n", "OwnerUserId": "4935", "LastEditorUserId": "4935", "LastEditDate": "2019-01-02T23:22:22.723", "LastActivityDate": "2019-01-02T23:22:22.723", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7617"}} +{ "Id": "7617", "PostTypeId": "2", "ParentId": "4900", "CreationDate": "2019-01-06T04:50:47.040", "Score": "0", "Body": "

Alcohol free actually means alcohol free. Non-alcoholic beers (aka: NA beers, near beers etc) contain .5% or even less than .05%. Every \"Alcohol Free\" beer I have ever seen have actually been 0.0% and will also state \"Nontaxable under section 5051 IRC\". They are not brewed to ferment, they are essentially seltzers made with most ingredients used to make beer. \"Alcohol Free\" means 100% alcohol free. Non-Alcoholic means it contains less than .05% or up to .5%. Many people don't know the actual difference but the use of the word \"beer\" in alcoholic free beer is simply for marketing and is no different from being in ginger beer and root beer and birch beer.

\n", "OwnerUserId": "8325", "LastActivityDate": "2019-01-06T04:50:47.040", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7618"}} +{ "Id": "7618", "PostTypeId": "1", "CreationDate": "2019-01-08T05:18:03.587", "Score": "1", "ViewCount": "332", "Body": "

I’ve been tired of storing opened bottle wines and having to have the same one the next day plus the day after that (and find out it’s sour).

\n\n

So I’m thinking about syringes as they easily suck the wine out of the bottle and provide isolation. The problem is, I can’t find whether it’s food grade or not. (The answer seems to be yes, but then syringes are disposable. So I’m unsure of whether or not it can be used for long term storing?)

\n\n

I’ve considered freezing (yes it preserves all the flavor) but it is terribly inconvenient.

\n\n

Thank you for helping!

\n", "OwnerUserId": "8332", "LastEditorUserId": "9887", "LastEditDate": "2020-02-29T17:55:01.000", "LastActivityDate": "2020-02-29T17:55:01.000", "Title": "Are syringes food grade?", "Tags": "storage health", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7619"}} +{ "Id": "7619", "PostTypeId": "2", "ParentId": "7618", "CreationDate": "2019-01-08T14:51:45.800", "Score": "4", "Body": "

Let me try and answers some of these questions. Syringes are most likely food grade since they are used to inject liquids into your flesh. But like all plastics, long term storage is not a good idea since plastics are permeable and allow gasses to pass through. Maybe the plastic they use to make syringes is some super plastic but I kind of doubt it.

\n\n

Your plan to suck some wine out (through the cork?) with a syringe is not without merit and you can buy contraptions that do this, but the big thing you will run into is that you need to replace the wine with some type of gas or eventually gas will leak around the cork because you created a vacuum, and spoiling your wine. You would need a way to inject nitrogen into the bottle as you are sucking out the wine.

\n\n

Freezing wine is always a bad idea.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-01-08T20:31:27.440", "LastActivityDate": "2019-01-08T20:31:27.440", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7621"}} +{ "Id": "7621", "PostTypeId": "1", "AcceptedAnswerId": "7622", "CreationDate": "2019-01-09T03:50:29.693", "Score": "4", "ViewCount": "909", "Body": "

I enjoy a good Dogfish Head 120 minute IPA, it is the only beer I can casually drink at home and it actually gives me a buzz, but I am curious as to why does it have such a high price point?

\n", "OwnerUserId": "8336", "LastEditorUserId": "3875", "LastEditDate": "2019-01-14T08:38:20.300", "LastActivityDate": "2019-01-14T08:38:20.300", "Title": "Why is the Dogfish Head 120 minute IPA so expensive?", "Tags": "ipa price", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7622"}} +{ "Id": "7622", "PostTypeId": "2", "ParentId": "7621", "CreationDate": "2019-01-09T11:00:40.550", "Score": "6", "Body": "

I think there are three main reasons.

\n\n

1) Direct production costs. Dogfish declares adding hops for two hours, and this has a cost you need to pay (more hops, more time)

\n\n

2) Alcohol content. Taxes may depend on ABV (for minimum rate of excise duty on beer in the EU, see here). The higher is the ABV, the higher is the tax.

\n\n

3) Marketing. The beer is a very special one, and it is easier for Dogfish to find consumers willing to pay more for such a special beer.

\n", "OwnerUserId": "8185", "LastEditorUserId": "8185", "LastEditDate": "2019-01-10T10:48:41.523", "LastActivityDate": "2019-01-10T10:48:41.523", "CommentCount": "7", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7623"}} +{ "Id": "7623", "PostTypeId": "1", "AcceptedAnswerId": "7624", "CreationDate": "2019-01-12T22:24:08.013", "Score": "4", "ViewCount": "685", "Body": "

I believe this is a fairly simple question so I'm writing a lot here so the quality filter will allow me to post. I'm not sure what else to say besides the wine is listed as a variety (i.e. Chateauneuf du Pape) but specifically marked as an \"ex-Domaine\"

\n", "OwnerUserId": "8340", "LastActivityDate": "2019-01-16T14:05:26.050", "Title": "What does it mean if a wine is an \"ex-domaine?\"", "Tags": "wine", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7624"}} +{ "Id": "7624", "PostTypeId": "2", "ParentId": "7623", "CreationDate": "2019-01-14T01:22:16.353", "Score": "5", "Body": "

I think ex-domaine is the same as ex-chateau which means it's being sold directly from the producer to the consumer, something that almost never happens on a large scale in France. Mainly for collector wines that were held back and released many years later. Here is a definition of ex-chateau

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-01-16T14:05:26.050", "LastActivityDate": "2019-01-16T14:05:26.050", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7625"}} +{ "Id": "7625", "PostTypeId": "2", "ParentId": "7600", "CreationDate": "2019-01-19T16:28:15.477", "Score": "5", "Body": "

The French call it “terroir.” Microclimate, soil composition, even water minerality all have an effect on how the grapes taste.

\n\n

Then there are the style elements, often dictated by tradition (and law, more below). How long do the grape skins remain in contact with the grape juice? How long is the wine aged? What is it aged in (stainless steel tanks vs barrels, etc).

\n\n

Back to the tradition piece, France and many other European countries have laws and a legal designation system applied to their products. You may have seen them: Appecation d’Origine Controlee (AOC), Vin de Pays, Vin Ordinaire, etc.

\n\n

All of those factors play into whether you can get the coveted AOC, which requires strict traditionalism. You can sell your wine for a lot more with that designation. More experimental things will get you a lower tier certification.

\n\n

Newer/non-EU wine-making areas (Australia, New Zealand, Chile, USA) have no such laws, and are free to experiment.

\n\n

Couple the terroir with the lack of homogeneity, you have lots of room for difference.

\n", "OwnerUserId": "8355", "LastActivityDate": "2019-01-19T16:28:15.477", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7626"}} +{ "Id": "7626", "PostTypeId": "2", "ParentId": "4594", "CreationDate": "2019-01-20T08:49:14.093", "Score": "1", "Body": "

If you're in the UK Beer 52 is excellent https://www.beer52.com/

\n\n

This has been set up by a friend of mine based in Edinburgh. They have purposely gone out of their way to find unique and individual beers. In my first box, along with 12 beers, I received a nice bottle opener, a little 'passport' book giving me discount to a selected number of bars, a book on the history of beer and the recent explosion of craft beer and a copy of the well regarded 'Ferment' magazine.

\n\n

What I also like is they are currently trying to produce some low/no alcohol beers too, which is an increasingly important market.

\n", "OwnerUserId": "8356", "LastEditorUserId": "8356", "LastEditDate": "2019-01-23T14:37:18.693", "LastActivityDate": "2019-01-23T14:37:18.693", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7628"}} +{ "Id": "7628", "PostTypeId": "2", "ParentId": "6314", "CreationDate": "2019-01-23T16:51:06.317", "Score": "2", "Body": "

Gocce imperiali are produced by some Cistercians Abbeys in Italy. Their ABV is 90%, which is quite high (please note that \"pure\" alcool is usually sold in bottles with ABV of 95%).

\n", "OwnerUserId": "8185", "LastActivityDate": "2019-01-23T16:51:06.317", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7629"}} +{ "Id": "7629", "PostTypeId": "1", "CreationDate": "2019-01-24T00:16:26.510", "Score": "1", "ViewCount": "151", "Body": "

I was given a large can of beer. I couldn't finish it so I poured it into a sealable coffee cup and put it in the refrigerator.

\n\n

Is it safe to drink?

\n", "OwnerUserId": "8366", "LastEditorUserId": "9887", "LastEditDate": "2020-03-27T17:21:37.507", "LastActivityDate": "2020-03-27T17:21:37.507", "Title": "Is it safe to store an open beer in a sealable cup in the refrigerator?", "Tags": "storage health", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7630"}} +{ "Id": "7630", "PostTypeId": "2", "ParentId": "7629", "CreationDate": "2019-01-24T03:32:40.117", "Score": "6", "Body": "

The (relatively) high alcohol, presence of anti-bacterial compounds from hops, and low pH of beer make it inhospitable to most micro-organisms.

\n\n

Given, it's beer, and cool and sealed: Yes, it's safe to drink.

\n\n

But it will be flat!

\n", "OwnerUserId": "5160", "LastEditorUserId": "5160", "LastEditDate": "2019-01-25T00:24:40.597", "LastActivityDate": "2019-01-25T00:24:40.597", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7631"}} +{ "Id": "7631", "PostTypeId": "2", "ParentId": "7614", "CreationDate": "2019-01-24T11:06:20.630", "Score": "5", "Body": "

Having distilled my own whisky in a small American Oak barrel, previously sherry-filled, with a little charring, I can give some direct experience:

\n\n

From blind taste tests with representatives from 3 major distilling groups in Scotland, at 3 years, my whisky had the look and feel, and taste, of an 8-10 year old whisky.

\n\n

The progression from raw spirit was very rapid after year 1, taking on colour very quickly. And from the year 2 check (obviously a very young whisky, although pleasant) to 3 years it fully developed.

\n\n

To me as a hobbyist, the cost was cheap (cask and duty were the most expensive elements) but for a distillery the profit margins would not be high. The Angel's Share loss is high - I wouldn't want to age mine for 12 years, for example.

\n\n

Interestingly, Scottish distillers have as an industry moved well away from age specifiers as they can make much higher profit on branded flavours. There are still prestige or premium age whiskies, but that accounts for a much smaller volume. They aren't, aside from some very small distillers, using small barrels. Remember, if they wanted to capitalise on age, this still wouldn't help them as they'd have to report the age correctly.

\n", "OwnerUserId": "187", "LastEditorUserId": "37", "LastEditDate": "2019-02-16T22:41:21.563", "LastActivityDate": "2019-02-16T22:41:21.563", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7632"}} +{ "Id": "7632", "PostTypeId": "1", "AcceptedAnswerId": "7633", "CreationDate": "2019-01-24T13:34:26.337", "Score": "1", "ViewCount": "277", "Body": "

What cocktails are named, created or in some other sense may be used by Catholics to celebrate their liturgical year?

\n\n

I am looking for cocktails named after saints or liturgical feasts or important events and/or persons that are interested in Catholic Culture.

\n\n

Nota Bene: Seeing that this may be a rather broad question, I desire to set up the answer as a Community Wiki post.

\n\n
\n

Community Wiki posts work by partly transferring ownership of the post from the original author to the community. They make the post easier to edit and maintain by a wider group of users, but they do not contribute to any user's reputation. - What are “Community Wiki” posts?

\n
\n\n

This way, I am hoping to increase interest on the Beer, Wine & Spirits SE.

\n\n

There is an open invitation of all of good will to muck with a single Community Wiki answer.

\n\n

I hope this will be set an model to others to create their own questions that could be answered in such as way, because they would normally be too broad.

\n\n

Reputation is not attributed to an individual in a Community Wiki answer. Here is an example of a Community Wiki post, I set up on Christianity SE: How do Catholics observe Lent through a dignified and appropriate use of food?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-01-25T13:26:28.220", "LastActivityDate": "2019-02-04T11:59:28.370", "Title": "What cocktails are named, created or in some other sense may be used by Catholics to celebrate their liturgical year?", "Tags": "cocktails holidays", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7633"}} +{ "Id": "7633", "PostTypeId": "2", "ParentId": "7632", "CreationDate": "2019-01-24T14:26:25.973", "Score": "6", "Body": "

What cocktails are named, created, or in some other sense may be used by Catholics to celebrate their liturgical year?

\n\n\n\n

And now for some innovations in the world of liturgical mixology. We created the Great Basil in honor of St. Basil the Great, a fourth-century Greek Father and Doctor of the Church. Ingredients for this crisp summer drink include muddled basil and white Lillet wine, both in honor of the herbs and “vapid wine” that were a part of the abstemious saint’s daily diet.

\n\n

1 lime wedge\n1 tsp. simple syrup\n3-6 fresh basil leaves\n2 oz. Lillet Blanc\n1 oz. gin basil sprig (for garnishing)

\n\n

Squeeze lime into shaker. Add basil leaves and simple syrup, and muddle gently. Add ice, Lillet, and gin and shake vigorously at least forty times. Pour into an old-fashioned glass filled with ice. Garnish with a sprig of basil.

\n\n
    \n
  • The Consecrated Life (February 2 [Feast of the Purification])
  • \n
\n\n

St. Bruno and St. Benedict are among those saints who took the spiritual life very serious and wrote the rules that still exist for their respective Religious Orders (Carthusians and Benedictines). This fine nuanced drink is very suitable for a selected few occasions such as an ordination (priest or permanent deacon) and on the anniversary of one’s ordination. It is also an open idea to help celebrate the Feast of the Purification which is the liturgical end day of the holy season of Christmas and the World Day of Consecrated Life (February 2) as was promulgated by Pope St. John Paul II on January 1, 1997. The Consecrated Life consists 1 oz Bénédictine; 1 oz Yellow Chartreuse and 4 oz Ginger Ale. Serve Cold.

\n\n\n\n

The Savoy Cocktail Book touts the Leap Year Cocktail for having “been responsible for more proposals than any other cocktail that has ever been mixed.” Invented by the books author, Harry Craddock, for the Leap Year celebrations at the Savoy Hotel, London, on February 29th, 1928, the cocktail is certainly substantial enough for any celebration. Substantial enough for any celebration.

\n\n

Ingredients:

\n\n

2 oz Hendrick’s Gin\n1/2 oz Grand Marnier\n1/2 oz sweet vermouth\n1/8 oz lemon juice

\n\n

Shake with ice. Strain into a cocktail coupe. Garnish with a lemon twist.

\n\n
    \n
  • St. Tropez (April 29)
  • \n
\n\n

St. Tropez is a posh town on the French Riviera named after its most famous deceased inhabitant, St .Tropez of Pisa (d. 65), an attendant of the Emperor Nero who was converted by St. Paul and subsequently decapitated. According to legend, his headless body was placed in a boat which drifted to the current location of the town.

\n\n

There are a couple of different cocktails named after his final resting place; the one we include here uses red Dubonnet, a wine made especially for mixed drinks.

\n\n

2 oz. Dubonnet\n2 oz. orange or cranberry juice

\n\n

Build in an old fashioned glass filled with crushed ice and stir until cold.

\n\n\n\n
\n

St. Damien de Veuster, SS.CC., better known as Damien of Molokai, was a heroic priest who served the leper colony on the Hawaiian island of Molokai until he himself succumbed to the disease. Our St. Damien cocktail is a sweet and tangy tropical drink that includes pineapple juice for the saint’s adopted home, lemon juice for the bitterness of leprosy, and grenadine made from pomegranate, a symbol of self-giving. He died April 15th, 1889.

\n
\n\n

1 oz. gin\n¾ oz. pineapple juice\n¼ oz. grenadine\n¼ oz. lemon juice\n1 splash soda water (optional)

\n\n

Pour all ingredients except soda water into a shake with ice and shake forty times. Strain into a cocktail glass and top with a splash of soda water.

\n\n\n\n
\n

This brilliant saint (along with his iconic mom, St. Monica) was born in what is modern-day Algeria. Famously known for being a party boy — “Lord make me chaste, but not yet!” — he eventually changed his ways and became one of the most well-known Christian philosophers and theologians in history.

\n \n

This cocktail is loosely based off of Mazagran, a drink that became a staple in Algeria many centuries after St. Augustine walked around as the bishop of Hippo, but we think that the patron saint of brewers would probably enjoy it, regardless.

\n
\n\n

1 oz of simple syrup\n 2 oz of cold brew coffee\n 2 oz of stout beer\n 2 oz of rum\n 1/2 oz of heavy cream (or half and half)

\n\n

Mix together the coffee, beer, rum, and simple syrup. Add ice, and pour the heavy cream (or half and half) on top.

\n\n
    \n
  • St. Mother Teresa (September 4)
  • \n
\n\n
\n

St. Mother Teresa inspired millions — from presidents and royalty to the poorest of the poor. She was a bold, small woman who wasn’t known to mince words. Inspired by her simplicity, as well as her roots in both Albania and India, we’ve developed an apt cocktail to honor this formidable, simple woman:

\n
\n\n

2 oz of simple syrup\n 2 oz of freshly-squeezed lemon juice (keep a slice of the lemon for garnish)\n 1 oz Raki (an Albanian spirit — but you can use brandy if you can’t find it)\n 1 oz of sparkling water\n 1 tbsp of mint

\n\n

Mix all together, muddle the mint, and add ice!

\n\n\n\n
\n

According to an Irish legend, blackberries are bitter after Michaelmas (September 29) because it was on that day that Michael cast Lucifer out of Heaven, and that when he did, the Devil landed on a blackberry bush, spitting on it and cursing it. The St. Michael’s Sword is made from blackberry brandy and Jim Beam Devil’s Cut Bourbon. The “Angels’ share” is the portion of the whiskey that escapes into the air during distillation, but the “Devil’s cut” is the portion that seeps into the wood of the barrels. Jim Beam claims to have stolen this cut back from the Devil, and so we gratefully offer this portion to St. Michael for a job well done.

\n
\n\n

1½ oz. Jim Beam Devil’s Cut bourbon \n¾ oz. blackberry brandy\n2 dashes orange bitters\n1 cherry for garnish

\n\n

Pour all ingredients except cherry in a shaker with ice and shake forty times. Strain into a cocktail glass. Use a cocktail spear (St. Michael’s sword) to transfix the cherry (the Devil, red with shame and rage).

\n\n\n\n

Known for his simple ways and his brilliance (the man spoke at least six languages fluently — and many more not-quite-fluently) St. Pope John Paul II wasn’t just a genius but an inspiring leader whose words about living a life boldly without fear still propel both young and old into action today. “Faith and reason are like two wings on which the human spirit rises to the contemplation of truth,” he wrote, “and God has placed in the human heart a desire to know the truth — in a word, to know Himself.”

\n\n

As the first Polish Pope — and the first non-Italian pope in 400 years — we think a simple drink tasting like a homey apple pie is something this warm, Polish playwright would enjoy:

\n\n

1.5 oz of Polish chamomile-infused vodka, like Zubrowka Apple cider

\n\n

Mix — and you’re done. Add ice if you’re feeling a bit fancy; heat up if you’re feeling cold.

\n\n
    \n
  • The Beast of Revelation (Halloween, October 31 or All Soul's Day November 2)
  • \n
\n\n

This is my own creation for setting an allhallowtide atmosphere.

\n\n

The book of Revelation tells of a star named Wormwood that plummets to Earth and carries with it bitterness that poisons a third of all of the earth's waters on The Day of the Lord.

\n\n

This cocktail is a different way to celebrate All Soul’s Day, saints associated with exorcisms and shall we say Halloween. The black Absinthe Gothica has a starring role in this drink as it also recalls the demon Wormwood in The Screwtape Letters of C. S. Lewis. Blackberry wine reminds us of the blackberry legend with St. Michael and the Devil. The Beast of Revelation is made as follows: 1 oz Absinthe Gothica (any other absinthe will do); 4 oz of blackberry wine; and 1oz rye, whiskey or vodka (optional). Be aware that Absinthe Gothica is “Strong as hell, this stuff is evil!\"

\n\n\n\n

A here is a drink to honour the memory of Blessed Miguel Pro, Mexican Jesuit and martyr who died on November 23, 1927. Before the firing squad was ordered to shoot, Fr. Pro raised his arms in imitation of Christ and shouted the defiant cry of the Cristeros, \"Viva Cristo Rey!\" – \"Long live Christ the King!” When the initial shots of the firing squad failed to kill him, a soldier shot him at point-blank range. He is also the first martyr to be photographed at the moment of being killed.

\n\n

3 measures of Tequila (blue agave)\n1 of Mezcal\n½ meas. of St. Germain (elderflower liquor)\n½ of lime juice\nSplash of Pierre Ferrand Dry Orange Cointreau\nDash orange bitter

\n\n
    \n
  • St. Francis Xavier (December 3)
  • \n
\n\n

St. Francis Xavier was a prolific missionary from Spain covered a lot of territory and converted a lot of souls in his mere 46 years, especially when the only mode of transportation to cross oceans was a wooden ship. Known as the “Apostle of the Indies” and the “Apostle of Japan,” he went to India, Southeast Asia, Japan, and China. We think he inspires a pretty global drink, so we suggest marrying sangria with sake. We hope this converts you and all your friends:

\n\n

8 oz of sake\n1 bottle of merlot\n6 oz of orange juice\n2 oz of lime juice\n2 oz of lemon juice\n4 oz of cherry (or pomegranate) juice\n1 cup of sparkling water\nOrange, lemon, or lime (or all) slices

\n\n

Combine everything together and serve immediately!

\n\n\n\n
\n

A Tom and Jerry is a traditional Christmastime cocktail in the United States, devised by British journalist Pierce Egan in the 1820s. It is a variant of eggnog with brandy and rum added and served hot, usually in a mug or a bowl.

\n \n

The drink's name is a reference to Egan's book, Life in London, or The Day and Night Scenes of Jerry Hawthorn Esq. and his Elegant Friend Corinthian Tom (1821), and the subsequent stage play Tom and Jerry, or Life in London (also 1821). To publicize the book and the play, Egan introduced a variation of eggnog by adding 1⁄2 US fluid ounce (15 ml) of brandy, calling it a \"Tom and Jerry\". The additional fortification helped popularize the drink. - Tom and Jerry (drink)

\n
\n\n\n\n

The Holy Water Cocktail is a cocktail in the making for visitors to the home when no one saint’s day or feast comes to mind at the moment. It is one’s ferial cocktail, for those stand by moments to express our faith. It also fine to serve on days when water comes to mind within the liturgy such as the Baptism of the Lord. The Holy Water cocktail is one of the most beautiful blue cocktails out there. This stunning, fruity mixed drink combines vodka, rum, blue curacao, Peach Schnapps, lemonade, and a splash of pineapple juice, and it’s guaranteed to blow people’s minds especially if you serve it in a big goblet filled with cruched ice. The Holy water cocktail consists of 1 oz. (30ml) Vodka; 1 oz. (30ml) Rum; 1/2 oz. (15ml) Blue curaçao; 1/2 oz. (15ml) Peach Schnapps; 4 oz. (120ml) Lemonade; Splash Pineapple Juice. Fill the glass with sprite (or 7 Up).

\n\n

Remember that drinking is always to be done responsibly.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-02-04T11:59:28.370", "LastActivityDate": "2019-02-04T11:59:28.370", "CommentCount": "1", "CommunityOwnedDate": "2019-01-24T14:26:25.973", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7638"}} +{ "Id": "7638", "PostTypeId": "1", "AcceptedAnswerId": "7639", "CreationDate": "2019-02-12T09:20:31.433", "Score": "1", "ViewCount": "78", "Body": "

When I go to a pub now the choice of real ales seems to be between \"bitters\" that are in fact very sweet (e.g. London Pride, TT Landlord etc), or very hoppy beers. When I was a lad you could get bitter that tasted bitter, e.g. Youngs or Boddingtons but these types of genuinely bitter beers seems very hard to find nowadays. Can anybody recommend where I can get a list of less sweet beers, that I could use to make more discerning selection ? Many thanks

\n", "OwnerUserId": "8406", "LastActivityDate": "2019-02-12T11:43:25.477", "Title": "Why are so many real ales so sweet", "Tags": "taste", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7639"}} +{ "Id": "7639", "PostTypeId": "2", "ParentId": "7638", "CreationDate": "2019-02-12T10:03:27.483", "Score": "2", "Body": "

Bitters have evolved a lot over time with different brewery trying out a load of different recipes if you have some time and a keen sense of taste try taking a small notepad and pen and start a little journal of beers and give them a score that way you will be able to pinpoint bitters that you enjoy (there are also many apps on the app store that allow you to do this digitally).

\n\n

As for a list of bitters there is a Top rated beers site you can use to have a look at what is available, this site can be helpful as it has a small description of the beer so you will be able to steer toward the bitters you find appealing instead of a more sweeter bitter

\n\n

for extra help I have linked directly to the bitters from England section but you can alter the search to suit your needs.

\n", "OwnerUserId": "5078", "LastEditorUserId": "5078", "LastEditDate": "2019-02-12T11:43:25.477", "LastActivityDate": "2019-02-12T11:43:25.477", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7640"}} +{ "Id": "7640", "PostTypeId": "1", "AcceptedAnswerId": "7651", "CreationDate": "2019-02-12T20:23:25.253", "Score": "3", "ViewCount": "2045", "Body": "

Growing up in Europe we had a saying that said:

\n
\n

"Bier auf Wein, das laß sein - Wein auf Bier, das rat' ich dir"

\n

Translation: Beer after wine, leave it be - wine after beer, that I recommend.

\n
\n

In the US, a similar saying goes like this:

\n
\n

"Beer before liquor, never been sicker; liquor before beer, you’re in the clear."

\n
\n

Those two sayings have always perplexed me, as they seem to be contradictory. Visualizing the order of drinks it would look something like this:

\n

\"enter

\n

As is apparent, one recommends to drink by increasing alcohol content, the other recommends against it. Intuitively I assume that these sayings recommend best practices to prevent becoming sick (Reality Check: I understand the order of drinks is mostly irrelevant - it's the total amount of alcohol and the speed of consumption that drives whether someone gets sick.)

\n

So my question: Are there any other reasons for why one would recommend consuming alcoholic drinks in a certain order?

\n", "OwnerUserId": "8408", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-12-31T21:49:50.520", "Title": "Contradicting sayings about the order of drinking alcoholic beverages", "Tags": "drinking", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7642"}} +{ "Id": "7642", "PostTypeId": "2", "ParentId": "7640", "CreationDate": "2019-02-13T10:55:35.867", "Score": "2", "Body": "

There was a news item about this on the BBC website which contradicts this piece of verse:

\n\n

https://www.bbc.co.uk/news/uk-47143368

\n\n

So it seems to be nonsense. Too bad.

\n", "OwnerUserId": "8406", "LastActivityDate": "2019-02-13T10:55:35.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7643"}} +{ "Id": "7643", "PostTypeId": "2", "ParentId": "7439", "CreationDate": "2019-02-13T10:59:57.720", "Score": "2", "Body": "

I buy quite a lot of Gin from Amazon and their prices are often cheaper than the main UK supermarkets on a direct match basis, but not against Aldi or Lidl who often sell almost identical products to say Bombay Sapphire, but at a much cheaper price.

\n", "OwnerUserId": "8406", "LastActivityDate": "2019-02-13T10:59:57.720", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7645"}} +{ "Id": "7645", "PostTypeId": "2", "ParentId": "7614", "CreationDate": "2019-02-13T11:09:31.023", "Score": "1", "Body": "

I buy a lot of single malts, and I have to say that some of those without age statements on the label are very good, e,g, Tullibardine Sovereign or Talisker Storm. I am not saying they are as good as the likes of Clynelish 14 or Aberlour 12 but they are very good. There is a lot of snobbery about single malts, but personally I prefer Bowmore Legend which has no age statement to Bowmore 12.\nSo in my view, as someone who spends a lot of money on single malts, I think new techniques are making very good whiskies.

\n", "OwnerUserId": "8406", "LastActivityDate": "2019-02-13T11:09:31.023", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7647"}} +{ "Id": "7647", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2019-02-28T10:24:59.203", "Score": "1", "Body": "

When I look at all the answers previously given, the common denominator seems to be: start with the least “beery” tasting beer. “Bitterness” and “hoppines” are two of the most easily identifiable beer characteristics. Keeping that in mind, trying one of the multitude of flavoured beers that are now common is likely the safest route to take.

\n\n

For most North Americans any cerveza (which will likely come from Mexico) is a sneaky place to start as they seem to be flavoured without being labelled as such. (I make beer and can get a reasonable cerveza-like flavour by adding cloves and allspice at the primary fermentation of a light lager or wheat beer). Corona Extra and Dos Equis are two popular and seemingly inoffensive brands.

\n\n

Another popular favourite of mine that I can get non-beer drinkers to appreciate is Innes & Gunn original. It is a Scotch beer with hints of toasted oak, caramel, vanilla and whisky flavours.

\n", "OwnerUserId": "8434", "LastActivityDate": "2019-02-28T10:24:59.203", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7648"}} +{ "Id": "7648", "PostTypeId": "2", "ParentId": "7614", "CreationDate": "2019-03-02T17:00:16.967", "Score": "-1", "Body": "

Short answer no as Scotch only comes from Scotland. The ageing is a personal preference and does not garentee quality or taste. A whiskey MUST be aged for 3 years minimum and any barrel can be used (sherry, brandy, wine etc) and that will have an effect on the final taste but you can not 'speed up ' the ageing process.

\n", "OwnerUserId": "8440", "LastActivityDate": "2019-03-02T17:00:16.967", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7649"}} +{ "Id": "7649", "PostTypeId": "1", "CreationDate": "2019-03-04T09:12:09.810", "Score": "1", "ViewCount": "101", "Body": "

Does anyone know when pruning the leaves from vine first started or who by? I know it wasn't practiced until recent (last 500 years or so) but haven't been able to pinpoint who and when?

\n", "OwnerUserId": "8440", "LastEditorUserId": "6111", "LastEditDate": "2019-04-05T13:36:56.050", "LastActivityDate": "2019-04-05T13:36:56.050", "Title": "Who started pruning grape vines?", "Tags": "wine history", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7650"}} +{ "Id": "7650", "PostTypeId": "2", "ParentId": "7649", "CreationDate": "2019-03-04T14:36:48.423", "Score": "3", "Body": "

I'm assuming you want to say, \"Who are the first people to domesticate grape vines?\". Grapevines are not \"bushes\" they are technically vines. In the wild they grow up the side of trees in a forest and try to reach their leaves above those of the trees and also grow their fruit high so the birds can eat berries and scatter the seeds.

\n\n

Wild grape vines have 2 sexes but domesticated vines are hermaphroditic, which means they are self fertile (both sexes in the same flower) which makes it so much incredibly easier for the vines to produce fruit. It was a game changer when humans found these vines. Instead of only female plants producing fruit, now all vines produced fruit and lots of it. At the same time humans realize you could easily propagate vines by taking cuttings from a mother vine and they would produce the same exact vine over and over (a form of cloning).

\n\n

There is evidence that suggests that humans had domesticated grape vines almost 10,000 years ago. It probably started with some people growing vines up trees deliberately and then switching to a trellis system to simulate trees. There are pictures in the ancient Egyptian tombs showing grapes being trained and harvested on a trellis system. So they were pruning them way back then. Later on, if you walked through a vineyard near ancient Rome, it wouldn't look too much different from vineyards you see anywhere in the world. So, we have been growing vines essentially the same way for at least 2000 years.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-03-04T14:36:48.423", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7651"}} +{ "Id": "7651", "PostTypeId": "2", "ParentId": "7640", "CreationDate": "2019-03-06T22:19:59.580", "Score": "3", "Body": "

According to this link, different types of alcohol have differing amounts and different types of congeners (which are one of the primary toxins contributing to a hangover) in them, leading to varying degrees of hangovers. Combining these varying toxins in different ways can lead to different results. Red wine apparently has the highest amount of congeners in it, while clearer liquids tend to have have fewer.

\n\n

Another thing noted by this article is that carbonated alcoholic beverages (e.g., beer) cause the body to absorb alcohol more quickly; therefore, if you were to consume beer before liquor, your body would have even less time to deal with the alcohol absorption than the other way around.

\n\n

Other than your reasoning as to the amount of alcohol content drinks contain, this is the only thing I can think of!

\n", "OwnerUserId": "8446", "LastActivityDate": "2019-03-06T22:19:59.580", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7652"}} +{ "Id": "7652", "PostTypeId": "1", "AcceptedAnswerId": "7805", "CreationDate": "2019-03-06T23:46:39.973", "Score": "2", "ViewCount": "126", "Body": "

Recently, I became aware that Scotch distilleries sometimes put out discount product at stores like Lidl and Aldi without an age statement, so they can turn product faster at a cheaper price.

\n\n

And in the past few weeks I got my hands on a Ben Bracken Speyside from Lidl, and found it to be a shockingly good Scotch at it's price point (about 30 dollars Canadian, as opposed to around 75 - 80 for our typical entry level Scotches).

\n\n

My question is - are there similar Scotches available in North America (and more specifically Canada, but I don't want to be too specific)? Is this type of thing done over the pond, or are we pretty much limited to entry-level Scotch?

\n", "OwnerUserId": "938", "LastEditorUserId": "187", "LastEditDate": "2020-03-08T09:30:07.787", "LastActivityDate": "2020-03-08T09:30:07.787", "Title": "Discount Scotches in North America", "Tags": "scotch whisky", "AnswerCount": "1", "CommentCount": "8", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7654"}} +{ "Id": "7654", "PostTypeId": "2", "ParentId": "485", "CreationDate": "2019-03-08T10:31:34.037", "Score": "3", "Body": "

One of the most important tasks of the foam is to protect the beer against oxidation. This is why some beer glasses have a rough patch at the bottom so the bubbles will have place to \"sprout\" from. In a Duvel glass for instance it is a laser engraved Gothic \"D\". When the beer is in the glass (Duvel is highly carbonated) you can see the bubbles rising from the rough spot and creating a protective blanket on the beer, thus preserving the taste long after you poured it.

\n", "OwnerUserId": "8454", "LastActivityDate": "2019-03-08T10:31:34.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7655"}} +{ "Id": "7655", "PostTypeId": "2", "ParentId": "7412", "CreationDate": "2019-03-11T14:05:15.687", "Score": "0", "Body": "

Dark beers often age better than Lighter beers, and since the beer past its BBD is a Blond beer the taste could be affected. To preserve beer it is essential to shield it from its 3 enemies:

\n\n
    \n
  1. Oxygen: bottlecaps are NOT airtight oxygen can get in and ruin\nyour beer.
  2. \n
  3. Light: Keep your beer in the dark, light can make it taste like cardboard.
  4. \n
  5. Temperature: Keep your beer no warmer than 15 degrees Celsius.\nHigher temperatures can affect the taste.
  6. \n
\n\n

This is why I only buy dark beers in a can (no light can get into a can) when they are close to the BBD, and then keep them cold.

\n\n

But even if you kept your blond beers in a bright and warm environment they are still safe to drink.

\n", "OwnerUserId": "8454", "LastActivityDate": "2019-03-11T14:05:15.687", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7656"}} +{ "Id": "7656", "PostTypeId": "1", "AcceptedAnswerId": "7657", "CreationDate": "2019-03-11T17:41:08.660", "Score": "3", "ViewCount": "127", "Body": "

I often make wine from kits. I'm a bit bored with the flavour and would love it to taste smoky and oaky. How do I add a smoked flavour to a red wine?

\n", "OwnerUserId": "5607", "LastActivityDate": "2019-03-11T20:38:35.480", "Title": "How do I add a smoked flavour to a red wine?", "Tags": "wine brewing home-brew", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7657"}} +{ "Id": "7657", "PostTypeId": "2", "ParentId": "7656", "CreationDate": "2019-03-11T20:38:35.480", "Score": "3", "Body": "

If you want that oaky, smokey flavor the best way to do it is with toasted oak. At a home level, most people opt for cubes or chunks of toasted oak. At a professional level, the insides of barrels are toasted and impart that flavor.

\n\n

How much and how long you do it is a preference thing. You need to taste every couple of weeks to see if the oak is giving you the flavors you want. When you are there, pull the wine off the oak. You can put the oak in a mesh bag and then pull it so you don't have to rack it because the oak will sink to the bottom eventually.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-03-11T20:38:35.480", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7658"}} +{ "Id": "7658", "PostTypeId": "1", "CreationDate": "2019-03-12T06:36:29.817", "Score": "4", "ViewCount": "70", "Body": "

We have started producing small batches of a unique honey mead that is doing well in small to large stall type markets. What are the steps that need to be followed in order to get a license to continue to produce and distribute an alcoholic beverage in South Africa?

\n", "OwnerUserId": "8460", "LastActivityDate": "2022-01-23T19:04:40.463", "Title": "What is the regulatory process of being able to produce and sell an alcoholic drink in South Africa commercially?", "Tags": "wine laws mead", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7659"}} +{ "Id": "7659", "PostTypeId": "1", "AcceptedAnswerId": "7660", "CreationDate": "2019-03-13T21:20:24.640", "Score": "5", "ViewCount": "2611", "Body": "

Almost every beverage bottle I have come across has it's contents' volume specified in either liters or milliliters. That is except for wine bottles which are more often than not designated in centiliters. For example:

\n\n

\"enter

\n\n

Milliliters or liters are far more popular than centiliters in the countries using SI units. Why use centiliters then, especially for something as simple as 1 liter in the example? Has it some historic background?

\n", "OwnerUserId": "8467", "LastEditorUserId": "5064", "LastEditDate": "2019-03-14T11:28:38.300", "LastActivityDate": "2019-06-24T12:41:40.530", "Title": "Why are wine bottle volumes in centiliters not in liters or milliliters?", "Tags": "wine bottles", "AnswerCount": "3", "CommentCount": "4", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7660"}} +{ "Id": "7660", "PostTypeId": "2", "ParentId": "7659", "CreationDate": "2019-03-14T00:14:03.103", "Score": "7", "Body": "

Why are wine bottle volumes in centiliters not in liters or milliliters?

\n\n

Part of the answer is in the marketing system used in a particular country or region and part of it would be about the size of bottle being purchased.

\n\n

In Canada and the USA, in a standard bottle of wine, there are 750 millilitres (ml), 75 centilitres (cl) or 0.75 litres (l). Wine bottles aren't quite litre-size, but the average wine bottle will contain 750ml of wine.

\n\n

I see only 750ml bottles in the area where I live. I am fine with that. A bottle of wine marketed as 0.75 liters seems less appealing than wine sold in a bottle marketed as 750ml. And one marketed with a 75cl label seems less traditional in this neck of the world and may not sell as good as one sold with 750ml marked on the label. It is sold in a more positive light so to speak. It is all marketing.

\n\n

I am sure there are other reasons, but take a look at Difford's Guide to mandatory bottle sizes around the world. It is an eye opener to say the least.

\n\n

However there is more to the Subject:

\n\n
\n

When glass bottles become popular though, it is surprising to see that both continental Europe and Great Britain had glass containers of a similar size. The British had an official glass-container size of a fifth of their Imperial (UK) Gallon at around 900ml, while other Europeans' bottles gravitated around 700ml to 800ml. The US officially adopted the 750ml bottle as a standard in 1979, as a metric equivalent to the fifth of a US Gallon (757ml). - Standard Bottle

\n
\n\n

Alcohol measurement in bottles has undergone several revisions in the last few decades as Difford's Guide point out for the USA mandatory spirits bottle sizes (January 1, 1980) and the European Union mandatory spirits bottle sizes (January 1, 1990).

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-03-14T11:30:31.517", "LastActivityDate": "2019-03-14T11:30:31.517", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7661"}} +{ "Id": "7661", "PostTypeId": "1", "AcceptedAnswerId": "7662", "CreationDate": "2019-03-14T01:50:49.363", "Score": "3", "ViewCount": "1046", "Body": "

I have a can of local craft brew from a smallish brewery that has some \"give\" when I squeeze it. According to the can it was canned about 1 month ago. Other cans in the six pack feel normal and taste great. I can't see any evidence of leaking.

\n\n

Is this normal and safe to drink or should I just toss it? If I open it and it has no carbonation then there's obviously no point in even trying to drink it.

\n", "OwnerUserId": "8468", "LastActivityDate": "2019-03-19T08:21:05.790", "Title": "Sealed beer can doesn't feel full", "Tags": "craft-beers cans", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7662"}} +{ "Id": "7662", "PostTypeId": "2", "ParentId": "7661", "CreationDate": "2019-03-14T08:13:14.483", "Score": "1", "Body": "

if it is local brew may I suggest sending a message to the brewer and asked about it. for any more advice, I do think it is still good but if you want to be safe just message them for why this 1 can feels so light.

\n\n

edit

\n\n

after the comment of Eric Shain

\n\n

\"Even if it is safe, if it is underfilled it should be replaced. – Eric Shain\"

\n", "OwnerUserId": "8134", "LastEditorUserId": "8134", "LastEditDate": "2019-03-19T08:21:05.790", "LastActivityDate": "2019-03-19T08:21:05.790", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7664"}} +{ "Id": "7664", "PostTypeId": "2", "ParentId": "7659", "CreationDate": "2019-03-14T13:52:00.310", "Score": "2", "Body": "

They are not.

\n\n

I looked through my collection of wine labels (about 50 from around the globe) - many of them are 0,75l, many are 75cl and some are 750ml. I couldn't determine any dependence of volume unit on country or region or type of the wine.

\n", "OwnerUserId": "4742", "LastActivityDate": "2019-03-14T13:52:00.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7665"}} +{ "Id": "7665", "PostTypeId": "2", "ParentId": "7439", "CreationDate": "2019-03-15T20:52:58.300", "Score": "1", "Body": "

In Scotland we have MUP (minimum unit pricing) which means you cannot sell alcohol for less than 50p per unit of alcohol so an average bottle of gin (38%) cannot be sold for less than £13.88 per 75cl bottle. The rest of the UK doesn't have this law so can be sold as low as cost price so is subject to supplier but can start from as low as £10 per 75cl bottle. \nThe following link is for a calculator to work out how much you can legally charge for alcohol in Scotland (oh and don't forget the 'no incentive to buy more' no multi-buy offers meaning no buy 2 get 3rd free etc deals). \nhttps://app.calculoid.com/#/calculator/50913

\n", "OwnerUserId": "8440", "LastEditorUserId": "8440", "LastEditDate": "2019-03-18T10:50:24.273", "LastActivityDate": "2019-03-18T10:50:24.273", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7666"}} +{ "Id": "7666", "PostTypeId": "1", "CreationDate": "2019-03-16T12:44:13.507", "Score": "1", "ViewCount": "181", "Body": "

My wine is fully brewed. My hydrometer states that definitely. The issue is that it smells of eggs or similar. I do not want to put it in an aging barrel. So, how do I remove the smell of sulfur from my elderflower wine?

\n", "OwnerUserId": "5607", "LastActivityDate": "2019-03-18T16:13:25.973", "Title": "How do I remove the smell of sulphur from my elderflower wine?", "Tags": "wine aroma", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7667"}} +{ "Id": "7667", "PostTypeId": "2", "ParentId": "7666", "CreationDate": "2019-03-18T16:13:25.973", "Score": "3", "Body": "

Sounds like you have a hydrogen sulfide problem. There is a three steps I follow when I get this problem.

\n\n
    \n
  1. Give it time. Many times it will dissipate on it's own, especially with racking and introducing oxygen. But this doesn't always work.
  2. \n
  3. Add some potassium metabisulfates (campden tablets). This sometimes will drive out the problem making the sulfides dissipate on their own.
  4. \n
  5. Add copper sulfate. This is the last resort and most of the time I end up here. There are kits to help you figure out how much to add. Some people will just tell you to add some copper pipes to your wine but not nearly as effective as copper sulfate.
  6. \n
\n\n

This is a common problem for amateur and professional wine makers. There is a good article here but searching google will yield many results.

\n\n

BTW, do not put it in the barrel. You might ruin the barrel. Take care of the problem first then put it in the barrel.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-03-18T16:13:25.973", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7668"}} +{ "Id": "7668", "PostTypeId": "1", "CreationDate": "2019-03-18T20:15:49.797", "Score": "3", "ViewCount": "111", "Body": "

I’m curious about the cleaning process of casks before a distillery transfers its whisky to mature/age. To use one of the popular names, just as an example, before Macallan transfers its whisky into a sherry [or bourbon or port or ale] cask, is the cask cleaned? If yes, by what method? Does it vary by distillery or country (à la, whiskey vs. whisky)? Is it all arbitrary or are there laws dictating cleaning process?

\n\n

I’ve researched (online only) but wasn’t able to find any (sourced) information. Hoping there are experts here who can enlighten us.

\n", "OwnerUserId": "7965", "LastActivityDate": "2019-04-05T13:34:45.103", "Title": "Maturation process in casks", "Tags": "storage spirits whiskey scotch production", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7672"}} +{ "Id": "7672", "PostTypeId": "1", "AcceptedAnswerId": "7675", "CreationDate": "2019-03-24T02:16:53.337", "Score": "1", "ViewCount": "189", "Body": "

Online, this wine is $400. At Cibo in Coral Gables, it's $2100.

\n\n

Yep, $2100, sir. Don't forget the tip, ma'am.

\n\n

Does this wine taste like white truffle? what's up?

\n\n

https://www.wine-searcher.com/find/mouton+rothschild+pauillac+medoc+bordeaux+france/1993

\n", "OwnerUserId": "8484", "LastActivityDate": "2019-04-02T13:38:08.707", "Title": "Why is this wine so expensive?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7673"}} +{ "Id": "7673", "PostTypeId": "1", "CreationDate": "2019-03-24T03:08:13.650", "Score": "6", "ViewCount": "688", "Body": "

Based on this question How much actual alcohol is safe to drink per day? we can see

\n\n
\n

The National Institute on Alcohol Abuse and Alcoholism suggests no more than 4 drinks per day, and no more than 7 drinks per week, to stay at a low risk for an alcohol use.

\n \n

A single drink technically does vary but about 45ml / 1.5oz of spirit

\n
\n\n

This makes me think it's not that bad that amount of alcohol.

\n\n

Says no more than 7, then can be 7, which means one could end up drinking 315ml per week.

\n\n

From experience,

\n\n

Won't this affect your brain at all?

\n\n

I've heard alcohol can kill your neurons.

\n\n

Could you develop addiction to alcohol by drinking that amount?

\n\n

Thanks in advance

\n", "OwnerUserId": "8485", "LastEditorUserId": "8485", "LastEditDate": "2020-04-24T14:29:30.967", "LastActivityDate": "2020-04-24T14:29:30.967", "Title": "Can drinking 45ml of spirit (40%) per day affect your health?", "Tags": "recommendations health spirits whiskey drinking", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7674"}} +{ "Id": "7674", "PostTypeId": "2", "ParentId": "7673", "CreationDate": "2019-03-25T17:04:21.620", "Score": "2", "Body": "

To answer your last question first, drinking 1 drink a day will not make you dependent. Drinking 3 or 4 times that amount probably won't make you dependent physically. Physiologically, you might become dependent on drinking for the effects but with that little amount, it would be very tough to be physically dependent. It's more of a bad habit at that point. I have a family member that was/is an alcoholic and he was drinking a pint of vodka a day. Obviously he was physically dependent.

\n\n

As someone who was physically dependent on cigarettes a while back, I have never had anything approaching those nicotine cravings. Unless, you've been there you'll never know. But, I do have a habit of coming home from work, cracking a beer and eating dinner. It's relaxing and tastes good.

\n\n

I know family members that have been drinking almost every day since they were 18 (now in their 80s) and sharp as a tack and others that never drank that can barely remember what day it is. The human body is widely different from one person to another. Some native Americans have a really hard time metabolizing alcohol, while northern Europeans have livers of steel.

\n\n

So, the answer to your question is that it depends. It depends on so many variables, you'll never get a straight answer. The best thing you can do is drink as little as possible and enjoy yourself. Don't binge drink and don't get into a habit.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-03-25T17:04:21.620", "CommentCount": "10", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7675"}} +{ "Id": "7675", "PostTypeId": "2", "ParentId": "7672", "CreationDate": "2019-03-25T20:59:37.380", "Score": "8", "Body": "

There are several things going on.

\n\n
    \n
  1. Mouton Rothschild is on of the few \"first growth\" Bordeaux wineries. All of them are highly collectible. New bottles go for between $600 and $700 for Mouton Rothschild, from a quick glance around the internet, which is a jump in price from the bottle you are looking at.

  2. \n
  3. 1993 wasn't the best vintage in Bordeaux, which is why the bottle price is lower for such an old wine. The 1995 vintage was much better and is selling for significantly more money

  4. \n
  5. Why is it $2100 at Cibo? First restaurants mark up wine about 3x the retail price (even though they buy wines at wholesale). Five times the price is a little excessive for a wine that's probably not that great. Then sometimes restaurants will have that special extra expensive bottle just daring some high roller, that doesn't know anything about wine, to drop money on it. It's very common.

  6. \n
\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-04-02T13:38:08.707", "LastActivityDate": "2019-04-02T13:38:08.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7676"}} +{ "Id": "7676", "PostTypeId": "2", "ParentId": "7668", "CreationDate": "2019-03-26T22:07:18.473", "Score": "-1", "Body": "

This will vary greatly by product- bourbon for example requires “New “barrels other spirits might re use a sherry or wine barrel- scotch for example uses American whisky barrels. And so on. Typically barrels need to be either totally dry or totally full so cleaning will depend on if they are new or not. You can use steam to clean or rinse with water and so on. Chemicals or soap kind of things are rarely used as they can permeate and damage the wood.

\n", "OwnerUserId": "8490", "LastActivityDate": "2019-03-26T22:07:18.473", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7677"}} +{ "Id": "7677", "PostTypeId": "2", "ParentId": "6357", "CreationDate": "2019-03-26T22:13:06.823", "Score": "2", "Body": "

Mead hates sunlight. This is especially true for those made with some types or honey and fruit. It’s often The technical term in the wine industry is “light strike” beer people would know it as “skunking”. Again this will depend a bit on the mead as tannins (which most mead has very little of ) tends to protect it- but I’ve found even a week in bright sunlight or extended UV from fluorescent light can impact flavor.

\n\n

That being said - it won’t make you sick it just might not taste good. \n- I’m a professional mead maker. We worry about this all the time since our display shelf gets quite a bit of sun and we have to make sure we don’t accidentally sell those bottles.

\n", "OwnerUserId": "8490", "LastActivityDate": "2019-03-26T22:13:06.823", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7678"}} +{ "Id": "7678", "PostTypeId": "2", "ParentId": "7043", "CreationDate": "2019-03-26T22:17:30.560", "Score": "1", "Body": "

Enlightenment wines meadery makes a dandelion wine- it’s also made with honey but there are dozens of flowers in every bottle. EWM site

\n", "OwnerUserId": "8490", "LastActivityDate": "2019-03-26T22:17:30.560", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7680"}} +{ "Id": "7680", "PostTypeId": "2", "ParentId": "7673", "CreationDate": "2019-03-29T11:09:46.980", "Score": "1", "Body": "

Can drinking 45ml of spirit (40%) per day affect your health?

\n\n

A drink or two a day is quite fine to drink providing there is no history of proven alcohol dependency or some other underlining medical problem such as diabetes.

\n\n

A drink or two per day is not a habit, but could become habit forming if it becomes a daily necessity by which an individual can not live without.

\n\n

In France, it is quite normal and even customary to serve wine at mealtime. I doubt it would be bad for one's health, since governments would be on this very quickly. While living in France, the families I know had one or two glasses of wine with their meals with no ill effects. Some were even in the medical profession!

\n\n

People have different opinions on how many drinks one may safely have per day. Even then there may be some risk.

\n\n
\n

How Much Alcohol Is Too Much?

\n \n

According to extensive research by the National Institute on Alcohol Abuse and Alcoholism (NIAAA), less than 2 percent of drinkers who fall within the following guidelines ever develop alcohol use disorders.

\n \n

Men: Four or Fewer Drinks Per Day

\n \n

For men, low-risk alcohol consumption is considered drinking four or fewer standard drinks on any single day and less than 14 drinks during in a given week. According to the NIAAA, to remain low-risk, both the daily and weekly guidelines must be met.

\n \n

In other words, if you are a man and you drink only four standard drinks per day, but you drink four every day, you are drinking 28 drinks per week. That is twice the recommended level for low-risk alcohol consumption. Likewise, drinking four drinks a day four times a week would also exceed the guidelines.

\n \n

Women: Three or Fewer Drinks Per Day

\n \n

Research has shown that women develop alcohol problems at lower levels of consumption than men. Therefore, the guidelines for low-risk drinking are lower for women. The NIAAA guidelines are three or fewer standard drinks a day and no more than seven drinks per week.

\n \n

Again, both the daily and weekly standards must be met to remain in the low-risk category. If you drink only two drinks a day but drink them every day, that is 14 drinks a week, or twice the recommended amount for low-risk consumption.

\n
\n\n

Further reading may be seen as follows:

\n\n\n\n

Drinking should always be done in moderation. Alcoholic drinks drank in such conditions would not impair one's health or brain. That say one who is has very little body weight should be aware that having a drink could make them legally drunk more quickly. This could possibly hamper one's skills while impaired.

\n\n
\n

Experts believe that drinking does not actually lead to brain cell death. In fact, researchers have found that moderate drinking can have a number of health benefits, including improved cognitive abilities and lowered cholesterol levels.

\n \n

One study that involved comparing the number of neurons found in the brains of alcoholics and non-alcoholics found that there was no difference in neocortical neurons between the two groups.

\n \n

Even heavy binge drinking and long-term alcohol abuse don't actually result in the death of brain cells. Instead, alcohol damages the dendrites located in the cerebellum and reduces the communication between neurons. Researchers discovered that alcohol use not only disrupts communication between neurons; it can also alter their structure. One thing it does not do, they found, is kill off cells.

\n \n

Does Drinking Alcohol Kill Brain Cells?

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-03-31T11:27:53.060", "LastActivityDate": "2019-03-31T11:27:53.060", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7682"}} +{ "Id": "7682", "PostTypeId": "2", "ParentId": "7673", "CreationDate": "2019-03-30T17:58:57.013", "Score": "1", "Body": "

While I'm not willing to track down specific journals now to source this answer, I can tell you that I've researched this question extensively on Google Scholar to find out the same thing.

\n\n

To sum up my research - the answer remains somewhat inconclusive, as is the case with many questions in diet science.

\n\n

The problem is that researchers can't easily isolate the effects of alcohol from other lifestyle choices, which are many and varied. For instance: sure you can find 1000 people who drink once per day, but the other food/drink they consume, their age, gender, genetics, level of exercise, job etc etc etc all vary wildly.

\n\n

What this means is that it's impossible to give a definitive answer using scientific research.

\n\n

But I can tell you this

\n\n

Alcohol is a toxin, it's not meant to be consumed by humans, and in fact we have physiological mechanisms (read: our liver) to deal with such toxins entering our body.

\n\n

On the plus side, if you only have one drink per day and don't mix it with other medications that cause liver damage, for the most part you should be fine. The body was built with an ability to metabolize and excrete such substances fairly tidily.

\n\n

But make no mistake, alcohol is a toxin and there is no conclusive evidence that it confers any type of long-term health benefit, and I may even go as far as saying that 1 drink/day would be harmful to longevity. I say this simply because the body was built to treat it like a toxin, and not a nutrient. By definition a toxin can only harm us.

\n\n

In all likelihood complete abstinence is the healthiest option. You'll get by, and still live a long life if you drink regularly, but in theory there should be a physiological cost. The question for anyone is whether the benefit of drinking is worth that cost.

\n", "OwnerUserId": "938", "LastEditorUserId": "938", "LastEditDate": "2019-03-30T18:05:57.593", "LastActivityDate": "2019-03-30T18:05:57.593", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7684"}} +{ "Id": "7684", "PostTypeId": "1", "CreationDate": "2019-04-01T02:07:09.220", "Score": "7", "ViewCount": "1433", "Body": "

I was browsing through Here's How (1928), a Prohibition-era collection of cocktail recipes, and found something surprisingly familiar on page 48.

\n\n
\n

The Swiss Itch

\n \n

Invented by one James Norton of Princeton and guaranteed to go down with the ease of an elevator:

\n \n
\n

Place a pinch of salt on the back of the right hand and with the same north paw hold half a lemon between thumb and forefinger. Hold a small glass of Gordon water [that is, gin] in the left hand and follow this sequence: lick the salt, drink the Gordon water and suck the lemon!

\n
\n
\n\n

The modern audience will recognize this as the classic tequila shot technique, possibly altered by someone heavily invested in lemon orchards. (Half a lemon? I guess you can tell this book was published pre-1929!)

\n\n

Which came first: the salt-tequila-lime version or the salt-gin-lemon version? Is \"James Norton of Princeton\" totally apocryphal? How far back can this two-handed maneuver be traced?

\n", "OwnerUserId": "8506", "LastEditorUserId": "8506", "LastEditDate": "2019-04-06T14:23:38.760", "LastActivityDate": "2020-05-06T23:03:00.320", "Title": "Origin of the \"lick, sip, suck\" tequila shot technique", "Tags": "history gin tequila prohibition", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7686"}} +{ "Id": "7686", "PostTypeId": "2", "ParentId": "7649", "CreationDate": "2019-04-02T17:25:25.440", "Score": "1", "Body": "

In your question, you write:

\n
\n

I know it wasn't practiced until recent (last 500 years or so)

\n
\n

On what basis do you know that? If you've done some prior research on the topic, it really ought to be mentioned in your question, so that we all start on the same page.

\n

From the comments on your question, I infer that you're talking about leaf pulling, not "pruning" per se. (Or if you are talking about some particular kind of pruning, please please edit your question to say so! Don't just argue in the comments — edit your question until it reflects the thing you actually mean to say!)

\n
\n

Leaf pulling is done just after flowering, when fruit set is complete so you won’t disturb the pollination process. In the southern hemisphere, it is round about middle to end November and in the northern hemisphere in May (off course this may vary from climate to climate).

\n

Leaf pulling will improve cosmetic quality by minimizing the bruising of the grape skin from leaves scratching its surface. For wine and table grapes, it will improve the overall grape and wine quality, as the vines are using the nutrients available more efficiently. ... [It] will allow the vines to dry off much quicker after rain or heavy dew and thus will make the vines less susceptible to the spread of fungal diseases.

\n
\n

These benefits all seem like things a viticulturist would notice pretty quickly — say, within 10 or 20 years of their first exposure to any fungal disease, i.e., within 10 or 20 years of the invention of viticulture, which as farmersteve says, goes back some 10,000 years. So we should expect to see the invention of leaf-pulling some 9,980 years ago. :)

\n

Indeed, leaf-pulling is explicitly mentioned in Cato's De Agricultura:

\n
\n

Ubi vinea frondere coeperit, pampinato. Vineas novellas alligato crebro, p50 ne caules praefringantur, et quae iam in perticam ibit, eius pampinos teneros alligato leviter corrigitoque, uti recte spectent. Ubi uva varia fieri coeperit, vites subligato, pampinato uvasque expellito, circum capita sarito.

\n

When the vine begins to form leaves, thin them. Tie up the young vines at frequent intervals to keep the stems from breaking, and when they begin to climb the props tie the tender branches loosely, and turn them so that they will grow vertically. When the grapes begin to turn, tie up the vines, strip the leaves so as to expose the grapes, and dig around the stocks.

\n
\n

Cato's De Agricultura was written circa 160 B.C., by which point viticulture had been around for millennia. The Greeks also had several words for artificial trellises and stakes used to train grapevines — e.g. the χάρακας "vine-props" of Aristophanes' Acharnians circa 425 B.C.

\n
\n

There's reason to think maybe the Greeks might not have practiced leaf-pulling as much as the Romans: leaf-pulling reduces fungal rot and increases light to the fruit-bearing part of the vine, but also increases the risk of sun damage in sunny climes. Rome's latitude is 42°N; Athens' is 38°N. And just to complicate matters, the latitude of the 6000-year-old Areni-1 winery in Armenia is 40°N — right in the middle! So I won't hazard a guess as to whether the Greeks or the Armenians practiced leaf-pulling; but we do know that Cato wrote about it.

\n
\n

To summarize:

\n
    \n
  • Viticulture probably goes back some 10,000 years
  • \n
  • Industrial viticulture dates to 4000 B.C. (Areni-1) or older
  • \n
  • Vine training probably goes back at least that far
  • \n
  • Leaf-pulling probably goes back at least that far
  • \n
  • A specific technical vocabulary for vine training dates to 425 B.C. or older
  • \n
  • Technical documentation of leaf-pulling dates to 160 B.C. or older
  • \n
\n", "OwnerUserId": "8506", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-04-02T17:25:25.440", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7687"}} +{ "Id": "7687", "PostTypeId": "1", "CreationDate": "2019-04-02T21:05:17.783", "Score": "3", "ViewCount": "90", "Body": "

I was reading Peter Kupfer's scholarly piece Amber Shine and Black Dragon Pearls: The History of Chinese Wine Culture (June 2018). During the Song Dynasty (960–1279), it says,

\n\n
\n

large amounts of surplus crops provided plenty of raw material for the production of a broad variety of alcohol beverages. These activities generated an impressive collection of encyclopedic works about jiu, for example Jiumingji (Catalogue of names of alcoholic drinks) listing altogether 223 different kinds, with sometimes curious names and ingredients (like a drink called \"White Lamb\" fermented with lamb meat broth).

\n
\n\n

Google informs me that the Jiǔmíngjì 酒名記 \"Wine name catalogue\" was written by Zhāng Néngchén 張能臣 (see Japanese-language catalog entry here), but that's about it.

\n\n

I'd be interested to read some of these curiously named and composed drinks. Has the Jiǔmíngjì ever been translated into English? Has a Chinese version ever been digitized?

\n", "OwnerUserId": "8506", "LastEditorUserId": "5064", "LastEditDate": "2021-01-26T06:30:59.200", "LastActivityDate": "2021-01-26T06:30:59.200", "Title": "Is there an online and/or English-language version of the \"Jiǔmíngjì\" 酒名記?", "Tags": "history classification", "AnswerCount": "0", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7688"}} +{ "Id": "7688", "PostTypeId": "1", "AcceptedAnswerId": "7689", "CreationDate": "2019-04-02T23:06:51.433", "Score": "4", "ViewCount": "137", "Body": "

One time, I had a bad experience with vodka; I drank a very excessive amount in one night.

\n

As a result, I can no longer drink vodka or even smell it with out getting queasy / sick. This was several years ago.

\n

Now, if I want to have any type of spirits, I can only have a small amount and I need lots of mixer (Coca-Cola, Lemonade etc.). If I drink it straight, I throw up.

\n

Some of my friends have had the same happen to them with a variety of different spirits. They also cannot stand that type of spirits anymore and get sick if they drink it.

\n
\n

What is this phenomenon called?

\n

Why does this happen?

\n

Is there a "cure" or "fix"?

\n
\n", "OwnerUserId": "8513", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-04-02T23:35:26.003", "Title": "Bad spirits experience - cannot drink that specific type anymore", "Tags": "taste spirits drink", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7689"}} +{ "Id": "7689", "PostTypeId": "2", "ParentId": "7688", "CreationDate": "2019-04-02T23:35:26.003", "Score": "6", "Body": "

This isn't specific to alcohol, and is instead a general mechanism of neural association. When you consume anything and then become sick afterward your brain associates sickness with what you consumed to stop you from consuming it again.

\n\n

From an evolutionary standpoint this makes sense, because it would keep you safe from continuing to eat or drink the toxic substance. In the case of vodka, this is your body's way of saying don't do that again.

\n\n

There is no cure but time - the time it takes for your brain's association with the substance to fade. For instance, the same thing happened to me with vodka about 16 years ago, but it's been so long that it's no longer a problem (bear in mind it didn't take that long to rectify itself, this just illustrates that the problem will eventually resolve itself).

\n", "OwnerUserId": "938", "LastActivityDate": "2019-04-02T23:35:26.003", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7690"}} +{ "Id": "7690", "PostTypeId": "1", "AcceptedAnswerId": "7796", "CreationDate": "2019-04-04T17:16:34.667", "Score": "6", "ViewCount": "3887", "Body": "

Both Amaretto and Crème de Noyaux are sweet almond-flavored liqueurs.

\n\n

My understanding is that Crème de Noyaux is typically red, whereas Amaretto is usually brown.

\n\n

Other than the obvious difference in color, what's the difference between these two liqueurs?

\n\n
    \n
  • What differences in production are associated with bottling a liqueur under the name \"Crème de Noyaux\" versus \"Amaretto\"?

  • \n
  • What differences would you notice in a blind taste test? Would you be able to tell if I made a Pink Squirrel with amaretto, or a French Connection with crème de noyaux?

  • \n
\n", "OwnerUserId": "8506", "LastActivityDate": "2019-07-04T16:44:42.570", "Title": "What's the difference between Amaretto and Crème de Noyaux?", "Tags": "liqueur differences", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7691"}} +{ "Id": "7691", "PostTypeId": "2", "ParentId": "7030", "CreationDate": "2019-04-04T22:35:09.717", "Score": "1", "Body": "

Two relatively boring answers:

\n\n
    \n
  • The spherical plastic widget (yes, that's its official name) found in bottles and cans of Guinness stout. I don't fully understand the physics, but it seems the point is something about generating a smooth and creamy head when the beer is opened and poured.
  • \n
\n\n

\"Widget\"

\n\n
    \n
  • The \"one-of-a-kind shimmer\" found in Viniq fruit liqueur. This how-to blog post convincingly theorizes that the source of the shimmer is luster dust, more commonly used as an ingredient in cake frosting.
  • \n
\n\n

\"Viniq

\n", "OwnerUserId": "8506", "LastEditorUserId": "5064", "LastEditDate": "2019-04-04T22:46:02.113", "LastActivityDate": "2019-04-04T22:46:02.113", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7692"}} +{ "Id": "7692", "PostTypeId": "1", "CreationDate": "2019-04-05T06:17:48.707", "Score": "2", "ViewCount": "175", "Body": "

Could someone make wine (or any other alcoholic beverage) from kiwano melons aka horned melons? Like, if you needed to make alcohol and the only prominent fruit is kiwano, could you make it work? In any case, it'd probably be a good idea, it tastes like banana and kiwi

\n\n

\"enter

\n", "OwnerUserId": "8516", "LastEditorUserId": "5064", "LastEditDate": "2019-04-05T11:09:00.220", "LastActivityDate": "2019-04-07T22:05:44.043", "Title": "Can a kiwano melon become alcohol?", "Tags": "wine fermentation", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7693"}} +{ "Id": "7693", "PostTypeId": "2", "ParentId": "7668", "CreationDate": "2019-04-05T10:06:16.857", "Score": "0", "Body": "

Usually, a cask is not cleaned before the spirit enters it, it's just emptied. With Wine casks (Sherry, Port, etc...) it is desired to get this flavour into the whisky, so cleaning would lessen this effect. Those already used casks are normally transported with some litres of wine still inside, so the cask would not dry out and break. Some distilleries even decide to keep the liquid inside when they fill it up with spirit, so they would even have a higher flavouring effect.

\n\n

A kind of cleaning, that I know of, is used for the Jim Beam Devils Cut. They say it contains the \"cut of the devil\", which basically is the whisky, that is soaked inside of the barrel, after it was emptied. Jim Beam then fills the empty barrel with some water, which then \"pulls\" the devils cut out of the wood. This water is then later used to reduce the cask strength devils cut Whiskey to the strength of 45% and thus adding the devils cut.

\n", "OwnerUserId": "8518", "LastActivityDate": "2019-04-05T10:06:16.857", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7694"}} +{ "Id": "7694", "PostTypeId": "2", "ParentId": "7668", "CreationDate": "2019-04-05T13:34:45.103", "Score": "4", "Body": "

Liquor casks are not cleaned between transfers, just emptied and stored until they need them again. The liquor that soaked into the wood makes sure nothing will grow in them.

\n\n

Wine barrels on the other hand, need to be cleaned between transfers. Typically they are rinsed with hot water and then maybe steam. Left to drip dry for a day or two. Then sulfur dioxide is put into the barrel either through a gas or burning sulfur in the barrel. This sterilizes the barrel.

\n\n

Many wine/sherry casks are reused as Whisky barrels. Minimal amount of cleaning is need before the strong alcohol is put in them (which sterilizes them).

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-04-05T13:34:45.103", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7695"}} +{ "Id": "7695", "PostTypeId": "1", "CreationDate": "2019-04-06T14:41:49.767", "Score": "5", "ViewCount": "260", "Body": "

From Shake 'Em Up! A Handbook of Polite Drinking (1930), page 46:

\n
\n

GIN PUNCH NUMBER ONE

\n
    \n
  • 2 quarts of grapefruit juice
  • \n
  • 2 quarts of gin
  • \n
  • and one quarter cup of Five Fruits or Grenadine
  • \n
\n

Keep the punch in the ice box for two hours before serving time,\nso that it will be thoroughly chilled.\nPour over chopped ice in the bowl and serve at once.

\n
\n

What exactly is "Five Fruits"? From context I infer that it's a sweet juice blend, maybe something like modern-day Hawaiian Punch; but I haven't been able to Google up anything about the name because everyone on the Internet wants to tell me about 1980s-era beverage Five Alive.

\n", "OwnerUserId": "8506", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-07-04T01:06:03.087", "Title": "What is \"Five Fruits\" in this 1920s cocktail recipe?", "Tags": "history cocktails prohibition mixers", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7696"}} +{ "Id": "7696", "PostTypeId": "2", "ParentId": "7695", "CreationDate": "2019-04-06T15:41:31.777", "Score": "1", "Body": "

Although I am not sure what \"Five Fruits\" are I think I know what they are talking about. Having seen enough crappy fruit punch in my day, I am guess that they are talking about Fruit Cocktail from Del Monte https://www.delmonte.com/products/fruits/peaches/fruit-cocktail

\n\n

It could be just the liquid or the fruit with the liquid. It has five fruits, Peaches, Pears, Grapes, Pineapple, Cherries.

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-04-06T15:41:31.777", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7697"}} +{ "Id": "7697", "PostTypeId": "2", "ParentId": "7695", "CreationDate": "2019-04-07T14:30:03.947", "Score": "1", "Body": "

What exactly is \"Five Fruits\"?

\n\n
\n

\"From context I infer that it's a sweet juice blend, maybe something like modern-day Hawaiian Punch; but I haven't been able to Google up anything about the name because everyone on the Internet wants to tell me about 1980s-era beverage Five Alive.\"

\n
\n\n

Due to the lack of historical data, it may be impossible to find out what exactly is \"Five Fruits\".

\n\n

My own personal suspicion is that \"Five Fruits\" may be somrthing like the original Five Alive drink.

\n\n
\n

The original Citrus version: orange, lemon, grapefruit, tangerine, lime - Five Alive (Wikipedia)

\n
\n\n

\"Here’s

\n\n

Here’s a modern image of the drink

\n\n
\n

The “Five” represents the five fruit flavors in the drink. There has been a total of seven varieties, but the original was a blend of orange, lemon, grapefruit, tangerine, and lime. I have no idea what this combination tastes like; I’ve never had Five Alive. The memory I have of this product is entirely visual, etched into my psyche from a passing glance in a grocery store some 22 years ago.

\n \n

While relatively popular in the U.K. today, Five Alive’s accessibility in the United States is limited. How it fell into reticence is anyone’s guess. - Juicy Details (Five Alive)

\n
\n\n

\"Five

\n\n

Five Alive Varieties

\n\n

You can always use the modern Five Alive drink or Grenadine if you want. The one quarter cup in the recipe could be for either a syrup or a juice. A syrup would definitely make it more sweeter.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-04-07T14:35:21.447", "LastActivityDate": "2019-04-07T14:35:21.447", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7698"}} +{ "Id": "7698", "PostTypeId": "2", "ParentId": "7692", "CreationDate": "2019-04-07T18:56:54.550", "Score": "4", "Body": "

You can make alcohol from anything that contains sugar, so...

\n\n

Yes, of course you can make alcohol from kiwano melon, using the same technique as with any melon (or in fact most fruit) - get the juice from it and use your normal moonshine technique :-)

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2019-04-07T22:05:44.043", "LastActivityDate": "2019-04-07T22:05:44.043", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7699"}} +{ "Id": "7699", "PostTypeId": "1", "AcceptedAnswerId": "7700", "CreationDate": "2019-04-09T19:32:50.557", "Score": "2", "ViewCount": "807", "Body": "

Mr. Fox says the cider \"burns in your throat, boils in your stomach, and tastes almost exactly like pure melted gold.\"

\n\n

To me, that sounds like an ABV of at least 25-30%, but I've never seen an alcoholic cider on the market anywhere near that.

\n\n

Something similar Boggis and Bunce's poultry is pretty easy to procure, but Bean's cider is the bottleneck in my plan. I really want to try something like that, but I'm not sure it's even possible to produce.

\n", "OwnerUserId": "8524", "LastActivityDate": "2019-04-09T23:14:07.183", "Title": "Is there a real life equivalent to Bean's Alcoholic Cider in Fantastic Mr. Fox?", "Tags": "cider", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7700"}} +{ "Id": "7700", "PostTypeId": "2", "ParentId": "7699", "CreationDate": "2019-04-09T23:14:07.183", "Score": "4", "Body": "

Yes, there are several drinks that match that description.

\n\n

Apple Jack comes to mind. It's made by freeze distillation of apple cider. It's about 25-40% ABV. It's nasty stuff if you've ever had some.

\n\n

In Germany, there is drink that I used to drink when I lived there called ApfelKorn. This is just spirits with apple flavor added. This is about 20% ABV. It's actually considered Apple Schnapps.

\n\n

There are two types of Apple Brandy. Cider distilled into clear spirits and aged like Whisky and Brandy (grapes) infused with apple liqueur.

\n\n

Then of course there is apple liqueur

\n\n

My guess is that it's Apple Jack. If you want to make apple jack, it's pretty simple. Just take some hard cider and freeze it in your freezer and pour out the stronger liquid. Here are some instructions

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-04-09T23:14:07.183", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7701"}} +{ "Id": "7701", "PostTypeId": "1", "AcceptedAnswerId": "7702", "CreationDate": "2019-04-10T21:44:42.057", "Score": "1", "ViewCount": "100", "Body": "

I am creating a craft beer application which will contains a lot of information about beers.

\n\n

Now when modeling the data I am contemplating whether a beer itself should have a country, city and other address information, or whether this data should come from the brewery which owns the beer.

\n\n

Can anyone come up with a valid reason why for example the country of origin from a beer would differ from that of the owning brewery's country of origin?

\n\n

I ask this because a lot of time when you look at open source beer databases and projects you will see a country of origin when looking at a single beer but they are probably fetching it from the brewery that owns the beer.

\n", "OwnerUserId": "8528", "LastActivityDate": "2019-04-15T14:13:06.547", "Title": "Is the country of origin for a beer always the same as the brewers country of origin?", "Tags": "breweries specialty-beers craft-beers", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7702"}} +{ "Id": "7702", "PostTypeId": "2", "ParentId": "7701", "CreationDate": "2019-04-11T09:44:14.363", "Score": "3", "Body": "

It is not that common, but brewers may open subsidiaries.

\n\n

In 2016, Stone Brewing Co. from US opened a new plant in Germany (I suspect they wanted to expand in the European market). Where would your application locate those beers? (Plant was recently sold to Scottish Brewdog).

\n\n

I suggest you locate beers where they are brewed.

\n", "OwnerUserId": "8185", "LastActivityDate": "2019-04-11T09:44:14.363", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7703"}} +{ "Id": "7703", "PostTypeId": "2", "ParentId": "7690", "CreationDate": "2019-04-11T12:59:46.587", "Score": "3", "Body": "

What's the difference between Amaretto and Crème de Noyaux?

\n\n

Amaretto

\n\n
    \n
  • County of origin: Italy (Saronno, Italy)
  • \n
  • Alcohol by Volume: 28%
  • \n
  • Flavor: Slight bitter almond
  • \n
  • \"Flavoured from bitter almonds, various modern commercial brands are prepared from a base of apricot stones, peach stones, or almonds, all of which are natural sources of the benzaldehyde that provides the principal almond-like flavour of the liqueur.\" - Amaretto (Wikipedia)
  • \n
  • Etymology: \"The name amaretto originated as a diminutive of the Italian word amaro, meaning \"bitter\", which references the distinctive flavour lent by the mandorla amara or by the drupe kernel. However, the bitterness of amaretto tends to be mild, and sweeteners (and sometimes sweet almonds) enhance the flavour in the final products. Thus one can interpret the liqueur's name as a description of the taste as \"a little bitter\". - Amaretto (Wikipedia)
  • \n
\n\n

\"Bottles

\n\n

Bottles of Amaretto Liqueur

\n\n

Crème de Noyaux

\n\n
    \n
  • Country of origin: France
  • \n
  • Alcohol by Volume: 40%
  • \n
  • Color: Pink or Clear (Bols is red)
  • \n
  • Flavor: Almond
  • \n
  • \"Crème de Noyaux (pronounced is an almond-flavored crème liqueur, although it is actually made from apricot kernels or the kernels of peach or cherry pits, which provide an almond-like flavor. Both Bols and Hiram Walker produce artificially colored red versions of the liqueur (either of which contribute the pink hue to Pink Squirrel cocktails) while Noyau de Poissy from France is available in both clear (blanc) and barrel-aged amber (ambre) versions.\" - Crème de Noyaux (Wikipedia)
  • \n
  • Definition: A liqueur with a brandy base flavored primarily with essential oils derived from the kernels of peaches, plums, and cherries or from almonds, the predominant flavor being that of bitter almonds. - Crème de Noyau
  • \n
\n\n

\"Bols

\n\n

Bols Creme de Noyaux Liqueur 1L

\n\n

To me amaretto tastes a little less bitter than creme de noyaux, while crème de noyau tastes a little bit more nuttier at the same time. I am not a professional connoisseur so you can take or leave what I say here.

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-04-11T12:59:46.587", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7704"}} +{ "Id": "7704", "PostTypeId": "1", "CreationDate": "2019-04-11T20:03:33.367", "Score": "3", "ViewCount": "1114", "Body": "

Take a Kirkland Blended Whisky or something similar. Is it reasonable to put that in a container with smoking wood chips and let sit for a long while with good results?

\n\n

Are there any gotchas that will just make this a terrible idea.

\n\n

Also thought about charring the woodchips first.

\n", "OwnerUserId": "8532", "LastActivityDate": "2019-04-12T17:51:01.257", "Title": "Will Adding Wood Chips meant for smoking to whiskey add bad flavor", "Tags": "taste whiskey", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7705"}} +{ "Id": "7705", "PostTypeId": "2", "ParentId": "7704", "CreationDate": "2019-04-12T13:49:02.987", "Score": "2", "Body": "

Yes, it will taste like wood and not the smoked flavor you are seeking. First they should be oak chips. Then they should be charred. You should probably visit the Distiller's Forum and this topic comes up quite a bit. You want the chips to be charred black but not burned all the way through before you use them. Unlike wine chips, that should be toasted to just a deep brown.

\n\n

Why should you want even more charred flavor in a Whisky that's already got it? If you want to make your own Whisky, just use vodka or Everclear.

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-04-12T17:51:01.257", "LastActivityDate": "2019-04-12T17:51:01.257", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7706"}} +{ "Id": "7706", "PostTypeId": "2", "ParentId": "7640", "CreationDate": "2019-04-14T06:54:20.803", "Score": "3", "Body": "

It's all nonsense. You get hangovers when you \"mix\" because if you're \"mixing\" you are probably drinking more than you realize. To wit, if you have a beer and then a single shot of liquor, most adults are fine - and there will be no difference if you reverse that.

\n\n

The rules came from people who would have 4 beers, then switch to whiskey, then tequila and wake up with a hangover and decide it was the switching that did it when what really happened was that they had 6-8 drinks.

\n", "OwnerUserId": "6350", "LastActivityDate": "2019-04-14T06:54:20.803", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7707"}} +{ "Id": "7707", "PostTypeId": "2", "ParentId": "7701", "CreationDate": "2019-04-15T06:33:12.073", "Score": "2", "Body": "

It's not common that the country of origin fora beer always the same for brewers country of origin.

\n\n

Exploring and Expanding the business is one the most important objective for every business especially for Food and Beverages Industries. Let's take an example of well know brewery company i.e Heineken. On February 15, 1864, the Heineken is establishing and manufactured in Amsterdam. Later on, It was started the selling in other regions of Netherlands such as Zoeterwoude, Rotterdam, Etten-Leur and so on.

\n\n

After the consuming and popularity of Heineken beer. It is also brewed in the United Kingdom, Ireland, Serbia, Australia, and Saint Lucia for those respective markets.

\n", "OwnerUserId": "8538", "LastActivityDate": "2019-04-15T06:33:12.073", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7708"}} +{ "Id": "7708", "PostTypeId": "2", "ParentId": "7701", "CreationDate": "2019-04-15T14:13:06.547", "Score": "1", "Body": "

If you look at the large multinational breweries like Budweiser or Heineken, they always have to list the country the beer was brewed, but not the country that the business originated in. Heineken is brewed in the UK and Ireland and Netherlands. If you are in the UK it should state on the bottle that it was brewed in the UK, unless they imported the bottles so it might be hard to track down. But all products, whether they be cars or soap or toys or computers must have a country they were manufactured in.

\n\n

Read this about Heineken.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-04-15T14:13:06.547", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7712"}} +{ "Id": "7712", "PostTypeId": "1", "CreationDate": "2019-04-21T10:02:53.847", "Score": "5", "ViewCount": "634", "Body": "

When travelling I try to bring back home spirits from places I visit, mostly gin and whiskey.

\n\n

I will be soon travelling to South Korea (Seoul and Busan), and I am trying to find out about the local gin and whiskey scene, but I can't find much - no producers or shops where I can buy them. I know that their neighbours (Japanese) are now famous with their gin and whiskey, but the situation in Korea seems to be quite different.

\n\n

Does someone here have more insight and tips?

\n\n

Further info:

\n\n
    \n
  • Sometimes I buy also other stuff like cognac, vodka, tequilla, and rum, depending on the place, so I can consider them too. I don't have anything against getting international/mainstream brands, but usually I can grab them in my town, and bringing local spirits as souvenirs contributes to a unique collection in a home bar.
  • \n
  • I know that Korea has several local beverages such as Cheongju, Soju, Hongju, and some herbal spirits, but I am not interested in those, as I use liquor mostly for cocktails so I am considering only the 'standard stuff'.
  • \n
\n", "OwnerUserId": "8551", "LastActivityDate": "2020-08-17T20:17:08.283", "Title": "Is there any good local gin or whiskey produced in South Korea?", "Tags": "whiskey gin", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7713"}} +{ "Id": "7713", "PostTypeId": "1", "CreationDate": "2019-04-22T18:05:44.013", "Score": "2", "ViewCount": "70", "Body": "

I want to give a close friend a unique and memorable liquor-related (his stipulation) gift. He's particularly fond of whiskey and beer but drinks most anything. What are some ideas, not necessarily limited to actual liquor? In the past I've given him special whiskey glasses, a $100 bottle of whiskey, a home brew kit, and a bottle of chartreuse. He's got a pewter stein he bought himself. Think big, between $100 and $200.

\n", "OwnerUserId": "471", "LastEditorUserId": "5064", "LastEditDate": "2019-04-24T02:54:04.353", "LastActivityDate": "2019-04-24T02:54:04.353", "Title": "Unique and valuable gift for drinker?", "Tags": "specialty-beers recommendations whiskey craft-beers", "AnswerCount": "3", "CommentCount": "2", "ClosedDate": "2019-04-24T13:08:12.833", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7715"}} +{ "Id": "7715", "PostTypeId": "2", "ParentId": "6714", "CreationDate": "2019-04-22T23:12:34.880", "Score": "2", "Body": "

[O-Neh-Da Vineyard in the Finger Lakes of NY is America's oldest dedicated sacramental winery, operating strickly in accord with Canon law. Founded in 1872 by Rochester's founding Bishop, Bernard J McQuaid, O-Neh-Da is the only certified valid ad licit estate producer of approbated sacramental wine.

\n\n
\n

O-Neh-Da Authentic Sacramental Wines are available direct from the Vineyard to clergy and churches only.

\n
\n", "OwnerUserId": "8555", "LastEditorUserId": "5064", "LastEditDate": "2019-05-14T12:17:31.007", "LastActivityDate": "2019-05-14T12:17:31.007", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7716"}} +{ "Id": "7716", "PostTypeId": "2", "ParentId": "7713", "CreationDate": "2019-04-23T14:07:36.457", "Score": "0", "Body": "

While:

\n\n
    \n
  • this might not be the type of drink they like
  • \n
  • this was a numbered birthday present
  • \n
  • this website is in the UK
  • \n
\n\n

Nonetheless, it might spark off some ideas: https://www.thewhiskyexchange.com/p/18434/grahams-40-year-old-tawny-port

\n\n

It was his 40th birthday, so a 40 year old port with a custom engraved bottle. He's a Tolkein fan, so the inscription read: \"Such an excellent and admirable hobbit\"

\n", "OwnerUserId": "8557", "LastActivityDate": "2019-04-23T14:07:36.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7717"}} +{ "Id": "7717", "PostTypeId": "2", "ParentId": "7713", "CreationDate": "2019-04-23T14:39:59.240", "Score": "0", "Body": "
    \n
  1. A wine cooler. It would be memorable if he doesn’t plan on getting one himself.
  2. \n
  3. [VIP] tickets to a high-end wine/whisky tasting event.
  4. \n
  5. Membership to the Scotch Malt Whisky Society. Maybe you’d even be able to find a particular bottle (or two - given your price range) whose description memorializes some aspect/episode in your friendship.
  6. \n
\n", "OwnerUserId": "7965", "LastActivityDate": "2019-04-23T14:39:59.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7718"}} +{ "Id": "7718", "PostTypeId": "2", "ParentId": "7713", "CreationDate": "2019-04-24T02:53:39.543", "Score": "0", "Body": "

Unique and valuable gift for drinker?

\n\n

The following suggestion I have already done as a gift. It is awesome.

\n\n

It may not be the price that makes it valuable or unique. But a Crown Royal with a personalized label would definitely be an unique item to say the lest. And yes do not forget the custom bag(s).

\n\n

For example:

\n\n

\"Crown

\n\n

Crown Royal Northern Harvest label goes for only $3.00

\n\n

\"CROWN

\n\n

CROWN ROYAL RESERVE BAG goes for an additional $9.95

\n\n

Then of coarse you must buy your appropriate bottle of Crown Royal to go along with your label and/or customized bag.

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-04-24T02:53:39.543", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7719"}} +{ "Id": "7719", "PostTypeId": "2", "ParentId": "6792", "CreationDate": "2019-04-24T11:22:28.237", "Score": "1", "Body": "

You can measure it through distillation process, Take 100ml of beer and distill it approx 20-30 min at 85 degree Celsius. In this process the ENA will be collected separately and then the remaining content will be Sugar solution + other traces of Barley. \nMeasure the brix of this solution, you will have your answer.!

\n", "OwnerUserId": "8562", "LastActivityDate": "2019-04-24T11:22:28.237", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7720"}} +{ "Id": "7720", "PostTypeId": "2", "ParentId": "927", "CreationDate": "2019-04-26T16:35:34.770", "Score": "1", "Body": "

Mead is its own thing but often will be called “Honey Wine” but it is never an ale or beer. The process it’s made from is pretty much a wine-making process but there are a few differences leading to the fact that some places list their meads and honey wines together and others list them separately. Technically mead is its own category, but it’s basically a sibling to wine not beer. It’s fermented not brewed. Beer is more of a cousin to it.

\n", "OwnerUserId": "8570", "LastActivityDate": "2019-04-26T16:35:34.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7721"}} +{ "Id": "7721", "PostTypeId": "2", "ParentId": "6792", "CreationDate": "2019-05-01T20:31:26.327", "Score": "0", "Body": "

Comparing the original gravity (OG) and final gravity (FG) will give you a sense of the calories left in a beer. There is an online calculator here: http://www.mrgoodbeer.com/carb-cal.shtml

\n\n

This will not give you an accurate number for say labeling purpose, but it will get you in the ballpark. There are well-established tests that can determine caloric content in foods, but they require a lab and some knowledge.

\n", "OwnerUserId": "1304", "LastActivityDate": "2019-05-01T20:31:26.327", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7723"}} +{ "Id": "7723", "PostTypeId": "2", "ParentId": "927", "CreationDate": "2019-05-09T22:33:09.820", "Score": "0", "Body": "

Mead in some European countries is one of the stronger alcohol beverages you could get reaching 50%. (Apart from pure spirit of course) some people consider mead to be medicine rather than alcoholic beverage.

\n\n

Some people might say mead is part of beer but they are wrong and confusing yeast and sugar getting fermented with actual mead. Some European countries defines mead as \"The savory materials were given up by honey, carnation blossoms, poplar buds, oak acorns, juniper berries, and many other valuable herbs. Rich taupe color is reached by the use of natural blueberry, black currant and raspberry juice. This drink of great aroma and taste is of 50 % alcohol by volume\"

\n", "OwnerUserId": "8589", "LastActivityDate": "2019-05-09T22:33:09.820", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7724"}} +{ "Id": "7724", "PostTypeId": "2", "ParentId": "3513", "CreationDate": "2019-05-11T00:14:37.183", "Score": "2", "Body": "
    \n
  1. I can share a very nice experience at LeVeL33 (website, Instagram), which also claims to be the world's highest urban microbrewery, being located at floor 33 of MBFC Tower 1 in Marina Blvd, Singapore. Here, a glass of good house craft beer is not more expensive than a commercial pint in my hometown and foodies are also very good quality. The view over Marina Bay is even better than the beer.
  2. \n
\n\n

\"glass

\n\n
    \n
  1. The other one that I visited, serving good craft beers in Singapore in 2019, is Brewerkz Singapore.

  2. \n
  3. Originally from Bangkok (Thailand), Tawandang Microbrewery has a restaurant-taproom in Dempsey Rd in Singapore.

  4. \n
\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-04-02T17:21:24.137", "LastActivityDate": "2020-04-02T17:21:24.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7725"}} +{ "Id": "7725", "PostTypeId": "2", "ParentId": "1040", "CreationDate": "2019-05-11T10:21:24.210", "Score": "2", "Body": "

Another one is Ryujin Shuzo Brewery or Ginko Kura Brewery, from Gunnma Prefecture, not too far from the capital. Oze no Yukidoke IPA (that I tasted) seems to be their most popular product. I am disappointed for not finding any more precise references online now, but I advise to search the names in bold above on Google or Instagram (where I have my beer-also blog) to find some further pictures and information.

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-04-02T17:16:14.847", "LastActivityDate": "2020-04-02T17:16:14.847", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7726"}} +{ "Id": "7726", "PostTypeId": "2", "ParentId": "904", "CreationDate": "2019-05-11T11:29:25.073", "Score": "1", "Body": "

Almost five years after this question was asked I can add Quimera Brewpub, in Rua Prior do Crato, Lisbon, that I visited in March 2019. The About page of their website states:

\n\n
\n

We have 12 taps of craft beers and bottles, all produced either by us or from good Portuguese micro breweries.

\n
\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2019-05-12T19:28:25.920", "LastActivityDate": "2019-05-12T19:28:25.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7727"}} +{ "Id": "7727", "PostTypeId": "2", "ParentId": "6846", "CreationDate": "2019-05-11T12:54:03.480", "Score": "1", "Body": "

Yes, they are still available for sale in Italy when I write, in May 2019: just two days ago I shared with a friend one Moretti alla Toscana and one alla Piemontese.

\n\n

Le Regionali can mainly be found in local family-run grocery stores or in supermarkets. These beers by Moretti (whose lager is anyway one of the most popular Italian beers in Italy) are not likeky to be found in pubs or restaurants instead. Those - mainly small - restaurants who offer local foodies and drinks in particular may have special beers by Moretti in bottle or from tap also.

\n\n

Finally, I don't know much about distribution in the south of my country, since I live in northern Italy. Things (and most popular brands) may change significantly county by county but Le Regionali are all supposed to be distributed nationwide, not each one in the county inspiring it.

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2019-05-11T13:01:25.123", "LastActivityDate": "2019-05-11T13:01:25.123", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7728"}} +{ "Id": "7728", "PostTypeId": "2", "ParentId": "1014", "CreationDate": "2019-05-11T14:21:25.500", "Score": "1", "Body": "

I will resume here what I know about this topic.

\n\n

One of the twenty regions of Italy, and one of the most northern, is Trentino-Alto Adige. It borders with Austria and, for some 20km, with Switzerland. Trentino-Alto Adige is divided in two provinces: province of Trento (Trentino, capital town Trento) and province of Bolzano/Bozen (Alto Adige/Südtirol, capital town Bolzano/Bozen). The latter is more northern than the former and is the proper bilingual area on that side (German and Italian are the two most spoken languages). Bolzano/Bozen is the most populated city council in its province and, curiously, the one with the highest rate of native Italian speakers. Unfortunately I can't reference this statistic that I heard in the years I was used to visit those places often.

\n\n

Roughly speaking, the German or Austrian influence on culture and food and drinks is positively evident all around the region, becoming milder moving north to south.

\n\n

Several Austrian and German beers are popular here: Stiegl, Spaten, Maisel's and many more. The interesting point about beers, but not unexpected: beverages from several foreigner brands and companies are distributed but also produced in Italy. While I was searching for the linked reference, that seems to agree, I was sure to remember that Weihenstephan, one of my favourite beers back to those mountains, was produced and bottled either in Germany or in Italy at the Forst brewery in Lagundo, in Alto Adige/Südtirol.

\n", "OwnerUserId": "8580", "LastActivityDate": "2019-05-11T14:21:25.500", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7729"}} +{ "Id": "7729", "PostTypeId": "2", "ParentId": "3200", "CreationDate": "2019-05-12T17:49:14.620", "Score": "3", "Body": "

Yes, there are craft beer pubs in Porto and microbreweries from Porto! Particularly, Cerveja Letra was born not far from Porto and later opened a beer garden in Porto; Cervejaria do Carmo has around 50 different types of craft beers, giving more visibility to craft beers from Porto than to internacional brands; Fábrica da Picaria has its own craft beer being brewed on the spot (source).

\n\n

I don't know about any port flavoured or port related beers but some of the pubs mentioned in the above article also offer selections of port wines as an alternative to a glass of beer.

\n\n

Some craft beers from Portugal: Burguesa, Letra as above, Passarola, Sovina, Toira. Instead, two common local beers that may be found likely in any shop or bar are Super Bock from Matosinhos and Sagres from Vialonga. Sagres is also dark (preta).

\n\n

\"Super

\n\n

Finally, as in the accepted answer: no. Porter beer is originally British and has nothing to deal with the city of Porto, while port wine inherited his name from the city in its early days in XVII-XVIII century.

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-04-02T17:29:16.983", "LastActivityDate": "2020-04-02T17:29:16.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7730"}} +{ "Id": "7730", "PostTypeId": "1", "AcceptedAnswerId": "7731", "CreationDate": "2019-05-12T20:41:56.857", "Score": "4", "ViewCount": "239", "Body": "

A local brewpub describes one of its current beers as a \"dry porter\". I got something else instead, so I didn't taste it. I'm familiar with both porters and stouts (and the controversies over what the difference is), but what's a dry porter? I found a non-local example and a recipe, but neither describes the results enough for me to be able to tell what's \"dry\" about either.

\n", "OwnerUserId": "43", "LastActivityDate": "2019-05-13T13:46:03.557", "Title": "What is a dry porter?", "Tags": "porter", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7731"}} +{ "Id": "7731", "PostTypeId": "2", "ParentId": "7730", "CreationDate": "2019-05-13T13:46:03.557", "Score": "2", "Body": "

As @Eric mentioned in the comments, it is similar to wine, where you would expect a dry (or brut for sparkling) wine to have low to no residual sugars. A dry beer (porter, in this case) is brewed specifically to ensure that the carbohydrates are all converted to fermentable sugars, which are then fermented as the term would indicate, leaving you with a higher alcohol beer with less residual sugar than an a traditional fermentation.

\n", "OwnerUserId": "37", "LastActivityDate": "2019-05-13T13:46:03.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7732"}} +{ "Id": "7732", "PostTypeId": "1", "CreationDate": "2019-05-14T07:28:33.493", "Score": "1", "ViewCount": "1239", "Body": "

How is it that alcohol is so expensive in Australia? Is it just because of taxation?

\n", "OwnerUserId": "8598", "LastEditorUserId": "5064", "LastEditDate": "2019-05-14T11:44:20.540", "LastActivityDate": "2019-05-14T12:02:44.133", "Title": "Why is alcohol so expensive in Australia?", "Tags": "history australia", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7733"}} +{ "Id": "7733", "PostTypeId": "2", "ParentId": "7732", "CreationDate": "2019-05-14T12:02:44.133", "Score": "2", "Body": "

Why is alcohol so expensive in Australia?

\n\n

It is mostly due to taxation. But not all of it is.

\n\n
\n

The World Health Organisation’s latest Global Alcohol Report put Australia in the second-highest band of alcohol consumption: total per capita consumption is between 10 and 12.4 litres of pure alcohol a year.

\n \n

According to the Australian Hotels Association, around 20 per cent of the cost of beer at the pub is made up of tax.

\n \n

INCOHERENT SYSTEM

\n \n

Regardless of whether you think we pay too much or too little, Australia’s current alcohol taxation system is, put simply, a complete mess.

\n \n

It’s a hodge podge cobbled together over 30 years of deals, dodges and industry favours.

\n \n

Case in point: commercially produced beer today is taxed at no fewer than eight different rates, depending on a range of factors including alcohol volume and the type of packaging.

\n \n

Meanwhile, wine is taxed not on alcohol content but sales value, meaning the cheaper the wine, the less it is taxed.

\n \n

At the moment, there are broadly three different federal taxes that apply to alcohol:

\n \n

• Excise, indexed twice annually in line with the Consumer Price Index

\n \n

• The Wine Equalisation Tax (WET), which is based on sales value

\n \n

• Customs duties — a combination of alcohol content and sales value

\n \n

There is also the flat 10 per cent GST on all retail alcohol sales.

\n \n

The automatic indexation was introduced by the Hawke Government 30 years ago as a way of avoiding negative headlines every budget.

\n \n

At current taxation levels, drinkers pay 45c for every 1 standard drink in a full-strength beer. For spirits, which are taxed the highest, it’s an extra $1 per standard drink — a mark it hit for the first time this August. - Why do we pay so much for alcohol?

\n
\n\n

To this one can add the production price, distribution prices, markup prices at alcohol outlet stores and import costs when applicable (transportation and import duties).

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-05-14T12:02:44.133", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7734"}} +{ "Id": "7734", "PostTypeId": "1", "AcceptedAnswerId": "7735", "CreationDate": "2019-05-14T14:57:10.797", "Score": "4", "ViewCount": "68", "Body": "

I've been in homebrewing and homedistilling for some time and read a bunch of useful information about all types of whisk(e)y's and how are all of them named and such. I can't get the right information on how exactly are the barrels reused? When wine or spirit or whatever liquor was in the barrel gets taken out how exactly does the procedure look like then? Do they clean the barrel with water or steam before they put the fresh whiskey in there? I imagine you would want the flavors of whatever was previously in the barrel to have an impact on your future whiskey but there might be some trub and bad stuff on the bottom as well.

\n", "OwnerUserId": "6131", "LastActivityDate": "2019-05-14T16:39:52.670", "Title": "Using barrels for aging Whisk(e)y - preparing the barrel?", "Tags": "whiskey aging barrels", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7735"}} +{ "Id": "7735", "PostTypeId": "2", "ParentId": "7734", "CreationDate": "2019-05-14T16:39:52.670", "Score": "4", "Body": "

The barrels are pumped out at the winery. The barrels are probably rinsed with hot water until it's free of the gunk from the wine making process. Then left to drip dry for a while for a few days. If they are going to be used for spirits, the barrel head has to be taken off and then the barrel is charred on the inside. Otherwise, you won't get any of that smokey flavor. Wine barrels are toasted, not charred. Wine barrels go easy on the toasted oak flavor, where as whisky/scotch barrels go completely burned to almost charcoal on the inside that's how the flavor gets in there. If they just used wine barrels without doing anything, it would have a fairly weak flavor profile.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-05-14T16:39:52.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7736"}} +{ "Id": "7736", "PostTypeId": "2", "ParentId": "6792", "CreationDate": "2019-05-15T10:03:15.567", "Score": "0", "Body": "

Unfortunately, at home you won't be able to measure the alcohol content 100% correct, BUT there are devices available today that are going to give you pretty good estimation of alcohol content in your finished beer. Remember that after fermentation your beer contains alcohol which has lower density than water.

\n\n
    \n
  1. Hydrometer \nYou can measure specific gravity of your wort and your finished beer using the hydrometer. There are calculators avaliable online to tell you how much alcohol your beer has. You just enter OG and FG into calculator and it will give you estimated ABV. There is no need to adjust for alcohol density using hydrometer.

  2. \n
  3. Refractometer\nYou can buy a refractometer and measure specific gravity (SG) of your wort pre and post fermentation. Pre-fermantation reading is going to be an accurate one (for example, if you see 1.050 then you write down 1.050). With refractometer you need to adjust for alcohol density. Or you can use an online calculator that does it for you:\nhttps://www.brewersfriend.com/refractometer-calculator/\nYou just enter OG and FG as you see it on your refractometer and it will give you Adjusted FG and estimated ABV.

  4. \n
  5. Pycnometer\nThis is the method I prefer (altough few people use it) because it is the most precise measurement tool that you can have at home. You need a pycnometer and an accurate scale (better accuracy, better measurements -> 0.1 gram accuracy should be more than enough). What you do is you calibrate your pycnometer. Fill it with distilled water at X Celsius (usually it is 20C but you can choose different temperature -> choose one that is close to your usual wort pitching temp) up to a marked level in the pycnometer and measure the weight. Then, at the same temperature you weight your wort which will allow you to determine the exact amount of sugar in the wort. You do the same with the fermented beer. After that you have your OG and FG estimated by pycnometer instead of refractometer and can use the same calculator for estimated ABV. Pycnometer is just more accurate then refractometer but requires more work.

  6. \n
\n", "OwnerUserId": "6131", "LastActivityDate": "2019-05-15T10:03:15.567", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7737"}} +{ "Id": "7737", "PostTypeId": "2", "ParentId": "7271", "CreationDate": "2019-05-15T11:36:59.200", "Score": "2", "Body": "

In Italy, we call it vin brulé and this is a recipe for it from a popular and appreciated website. You can more typically find it in the regions in the north of Italy rather than the south and, again, in the occasion of Christmas markets.

\n", "OwnerUserId": "8580", "LastActivityDate": "2019-05-15T11:36:59.200", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7738"}} +{ "Id": "7738", "PostTypeId": "1", "AcceptedAnswerId": "7739", "CreationDate": "2019-05-15T13:24:52.143", "Score": "3", "ViewCount": "211", "Body": "

I am living in Germany, I am addicted to beer, but if I go back to my country, I couldn't find the beer or any alcohol products at my state, because beer and alcohol are banned. Is there any way, I can make beer at home.

\n", "OwnerUserId": "8600", "LastActivityDate": "2019-05-17T13:57:21.843", "Title": "Beer is banned in my state. How can I make beer at my home?", "Tags": "wine specialty-beers alcohol", "AnswerCount": "2", "CommentCount": "6", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7739"}} +{ "Id": "7739", "PostTypeId": "2", "ParentId": "7738", "CreationDate": "2019-05-15T14:26:50.527", "Score": "4", "Body": "

I suggest you read this thread in Reddit on a guy in Kyrgyzstan trying to make beer from basic ingredients and malting his own barley at home. This is what it might take to make beer from scratch. https://www.reddit.com/r/Homebrewing/comments/ag67o4/kyrgyzstan_primitive_brew_full_write_up_and/

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-05-15T14:26:50.527", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7740"}} +{ "Id": "7740", "PostTypeId": "2", "ParentId": "7241", "CreationDate": "2019-05-15T15:44:05.097", "Score": "1", "Body": "

It is served cold, in a cold glass. And above all, take the time to enjoy it in your mouth, as the essential oils, trapped into tiny droplets of some hundreds nanometer size, will be released giving rise to the taste of Limoncello.

\n\n

Some more info can be found in this article: Looking into Limoncello: The Structure of the Italian Liquor Revealed by Small-Angle Neutron Scattering

\n", "OwnerUserId": "8601", "LastActivityDate": "2019-05-15T15:44:05.097", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7741"}} +{ "Id": "7741", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2019-05-15T21:55:34.910", "Score": "2", "Body": "

Following my personal taste, I would advise these two \"meditation\" sweet wines:

\n\n\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-01-08T10:02:24.037", "LastActivityDate": "2020-01-08T10:02:24.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7742"}} +{ "Id": "7742", "PostTypeId": "1", "CreationDate": "2019-05-16T06:23:42.473", "Score": "1", "ViewCount": "388", "Body": "

What are the disadvantages of storing and transporting wine in steel barrels? I am an MBA student from Christ University, lavasa, india and this is a question regarding my internship project. Please help me clear this out. I can only find pros about this but not one con. I would like to know if there are any cons about this system.

\n", "OwnerUserId": "8604", "LastEditorUserId": "5064", "LastEditDate": "2019-05-16T11:21:14.830", "LastActivityDate": "2019-05-30T23:47:48.983", "Title": "What are the disadvantages of storing and transporting wine in steel barrels?", "Tags": "wine storage", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7743"}} +{ "Id": "7743", "PostTypeId": "2", "ParentId": "6819", "CreationDate": "2019-05-16T06:37:51.617", "Score": "1", "Body": "

appasemiento and rippasso wines from Italy are sweeter due to production method of drying/partially drying the grapes before pressing allowing a richer flavour and keeping alcohol levels as high as regular wine.

\n", "OwnerUserId": "8440", "LastActivityDate": "2019-05-16T06:37:51.617", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7744"}} +{ "Id": "7744", "PostTypeId": "2", "ParentId": "7742", "CreationDate": "2019-05-16T07:39:32.660", "Score": "1", "Body": "

Well for starters, the taste. Fermentation (aging) is very important for both wine and liquor alike, and the oak barrels are used because they provide extra flavor. In the case of wine, and specifically red wine, the oak brings out the spice and tannins that many people are looking for.

\n\n
\n

Oak wine barrels have been used for centuries in the fermentation and aging processes of wine by wine crafters. Aging wine in oak wine barrels provides the wine with aromas that would typically be found on your spice rack – nutmeg, cinnamon, allspice, vanilla and clove to name a few. And as it passes over your tongue, hints of caramel, mocha, butter and toffee are just a few that come forward.

\n
\n\n

Oak Wine Barrels or Stainless Steel Wine Drums?

\n\n
\n

... a liquid stored in oak will experience some degree of evaporation. This natural process contributes to the concentration of the wine (much like the way chefs “reduce” a sauce on the stovetop to intensify it) with respect to both aroma and flavor

\n
\n\n

To add in addition to the article, a new trend among (American) wineries is aging the wine in barrels that previously held liquor. This means that the barrels have absorbed the flavor of the liquor held in it previously, and add extra flavor to the wine as it ages in the reused barrel. Some popular combinations would be:

\n\n
    \n
  • Cabernet Sauvignon/Zinfandel/Red Blend aged in Bourbon/Whiskey barrels
  • \n
  • Chardonnay aged in Rum barrels
  • \n
\n\n

Notice how red wines are more so aged in old whiskey/bourbon barrels, as the wineries are looking to add more spice notes (sharper notes on the tongue) whereas the chardonnay (white wine) is aged in a rum barrel to get more of an oak note with a slight fruitiness to it.

\n\n

Old bourbon/whiskey barrels will have sharper, stronger notes (more spice than oak) whereas the rum barrels have more mild, sweeter notes (lots of oak with a hint sweetness from the rum)

\n", "OwnerUserId": "8172", "LastActivityDate": "2019-05-16T07:39:32.660", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7745"}} +{ "Id": "7745", "PostTypeId": "2", "ParentId": "7742", "CreationDate": "2019-05-16T12:13:08.130", "Score": "1", "Body": "

What are the disadvantages of storing and transporting wine in steel barrels?

\n\n

Well there that stainless steel wine drums are durable, impart no external flavours to the Wine, are easier to clean and are more green (no need to use oak trees to make barrels).

\n\n
\n

First of all, stainless steel wine drums are durable. They can be used over and over, year after year. The life of an oak barrel is between two and three years, depending on many factors. This means that oak trees must be harvested regularly, stripping our forests. And wine is highly acidic, and that acid tends to corrode the wood over time. So it makes economic sense for wineries to replace oak barrels with stainless steel. This economic advantage is important to winemakers because wineries use large quantities of barrels and using steel barrels allows them to reduce costs.

\n \n

And using steel barrels provides another advantage as well. They impart no flavor into the wine, so they are perfect for experimenting with exact flavors. With oak barrels it is difficult to control the wine’s exposure to air, and this exposure can alter the flavor of the wine dramatically. Steel barrels allow much more control over flavors.

\n \n

And there is one more factor to consider. Stainless steel barrels are much easier to clean than oak barrels. They have a very smooth surface inside, so cleaning them takes almost no time. Oak barrels tend to get scratched on the inside, and the wine seeps into those scratches and lingers long after the wine is removed. And this means that the flavor of the next wine to be stored in that barrel will be influenced by the remnants of the wine that was aged in that barrel previously. And this can interfere with both the flavor and the quality of the wine. And when you use steel barrels there are no woodnotes present, and the finish is crisp, fresh and light and the wine becomes more fruit forward (which is what many people prefer.)

\n \n

When all is said and done, every wine, whether aged in oak or stainless steel, has its own elite group of followers. And for the consumer it is a win-win situation because they have the option of enjoying wines created by both processes, depending on their mood. Wine created through both methods are easy to enjoy and appreciate. - The Great Debate – Oak Wine Barrels or Stainless Steel Wine Drums?

\n
\n\n

Thus if your after that added oak flavour, stainless steel drums are not the best.

\n\n
\n

Aging wine in oak wine barrels provides the wine with aromas that would typically be found on your spice rack – nutmeg, cinnamon, allspice, vanilla and clove to name a few. And as it passes over your tongue, hints of caramel, mocha, butter and toffee are just a few that come forward. - The Great Debate – Oak Wine Barrels or Stainless Steel Wine Drums?

\n
\n\n

The following can not be achieved in Stainless steel Drums:

\n\n
\n

Wood (and specifically oak) is a fundamentally porous material by nature, and that means a liquid stored in oak will experience some degree of evaporation. This natural process contributes to the concentration of the wine (much like the way chefs “reduce” a sauce on the stovetop to intensify it) with respect to both aroma and flavor. And then there are even more factors, such as where the trees were grown and how the wood was dried. All of these variables contribute to the results with fuller and richer complexity and impressions that can only be achieved with fermenting and aging wine in oak barrels. - The Great Debate – Oak Wine Barrels or Stainless Steel Wine Drums?

\n
\n\n

Aging wine in barrels may be better for some wines:

\n\n
\n

Depending on the type of wine, aging isn’t a factor. Particular white wines don’t age well and shouldn’t be stored in oak barrels. Red wines that contain various hints of spice, on the other hand, are usually aged for sometimes years at a time in oak barrels. - Oak vs. Stainless Steel Barrels, Which One’s Better?

\n
\n\n

One of the wineries near here (British Columbia) uses both (oak barrels and stainless steel drums) in their wine making. They incorporate a small of berries (blackberries, raspberries etc.) into the process of their wines in order the enhance the taste of the wine. The number of their stainless drums far outnumbers the their oak barrels.

\n\n

Further reading:

\n\n

Wine barrels: French or American oak? Stainless steel or cement? Does it matter?

\n\n

3 Wine Barrel Trends You Need to Know About

\n\n

\"Oak

\n\n

Oak Wine Barrels or Stainless Steel Wine Drums?

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-05-16T12:13:08.130", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7746"}} +{ "Id": "7746", "PostTypeId": "2", "ParentId": "7738", "CreationDate": "2019-05-17T13:57:21.843", "Score": "0", "Body": "

If you are gone make your own beer make sure that when you are making to write everything down that you use for at least the grams of possible better and also how long you did each stage because 30 min longer brewing or malting has a significant impact on the final result. And when you are doing it I would like to read about your results.

\n", "OwnerUserId": "8134", "LastActivityDate": "2019-05-17T13:57:21.843", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7747"}} +{ "Id": "7747", "PostTypeId": "2", "ParentId": "229", "CreationDate": "2019-05-19T14:38:28.873", "Score": "0", "Body": "

What's the difference between normal and Christmas beer?

\n\n

Beer may be beer to most people, but in Norway the Christmas beer par excellent is the juleøl:

\n\n
\n

The drink par excellence is the juleøl, the Christmas beer. It is a sweeter than usual beer that norwegians usually drink at Christmas and that is supposed to be good with the big meals. The other traditional drink at this time of the year is the gløgg, mulled wine with spices that people have with almonds and raisins. - The tradition of Julebord in Norway

\n
\n\n

\"Christmas

\n\n

Christmas beer

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-05-19T14:38:28.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7748"}} +{ "Id": "7748", "PostTypeId": "2", "ParentId": "64", "CreationDate": "2019-05-23T16:58:42.523", "Score": "3", "Body": "

I'd strongly dissuade anyone from ever drinking anything from an aluminum can, not just beer. As mentioned by LessPop_MoreFizz, beer cans are lined with a compound that attempts to prevent contact with the aluminum... That chemical, however, is Bisphenol A which is a potentially very dangerous chemical compound for your body when ingested...

\n\n
\n

CDC still says the chemical's health effects are unclear, research on\n chronic exposure has linked it to high blood pressure and heart rate\n issues.\n https://www.usatoday.com/story/news/nation/2014/12/14/bottle-chemical-bpa-health-newser/20397547/

\n
\n\n

Depending on who you ask, one will get a variety of answers:

\n\n
\n

...has also become associated with a range of ailments, including cancer, reproductive trouble, and irregular brain development in kids. BPA is well established as an endocrine-disrupting chemical, meaning that it likely causes hormonal damage at extremely low levels. The question is whether we get enough of it in beer (and other canned goods) to cause harm. https://www.motherjones.com/food/2015/02/no-i-cant-why-im-turning-away-canned-craft-beer/

\n
\n\n

And this:

\n\n
\n

BPA, in small doses, has been linked to obesity, early onset of\n puberty, diabetes, heart disease, reduced penis size, growth of male\n breasts, and even mean girls. https://www.treehugger.com/health/who-cares-about-bpa-canned-beer-more-popular-ever.html

\n
\n\n

Also, let's hope that it is true that this compound prevents leaching of aluminum into beer considering aluminum is one of the most toxic heavy metals for the human body.

\n\n

That said, if you don't really care about a little thing called \"Your Health,\" then there are several pragmatic reasons for why aluminum is good for beer storage:

\n\n
\n

1.)Aluminum blocks light and oxygen from entering the beer itself

\n \n

2.)Cans are generally lighter and smaller than bottles, making them easier to carry and store

\n \n

3.)Cans can allow beer to become colder more quickly

\n \n

https://learn.kegerator.com/beer-cans/

\n
\n\n

While the argument that beer spoils more quickly in bottles is accurate, who is letting the beer sit around long enough for that to happen?? Not I...

\n\n

Also, while cans become colder quicker, they also become warmer more quickly when exposed to heat. Whereas, bottles will remain colder for much longer...

\n\n

Finally, the taste issue - minimal research in your favorite search engine will show you that it is a 50/50 debate... some folks say it tastes like metal, some don't. This debate is non-existant when drinking from bottles, however...

\n\n

With Guinness in particular, I always prefer the taste from bottle over that of the can... so in conclusion, ymmv but make it a bottle for me.

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-05-23T16:58:42.523", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7749"}} +{ "Id": "7749", "PostTypeId": "2", "ParentId": "5134", "CreationDate": "2019-05-24T20:39:50.027", "Score": "2", "Body": "

The answer is partially historical. In the 1900's Ireland's distillery market was hit hard. Starting with the Irish War of Independence from 1919 to 1921, prohibition in the United States between 1919 and 1933, then a trade war between Ireland and Britain from 1932 to 1938, and finally WW2 starting in 1939. By the 1970's Ireland only had two distilleries, Midleton which made Jameson among other things, and Bushmills. So what we think of Irish whiskey is based largely on what two distilleries were making and what they could sell. Ireland's spirits economy has finally started to recover with the number of licensed distilleries doubling between 2014 and 2016, from 9 to 18. Today there are over 30, and eventually the limited perception of Irish whiskey will change as more small distilleries do new and exciting things.

\n", "OwnerUserId": "5974", "LastActivityDate": "2019-05-24T20:39:50.027", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7750"}} +{ "Id": "7750", "PostTypeId": "1", "CreationDate": "2019-05-26T11:39:27.593", "Score": "1", "ViewCount": "33", "Body": "

Or does all beer have to be carbonated in kegs (or before)? My beer is not carbonating properly and I would like to find a way to do it on the spot whatever the cost.

\n", "OwnerUserId": "8616", "LastActivityDate": "2019-05-26T11:39:27.593", "Title": "Is there any professional cooler that can carbonate beer?", "Tags": "carbonation", "AnswerCount": "0", "CommentCount": "0", "ClosedDate": "2019-05-27T16:29:08.770", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7752"}} +{ "Id": "7752", "PostTypeId": "1", "CreationDate": "2019-05-27T21:58:40.603", "Score": "2", "ViewCount": "70", "Body": "

I'm studying for the WSET Level 2 and I will be taking it in a couple of weeks. Any advice on what I should study? I've already made tons of flash cards and I'm going through them regularly.

\n", "OwnerUserId": "8619", "LastEditorUserId": "5064", "LastEditDate": "2019-05-28T23:10:17.040", "LastActivityDate": "2019-08-06T17:02:40.350", "Title": "WSET Level 2 Exam", "Tags": "wine recommendations spirits", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7753"}} +{ "Id": "7753", "PostTypeId": "1", "CreationDate": "2019-05-28T09:59:43.773", "Score": "1", "ViewCount": "64", "Body": "

So, I have a 5 liter dark style beer batch which completed the fermentation. It's a bit cloudy at this moment even after racking. I have some pure bentonite clay lying around and I want to use it to clarify the beer.

\n\n

The questions are..

\n\n

1) Should I use bentonite to clarify the beer? I would need natural carbonation, as I don't have a keg. Will I need to add yeast again if I use bentonite to clarify? Also, if this is an option; how much bentonite shall I put for 5 liters beer, so much so that the yeast does not drop out?

\n\n

2) If I can't use bentonite, then can I use gelatin instead? I had a horrible batch last time I tried to use gelatin. I guess I had put too much and it won't fully sediment. I had to throw the batch away, as it basically turned into 5 liter jello shot lol. How much (by weight/teaspoon) gelatin should I add for 5 liters of beer?

\n", "OwnerUserId": "3849", "LastActivityDate": "2019-05-28T09:59:43.773", "Title": "Can I use bentonite for clarifying beer?", "Tags": "home-brew", "AnswerCount": "0", "CommentCount": "7", "ClosedDate": "2019-05-28T20:46:16.240", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7754"}} +{ "Id": "7754", "PostTypeId": "2", "ParentId": "401", "CreationDate": "2019-05-29T05:30:18.107", "Score": "1", "Body": "

Yeast as a microorganism was discovered by Pasteur. The Vikings did not have microscopes, likewise neither did the Germains who wrote the beer purity law of 1516 which does not include yeast as in ingredient. Brewers (often clergy or women called \"brewives\") believed it was a mystical process and kept beer consistent by saving sediment in patties or cakes for the next batch like bakers save chunks of dough. The term yeast may have been used before pasteur but he surely changed the meanining and revolutionized standardized beers by isolating yeast types. As far as I know beers that rely on wild yeasts are the \"farmhouse\" styles compared to the main two; lager and ale yeasts.

\n", "OwnerUserId": "8622", "LastActivityDate": "2019-05-29T05:30:18.107", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7755"}} +{ "Id": "7755", "PostTypeId": "1", "AcceptedAnswerId": "7756", "CreationDate": "2019-05-29T12:13:34.680", "Score": "8", "ViewCount": "435", "Body": "

I am going to some festivals this year but I still struggle to find the most convenient method to cool my beer there.

\n\n

I already tried bringing a cool box but it was warm after a few hours the first day in. Digging a hole wasn't such a nice idea either.

\n\n

What is your best method or should I just embrace warm beer?

\n", "OwnerUserId": "5734", "LastActivityDate": "2019-07-04T11:29:56.583", "Title": "What is the best way to cool your beer on a festival without electricity?", "Tags": "cooling", "AnswerCount": "4", "CommentCount": "7", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7756"}} +{ "Id": "7756", "PostTypeId": "2", "ParentId": "7755", "CreationDate": "2019-05-29T23:46:53.087", "Score": "8", "Body": "

A high-end cooler packed with ice can stay cold for five or six days. High-end coolers can get somewhat expensive, they aren't necessary for most people. First thing I would do is get a cheap cooler, not the styrofoam cooler that you might get from a gas-station but, an double-wall insulated plastic one. The way that you pack it will make a big difference in how long it stays cold.

\n\n

If you can, bring the cooler down to temperature by sticking some ice in it a day before your trip. For the trip, use the biggest ice that you can, small ice melts faster. You can fill big plastic juice bottles with water and freeze them. You also want to fill as much of the cooler as you can, so fill in smaller spaces with smaller ice. Put a folded-towel inside of the cooler, on top of everything else, to prevent too much cold air from escaping when you open your cooler. The towel should take up the entire surface-area of the cooler and when you grab a beer, only lift as much of the towel as necessary. Avoid opening the cooler more than you have to, so grab everyone a fresh beer at the same time. Of course, try to keep your cooler in the shade.

\n\n

Without ice, you could take a note from the botijo. A botijo is a ceramic jug, called different things but, used around the world as a water jug. The ceramic is porous so it 'sweats'. And just like a with a person, when the 'sweat' evaporates it cools the container down. I wouldn't put beer in it, it'd go flat and it'd be hard to clean. But you could get a growler, keep it wet, and aim a portable fan at it. I don't know how well it'd work but, it's worth a shot. If the beer doesn't stay cold, at least the fan will cool you off.

\n", "OwnerUserId": "5974", "LastActivityDate": "2019-05-29T23:46:53.087", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7757"}} +{ "Id": "7757", "PostTypeId": "2", "ParentId": "7755", "CreationDate": "2019-05-30T17:41:08.260", "Score": "5", "Body": "

I gave this some more thought. If money is no object, then there is an easy solution. It involves electricity but from a generator so it's a self contained unit. It will set you back about $2500, but it is a good solution.

\n\n

Get yourself a Dometic 12v Cooler that will fit your corny keg.

\n\n

\"Electric

\n\n

Then bring a generator to power it all weekend. One of these Honda generators should last at least three days on a full tank

\n\n

\"enter

\n", "OwnerUserId": "6111", "LastEditorUserId": "6111", "LastEditDate": "2019-05-30T18:07:16.570", "LastActivityDate": "2019-05-30T18:07:16.570", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7758"}} +{ "Id": "7758", "PostTypeId": "2", "ParentId": "7742", "CreationDate": "2019-05-30T23:47:48.983", "Score": "1", "Body": "

To highlight the disadvantage of steel you have to look at the alternatives. Of course you have wood, but wood imparts a lot of flavor, it's used for a different reason than steel containers. A better comparison is concrete.

\n\n

Concrete fermentation and storage tanks started becoming popular in California around 2013, but they've been around forever. It's easy to cast it into different shapes which can create movement of the liquid in the tank, changing the mouthfeel of the wine. This happens becuase there is sediment at the bottom of a wine tank, the movement lifts the sedement and increases the wine's interaction with it. Concrete can also 'breathe', allowing oxygen to interact with the wine. These things can help to improve the quality of the wine. When you put wine in a steel barrel, that's it... the wine is done evolving.

\n\n

Honestly, concrete also looks nicer. There's a fairly large tourist industry around wine. Steel tanks at a vinyard aren't as beautiful or interesting to tourists as wood or these big concrete eggs. That supposed lack of beauty changes the customers perception of the product, which makes a difference in how they enjoy and talk about the wine. There are disadvantages to concrete of course, amongst other things it's difficult to clean and it's heavy. I'm not saying that concrete is better than steel, it's just different. But, the reason that some people use it over steel, or in conjunction with steel, should point to supposed disadvantages of steel.

\n", "OwnerUserId": "5974", "LastActivityDate": "2019-05-30T23:47:48.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7759"}} +{ "Id": "7759", "PostTypeId": "2", "ParentId": "7755", "CreationDate": "2019-05-31T20:21:37.930", "Score": "2", "Body": "

As others have said, time frame is an important consideration. I've used a mix of dry ice, ice and salt before and had no problems in a standard, single walled, plastic box for half a day. A bit overkill perhaps...

\n", "OwnerUserId": "4550", "LastActivityDate": "2019-05-31T20:21:37.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7760"}} +{ "Id": "7760", "PostTypeId": "2", "ParentId": "7755", "CreationDate": "2019-06-02T20:16:54.727", "Score": "3", "Body": "

What is the best way to cool your beer on a festival without electricity?

\n

That will depend on on several issues.

\n

First of all some beers may be better served at warmer temperatures than other beers.

\n
\n

Depends on the beer really. A good rule of thumb is darker beer should be served at a warmer temperature than lighter beer.

\n

For instance if you refrigerate all of your beers and then pull them out of the fridge and drink them instantly you will miss A LOT of the flavor complexity of pretty much every stout and porter you put to your lips.

\n

But, if you let the dark stuff warm up for just 15 minutes before you drink it (let it sit at room temp) a bunch of new flavors will appear that you never would have noticed otherwise.

\n

This doesn't work so well, in my experience, for lighter beers like pilsner, lager, or hefe-weisen. They really are meant to be drank cold and letting them get warm changes their flavor profile for the worse.

\n

Obviously there will always be personal preferences but, at a minimum I encourage you to try letting your darker beers warm up just a bit and see what a positive difference it makes. - What temperature should I serve my beer?

\n
\n

Another possible idea is that if you are near water you can get a Floating Cooler For River or Pool. They range from 6 cans to 72 cans.

\n

\"Intex

\n

Intex Mega Chill II Inflatable Floating Cooler, 48" X 38" holds 72 cans.

\n

Then of coarse there is the traditional cooler method. The larger the cooler and the more ice there is in it will keep your beer warmer.

\n

There is also a Coleman Thermo-electric 12V Ice Chest which may serve your purpose. This what I when I go camping. No ice is recommended. You have to pre-cool the cooler at home and then plug it into the outlet in car or truck. keep the chest plugged into your vehicle the whole trip to your destination. One fall back to this system is that you can not leave plugged into your vehicle more than 3 hours without the car or truck running. But then you can either take an additional cooler or floater with you.

\n

\"Coleman

\n

Coleman 40 Quart Power Chill Thermo-electric Cooler is what I use and it works great. Use it with darker beers and give it a try. Do not open it every 5 minutes and recharge it in the car every so often. It works like a charm.

\n

If you are lucky there may be a cold natural spring near by to place your beer into.

\n", "OwnerUserId": "5064", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2019-07-04T11:29:56.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7762"}} +{ "Id": "7762", "PostTypeId": "1", "CreationDate": "2019-06-10T17:19:34.187", "Score": "1", "ViewCount": "122", "Body": "

I don't drink alcohol at all, but I'd like to keep some kind of selection around to offer to guests who do. I'm not looking to fully stock a bar, but at least a few different options that can accommodate a variety of tastes and also not require prompt consumption.

\n", "OwnerUserId": "8637", "LastActivityDate": "2019-06-10T18:35:32.540", "Title": "What is a good collection of alcohol to keep around for someone who doesn't drink?", "Tags": "recommendations", "AnswerCount": "1", "CommentCount": "3", "ClosedDate": "2019-06-13T11:57:32.720", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7763"}} +{ "Id": "7763", "PostTypeId": "2", "ParentId": "7762", "CreationDate": "2019-06-10T18:35:32.540", "Score": "2", "Body": "

The kinds of alcohol you'd want can differ depending on the occasion or type of hosting you'll be doing. If a friend helps you move a couch, for example, it would not be unexpected to offer them a beer afterward as a thank you.

\n\n

Wine can be offered but is probably more acceptable in the evenings or with a specific meal. One bottle of white and one of red should be sufficient. Chardonnay is probably a safe bet for white wine and a Merlot or Cabernet Sauvignon for red, but your guests' individual tastes can obviously differ.

\n\n

Liquor like vodka or whiskey can be used to make a variety of cocktails (again, during or after dinner are commonplace) and for guests who want to party these can easily be used for shots as well. Many people have preferences towards specific brands, but if you buy a $20-30 bottle you won't have many guests turn it down just over the name.

\n", "OwnerUserId": "8638", "LastActivityDate": "2019-06-10T18:35:32.540", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7765"}} +{ "Id": "7765", "PostTypeId": "1", "AcceptedAnswerId": "7766", "CreationDate": "2019-06-11T18:36:55.773", "Score": "4", "ViewCount": "4851", "Body": "

I made some sangria for a party - Spanish red, brandy, triple sec, peach schnapps, orange slices, lemon slices, strawberries, pineapple, generic tropical juice - and have accidentally left it out on the table while I was busy out dancing while under its influence. I know that as a rule, sangria that isn't on the table with some ice in it should be kept refrigerated, so my question is whether the leftovers are drinkable having been out for around 24 hours?

\n", "OwnerUserId": "6989", "LastActivityDate": "2020-10-13T23:10:20.313", "Title": "Sangria left out overnight", "Tags": "storage red-wine cocktails", "AnswerCount": "5", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7766"}} +{ "Id": "7766", "PostTypeId": "2", "ParentId": "7765", "CreationDate": "2019-06-12T13:43:38.113", "Score": "4", "Body": "

Well, I had a sip of it out of curiosity, and it tasted great, so I finished off what was left. No ill health effects to report so it would appear it was fine! I will say that the fruit looked slightly worse for wear so I didn't eat any of it, but otherwise the drink was delicious.

\n", "OwnerUserId": "6989", "LastEditorUserId": "6989", "LastEditDate": "2019-06-12T13:50:23.507", "LastActivityDate": "2019-06-12T13:50:23.507", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7767"}} +{ "Id": "7767", "PostTypeId": "2", "ParentId": "7765", "CreationDate": "2019-06-12T21:36:05.800", "Score": "1", "Body": "

I see that you already went ahead and finished off the Sangria, but in the future, I would probably recommend against it. Slicing the fruit exposes it to bacteria and between that and the juice you used it's always best to refrigerate perishable foods. I wouldn't be nearly as concerned as I would with leaving meat at room temperature, for example, but it always pays to be safe.

\n", "OwnerUserId": "8638", "LastActivityDate": "2019-06-12T21:36:05.800", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7768"}} +{ "Id": "7768", "PostTypeId": "2", "ParentId": "7765", "CreationDate": "2019-06-18T20:07:02.317", "Score": "4", "Body": "

Grain alcohol (brandy, triple sec, peach schnapps) does not spoil while it's sitting in your liquor cabinet. A bottle of wine, even with the oxidation after it's opened, can be drank for more or less 36 hours after opening (eventually it becomes vinegar). The fruit would take time to decay, much longer than 24 hours.

\n\n

Next time, eat the fruit.

\n", "OwnerUserId": "6787", "LastEditorUserId": "5064", "LastEditDate": "2019-07-05T00:04:25.887", "LastActivityDate": "2019-07-05T00:04:25.887", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7772"}} +{ "Id": "7772", "PostTypeId": "2", "ParentId": "7659", "CreationDate": "2019-06-24T06:59:03.257", "Score": "1", "Body": "

Copied from: Why is 75cl the standard wine bottle size?

\n\n
\n

The volume of 75cl was standardized in the 19th century. At that time,\n the biggest clients for the French wines were the British.

\n \n

The close neighbors do not use the metric system and used to order\n wine in “imperial gallon”. One gallon is about 4.546 liters.

\n \n

Barrels were used to transport wine at that time. One barrel is 50\n gallons, about 225 liters. A real nightmare for conversion! So to ease\n the calculation, the wine makers from Bordeaux decided that 1 barrel\n would be 300 bottles of wine instead of 225.

\n \n

Do the math and you’ll find that it makes a bottle at 75cl! One gallon\n is 6 bottles, and since then, that’s the reason why we still order\n wine in packs of 6 or 12 bottles.

\n
\n\n

\n", "OwnerUserId": "8668", "LastEditorUserId": "37", "LastEditDate": "2019-06-24T12:41:40.530", "LastActivityDate": "2019-06-24T12:41:40.530", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7773"}} +{ "Id": "7773", "PostTypeId": "2", "ParentId": "7765", "CreationDate": "2019-06-24T17:12:22.340", "Score": "0", "Body": "

Sure, the final alcoholic degree is a key point in matter of conservation. Knowing what, how much and with which alcoholic degree, of the different beverages you put in your sangria, you should be able to grossly evaluate this final degree (consider fruits like their volume of non-alcoholic juice).

\n", "OwnerUserId": "7549", "LastActivityDate": "2019-06-24T17:12:22.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7774"}} +{ "Id": "7774", "PostTypeId": "1", "CreationDate": "2019-06-24T23:22:12.493", "Score": "0", "ViewCount": "2178", "Body": "

Wine yeast is not sold in Indian markets, and online it's very costly; around 12 times what it would cost in the US. I like wine above 15% ABV. Will that be possible with instant yeast? If so, then tips please.

\n", "OwnerUserId": "8669", "LastEditorUserId": "37", "LastEditDate": "2019-06-27T13:30:04.047", "LastActivityDate": "2019-07-03T13:24:55.347", "Title": "What is the max ABV that can be attained with instant yeast?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7780"}} +{ "Id": "7780", "PostTypeId": "2", "ParentId": "7574", "CreationDate": "2019-06-25T15:56:14.843", "Score": "2", "Body": "

China, although it's not actually grape wine, as most would refer to it.

\n\n

It's more likely to be some form of rice wine or grain alcohol.

\n\n

Ref.

\n", "OwnerUserId": "8672", "LastEditorUserId": "5064", "LastEditDate": "2020-05-28T11:56:21.557", "LastActivityDate": "2020-05-28T11:56:21.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7781"}} +{ "Id": "7781", "PostTypeId": "2", "ParentId": "7439", "CreationDate": "2019-06-25T16:26:52.083", "Score": "1", "Body": "

Just go to a supermarket (the bigger the better and I'd suggest Tesco or Asda) and buy their own brand london dry. It's not nice but it's cheap. If you really don't mind the taste, consider vodka instead as it's often a little bit cheaper and essentially the same stuff without the botanicals.

\n\n

Tesco gin

\n\n

Asda gin

\n\n

Sainsburys gin

\n\n

You're unlikely to get it for under £14 per L but you might find it on offer occasionally.

\n", "OwnerUserId": "8672", "LastActivityDate": "2019-06-25T16:26:52.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7782"}} +{ "Id": "7782", "PostTypeId": "1", "AcceptedAnswerId": "7791", "CreationDate": "2019-06-26T03:18:42.697", "Score": "7", "ViewCount": "183", "Body": "

I recently came back from a visit to Islay in Scotland, where I learned \nthat the distilleries use peat in the process of drying barley to give the local Scotch its distinctive peaty flavor. I'm curious whether this process also happens in other parts of the world where peat is found.

\n\n

According to Wikipedia, \"About 60% of the world's wetlands are made of peat.\" And from National Geographic, I learned that \"...peat bogs can be found from Tierra del Fuego to Indonesia.\" Given this fact, I'm wondering if peaty whiskey has ever been attempted in another region besides Islay, and what the results were. If so, I'd be super-curious to try it!

\n\n

Another requirement for this to take place would (I'd guess) be access to barley, but I'd guess this could be imported more easily than peat could?

\n", "OwnerUserId": "8674", "LastActivityDate": "2019-07-07T17:18:29.270", "Title": "Is peaty whiskey made in other parts of the world besides Islay?", "Tags": "whiskey scotch distillation", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7783"}} +{ "Id": "7783", "PostTypeId": "1", "AcceptedAnswerId": "7785", "CreationDate": "2019-06-26T11:14:16.037", "Score": "2", "ViewCount": "421", "Body": "

I was at a bar some time ago and I ordered a random shot. A B52 I believe. And it looked perfectly layered, no gradients between any of the three liquors. So how do the bartenders do it?

\n", "OwnerUserId": "8676", "LastEditorUserId": "5064", "LastEditDate": "2019-06-27T22:24:56.793", "LastActivityDate": "2021-02-17T18:08:44.380", "Title": "How can I layer liquors on top of each other?", "Tags": "cocktails liquor layered-drinks", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7784"}} +{ "Id": "7784", "PostTypeId": "2", "ParentId": "7783", "CreationDate": "2019-06-26T16:36:35.477", "Score": "2", "Body": "

It does depend on the liquor you're using since they have specific gravity's. You can pour them carefully over a spoon to minimize disturbance, or (what I always did) pour them slowly down the side of the glass, one by one in order (highest gravity on bottom).

\n\n

This page spells it out pretty well: Specific Gravity Chart for Layering Drinks and Shots.

\n", "OwnerUserId": "8597", "LastEditorUserId": "5064", "LastEditDate": "2019-06-26T23:06:58.987", "LastActivityDate": "2019-06-26T23:06:58.987", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7785"}} +{ "Id": "7785", "PostTypeId": "2", "ParentId": "7783", "CreationDate": "2019-06-26T23:54:18.763", "Score": "5", "Body": "

How can I layer liquors on top of each other?

\n

The key to creating perfectly layered drinks is to pay attention to how heavy each ingredient is compared to the other ingredients. The weight of each liquid is measured by its specific gravity.

\n

An alcohol density chart can be viewed here.

\n
\n

There are a few simple rules to follow:

\n
    \n
  • You want to use a narrow glass to maximize the thickness of each layer without using a ton of booze. There actually is a specific pousse-café glass, but only your crazy aunt has those, and do you really want to go over there and borrow one? No. Just use a champagne flute or a skinny shot glass.

    \n
  • \n
  • The order in which you pour is the most important aspect. You want to start with the liquid that has the greatest specific gravity, and decrease as you ascend. That way they liquids won't try to pass through each other, which will mostly likely just end in blending. Terrible stupid blending! Start with the sweetest, least-alcoholic liquid, and go up from there until you have the least-sweet, most-alcoholic liquid at the top.

    \n
  • \n
  • Pouring technique is critically important. This definitely takes a steady hand. If you pour too fast, the top layer will plunge down into the one under it, which will cause mixing. That ain't pretty, and prettiness is what this drink is all about (prettiness and science). The top of a bar spoon is pretty much the ideal tool, but you can pour over the back of a regular spoon, too. Just position the spoon right above the last layer, and pour as slowly as humanly possible. This is why bartenders hate you for ordering these. How to make a multi-layered drink

    \n
  • \n
\n
\n

Here are a few Tips for layering drinks:

\n
\n
    \n
  • To keep the layering effect, the drink should not be stirred.

    \n
  • \n
  • A chilled glass often works best. Also, if your drink does not include ice, it's best to chill the ingredients before pouring.

    \n
  • \n
  • A speed pourer can be helpful for slowing down the pour as well. This is particularly true if your liquor bottle is full and heavy.

    \n
  • \n
  • Some bartenders will put the tip of the spoon just under the first layer, which helps the liquid stay on top. Depending on your technique, this may help you as well.

    \n
  • \n
  • Layering can also be done with a syringe that is food-safe. It's not as professional (or cool) looking, but it is easier. Be sure to choose one with a larger hole. - How to Create Layered Cocktails and Shots

    \n
  • \n
\n
\n

\"Use

\n

Use the back of a spoon to help you create your layered drink.

\n

For those who desire to look more professional in this domain, one could employ a Rainbow Cocktail Layering Tool

\n

\"Rainbow

\n
\n

An ingenious piece of equipment, the Rainbow Cocktail Layering Tool allows anyone to start making their own layered cocktails. Using a clever float that sits on your drink as you make it, you can easily pour one drink on top of another without the layers mixing!

\n
\n

Above all, please pour your liquors and liqueurs very carefully and slow.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-02-17T18:08:44.380", "LastActivityDate": "2021-02-17T18:08:44.380", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7786"}} +{ "Id": "7786", "PostTypeId": "2", "ParentId": "7774", "CreationDate": "2019-06-27T04:57:31.017", "Score": "1", "Body": "

For fermenting with bread yeast most sources cite an average yeast alcohol tolerance of 13-14% AbV. Obviously bread yeasts vary between manufacturers.

\n\n

There are numerous other factors influencing attenuation, some common ones are:

\n\n
    \n
  • concentration of sugars in the juice / must / wort
  • \n
  • amount of yeast used
  • \n
  • fermentation temperature
  • \n
\n\n

If your intention is to make quality wine, then it would be best to purchase a small amount of a purpose-bred wine making yeast, and grow it up into an amount large enough to ferment a batch. Before pitching the yeast into the wine, reserve a small amount to grow up for the next-batch. This method requires the least cost, but still ensures the yeast-type is appropriate for the beverage.

\n\n

If you are making a \"country wine\" (fermented fruit juices, ginger \"beer\", flower-flavoured water+sugar, etc.) then bread yeast will be OK, but you would need to experiment to get the pitch correct. For a rough idea, on a beverage that would ferment out to ~14% I would start with 40 grams* of dry bakers yeast into a 20 litre batch.

\n\n

I strongly advise you to purchase a hydrometer so it's possible to monitor the performance of the fermentation. Do this by taking a reading before pitching the yeast, and during fermentation.

\n\n
    \n
  • My reasoning on this is the original gravity to produce this amount of alcohol would be quite high, say 1.1 SG / 23 Brix. If this were beer, a pitch rate like this would be in order, and was verified with a pitch-rate calculator online.
  • \n
\n", "OwnerUserId": "5160", "LastEditorUserId": "5160", "LastEditDate": "2019-06-27T05:06:37.403", "LastActivityDate": "2019-06-27T05:06:37.403", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7787"}} +{ "Id": "7787", "PostTypeId": "2", "ParentId": "5066", "CreationDate": "2019-06-27T22:24:01.210", "Score": "3", "Body": "

Does this count?

\n\n
\n

12-Layer Pousse Café

\n \n
    \n
  • grenadine

  • \n
  • creme de cassis

  • \n
  • green creme de menthe

  • \n
  • maraschino liqueur

  • \n
  • elderflower liqueur

  • \n
  • orange curacao

  • \n
  • benedictine

  • \n
  • yellow chartreuse

  • \n
  • green chartreuse

  • \n
  • fernet branca

  • \n
  • cognac

  • \n
  • over-proof rum

  • \n
\n \n

MxMo: Pousse Café

\n
\n\n

\"\"

\n\n

Here is a seven-layered Pousse Café:

\n\n

\"enter

\n\n
\n

INGREDIENTS:

\n \n
    \n
  • 1/4 shot grenadine
  • \n
  • 1/4 shot dark crème de cacao
  • \n
  • 1/4 shot maraschino liqueur
  • \n
  • 1/4 shot orange curaçao
  • \n
  • 1/4 shot green crème de menthe
  • \n
  • 1/4 shot parfait amour
  • \n
  • 1/2 shot cognac
  • \n
\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-06-27T22:42:37.497", "LastActivityDate": "2019-06-27T22:42:37.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7788"}} +{ "Id": "7788", "PostTypeId": "2", "ParentId": "6268", "CreationDate": "2019-06-29T23:10:51.023", "Score": "0", "Body": "

Before answering this thread, I wanted to jump myself back to a pub in my town where they offer a selection of Guinness and beer cocktails, take a photo to the menu and ask a few things to the owner.

\n\n

\"photo

\n\n

The image above does of course not represent any standard, and an Irish pub in a foreigner country may not be 100% traditional, but it shows a variety of blends of beers with other drinks.

\n\n

To resume, Guinness draught is mixed with:

\n\n
    \n
  • stronger drinks (1/3 vodka or 1/3 blue curaçao or 1/3 Prosecco);
  • \n
  • beer-like drinks (1/3 cider or 1/2 Kilkenny or 1/3 other beer);
  • \n
  • soft drinks (tonic water or orange juice).
  • \n
\n\n

Also in the list: 1/2 Harp + 1/2 cider + grenadine.

\n\n

None of the above Guinness cocktails is supposed to result layered.

\n", "OwnerUserId": "8580", "LastActivityDate": "2019-06-29T23:10:51.023", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7789"}} +{ "Id": "7789", "PostTypeId": "2", "ParentId": "4675", "CreationDate": "2019-06-29T23:22:48.050", "Score": "0", "Body": "

In this answer to a more recent question on this network, I show that vodka can be used to make a cocktail with beer and, in particular, with Guinness: cocktail number 7, there called Suicide Sunday is made with 2/3 Guinness draught and 1/3 vodka.

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2019-06-29T23:28:31.060", "LastActivityDate": "2019-06-29T23:28:31.060", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7790"}} +{ "Id": "7790", "PostTypeId": "2", "ParentId": "7695", "CreationDate": "2019-06-30T03:54:36.417", "Score": "8", "Body": "

Old advertisements show that it was made starting in 1900 in Portland, Maine. It consisted of a syrup made of pineapple, orange, lemon, raspberry, and strawberry juices with sugar, red food coloring, and sodium benzoate as a preservative. Unfortunately, I can't find anywhere what the ratios are, but I'd start by doing equal parts of juice in a 1:1 ratio with sugar for the syrup since it was compared to grenadine as being an analogous substitute.

\n\n

\"Hay's

\n\n
\n

The Hay’s Fruit Juice Company was founded in the year 1900 and produced Hay’s Five Fruit, a fruit juice syrup used to make and flavor beverages and desserts. This album was created after September 1923, following the completion of additional construction to a recently purchased new factory at 55-71 York Street, in Portland, Maine. - Hay's Fruit Juice Company album

\n
\n", "OwnerUserId": "8680", "LastEditorUserId": "5064", "LastEditDate": "2019-07-04T01:06:03.087", "LastActivityDate": "2019-07-04T01:06:03.087", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7791"}} +{ "Id": "7791", "PostTypeId": "2", "ParentId": "7782", "CreationDate": "2019-06-30T22:47:02.083", "Score": "6", "Body": "

Is peaty whiskey made in other parts of the world besides Islay?

\n\n

The short answer is yes.

\n\n

Here are five examples from around the world:

\n\n
\n

5 Smoky World Whiskies Challenging Scotch

\n \n

When the topic of smoky whisky comes up in a bar it’s usually in association with Scotland, and more so, the famed isle of Islay. From Lagavulin to Bowmore, Islay enjoys a long, rich history of peated (smoky) whisky-making, made possible through the island’s vast peat bogs, where the organic matter has been accumulating for centuries. Used throughout time on the isle, not only for whisky-making but as a source of fuel, peat and the whisky born through it is now synonymous with Islay. But the whiskey world is changing and peated expressions, bursting with notes of earth, wood, and smoke, are being created in countries you’d never imagine. From the land of the rising sun all the way to the Pacific Northwest, here are the smoky whiskies challenging peated Scotch on the global whiskey stage.

\n \n

Westland Peated Single Malt

\n \n

Based in Seattle, Westland has been a leading force in the recent movement of American single malt whiskey. The distillery utilizes a carefully thought-out mash bill and uses local ingredients to create a range of stellar single malts. The team also launched the Garryana-matured Native Oak series, which sees Westland travel across the West Coast in search of Garry oak, a rare type of wood native to the Pacific Northwest. Further expanding their portfolio, Westland Peated claims to have a ‘mash of peated malt that is among the smokiest in the world.’ The smoky malt is mixed with their unpeated variety to create a balanced whiskey bursting with notes of campfire wood, smoke, subtle fruit, and vanilla, present through maturation in American oak.

\n \n

Mackmyra Svensk Rok

\n \n

Sweden is known for many things. Good coffee, cinnamon buns, sustainability. They’re also making a mark on the whisky world. Mackmyra started in 1999 and has since launched successfully in markets all over the world. They keep it local too, as all the ingredients used in production are sourced within 75 miles of the distillery. The Mackmyra Svensk Rok is made using Swedish peat from a white moss peat bog (Karin-mossen) in the region of Gästrikland. The release also features the addition of Swedish juniper, with twigs placed on top of the peat stacks before burning. Speaking to Angela D’Orazio, Mackmyra’s master blender, she emphasizes that juniper makes up only 1% of the smoking material. As juniper’s profile is so strong, this percentage is enough. The nose brings fruit, vanilla, juniper, and subtle smoke. Aromas of raisins and plums continue on to the palate, where the smoke intensifies. Earth, wood, and soft juniper in the air deliver the whisky of Sweden.

\n \n

Paul John Peated Select Cask

\n \n

Based in Goa, India, the Paul John distillery is one of the pioneering forces behind the Indian single malt whisky boom. Alongside Amrut, Paul John creates one of India’s only single malt whiskies, exporting their expressions across Europe, Asia, and the US. Despite the company's huge size, modesty is quickly seen in their ethos. As the master distiller, Michael D’Souza, puts it during our chat, ‘we do not do anything special to create quality single malt whisky, we simply see that each and every whisky-making step is meticulously followed.’ Bottled at 55.5%, the Paul John Peated Select Cask is made using Scottish peat, as India doesn’t have peat bogs. The smoke from the peat fire dries the malt and flavours it, before it’s broken down, fermented, and finally, distilled. Matured in bourbon casks and distilled using six-row barley, the nose is sweet and surprisingly spicy, with ginger, pepper, and cinnamon aromas. The palate delivers abundant smoke, meatiness, and leather, while the spice turns sweet, bringing about a stellar balance. Colourful, vibrant, and balanced, this Paul John single malt is a must for lovers of peat.

\n \n

Kavalan Peaty Cask

\n \n

There’s not much to say about Kavalan that hasn’t already been said, even Paul Giamatti sings the distillery's praises on Showtime's 'Billions' series. The distillery is truly a wonder. In just 11 years the team have managed to create whisky which stands tall against the oldest, most established distilleries in the world. Based just outside Taipei, in Taiwan, the distillery utilizes the country’s hot, humid climate, which greatly accelerates maturation, making Kavalan whiskies burst with deep flavours far beyond their years. While Kavalan doesn’t (yet) make peated spirit in the traditional sense (drying the malt over a peat fire), this expression was matured in a cask previously holding peated whisky. This interesting approach delivers a subtle smokiness, with some pineapple and sandalwood on the nose. The smoke intensifies on the palate as does the presence of summer fruit and caramel, finally delivering a long, rich finish of balanced sweetness and smoke. A truly spectacular smoky expression, partially reminiscent of a traditional peated malt but with the exotic, oriental addition of sweet tropical fruit and incense.

\n \n

Yoichi 20 Year-Old

\n \n

Founded by the father of Japanese whisky, Masataka Taketsuru, Hokkaido’s Yoichi distillery has come to be known as the maker of intense, smoky Japanese whisky. Taketsuru dreamt of creating whisky similar to the Scottish, but in his own homeland of Japan. For this reason, he left his job managing Suntory’s Yamazaki distillery after 10 years and started Yoichi (and Nikka) back in 1934. Sadly, the Yoichi aged range was discontinued a few years ago, amidst stock shortages at Nikka. But some bottles of the 10, 15, and 20 Year-Old remain in the 'wild' for those willing to search.

\n \n

The Yoichi 20 Year-Old is the very definition of peated Japanese whisky. Powerful and bold, yet deep and rich, it all comes together to create this timeless expression. Aromas of deep smoke, umami, and leather blend in with the presence of vanilla and burnt caramel. The palate is unexpectedly lively, with winter spice and dried fruit joining the thick earth, oak, and smoke. Meaty notes with some liquorice bring a well-balanced finish to this truly exceptional whisky from Japan.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2019-06-30T22:47:02.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7794"}} +{ "Id": "7794", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2019-07-04T01:36:10.327", "Score": "6", "Body": "

Safety

\n\n

There is absolutely no need to worry about liquor, including tequila, ever freezing or exploding like a beer or wine would. To freeze liquor, temperatures of -100 to -170 degrees F are required. Your basic house hold freezer is set at about 0 degrees F, and an industrial deep freeze only gets to about -50 F;
\nIt also does not matter what type of Tequila it is, as all tequila will be 40% alcohol by volume.

\n\n

As far as personal safety, Tequila straight out of the freezer is not cold enough to worry about being harmful to drink as some have suggested; IMHO it is much better than other liquors that are traditionally kept frozen such as Sake.

\n\n

Taste

\n\n

Like Sake, Tequila does have a different flavor if kept at room temp vs in the freezer.
\nWhen the tequila is chilled, you may find that your mouth isn't bombarded with the chemical compound, ethanol (alcohol), that can eviscerate your tongue and completely overpower one's olfactory receptors. Without these hindrances, one may taste a sweet nectar flavor not present in a room temperature drink.

\n", "OwnerUserId": "8687", "LastActivityDate": "2019-07-04T01:36:10.327", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7795"}} +{ "Id": "7795", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2019-07-04T11:10:59.197", "Score": "4", "Body": "

At our local pub the Eclipse (Guinness & Blue Moon) is also referred to as\na Dark Side of the Moon

\n\n
    \n
  • Black Raspberry - Guinness w/ Lindemans Raspberry Frambois
  • \n
  • Black Death - Guinness w/ Black Widow Cider
  • \n
\n", "OwnerUserId": "8688", "LastActivityDate": "2019-07-04T11:10:59.197", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7796"}} +{ "Id": "7796", "PostTypeId": "2", "ParentId": "7690", "CreationDate": "2019-07-04T16:44:42.570", "Score": "1", "Body": "

As Ken pointed out (although didn't make a point of): Aside from being made using slightly different ingredients, one is a liqueur and one a creme liqueur, which contain a lot more sugar and are therefore more syrupy in consistency.

\n\n

Therefore, although they taste similar, it may not be a good idea to substitute one for the other. I personally enjoy an amaretto over ice, but the idea of doing this with Creme de Noyaux makes me feel a little queasy (in the same way I love a maple syrup but am not going to add vodka and drink that over ice).

\n\n

There are probably ways you can change the original recipes slightly to adjust for this difference and are then likely to get a similar flavour :)

\n", "OwnerUserId": "8672", "LastActivityDate": "2019-07-04T16:44:42.570", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7797"}} +{ "Id": "7797", "PostTypeId": "2", "ParentId": "324", "CreationDate": "2019-07-05T08:26:19.017", "Score": "0", "Body": "

People usually forget to take into account the calories in beer and then criticism about increasing weight. However, with Alcohol By Volume, you will have the understanding of beer alcohol content and carbohydrates in beer so that you can know just what you drinking so you could limit it in a manner which doesn't have any harmful effect on your health and fitness.

\n", "OwnerUserId": "8689", "LastActivityDate": "2019-07-05T08:26:19.017", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7798"}} +{ "Id": "7798", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2019-07-05T21:39:35.707", "Score": "3", "Body": "

Again a long time after this question was started, I can now add some more, surprisingly not yet mentioned:

\n\n

To keep this answer updated, I want to cite First Chop brewery from Manchester, UK:

\n
\n

All First Chop beer is vegan, and the majority of the range is gluten free.

\n
\n

\"First

\n

\"Tennent's

\n

\"Peroni

\n

\"The

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2022-02-16T10:28:45.083", "LastActivityDate": "2022-02-16T10:28:45.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7799"}} +{ "Id": "7799", "PostTypeId": "2", "ParentId": "3414", "CreationDate": "2019-07-07T00:14:44.337", "Score": "-1", "Body": "

A good thick head of foam prevents the alcohol from volatilizing out of the beer

\n", "OwnerUserId": "8693", "LastActivityDate": "2019-07-07T00:14:44.337", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7800"}} +{ "Id": "7800", "PostTypeId": "1", "CreationDate": "2019-07-07T11:50:22.680", "Score": "2", "ViewCount": "526", "Body": "

I'm not an absinthe expert, and also, I'm not really unto rituals of any kind, so I'm curious. Can anybody tell me what the absinthe ritual does? You know, this.

\n\n
\n

Pour the absinthe into a glass. Place an absinthe spoon over it, put a sugar cube on top, then pour ice cold water over the sugar cube into the absinthe, very, very slowly; drop by drop in fact. Wait until the louche has developed, then stir.

\n
\n\n

What does this do that simply putting sugar and cold water in and stirring immediately doesn't do? I can't tell any difference between the results, other than that one method makes me wait longer.

\n\n

Sorry if I'm offending people or if I'm coming across as insensitive, but I'm genuinely curious.

\n", "OwnerUserId": "228", "LastEditorUserId": "228", "LastEditDate": "2019-07-07T16:42:14.183", "LastActivityDate": "2019-07-09T03:42:25.177", "Title": "What does the absinthe ritual do?", "Tags": "serving absinthe", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7801"}} +{ "Id": "7801", "PostTypeId": "5", "CreationDate": "2019-07-07T12:46:53.090", "Score": "0", "Body": "

For questions about absinthe, the high-alcoholic spirit rumoured to have been the inspiration for many an artist in recent centuries.

\n\n

The drink was banned for most of the twentieth century, because of its harmful effects, but since the effects turned out to be caused by the alcohol, it is now allowed again.

\n", "OwnerUserId": "228", "LastEditorUserId": "228", "LastEditDate": "2019-07-08T12:17:54.163", "LastActivityDate": "2019-07-08T12:17:54.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7802"}} +{ "Id": "7802", "PostTypeId": "4", "CreationDate": "2019-07-07T12:46:53.090", "Score": "0", "Body": "For questions about absinthe, the high-alcoholic spirit rumoured to have been the inspiration for many an artist in recent centuries", "OwnerUserId": "228", "LastEditorUserId": "228", "LastEditDate": "2019-07-08T12:17:49.410", "LastActivityDate": "2019-07-08T12:17:49.410", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7803"}} +{ "Id": "7803", "PostTypeId": "2", "ParentId": "7752", "CreationDate": "2019-07-07T16:58:04.520", "Score": "1", "Body": "

Depends on which WSET Level 2 you are taking :)

\n\n

If you're doing the spirits one, then there are a few things to be certain on:

\n\n
    \n
  • Names of things: regions, categories, processes, parts of equipment.
  • \n
  • The choices you can make at each point of production: they like 'which of the following are post-production choices' type of questions.
  • \n
  • Numbers: ABVs, numbers of times things can be done, minimums and maximums.
  • \n
\n\n

In general, and this goes for the wine one as well from what I've heard (I've not done it), read the text book, and you'll be fine.

\n", "OwnerUserId": "8612", "LastActivityDate": "2019-07-07T16:58:04.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7804"}} +{ "Id": "7804", "PostTypeId": "2", "ParentId": "7782", "CreationDate": "2019-07-07T17:09:54.233", "Score": "4", "Body": "

As the previous answer says: 'yes'.

\n\n

You don't need to go very far from Islay to find peaty whisky: they're making it on Jura (which is about 250m away across the Sound of Jura from Port Askaig), and all over Scotland.

\n\n

However, lots of folks are importing their peat and/or peated barley from Scotland, as there's not much of a tradition of peating outside of the UK, so it's not always possible to get the raw materials. Also, local peats might not have the same desirable flavours as Scottish ones.

\n", "OwnerUserId": "8612", "LastEditorUserId": "8612", "LastEditDate": "2019-07-07T17:18:29.270", "LastActivityDate": "2019-07-07T17:18:29.270", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7805"}} +{ "Id": "7805", "PostTypeId": "2", "ParentId": "7652", "CreationDate": "2019-07-07T17:41:19.170", "Score": "3", "Body": "

It's not that Scottish distilleries 'put out discount product at stores like Lidl and Aldi', but stores like Lidl and Aldi buy whisky from the producers to sell as own-brand products. It's a standard way of selling whisky, and has been around longer than the current distillery brand model.

\n\n

Most non-distillery/major blender whiskies you find in a supermarket will probably be an own-brand. The ones I know of in the US are Trader Joe's own-branded stuff and Kirkland at Costco – I've not heard of any Canadian specific brands, especially thanks to the monopoly rules getting in the way.

\n\n

It's difficult to find out who bottles the whiskies, but it's usually a larger whisky maker in Scotland who has casks from a wide range of distilleries, and can fulfil the large orders that they'd ask for. Common culprits are Whyte & Mackay and Grant's (through QSI, their bulk bottling wing), as well as smaller folks like Angus Dundee and Burn Stewart.

\n", "OwnerUserId": "8612", "LastActivityDate": "2019-07-07T17:41:19.170", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7806"}} +{ "Id": "7806", "PostTypeId": "2", "ParentId": "7800", "CreationDate": "2019-07-07T20:50:07.513", "Score": "2", "Body": "

What does the absinthe ritual do?

\n\n

It is a tradition and it makes the absinthe go cloudy!

\n\n

It is simply the traditional way of drinking absinthe.

\n\n
\n

Absinthe is a distilled highly alcoholic drink. It is 45–74% alcohol by volume / 90–148 U.S. proof) beverage. It is an anise-flavoured spirit got from herbs. The herbs including the flowers and leaves of Artemisia absinthium (\"grand wormwood\"), together with green anise, sweet fennel.

\n \n

The preparation

\n \n

Traditionally, absinthe is put into a glass. A sugar cube is then placed in the bowl of a special spoon. Ice-cold water is poured or dripped over the sugar until the drink is diluted. During this process, the parts that are not soluble in water make the liquid cloudy. The resulting milky opalescence is called the louche.

\n
\n\n

\"Preparing

\n\n

Preparing absinthe the traditional way

\n\n

Apart from just simply the traditional way of preparing absinthe, it also has the merit of sweetening up a little this mildly bitter drink, as well as making it less strong for those who enjoy it thus.

\n\n

Serving Absinthe with Water and Sugar

\n\n
\n

Mix a simple blend. Add 3 parts ice-cold water to 1 part absinthe. For a single serving, this is roughly 3 ounces of absinthe (or 3 shots) to 1 ounce of absinthe (or 1 shot). For each single serving, stir in 1 teaspoon of sugar.

\n \n

Alternately, absinthe can be sipped neat if you prefer the undiluted taste. But if so, drink moderately. Keep in mind that absinthe has nearly twice the alcohol content of most other liquors, which is why it is typically watered down.

\n \n

If you are a fan of sugar, mix a teaspoon with the ice water before pouring. However, if you like your absinthe to be less sweet, skip it, since the louche’s milky cloud is formed not by the addition of sugar, but by chemical reactions between water and absinthe’s ingredients. - How to Make Absinthe Cocktail

\n
\n\n

My sister-in-law is from the Czech Republic, where the drinking of absinthe is quite popular. We always have it the traditional way, but many do not. Neat is alright too.

\n\n

\"Collection

\n\n
\n

Collection of absinthe spoons. These are special spoons used to hold the sugar cube. Ice-cold water is poured over the sugar to dilute the absinthe. Note the slot on the handle that allows the spoon to rest safely on the brim of the glass. - Absinthe ((Wikipedia)

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-07-09T03:42:25.177", "LastActivityDate": "2019-07-09T03:42:25.177", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7809"}} +{ "Id": "7809", "PostTypeId": "1", "CreationDate": "2019-07-11T12:06:52.753", "Score": "2", "ViewCount": "178", "Body": "

When we read the Life of Nostradamus, we come across a rather strange little prophecy. Put in a short manner, it states that whoever drank from the skull of Nostradamus would inherit his incredible powers.

\n\n
\n

The introductory sequence had a subtitle 'France 1791' and showed a number of soldiers digging up a grave.

\n \n

The narrator spoke;

\n \n
\n

\"There was a legend that whoever drank from the skull of Nostradamus would inherit his incredible powers. But for 200 years his grave had remained undisturbed because the legend also said that whoever did so, would immediately die. One night, at the height of the French Revolution, three drunken soldiers set out to test the legend.

\n \n

It was not the skeleton that suddenly sobered the soldiers, but the plaque around its neck, with the date: May 1791, which could only have been placed there at the time of burial in 1566, Nostradamus had predicted, 200 years before, the exact date when his body would be dug up.\"

\n
\n \n

Anyway one of the soldiers poured some wine into the skull and took a swig. As he did so, a shot rang out, and he dropped, dead as well as drunk. - NOSTRADAMUS: HIS IMAGINED LIFE.

\n
\n\n

Thus my question: Does anyone know of any prophecies (legends) of future events that involve the consumption of drinking alcohol in one form or another?

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-07-11T12:27:34.690", "LastActivityDate": "2019-07-11T12:27:34.690", "Title": "Prophecies involving alcohol?", "Tags": "alcohol", "AnswerCount": "0", "CommentCount": "4", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7813"}} +{ "Id": "7813", "PostTypeId": "1", "CreationDate": "2019-07-29T14:18:37.253", "Score": "2", "ViewCount": "458", "Body": "

I've recently become fascinated by the use of butterfly pea blossoms to add colour to alcoholic drinks. (Yes, I've been watching How To Drink on YouTube). It acts as a natural pH indicator--add lemon juice to blossom-infused gin, and it'll go from purplish-blue to pink.

\n\n

The thing is, for Reasons, I want to do the reverse! I'd like to make a slightly acidic beverage, then raise the pH, so it turns purple in the glass.

\n\n

I'm familiar with using e.g. bicarb to raise pH in savoury cooking--for caramelizing onions, that sort of thing. But I'm concerned about the flavour effects on an alcoholic drink. Are there any edible ways to raise pH that are flavourless, or would be easily masked by a cocktail?

\n\n

If there aren't, would an Alka-Seltzer tablet provide the right pH reaction? I'm not a chemistry person at all so I'm not sure if the acid-base reaction would provide colour change as well as the bubbles.

\n\n

TLDR what I want to do is dye a spirit with butterfly pea blossom, add acid to turn it pink, then at the moment of service add (ideally flavourless) ____________ to turn it purple/blue again.

\n\n

Thanks in advance, all!

\n", "OwnerUserId": "8737", "LastEditorUserId": "8737", "LastEditDate": "2019-07-31T03:55:31.060", "LastActivityDate": "2019-07-31T03:55:31.060", "Title": "How to increase pH in a cocktail?", "Tags": "cocktails mixers", "AnswerCount": "0", "CommentCount": "5", "ClosedDate": "2020-03-08T18:49:27.200", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7815"}} +{ "Id": "7815", "PostTypeId": "1", "AcceptedAnswerId": "7818", "CreationDate": "2019-08-06T05:30:46.967", "Score": "1", "ViewCount": "353", "Body": "

I have heard a lot about this legendary beverage and I know it was forbidden in the market for a while because of some rumors, anyway, I want to give it a try but I have never seen it in any store.\nIt is still available on the market?

\n", "OwnerUserId": "8751", "LastEditorUserId": "37", "LastEditDate": "2019-08-07T13:59:25.240", "LastActivityDate": "2021-05-07T19:46:45.790", "Title": "Where to buy Absinthe", "Tags": "spirits absinthe canada", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7816"}} +{ "Id": "7816", "PostTypeId": "2", "ParentId": "4590", "CreationDate": "2019-08-06T05:53:54.293", "Score": "0", "Body": "

To prevent air spoilage, create and connect an all-wood gooseneck intake pipe with a volume of 5 or 6 pints. The air sitting in the 2.5-3 liter wood pipe would be fairly free of bacteria.

\n", "OwnerUserId": "8752", "LastActivityDate": "2019-08-06T05:53:54.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7817"}} +{ "Id": "7817", "PostTypeId": "2", "ParentId": "7815", "CreationDate": "2019-08-07T09:59:05.610", "Score": "1", "Body": "

Just wait until you are in Canada...

\n\n

E.g.

\n\n\n", "OwnerUserId": "8185", "LastActivityDate": "2019-08-07T09:59:05.610", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7818"}} +{ "Id": "7818", "PostTypeId": "2", "ParentId": "7815", "CreationDate": "2019-08-07T10:06:49.057", "Score": "3", "Body": "

In Canada you are able to purchase absinthe in most liquor stores including government run liquor stores.

\n\n

Here in British Columbia, I have never seen a liquor outlet without absinthe for sale. They are usually imported from various countries such as the Czech Republic and France.

\n\n

Canada also produces some of its’ own absinthe as is seen here.

\n\n
\n

Liquor laws in Canada differ in the provinces, with no blanket national regulations. As of this writing, there is no law that bans or outlaws absinthe in Canada, but like in the United States, there are laws governing the amount of the psychoactive chemical thujone, which is present in absinthe.

\n \n

British Columbia has no regulation for thujone content, essentially legalizing absinthe in any form there. The provinces of Ontario, Alberta, and Nova Scotia allow the sale of absinthe with a thujone content of about 10 milligrams per kilogram. The remaining Canadian provinces do not allow the sale of absinthe containing thujone.

\n \n

As the laws governing thujone content in Canada vary by province, the laws are subject to change. - Absinthe Laws

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-08-08T23:31:29.823", "LastActivityDate": "2019-08-08T23:31:29.823", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7819"}} +{ "Id": "7819", "PostTypeId": "2", "ParentId": "7116", "CreationDate": "2019-08-08T08:02:11.517", "Score": "0", "Body": "

Rum extracts have between 10 and 15% alcohol. Given the amount of extract you use, the final content of alcohol in your recipe will be almost nil

\n", "OwnerUserId": "8758", "LastEditorUserId": "5064", "LastEditDate": "2019-12-09T02:01:12.563", "LastActivityDate": "2019-12-09T02:01:12.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7820"}} +{ "Id": "7820", "PostTypeId": "1", "CreationDate": "2019-08-08T08:54:02.340", "Score": "7", "ViewCount": "155", "Body": "

I've recently discovered that the beer Oude Geuze Boon can be stored up to 20 years and only improve in flavor. Seeing as this beer is rather special and might not exist any more in x years time due to the changing climate it might be a fun endeavor to buy some crates and see what they'll be worth in 5-15 years time.

\n\n

Now, wine and whiskey are established beverages to invest in but I've yet to really see any old beers on the market besides some very strong, brown beers.

\n\n

Are people actually willing to buy old beers? Would they prefer 33cl or 75cl? Is it feasible to store beer up to 10+ years?

\n\n

Thanks in advance!

\n", "OwnerUserId": "8757", "LastActivityDate": "2019-09-16T16:44:28.033", "Title": "Is it possible to invest (long-term) in beer?", "Tags": "storage belgian-beers lambic", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7821"}} +{ "Id": "7821", "PostTypeId": "2", "ParentId": "7815", "CreationDate": "2019-08-08T14:58:17.557", "Score": "2", "Body": "

I buy from here: https://www.absinthes.com/

\n\n

Plenty of choice and they ship worldwide.

\n", "OwnerUserId": "8672", "LastActivityDate": "2019-08-08T14:58:17.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7822"}} +{ "Id": "7822", "PostTypeId": "1", "CreationDate": "2019-08-12T14:21:22.373", "Score": "4", "ViewCount": "88", "Body": "

I have seen non-alcoholic beers with anywhere from 0 to around 10 grams of sugar listed in the nutritional info tag. Is this added sugar? Or if it is just sugar from the process of making the beer, why do some have it and others don't? I have mostly seen German non-alcoholic beers with no sugar.

\n", "OwnerDisplayName": "user8766", "LastEditorDisplayName": "user8766", "LastEditDate": "2019-08-13T19:02:46.763", "LastActivityDate": "2019-09-10T08:44:57.170", "Title": "Why do some non-alcoholic beers have sugar?", "Tags": "specialty-beers german-beers non-alcoholic", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7823"}} +{ "Id": "7823", "PostTypeId": "1", "AcceptedAnswerId": "7825", "CreationDate": "2019-08-12T16:37:29.933", "Score": "8", "ViewCount": "296", "Body": "

Is non-alcoholic beer nothing else than unfermented wort? That is to grains which the sugars have been cooked out of, bittering agent added and then just the step of fermentation omitted or is there more to it than that?

\n", "OwnerUserId": "4638", "LastActivityDate": "2021-01-28T10:30:47.443", "Title": "Is non-alcholic beer nothing else than unfermented wort?", "Tags": "specialty-beers non-alcoholic", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7824"}} +{ "Id": "7824", "PostTypeId": "2", "ParentId": "6356", "CreationDate": "2019-08-13T20:09:43.990", "Score": "1", "Body": "

I will add here an Italian recipe that I recently discovered and enjoyed a lot!

\n\n

The drink called Moretta Fanese is referenced on both Italian and English Wikipedia.

\n\n

In a transparent coffee or punch glass, one spoon of sambuca (anisette), one spoon of rum and one spoon of brandy or cognac are mixed with sugar and a lemon zest and heated with steam. Then, one espresso is added in a way to leave three layers visible in the hot cocktail: bottom to top liquors mix, coffee and coffee foam.

\n\n

A super flavour, really recommended!

\n\n

\"Moretta_(coffee)\"

\n", "OwnerUserId": "8580", "LastActivityDate": "2019-08-13T20:09:43.990", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7825"}} +{ "Id": "7825", "PostTypeId": "2", "ParentId": "7823", "CreationDate": "2019-08-15T20:09:34.370", "Score": "6", "Body": "

No, it is fermented to break down the sugar; otherwise it would be very sweet and sugar cannot be cooked off. After fermentaton is complete, the alcohol is removed. Note that most NA beers do actually contain a small amount of alcohol: < 1%.

\n", "OwnerUserId": "381", "LastActivityDate": "2019-08-15T20:09:34.370", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7827"}} +{ "Id": "7827", "PostTypeId": "1", "CreationDate": "2019-08-21T17:16:39.420", "Score": "1", "ViewCount": "27", "Body": "

You mention that there is a wine similar yet you do not give it a name. Please give the name of a wine that resembles the wine Noah made

\n", "OwnerUserId": "8779", "LastEditorUserId": "37", "LastEditDate": "2019-08-21T17:28:37.140", "LastActivityDate": "2019-08-21T17:28:37.140", "Title": "Noah’s wine what is it?Healthy", "Tags": "wine history", "AnswerCount": "0", "CommentCount": "2", "ClosedDate": "2019-08-22T00:19:33.410", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7832"}} +{ "Id": "7832", "PostTypeId": "2", "ParentId": "4894", "CreationDate": "2019-08-29T21:14:51.640", "Score": "1", "Body": "

Modelo is a nice beer to use to make a Chavela/Michelada. Doesn't leave a nasty after taste. At times I love to enjoy a nice cold modelo with some tajin.

\n", "OwnerUserId": "8794", "LastActivityDate": "2019-08-29T21:14:51.640", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7833"}} +{ "Id": "7833", "PostTypeId": "1", "AcceptedAnswerId": "7835", "CreationDate": "2019-08-31T10:55:31.480", "Score": "5", "ViewCount": "215", "Body": "

What food stuffs pair well with the Maltese liqueur Harruba?

\n\n

A friend of mine has several bottles of this sweet liqueur and we are hoping to make it into a meal of something more than just the ordinary.

\n\n

\"enter

\n\n
\n

The carob tree, in Maltese called Harruba (Ceratonia siliqua) has been a prominent component of the Maltese vegetation for several centuries. The fruit beans of this tree, also known as ‘St. John’s bread’ formed a substantial part of the diet of the local population during the hard times of World War II.\n Carob beans, harvested by Maltese farmers, are crushed, roasted and boiled to produce a syrupy liquid with aromas and colour reminiscent of cocoa to which orange extracts are then added. Zeppi’s Harruba liqueur can be served chilled, on the rocks or can also be taken neat to close off an exquisite meal. Harmless sediment may form at the bottom of the bottle due to the nature of the product. -\n Mediterranean Maltese Liqueur

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2019-09-02T14:38:44.053", "Title": "What dishes pair well the Maltese Harruba liqueur?", "Tags": "recommendations liqueur", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7834"}} +{ "Id": "7834", "PostTypeId": "1", "CreationDate": "2019-08-31T21:09:00.230", "Score": "6", "ViewCount": "236", "Body": "

\"alcohol

\n\n

My brother-in-law received this bottle while in a soccer recruit tryout in Yugoslavia(?) around 6ths year 2000. We haven't been able to identify it by anything on the label. It was opened, I think it is brandy but it is beyond its best years. If you look closely it has a wooden cross in the bottle. I have other pictures. I think it could have been made by a monastery. Any ideas?

\n", "OwnerUserId": "8796", "LastEditorUserId": "5064", "LastEditDate": "2019-09-01T14:04:02.667", "LastActivityDate": "2020-02-22T20:25:43.970", "Title": "Is it possible to identify this bottle and its contents?", "Tags": "spirits liqueur identification", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7835"}} +{ "Id": "7835", "PostTypeId": "2", "ParentId": "7833", "CreationDate": "2019-09-02T14:38:44.053", "Score": "3", "Body": "

I'd say it is probably too sweet to be enjoyed as part of a meal except as an aperitif as @Eric suggested.

\n\n

Since Carob tastes like chocolate and this is a sweet strong liqueur. Maybe consider using it in a Tiramisu recipe as a substitute for Marsala? I have used Amaretto in this way before and it was delicious!

\n\n

Carob is often used as a substitute for chocolate so any liqueur based recipes where you want a hint of chocolate flavour would benefit from this. Maybe in a beef based dish (as we know a hint of dark chocolate in a beef casserole or chilli is a great trick!)

\n\n

I found this article online which could give you some inspiration.

\n", "OwnerUserId": "8672", "LastActivityDate": "2019-09-02T14:38:44.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7836"}} +{ "Id": "7836", "PostTypeId": "1", "AcceptedAnswerId": "7837", "CreationDate": "2019-09-03T00:09:21.270", "Score": "4", "ViewCount": "1871", "Body": "

I can’t find a solid answer on this. I’ve tried both special selection 2014 and the regular cab from 2017. Really enjoyed both bottles but I’ve read some things that suggest that they use Mega Purple in their wines. Is this true? Is there a confirmed source on this? How much does it really matter?

\n", "OwnerUserId": "8800", "LastActivityDate": "2022-01-06T14:25:17.443", "Title": "Does Caymus use “Mega Purple”?", "Tags": "wine", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7837"}} +{ "Id": "7837", "PostTypeId": "2", "ParentId": "7836", "CreationDate": "2019-09-03T01:11:29.600", "Score": "5", "Body": "

It's highly unlikely that you'll get a confirmed source on this. Wineries, particularly higher end wineries are not forthcoming about their use of Mega Purple, when they do use it.

\n\n

How much does it matter? To a large extent that depends on what you're looking for. If you're looking for a wine that's a pure expression of the Napa terroir and the barrels it's aged in, obviously the addition of Mega Purple (or non-Napa grapes, or oak chips, or any other additives that result in the end product the vintner is looking for) will detract from that. In the case of Mega Purple specifically, it adds a darker coloration but at the expense (to some degree, how much depends on how it's incorporated) of aroma and potentially added sweetness.

\n\n

If, on the other hand, you're looking for a bottle of wine that you particularly enjoy, then it doesn't matter at all. If the color and the aroma and the flavor please your tongue, than to me, that's good wine. I personally am a lot more worried about how my wine tastes to me than I am about what went into making it.

\n\n

So, if you really enjoy them, I'd suggest going ahead and continuing to enjoy them and don't worry about. If it still bothers you, find something else you enjoy more, and buy that instead. That's one of the best things about wine...There are always new amazing options just waiting to be discovered.

\n", "OwnerUserId": "37", "LastActivityDate": "2019-09-03T01:11:29.600", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7838"}} +{ "Id": "7838", "PostTypeId": "2", "ParentId": "7823", "CreationDate": "2019-09-03T12:43:01.600", "Score": "4", "Body": "

It is fermented like in the previous question but nowadays there is a genetically modified fungus that can break down the sugars without creating alcohol. When normal yeast is used (it gives a better taste) Commercially the alcohol is removed under a vacuum to lower the boiling point of the alcohol even further. (higher temperatures affect the taste of the beer) The removed alcohol of medicinal grade and is sold on to pharmaceutic companies.

\n", "OwnerUserId": "8454", "LastActivityDate": "2019-09-03T12:43:01.600", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7839"}} +{ "Id": "7839", "PostTypeId": "1", "CreationDate": "2019-09-05T12:46:52.840", "Score": "2", "ViewCount": "77", "Body": "

I am searching for some shops with large (100+) selection of beers from Brittany.

\n\n

I have two somewhat different targets:

\n\n

(1) a shop located in Rennes, more than V&B, or around RN 164, see below:

\n\n

\"enter

\n\n

(2) an online shop that ships out of France

\n\n

Any suggestion?

\n", "OwnerUserId": "8185", "LastEditorUserId": "6874", "LastEditDate": "2019-10-09T09:52:00.413", "LastActivityDate": "2019-10-09T09:52:00.413", "Title": "Beer shop in Brittany (cave à bières bretonnes située en Bretagne)", "Tags": "recommendations craft-beers buying brittany france", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7840"}} +{ "Id": "7840", "PostTypeId": "1", "CreationDate": "2019-09-05T12:55:36.733", "Score": "4", "ViewCount": "2022", "Body": "

Good day;

\n\n

So, I made some very simple mead, about a month ago.

\n\n

There's about 2 liters; in a simple bottle and a home-made airlock.

\n\n

It's about 35% honey, the rest is bottled water, about half a lemon sliced, and about 1 big teaspoon of Bread yeast.

\n\n

It did it's thing for about 1 month now; it looks fairly clear, and smells good.

\n\n

However, it's my first ever attempt at making any kind of alcohol, and without any modern tools.

\n\n

Are there any tests I could do, to know if the mead is safe and ready to drink? Is there a way to \"guess\" the alcohol content without modern tools?

\n", "OwnerUserId": "8805", "LastEditorUserId": "9887", "LastEditDate": "2020-01-24T16:16:57.170", "LastActivityDate": "2020-01-24T16:16:57.170", "Title": "How to tell if my home-brewed mead is safe/ready to drink?", "Tags": "taste health alcohol-level home-brew mead", "AnswerCount": "1", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7841"}} +{ "Id": "7841", "PostTypeId": "2", "ParentId": "7839", "CreationDate": "2019-09-06T01:27:03.103", "Score": "3", "Body": "

Please allow me to recommend the Cave à bières à Rennes : Chez Alain.

\n\n

The French are more into drinking wine, but this shop does beer a lot of justice.

\n\n

They have around 350 varieties of beer, both imported and domestic.

\n\n

It also has a small bar situated on site. What more do you need?

\n\n
\n

Cave à bières à Rennes : Chez Alain

\n \n

Une large gamme de bières artisanales du monde entier en Ille-et-Vilaine

\n \n

Découvrez une diversité de bières 100% artisanales à base de malt minutieusement sélectionné. Des bières bretonnes, belges, européenne, ou du reste du monde, sélectionnez votre bière préférée.

\n \n

Poussez les portes de notre cave à bières à Rennes et découvrez nos nouveautés et nos derniers arrivages. Vous trouverez 350 références de bières françaises et étrangères (Belgique, Etats-Unis, Canada, Écosse, Norvège, Suède, Italie, Danemark, Hollande, Angleterre, Suisse, Allemagne, République Tchèque…).

\n
\n\n

Having been there some years ago, it is awesome.

\n\n

Caveat:

\n\n

On-line shops may only do sales on-line and may or may not have an inventory shop to browse in. Some are simply middle men so to speak.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-09-06T01:35:11.183", "LastActivityDate": "2019-09-06T01:35:11.183", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7843"}} +{ "Id": "7843", "PostTypeId": "2", "ParentId": "7822", "CreationDate": "2019-09-10T08:44:57.170", "Score": "3", "Body": "

It could very well be natural or added sugar, it depends entirely on the style of beer and how it is produced.

\n\n

The absence of sugar could be due to low sugar levels inherent in the substrates chosen for the beer. Or, it could be due to being fermented out. Keep in mind you can ferment things, have their sugar content reduced from the fermentation process, and end up with a beverage with only negligible amounts of alcohol. Think kombucha.

\n\n

On the other hand sugar can be leftover from the fermentation process because the life form doing the fermentation (bacteria, yeast, etc) stalled before it could consume all the sugar. Saccharomyces cerevisiae, the yeast strain typically employed by bakers and brewers, does not like living in high-ethanol environments. That's why it's typically been a challenge for brewers and wine makers to get their alcohol content above the 5-10% range without undesirable components (congeners) being produced as a major side-effect. Alcohol is toxic to yeast!

\n\n

Whichever way the sugar got there you can be pretty certain it's there for flavour! That could be direct flavouring: sweet things taste nice. It can also be there for balance: sugar \"cancels\" out acidity (and vice versa).

\n", "OwnerUserId": "8810", "LastActivityDate": "2019-09-10T08:44:57.170", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7845"}} +{ "Id": "7845", "PostTypeId": "2", "ParentId": "7840", "CreationDate": "2019-09-11T20:45:08.927", "Score": "1", "Body": "

Unless you used unsafe water or honey, it is safe to drink at any time. The alcohol in the mead effectively keeps it safe for consumption. The fact that it smells good is a good sign and even with some off-flavours everything should be on the safe side.

\n\n

Pungent smells, mould and no alcohol at all, however, are signs that something is wrong.

\n\n

Generally, fermented drinks are safer than untreated (and possibly contaminated) water because of their alcohol and acid content. That doesn't necessarily mean they are healthier though.

\n\n

Depending on the yeast strains involved, the length of the fermentation and what is fermented, fermented drinks may contain substances that make you feel unpleasant (hangover).

\n\n

Most fermented drinks are ready to drink once the yeast has settled (and the drink loses its yeasty taste). They continue fermenting albeit at a much slower pace. This means \ntheir flavour changes over time, usually getting more acidic while losing some or all of their sweetness. In other words, it is ready to drink when it tastes right.

\n\n

To prevent further fermentation, you can store your mead in a fridge or a very cool cellar which slows down the yeast significantly.

\n", "OwnerUserId": "7852", "LastActivityDate": "2019-09-11T20:45:08.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7846"}} +{ "Id": "7846", "PostTypeId": "2", "ParentId": "7820", "CreationDate": "2019-09-11T22:27:23.220", "Score": "4", "Body": "

You can't. At least not like wine or whisky.

\n\n

It is different from wine because:\nThe price increase of wine is based on the vintage. If you a bottle of wine of a high-priced vintage, it increases in market value because over the years the number of available bottles decreases. The value does not increase because it tastes better. The chance of finding a 30 year old bottle of red wine that tastes good are as astronomical as the expenses that come with it. Investing in wine is, as someone put it, speculating in human snobbery.

\n\n

It is different from whisky different because:\nWhisky is basically an infusion of grain alcohol with oak accompanied by a decrease in alcohol. Unlike wine, you will never get an exponential increase by simply storing it longer because the result can be reproduced repeatedly. Whisky, however, does not benefit from bottle-ageing as the alcohol content cannot evaporate and bottles are not made of oak. In other words, unless you plan on opening a distillery, it is unlikely profitable to invest in whisky. Still, even with a highly durable beverage like whisky, there is a tipping point after which its quality starts decreasing.

\n\n

Beer is more comparable to blue cheese because:\nAn aged beer is more expensive than a freshly brewed one simply because it is more expensive to produce. Like blue cheese, it is an acquired taste. To most, it would not even taste like beer. Aged beers suffer from the same short-comings as wine but much sooner as there is still active yeast in it (unless they are as strong as wines of course or you store them at very low temperatures).

\n\n

Beers that benefit from ageing are usually beers that are not fermented well and have too many off-flavours that they tend to lose after time. That is true for many Belgian beers as they are made with a bunch of wild yeast strains that manifested themselves in the brewing vessels. The taste of hops is completely gone after a few years and the ongoing fermentation eventually converts the remaining sugars into a little more alcohol and --more dominantly-- into acid.

\n\n

In order to make a significant amount of money from storing beer, you would probably require a speculative bubble. Otherwise, the increase in value will merely reflect your expenses (ie. the cost of storing it), inflation patters and of course the actual demand.

\n\n

I should add that speculative bubbles can of course appear at any time anywhere, and the current craft beer craze does in fact somewhat bear resemblance with things like cryptocurrencies though not anywhere near that territory. Such a comparison does, however, hint at the inherent risks involved.

\n", "OwnerUserId": "7852", "LastEditorUserId": "7852", "LastEditDate": "2019-09-16T16:44:28.033", "LastActivityDate": "2019-09-16T16:44:28.033", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7848"}} +{ "Id": "7848", "PostTypeId": "1", "CreationDate": "2019-09-30T09:30:22.450", "Score": "3", "ViewCount": "164", "Body": "

I have tried to look this up but have only come up with a few community sites with improper sourcing and varying degrees of answer (from 1 month to many years).

\n\n

Does anyone have first hand knowledge or a reliable source?

\n\n

The back of the bottle is written in Breton, which google translate doesn't support, but since it is close to French I think this is the line I am looking for:

\n\n
\n

Conservation du chouchen une fois ouvert des annees.

\n
\n\n

Which to me sounds something along the lines of 'once opened keeps for years', but it's just a guess.

\n\n

I also know this is the Breton equivalent to mead, but I believe it's made with apple juice which I assume will make it go off faster.

\n\n
\n\n

Update: I opened this bottle when I posted this question, forgot about it in the cupboard and remembered it again over the weekend. It tasted absolutely fine (or at least the same as it did when I opened it). I will add an answer when/if the taste changes.

\n", "OwnerUserId": "8672", "LastEditorUserId": "8672", "LastEditDate": "2019-12-02T14:45:18.573", "LastActivityDate": "2021-09-24T12:05:50.700", "Title": "How long does Chouchen keep once opened?", "Tags": "storage mead preservation brittany france", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7849"}} +{ "Id": "7849", "PostTypeId": "2", "ParentId": "7848", "CreationDate": "2019-09-30T20:08:09.157", "Score": "1", "Body": "

I had to look up Chouchen as I'd never heard of it before (see, after many years still learning!) It looks like it's a form of mead made out of Buckwheat honey which gives it that dark color and probably stronger flavor. According to the article, it was originally made out of cider and honey but it looks like both versions are called Chouchen now. I looked around on the internet and saw that they were generally 13-14% ABV which is in the normal strength for wine and mead. Mead, cider and wine all can last many decades. But as with all of them, once the bottle is opened it will go bad within a few days from oxidation.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-09-30T20:08:09.157", "CommentCount": "9", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7850"}} +{ "Id": "7850", "PostTypeId": "1", "AcceptedAnswerId": "7852", "CreationDate": "2019-10-01T08:13:56.690", "Score": "5", "ViewCount": "101", "Body": "

If I were to age wort in wine-barrels, let's say oak for instance, for six months , before I ferment it, would that improve the taste of the beer at all?

\n\n

Can beer be aged in wine barrels like other alcohols?

\n", "OwnerUserId": "4638", "LastActivityDate": "2019-10-01T13:58:44.397", "Title": "Aging wort in wine barrels before fermenting", "Tags": "specialty-beers aging", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7852"}} +{ "Id": "7852", "PostTypeId": "2", "ParentId": "7850", "CreationDate": "2019-10-01T13:58:44.397", "Score": "5", "Body": "

While I have no experience with this, I am pretty confident that it is not practical to age wort prior to fermentation in any container that is not fully sterile (not just sanitized). I imagine it would be safe to age wort if you pressure can it.

\n\n

When we make wort, we are creating the perfect conditions for growing yeast (and lots of other microbes). Something will grow in the wort and start fermentation in your barrel.

\n\n

Bottle bombs are bad - can you imagine a barrel bomb?

\n\n

I would also question what chemistry you are trying to achieve by aging wort. Compared to the chemical profile following fermentation, wort is relatively simple - it is the yeast during fermentation that makes beer really interesting. If you are looking to add the character of the wood in the barrels (or the prior occupant of the barrel), then this is safer to do following fermentation.

\n\n

There are lots of examples of using wood/barrels, both new and used, in making some specialty beers. However, I believe that these all use the wood post-fermentation.

\n\n

Lots of beer styles benefit from some aging. If you age it in something neutral (e.g., glass, plastic, stainless steel), then you are just letting the beer chemistry, with living yeast still present, do its thing. When you age in wood, you are aging as well as imparting additional chemicals from the wood.

\n\n

Does aging in wood improve the taste of the beer? Some people seem to like it (or we would not see commercial examples), but this is a completely subjective question and really depends on what you are trying to achieve.

\n", "OwnerUserId": "8155", "LastActivityDate": "2019-10-01T13:58:44.397", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7853"}} +{ "Id": "7853", "PostTypeId": "2", "ParentId": "7839", "CreationDate": "2019-10-01T16:31:23.747", "Score": "2", "Body": "

Thanks to Ken Graham.

\n\n

After returning from Brittany, I can say that Chez Alain was a good choice, but a little too international.

\n\n

I discovered Le marchand de biere in Rennes, not too far from Chez Alain, which I preferred for a larger choice of only local beers.

\n", "OwnerUserId": "8185", "LastActivityDate": "2019-10-01T16:31:23.747", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7856"}} +{ "Id": "7856", "PostTypeId": "1", "CreationDate": "2019-10-07T10:05:42.443", "Score": "5", "ViewCount": "104", "Body": "

I did a set of Brewdog Punk IPA with the kit they are selling.\nIn the howto they put sugar in the bottle before filling.\nIs it mandatory to have a good beer ?

\n", "OwnerUserId": "5220", "LastActivityDate": "2019-10-10T15:02:16.340", "Title": "Sugar before bottle", "Tags": "ipa bottling fermentation", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7857"}} +{ "Id": "7857", "PostTypeId": "2", "ParentId": "7856", "CreationDate": "2019-10-07T16:45:30.020", "Score": "5", "Body": "

They are shooting for a bottle conditioned beer which means the beer ferments a little bit in the bottle, trapping the co2 and carbonating the beer \"naturally\". I doubt they are putting sugar directly in the bottle, but probably putting the sugar in the beer and then putting it in the bottle. This way the sugar dissolves more evenly and gives a more consistent result.

\n\n

Most breweries force carbonate their beer with CO2 in a tank, but many use natural means to do this.

\n\n

Is this mandatory? Only if you are making homebrew and need to put it in a bottle AND you don't have a keg system to force carbonate. This is how many homebrewers start out.

\n", "OwnerUserId": "6111", "LastActivityDate": "2019-10-07T16:45:30.020", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7858"}} +{ "Id": "7858", "PostTypeId": "2", "ParentId": "7856", "CreationDate": "2019-10-09T13:35:45.857", "Score": "0", "Body": "

If it was wine, the sugar is put in some wine with more yeast, and after the sugar dissolves, it is added to the bottle.

\n\n

If you want to obtain the same beer as claimed in the kit, it is mandatory... The bottle conditioning adds both CO2 and alcohol

\n", "OwnerUserId": "8185", "LastActivityDate": "2019-10-09T13:35:45.857", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7859"}} +{ "Id": "7859", "PostTypeId": "2", "ParentId": "7856", "CreationDate": "2019-10-10T15:02:16.340", "Score": "2", "Body": "

Fermantation and CO2

\n\n

Long story short, yeast consumes sugar and produces alcohol and CO2. During primary fermentation all the CO2 is released into the air (unless you ferment under pressure which I assume you don't). After fermentation your beer has alcohol but is flat. You need to introduce CO2 to your product somehow. Since CO2 is a product of fermentation, we add a little bit of sugar into bottles to spark secondary fermentation. Because bottles are capped, at some point when the pressure is high enough inside the bottle, CO2 starts dissolving into beer.

\n\n

Adding sugar

\n\n

Adding sugar can be done in couple different ways. You can measure the amount you want, cook it in a little bit of water, mix with your beer and bottle. You can also add a little bit of sugar into each bottle and then fill with beer. I prefer the second method. You can buy muntons carbonation drops and put one drop in each bottle. You can also buy some small measuring cups designed specifically for adding sugar into bottles.

\n\n

Having a good beer?

\n\n

Actually - No! I bottled several batches that had off flavors (smelled funny, weren't clear after cold crash, tasted weird, etc.) and the result was good. Beer was \"drinkable\" after a month but then got better. If you are brewing an IPA and it tastes funny don't dump it. Bottle it and see what happens. You might have to wait several months and hop aromas are gonna be gone but you can still end up with some solid beer.

\n", "OwnerUserId": "6131", "LastActivityDate": "2019-10-10T15:02:16.340", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7860"}} +{ "Id": "7860", "PostTypeId": "2", "ParentId": "7412", "CreationDate": "2019-10-17T04:51:24.663", "Score": "0", "Body": "

My brother stayed at a hotel while his house was being built and he moved to town a year or so before it was finished. He would buy Bud Light and drink what he could while it was cold and just put the unoppened bottles in the corner of his room. I came over and moved all the beer after like 8 months and I had like 20 12/18 packs of Bud Light. These were cold origionally but then sat in a room that was at 65 degrees (he ran air all the time) and it was dark in there - pretty much used it to sleep in and kept busy at my house or at friends when he wasn't there. A 3rd was expiring in the same month I was drinking it - tasted like the beer he would buy from store with an expiration date 2 months from when he bought it. Then I got to August (it was October) - tasted the same. Then June - tasted fine - had carbination - didn't notice. Then April - I was amazed when I had a December 2019 expiration beer followed by the April one, and they tasted the same. Then March, tasted fine. January I havn't gotten to yet. The only beer I noticed a difference from was from cans - he had two 24 packs with feb expiration dates. It tased funny but drinkable - had kinda a flat sweeter taste - I give those to friends when they drink all their beers (some when they stop by for a moment - just to test the beers) - I don't tell them and they drink it like it was any other beer (makes me think the Feb cans is a placibo effect for me). Just thought I would share.

\n", "OwnerUserId": "9873", "LastActivityDate": "2019-10-17T04:51:24.663", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7861"}} +{ "Id": "7861", "PostTypeId": "1", "CreationDate": "2019-10-17T16:44:53.843", "Score": "2", "ViewCount": "57", "Body": "

Found a bunch of specialty grains I'd intented for a beer but lost to time. They've been in brown paper bags for well over a year.

\n\n

Is it worth using them at all for a small batch or has time/air ruined extraction, ruined flavor, etc?

\n", "OwnerUserId": "7466", "LastActivityDate": "2019-10-17T16:44:53.843", "Title": "Found brewing grains in a bunch of paper bags - can I use them?", "Tags": "brewing quality home-brewing", "AnswerCount": "0", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7862"}} +{ "Id": "7862", "PostTypeId": "2", "ParentId": "7113", "CreationDate": "2019-10-17T17:03:35.137", "Score": "2", "Body": "

My recommendation would be to ask your local specialty store if they know which distributor makes Tromba Tequila. The gentleman who first distilled Don Julio is the distiller and part-owner of the brand I believe, and their Anejo might be similar to 1942.

\n\n

It's tough to recommend particular tequilas as we don't know where you are and tequila brands are very regional as far as U.S. availability goes.

\n", "OwnerUserId": "7466", "LastActivityDate": "2019-10-17T17:03:35.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7865"}} +{ "Id": "7865", "PostTypeId": "1", "CreationDate": "2019-11-06T16:45:15.430", "Score": "3", "ViewCount": "772", "Body": "

The question says it all: where does the phrase \"beer me\" come from? And, is it widely used other than in the United States?

\n\n

The phrase 'beer me' meaning, \"give me a beer!\"

\n", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-11-21T09:05:12.323", "LastActivityDate": "2022-02-18T16:41:43.467", "Title": "How did the phrase \"beer me\" originate?", "Tags": "history terminology", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7866"}} +{ "Id": "7866", "PostTypeId": "2", "ParentId": "7542", "CreationDate": "2019-11-08T14:19:04.967", "Score": "3", "Body": "

Unless you count Body Shots, then it would seem the answer to this question is a firm no.

\n\n

But, there are cases of body parts being used in cocktails - fortunately, of other animal species. This article references an octopus tentacle used as a garnish, as well as another that uses Sea Urchin gonads... The article also references the Sour Toe cocktail.

\n\n

I have also heard of using rooster feathers as a garnish to make a \"Cock's Tail cocktail\" but, I can't find a reference to that anywhere... Finally, this article details a pig's blood cocktail made in the UK.

\n\n

It seems that, for now, the Sour Toe is a one-of-a-kind... Honestly, I myself would prefer that things stay this way (barf ;)

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-11-08T14:19:04.967", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7867"}} +{ "Id": "7867", "PostTypeId": "2", "ParentId": "7291", "CreationDate": "2019-11-14T16:20:19.720", "Score": "1", "Body": "

Put the bottle in the freezer and set a timer. Take the bottle out when time is up, and sample the result. Start at 30 minutes (for a half-liter bottle with around 5.5% alcohol), then gradually work up from there in small steps.

\n\n

Before freezing completely (and breaking the bottle), the beer will get slushy: small ice crystals suspended in liquid. (Happened to me once by accident and the beer was still tasty.) Note down how long it took for the beer to reach that stage. Subtract a few minutes (unless you happen to have developed a taste for slushy beer)—voilà: the perfectly chilled beer.

\n\n

Main drawback is that you will have to plan ahead. If you are not ready to consume your beer when it’s ready, moving it from the freezer to the fridge when the timer expires will give you a few extra minutes without drastic temperature increases.

\n\n

Your equation will depend on various factors:

\n\n
    \n
  • the initial temperature of the beer (warmer beer takes longer to cool)
  • \n
  • the target temperature and cooling performance of the freezer, as well as the number of containers you are cooling simultaneously (fewer containers, lower target temperature and higher cooling performance decrease the time needed)
  • \n
  • the size of each containers (larger containers take longer)
  • \n
  • the type of the container (cans cool faster than bottles, thicker bottles take longer)
  • \n
  • the alcohol content of the beer (stronger beers have a lower freezing point, increasing time)
  • \n
\n", "OwnerUserId": "9928", "LastActivityDate": "2019-11-14T16:20:19.720", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7869"}} +{ "Id": "7869", "PostTypeId": "5", "CreationDate": "2019-11-21T09:07:21.713", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-11-21T09:07:21.713", "LastActivityDate": "2019-11-21T09:07:21.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7870"}} +{ "Id": "7870", "PostTypeId": "4", "CreationDate": "2019-11-21T09:07:21.713", "Score": "0", "Body": "An alcoholic beverage made from fermented grapes.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-11-25T16:41:25.767", "LastActivityDate": "2019-11-25T16:41:25.767", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7871"}} +{ "Id": "7871", "PostTypeId": "5", "CreationDate": "2019-11-21T09:08:53.287", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-11-21T09:08:53.287", "LastActivityDate": "2019-11-21T09:08:53.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7872"}} +{ "Id": "7872", "PostTypeId": "4", "CreationDate": "2019-11-21T09:08:53.287", "Score": "0", "Body": "The study of the past as it is described in written documents.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-11-25T16:41:35.610", "LastActivityDate": "2019-11-25T16:41:35.610", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7873"}} +{ "Id": "7873", "PostTypeId": "5", "CreationDate": "2019-11-21T09:13:54.290", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-11-21T09:13:54.290", "LastActivityDate": "2019-11-21T09:13:54.290", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7874"}} +{ "Id": "7874", "PostTypeId": "4", "CreationDate": "2019-11-21T09:13:54.290", "Score": "0", "Body": "Beer made with a distinctive mark or quality and/or from a specific place or region.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-11-25T16:41:38.480", "LastActivityDate": "2019-11-25T16:41:38.480", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7875"}} +{ "Id": "7875", "PostTypeId": "5", "CreationDate": "2019-11-21T09:18:06.623", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-11-21T09:18:06.623", "LastActivityDate": "2019-11-21T09:18:06.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7876"}} +{ "Id": "7876", "PostTypeId": "4", "CreationDate": "2019-11-21T09:18:06.623", "Score": "0", "Body": "Suggestions of things that are good or suitable for a particular purpose or job", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-11-25T16:41:32.570", "LastActivityDate": "2019-11-25T16:41:32.570", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7877"}} +{ "Id": "7877", "PostTypeId": "5", "CreationDate": "2019-11-21T09:21:19.827", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-11-21T09:21:19.827", "LastActivityDate": "2019-11-21T09:21:19.827", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7878"}} +{ "Id": "7878", "PostTypeId": "4", "CreationDate": "2019-11-21T09:21:19.827", "Score": "0", "Body": "Businesses that make and sell beer. See also brewing company and beerhouse", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-11-25T16:41:30.000", "LastActivityDate": "2019-11-25T16:41:30.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7879"}} +{ "Id": "7879", "PostTypeId": "1", "CreationDate": "2019-11-24T14:35:40.197", "Score": "2", "ViewCount": "45", "Body": "

I just found two bottles of Exshaw. The reason I bought them was because someone close to me used to drink this (years ago).

\n\n

I got a pretty good bargain on them so just went with it. When I opened them to my surprise the cork is actually a plastic one rather than actual cork. I wanted to see if anyone here has more history on this brand as well as information on what type of cognac it would, when it would have been distilled and bottled (Exshaw is long gone).

\n\n

\"enter

\n\n

The bottle seemed to have been imported by the Borneo company into Malaysia.

\n", "OwnerUserId": "138", "LastActivityDate": "2019-11-24T14:35:40.197", "Title": "Trying to find out more about this John Exshaw bottle", "Tags": "cognac", "AnswerCount": "0", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7881"}} +{ "Id": "7881", "PostTypeId": "1", "CreationDate": "2019-11-27T12:52:47.197", "Score": "11", "ViewCount": "692", "Body": "

When you open a bottle of whisky and don't finish it, lets say, within a year. Does it change its taste in this time period? If so, which processes lead to this change?

\n\n

I know there are a lot of rumors and opinions, I'm looking for (semi-)scientific research on this topic.

\n", "OwnerUserId": "8518", "LastEditorUserId": "9887", "LastEditDate": "2020-03-27T17:21:30.673", "LastActivityDate": "2020-03-27T17:21:30.673", "Title": "Does whisky change its taste in an open bottle?", "Tags": "taste storage whiskey", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7885"}} +{ "Id": "7885", "PostTypeId": "1", "AcceptedAnswerId": "7886", "CreationDate": "2019-12-01T14:54:53.303", "Score": "4", "ViewCount": "218", "Body": "

I'll start off with saying I'm not looking for a recipe or a list of ideas, as I know that's outside the scope of this SE, but if my question is too close to those lines, I won't take it personally if this is closed!

\n\n

I usually have left over boosy fruit such as sloes, rubarb and etc and I make them into a boozy pie! But this year I made a spiced clementine gin.

\n\n

The clementines are not pealed but are cut into 8ths. I'm wondering if there is any idea about how to use these? Maybe a jam, would you still taste the gin?

\n", "OwnerUserId": "8672", "LastEditorUserId": "5064", "LastEditDate": "2019-12-01T20:58:49.103", "LastActivityDate": "2020-11-12T20:24:26.607", "Title": "What to do with leftover gin soaked clementines?", "Tags": "recommendations gin", "AnswerCount": "2", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7886"}} +{ "Id": "7886", "PostTypeId": "2", "ParentId": "7885", "CreationDate": "2019-12-01T20:56:20.923", "Score": "3", "Body": "

What to do with leftover gin soaked clementines?

\n\n

You could make jam with them if you have enough to do it with. The alcohol would obviously be evaporated off. The gin would give it a distinct flavour to the jam.

\n\n

As for myself, I would mix them with a fruit cocktail and eat them with ice cream after dinner. I have done this occasionally with and without ice cream for dessert.

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-12-01T20:56:20.923", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7887"}} +{ "Id": "7887", "PostTypeId": "1", "AcceptedAnswerId": "7929", "CreationDate": "2019-12-02T17:51:28.213", "Score": "4", "ViewCount": "204", "Body": "

I have consumed very little alcohol in the last 20 or so years, so my taste-buds and tolerance are like a young person.

\n\n

Someone gave me a bottle of Black Haus. It has a nice blackberry flavor, but there is a strong odor that strikes my nose and tongue like acetone (nail polish remover). Is this normal for this spirit? Is it safe to drink (sip)?

\n", "OwnerUserId": "9955", "LastEditorUserId": "9887", "LastEditDate": "2019-12-23T10:07:16.030", "LastActivityDate": "2020-01-23T01:01:35.170", "Title": "Is it normal for Black Haus Blackberry Schnapps to taste like acetone?", "Tags": "taste spirits", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7888"}} +{ "Id": "7888", "PostTypeId": "2", "ParentId": "7881", "CreationDate": "2019-12-05T12:08:50.607", "Score": "5", "Body": "

This is a heated topic of debate among whiskey drinkers, actually. The heart of the answer lies somewhere between the sensitivity of the palate and the length of time that a whiskey remains open... You may hear that leaving the whiskey in an open bottle drastically changes the flavor, subtly changes the flavor, or does not at all change the flavor depending on who you talk to and where you look.

\n\n

But, it's obvious that SOMETHING happens to whiskey after the bottle has been opened, right? It's the process of aeration - the same process over which so many wine enthusiasts debate. As air passes through, water and alcohol slowly evaporate from the whiskey... thereby leaving behind a stronger concentration of the other substances in the liquor. For very fine whisky, I have been instructed at distilleries to transfer to smaller (airtight) bottles if the opened whisky is to be stored for very long - in order to prevent a change in flavor or potential loss of aroma.

\n\n

Personally, I can taste a difference in certain bourbons within a couple weeks of being opened (I only intentionally aerate when it's in the glass in front of me in order to get some of the extra aroma out of it.) But, I don't really taste a difference in scotch after the same period (of which I admittedly drink less... unless you're offering ;)

\n\n

I'd say after a year, it would be difficult to argue that something about the flavor hasn't changed (but that may, again, vary by palate.) However, my whiskey never seems to last that long, be it bourbon, scotch, or rye haha

\n", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-05T12:14:39.153", "LastActivityDate": "2019-12-05T12:14:39.153", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7889"}} +{ "Id": "7889", "PostTypeId": "2", "ParentId": "725", "CreationDate": "2019-12-05T12:58:59.440", "Score": "0", "Body": "

So, I'm going back through my old answers and questions in order to upvote everyone..., I am fairly certain that this answer to my question, how did the phrase 'beer me' originate, posted by @Lordjustine was actually meant for this question instead... though I am clueless as to both what the post advises and how the answer would have been mistakenly posted on my question. In any case, I am adding it here:

\n\n
\n

I think your question has judging you to originate you and the effect\n of beer to you. But beer for me or other people is a vitamins, that\n people said drink beer only moderately to mentain the figthing virus\n or bacteria or anything coming from us.

\n \n

and sometime beer is not valuable from minor and therapeutic patient. its beacause causing a tragic interms in our body. of you continous to drink beer

\n
\n", "OwnerUserId": "5847", "LastActivityDate": "2019-12-05T12:58:59.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7890"}} +{ "Id": "7890", "PostTypeId": "2", "ParentId": "7881", "CreationDate": "2019-12-05T17:41:57.437", "Score": "2", "Body": "

When someone can taste a difference after some time, days - weeks - years, when drinking the same whisk(e)y, a lot has changed, not just e.g. possible aeration of whisky in the bottle. \nHow you feel, what you ate or drank before drinking it, if you lit a candle or how the room smells like, if you drink alone or with a good friend - that all affects your experience of taste. And not just little.

\n\n

I hear a lot about the comparisson with how air affects wine. But in wine the effect is very strong and fast. It's within minutes and changes the taste of wine a lot.

\n\n

Unfortunately, I never heard of an experiment or more valid sources than just subjective impression.

\n\n

I'm planning on doing a little experiment myself. I will buy two bottles of 3 or 4 different whiskies, half-empty one of the bottle pairs and compare them after a year (I will exchange the air of the open bottled on regular basis). I'm very curious how big the difference is or if there is any difference at all.

\n", "OwnerUserId": "8518", "LastActivityDate": "2019-12-05T17:41:57.437", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7891"}} +{ "Id": "7891", "PostTypeId": "5", "CreationDate": "2019-12-06T00:40:43.117", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:40:43.117", "LastActivityDate": "2019-12-06T00:40:43.117", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7892"}} +{ "Id": "7892", "PostTypeId": "4", "CreationDate": "2019-12-06T00:40:43.117", "Score": "0", "Body": "Alcoholic drinks produced by distillation of grains, fruit, or vegetables that have already gone through alcoholic fermentation. See also \"Liquor.\"", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:53.037", "LastActivityDate": "2019-12-11T16:23:53.037", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7893"}} +{ "Id": "7893", "PostTypeId": "5", "CreationDate": "2019-12-06T00:42:42.750", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:42:42.750", "LastActivityDate": "2019-12-06T00:42:42.750", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7894"}} +{ "Id": "7894", "PostTypeId": "4", "CreationDate": "2019-12-06T00:42:42.750", "Score": "0", "Body": "Substances that form parts of a mixture (in a general sense).", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:55.800", "LastActivityDate": "2019-12-11T16:23:55.800", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7895"}} +{ "Id": "7895", "PostTypeId": "5", "CreationDate": "2019-12-06T00:45:48.210", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:45:48.210", "LastActivityDate": "2019-12-06T00:45:48.210", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7896"}} +{ "Id": "7896", "PostTypeId": "4", "CreationDate": "2019-12-06T00:45:48.210", "Score": "0", "Body": "Drinking is the act of ingesting liquids into the body through the mouth, proboscis, or elsewhere. See also \"Imbibe.\"", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:21.613", "LastActivityDate": "2019-12-11T16:23:21.613", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7897"}} +{ "Id": "7897", "PostTypeId": "5", "CreationDate": "2019-12-06T00:47:14.957", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:47:14.957", "LastActivityDate": "2019-12-06T00:47:14.957", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7898"}} +{ "Id": "7898", "PostTypeId": "4", "CreationDate": "2019-12-06T00:47:14.957", "Score": "0", "Body": "Law is a system of rules that are created and enforced through social or governmental institutions to regulate behavior.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:19.053", "LastActivityDate": "2019-12-11T16:23:19.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7899"}} +{ "Id": "7899", "PostTypeId": "5", "CreationDate": "2019-12-06T00:48:55.770", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:48:55.770", "LastActivityDate": "2019-12-06T00:48:55.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7900"}} +{ "Id": "7900", "PostTypeId": "4", "CreationDate": "2019-12-06T00:48:55.770", "Score": "0", "Body": "A standard measure of how much alcohol (ethanol) is contained in a given volume of an alcoholic beverage (expressed as a volume percent). Also known as Alcohol by volume (abbreviated as ABV, abv, or alc/vol.)", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:58.427", "LastActivityDate": "2019-12-11T16:23:58.427", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7901"}} +{ "Id": "7901", "PostTypeId": "5", "CreationDate": "2019-12-06T00:50:52.490", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:50:52.490", "LastActivityDate": "2019-12-06T00:50:52.490", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7902"}} +{ "Id": "7902", "PostTypeId": "4", "CreationDate": "2019-12-06T00:50:52.490", "Score": "0", "Body": "Beer typically brewed by relatively small, independently owned commercial breweries that employ traditional brewing methods and emphasize flavor and quality.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:16.457", "LastActivityDate": "2019-12-11T16:23:16.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7903"}} +{ "Id": "7903", "PostTypeId": "5", "CreationDate": "2019-12-06T00:52:26.563", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:52:26.563", "LastActivityDate": "2019-12-06T00:52:26.563", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7904"}} +{ "Id": "7904", "PostTypeId": "4", "CreationDate": "2019-12-06T00:52:26.563", "Score": "0", "Body": "An alcoholic drink produced by distillation of grains, fruit, or vegetables that have already gone through alcoholic fermentation. See also \"Spirits.\"", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:37.287", "LastActivityDate": "2019-12-11T16:23:37.287", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7905"}} +{ "Id": "7905", "PostTypeId": "5", "CreationDate": "2019-12-06T00:53:43.163", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2019-12-06T00:53:43.163", "LastActivityDate": "2019-12-06T00:53:43.163", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7906"}} +{ "Id": "7906", "PostTypeId": "4", "CreationDate": "2019-12-06T00:53:43.163", "Score": "0", "Body": "An alcoholic beverage intended for adult human consumption.", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2019-12-11T16:23:48.760", "LastActivityDate": "2019-12-11T16:23:48.760", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7907"}} +{ "Id": "7907", "PostTypeId": "1", "CreationDate": "2019-12-06T15:00:09.033", "Score": "3", "ViewCount": "152", "Body": "

How does one go about opening a bottle of beer when (gasp) there are no bottle openers present?

\n\n

Twist off is not an option. And, anything involving using one's teeth should be omitted (safety first!)

\n", "OwnerUserId": "5847", "LastActivityDate": "2020-06-25T21:37:37.533", "Title": "How to open a beer without a bottle opener?", "Tags": "serving drinking bottles", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7908"}} +{ "Id": "7908", "PostTypeId": "2", "ParentId": "7907", "CreationDate": "2019-12-06T15:00:09.033", "Score": "3", "Body": "

The most common method that I have seen and used is \"ye ol' lighter trick.\" With which, one uses the butt of an igniting lighter as a lever and one's own finger as the fulcrum. Technique is important with this one because one can really cut/scratch up one's knuckles if this is done improperly.

\n\n

Depicted here:

\n\n

https://youtu.be/fvlrRjNVaqg

\n\n

Another nifty trick that I have seen and tried (though my technique could use a bit of improvement) is using a ring on your finger... Albeit, the ring should be strong (steel or the like) because the rigid edges of the bottle caps will really bite into and damage precious metals, like softer golds and .925 silver...

\n\n

Depicted here:

\n\n

https://youtu.be/X-HSgXflNec

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-12-06T15:00:09.033", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7909"}} +{ "Id": "7909", "PostTypeId": "1", "CreationDate": "2019-12-06T15:07:13.800", "Score": "3", "ViewCount": "112", "Body": "

How can one safely go about opening a bottle of wine when there is no corkscrew present? (Obviously, we are talking corked bottles and not twist-off...)

\n", "OwnerUserId": "5847", "LastActivityDate": "2020-01-01T18:07:07.457", "Title": "How to open a bottle of wine without a corkscrew?", "Tags": "wine serving drinking bottles", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7910"}} +{ "Id": "7910", "PostTypeId": "2", "ParentId": "7909", "CreationDate": "2019-12-06T15:07:13.800", "Score": "2", "Body": "

A technique that is rarely thought of is to simply push the cork slowly down into the bottle (like with the end of a fork or with a stick,) instead of attempting to pull the cork out of the bottle. (Sometimes this cannot be done safely, however, considering that pushing the cork down into the bottle MAY create more pressure within the bottle and cause it to burst - though I have never seen that happen.)

\n\n

There is another cool trick, that I have seen though I have not needed to try it personally, where one can use one's own shoe and a hard vertical surface (usually a wall.)

\n\n

Depicted here (You don't need to speak French to understand this...):

\n\n

https://youtu.be/pfWu76kyFmw

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-12-06T15:07:13.800", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7911"}} +{ "Id": "7911", "PostTypeId": "1", "AcceptedAnswerId": "7913", "CreationDate": "2019-12-06T21:43:41.070", "Score": "3", "ViewCount": "618", "Body": "

I am attending a company party that will be serving these alcoholic drinks:

\n\n
    \n
  1. Belvedere Vodka
  2. \n
  3. Bulleit Bourbon
  4. \n
  5. Don Julio Silver Tequila
  6. \n
  7. La Marcca Prosecco
  8. \n
  9. L. Martini Cab Sauvignon
  10. \n
  11. Dry Creek Sauvignon Blanc
  12. \n
  13. Stella Artois
  14. \n
  15. Lagunitas IPA
  16. \n
  17. Coronado Mermaids Red
  18. \n
  19. Blue Moon
  20. \n
  21. Bud Light
  22. \n
\n\n

I am an alcohol novice who mostly likes to drink the sweeter alcoholic drinks and not the very bitter ones. Which of these drinks are the sweetest?

\n", "OwnerUserId": "9961", "LastActivityDate": "2019-12-08T00:23:05.700", "Title": "Which are the sweetest alcoholic drinks?", "Tags": "taste recommendations", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7912"}} +{ "Id": "7912", "PostTypeId": "2", "ParentId": "7907", "CreationDate": "2019-12-07T00:43:14.640", "Score": "8", "Body": "

Almost anything can be used to open a bottle of beer. What we used as university students: spoon (fork, knife), key, table, park bank, fence, another bottle of beer.

\n\n

My preferred way (when there's no bottle opener) is to use a spoon (I hold the spoon differently but this way is also worth consideration):

\n\n

\"enter

\n\n

Using another (closed) bottle:

\n\n

\"enter

\n\n

If you are outside you can use any hard surface. Place the bottle as in picture and push on it or hit slightly. Keep in mind that wood can be damaged by a bottle cap.

\n\n

\"enter

\n\n

\"enter

\n", "OwnerUserId": "4742", "LastEditorUserId": "37", "LastEditDate": "2020-06-16T20:31:10.830", "LastActivityDate": "2020-06-16T20:31:10.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7913"}} +{ "Id": "7913", "PostTypeId": "2", "ParentId": "7911", "CreationDate": "2019-12-07T13:07:06.300", "Score": "3", "Body": "

Out of the beverages that you have listed, the following are likely to be considered the sweetest:

\n\n
\n

La Marcca Prosecco

\n \n

L. Martini Cab Sauvignon

\n \n

Dry Creek Sauvignon Blanc

\n
\n\n

In general, wines will be sweeter than liquors and beers simply due to the fact that they are made from grapes.

\n\n

However, this is made under the assumption that any of the liquors you listed will be served straight or neat... If instead the liquors will be served in cocktails, you might actually prefer one of those.

\n\n

Commonly, a novice drinkers tend to enjoy clear liquor over dark. And, vodka is one liquor in which many very sweet juices, like pineapple, are mixed to make rather delicious cocktails that can even be described as \"light\" and/or \"refreshing.\" A lemon drop is sometimes made with simple syrup (basically sugar water) and served with sugar around the rim, much in the same way a margarita (another sweet cocktail made usually made with tequila) is served with salt around the rim.

\n\n

You may want to research any list of sweet cocktails in advance, determine which sounds the tastiest for your palate among the liquors to be served, and ask for that particular one when you are at the party.

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-12-07T13:07:06.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7914"}} +{ "Id": "7914", "PostTypeId": "2", "ParentId": "7911", "CreationDate": "2019-12-08T00:23:05.700", "Score": "1", "Body": "

Which are the sweetest alcoholic drinks?

\n\n

Each person will perceive tastes a little differently and nothing is full proof in this domain.

\n\n

Since you are a novice, it may be good to avoid the liquor unless you are using them in some cocktails. In this case, I would go with vodka.

\n\n

For the list you site, I would give thought to Coronado Mermaid’s Red Ale.

\n\n
\n

A well balanced, medium-to full bodied beer, red in color and very flavorful. The red color and slight caramel-roasted flavor comes from generous amounts of caramel malts and a touch of chocolate malts. Well hopped to balance the malty sweetness, and dry-hopped with cascade for a full hop flavor and aroma. - Coronado Mermaid's Red Ale

\n
\n\n

Stella Artois would probably not to your liking. But again, you may enjoy it.

\n\n

I find some light beer quite sweet, but that is me.

\n\n

In order to help you discern what wines are possibly sweeter, I am posting a couple of wine sweetness charts for the benefit of all.

\n\n
\n

Red wines have tannin which makes wines taste less sweet than they actually are.

\n \n

White wines have higher acidity which can make wines taste less sweet. - Wine Sweetness Chart

\n
\n\n

\"enter

\n", "OwnerUserId": "5064", "LastActivityDate": "2019-12-08T00:23:05.700", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7917"}} +{ "Id": "7917", "PostTypeId": "2", "ParentId": "7116", "CreationDate": "2019-12-09T02:14:48.573", "Score": "1", "Body": "

How much alcohol is in rum extract?

\n\n

That will depend on the rum extract being used.

\n\n

McCormick Rum Extract has 35 percent alcohol. Others have 40 to 45 percent alcohol in them.

\n\n
\n

Extracts are about 35% alcohol whereas most liquor is 40%, so you can pretty much substitute one for the other.

\n \n

Most extracts labeled “pure” are a solution of whatever flavoring component they claim (vanilla, lemon, anise), some pretty strong alcohol (80 – 90 proof), and sometimes a bit of sugar syrup. The chemicals that we recognize as a “taste” are alcohol-soluble, so the easiest way to concentrate them to a baking-ready liquid is to dissolve them out of their skins, seeds, or pods. - extracts vs. alcohol in baking

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "7420", "LastEditDate": "2019-12-09T10:41:42.520", "LastActivityDate": "2019-12-09T10:41:42.520", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7918"}} +{ "Id": "7918", "PostTypeId": "2", "ParentId": "7865", "CreationDate": "2019-12-09T14:43:42.090", "Score": "1", "Body": "

Good question, and no real origin that I can find; the oldest documented use that I could find is from The Simpsons, Episode 19, Season 2 (November 15, 1990):

\n\n

Homer: \"Marge, beer me! ... Don't toy with me woman.\"

\n\n

AS HEARD IN SEASON 2 - DEAD PUTTING SOCIETY\n

\n", "OwnerUserId": "9968", "LastEditorUserId": "5064", "LastEditDate": "2019-12-11T22:00:32.467", "LastActivityDate": "2019-12-11T22:00:32.467", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7919"}} +{ "Id": "7919", "PostTypeId": "1", "AcceptedAnswerId": "7930", "CreationDate": "2019-12-12T12:32:43.620", "Score": "4", "ViewCount": "44", "Body": "

In Brazil there is a very large trade in foreign beers, but in the countries I visited I never found Brazilian beers.

\n\n

Can you help me with this answer?

\n", "OwnerUserId": "9971", "LastEditorUserId": "9887", "LastEditDate": "2020-01-05T19:18:10.443", "LastActivityDate": "2020-01-05T19:18:10.443", "Title": "Which Brazilian beers are found outside Brazil?", "Tags": "local distribution brazil", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7920"}} +{ "Id": "7920", "PostTypeId": "2", "ParentId": "4667", "CreationDate": "2019-12-12T12:46:05.707", "Score": "0", "Body": "

I have heard this as well, having grown-up around a couple cigarette-smoking, obnoxious drunks. Frankly, this is something that is simply just said. It's \"Drunk Talk\"...

\n\n

Imagine witnessing someone become a bit inebriated. And during the course of a conversation that also involves a beer and a smoke, a cigarette ash falls into the beer. Then you hear the obligatory explanation... \"That gives it an extra kick,\" \"That puts hair on your chest,\" or \"That's protection against black magic.\" etc etc

\n\n

It's something the person says to make light of, and seem less stupid about, the accident that just happened. By making the action seem as though it was deliberate and not due to the loss of attention and/or motor function that goes along with being intoxicated, the person attempts to cushion the unsavory fact that they now have to drink a beer containing cigarette ash (because we all know that a little cigarette ash is no reason to waste beer.)

\n\n

The added 'kick' only being carcinogens and a more disgusting flavor... Or arguably, a novelty by which to potentially have a laugh and extend drunken conversation.

\n", "OwnerUserId": "5847", "LastActivityDate": "2019-12-12T12:46:05.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7921"}} +{ "Id": "7921", "PostTypeId": "1", "AcceptedAnswerId": "7922", "CreationDate": "2019-12-12T19:21:46.533", "Score": "1", "ViewCount": "66", "Body": "

Is there an \"Oscar\" for beers?

\n", "OwnerUserId": "9971", "LastEditorUserId": "5064", "LastEditDate": "2019-12-13T01:46:10.850", "LastActivityDate": "2019-12-13T01:46:10.850", "Title": "Is there a contest that chooses the best beer in the world?", "Tags": "competition brazil", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7922"}} +{ "Id": "7922", "PostTypeId": "2", "ParentId": "7921", "CreationDate": "2019-12-13T01:34:30.207", "Score": "3", "Body": "

Is there a contest that chooses the best beer in the world?

\n\n

The short answer is possibly.

\n\n

The International Beer Challenge Competition and Awards seems to make that claim.

\n\n
\n

We are the world's BEST Beer Competition and Awards - as voted by experts - our panel of judges

\n \n

The aim for the IBC is to reward and promote excellent beers from around the globe providing brewers with a platform to express their beers to trade and consumers.

\n \n

With the ever growing interest in the beer category, we have set out over 72 different categories to reflect the diversity in brewing today as well as offering traditional beer categories. Over the years we are seeing more and more brewers enter their bottled, canned or mini kegs from round the world and today we receive entries from no fewer than 40 countries.

\n \n

Being part of the IBC carries a number of significant benefits. It acknowledges the skill of the brewer and is an internationally recognised symbol of quality, frequently displayed on beer labels. Retailers, restaurateurs, bar owners and wholesalers are justifiably proud of the range of award winning beers they carry. Drinks lists promote IBC award-winners directly to the consumer and can influence their buying decision and as a result can increase your brands' profile, prestige and sales.

\n \n

We have some of the shrewdest beer judges in the land - retailers, importers, publicans, brewers, writers and flavour analysists. The judging process is rigorous, unrivalled and our approach is much respected among our panel of judges.

\n \n

Winning beers will be presented at the Brewers Awards when we announce the trophy and supreme champion beer, and also crown brewers and retailers who have performed the best across the board in the competition. - The International Beer Challenge Competition and Awards

\n
\n\n

There is also the World Beer Cup.

\n\n
\n

The World Beer Cup is an international beer competition organized by the Brewers Association, a trade group representing America's small and independent craft brewers. It is the largest competition in the beer industry and has been described as \"the Olympics of beer.\" According to americancraftbeer.com, \"Winning a World Beer Cup is like winning a Grammy or an Oscar…it brings the world’s attention to even the smallest brewery’s doorstep…and like a hit song or film, it can make a career.\" The cup was founded by Association of Brewers president Charlie Papazian in 1996 and is awarded every two years. The competition is held in conjunction with the Craft Brewers Conference & BrewExpo America.

\n \n

In 2016 there were 6,596 beers from 1,907 breweries from 55 countries. Entries were judged by an international panel of 253 judges from 31 countries. In 2018 there were 8,234 beers entered, a 25% increase over the 2016 cup and the largest field in the competition's history, with competitors from 66 countries. There were 295 judges, three-fourths of them from outside the United States. - World Beer Cup

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2019-12-13T01:41:03.380", "LastActivityDate": "2019-12-13T01:41:03.380", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7924"}} +{ "Id": "7924", "PostTypeId": "1", "CreationDate": "2019-12-18T00:44:31.157", "Score": "2", "ViewCount": "68", "Body": "

I've got a store bought distiller, this is my second time using it.

\n\n

The first time I put homemade wine & made some nice Brandy. This time I have a all-grain mash which has been fermenting for 5 days.

\n\n

Once the distiller heats up enough the lid pops open & makes a huge mess. It also pours out the nozzle very quickly. It's supposed to drip slowly and the lid is supposed to stay on.

\n\n

From my research it's possibly not done fermenting as it does seem very 'fizzy' (bubbly when shaken). However I am not 100% sure of the reason. Could I have put too much carbon in the nozzle?

\n\n

Here's a picture of the still:\n\"enter

\n\n

Can I pour the mash back in with the rest of my mash? (I have 23L of mash my distiller only has 4L)

\n\n

Is there anyway I can 'debug' this / figure out why it's happening? It's happened twice and I'm scared to try a third time.

\n", "OwnerUserId": "9981", "LastEditorUserId": "9887", "LastEditDate": "2019-12-28T20:39:23.543", "LastActivityDate": "2020-01-27T21:02:05.377", "Title": "Mash overflows and lid comes off distiller", "Tags": "distillation", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7925"}} +{ "Id": "7925", "PostTypeId": "2", "ParentId": "7924", "CreationDate": "2019-12-20T02:45:59.643", "Score": "1", "Body": "

Lots of people refer to this as a \"puke\". It's like the distiller is puking.

\n\n

I managed to solve my problem (Currently half way through the first batch ;-)). I used a \"distilling conditioner\" AKA defoaming agent purchased at my local brewery store

\n\n

I also degassed the wort using a drill and a whisk, however this alone was not enough.

\n\n

Note: I didn't use any of the below advice, just leaving it here for completeness

\n\n

Other advice I've gotten on other forums includes clearing the wort better (E.g using cold temperature + time or a clearing agent), and putting a few rashing rings or stones inside the distiller as the airstill's inside may be too smooth.

\n", "OwnerUserId": "9981", "LastEditorUserId": "9981", "LastEditDate": "2019-12-20T02:54:46.830", "LastActivityDate": "2019-12-20T02:54:46.830", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7926"}} +{ "Id": "7926", "PostTypeId": "2", "ParentId": "7909", "CreationDate": "2019-12-22T11:06:30.693", "Score": "2", "Body": "

DO NOT risk the alcohol! Push cork slowly into bottle. Use a nail or something metal not a stick. A stick risks the alcohol!

\n", "OwnerUserId": "9988", "LastActivityDate": "2019-12-22T11:06:30.693", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7927"}} +{ "Id": "7927", "PostTypeId": "1", "CreationDate": "2019-12-22T13:37:57.963", "Score": "4", "ViewCount": "124", "Body": "

First let me assure everyone that I did look for a similar question and did not find any. So I apologize if my search was insufficient.

\n\n

I am a big fan of martinis, dry in particular. My buddies and I are partial to Leyden Dry Gin. If you have never tried it and have access to it, I highly recommend it. As a friend puts it, it provides better living through chemistry. It is from Holland, which, in case you did not know, is the birthplace of gin.

\n\n

So my question, finally, is at what point does a dry martini become simply a glass of cold gin?

\n", "OwnerUserId": "9989", "LastEditorUserId": "8663", "LastEditDate": "2020-01-24T16:16:54.597", "LastActivityDate": "2020-01-24T16:16:54.597", "Title": "Dry Martini or cold gin?", "Tags": "cocktails gin", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7928"}} +{ "Id": "7928", "PostTypeId": "2", "ParentId": "7927", "CreationDate": "2019-12-23T22:48:01.147", "Score": "0", "Body": "

I'm not an expert in this, but here is my take. A martini is a mixed drink. This suggests at least two ingredients. The typical dry martini is made from 5 parts gin and 1 part dry vermouth. Less dry vermouth is considered \"drier\". You can substitute vodka for gin. As far as I'm concerned, a dry martini becomes just gin when you stop including vermouth.

\n", "OwnerUserId": "6370", "LastActivityDate": "2019-12-23T22:48:01.147", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7929"}} +{ "Id": "7929", "PostTypeId": "2", "ParentId": "7887", "CreationDate": "2019-12-24T00:42:25.933", "Score": "2", "Body": "

Certain spoilage bacteria can give an acetone like flavor. I’ve personally had a batch of homemade wine turn out with this flavor after being improperly sanitized beforehand. However, the wine itself was perfectly safe to drink, and I’ve gone though many bottles of it no problem. In my experience, most liquors simply get a bad taste when they spoil, and aren’t actually unsafe to drink due to the high alcohol content. Of course I can’t tell you 100% if it’s safe to drink, butch it was freshly opened, it’s likely just the way the liquor tastes. And if not, even then, it still likely won’t make you sick, just have an off flavor.

\n", "OwnerUserId": "9992", "LastActivityDate": "2019-12-24T00:42:25.933", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7930"}} +{ "Id": "7930", "PostTypeId": "2", "ParentId": "7919", "CreationDate": "2019-12-24T01:34:17.627", "Score": "2", "Body": "

Brahma and Bohemia are the only Brazilian beers I’ve seen in the United States but only at specialty stores. But this isn’t terribly surprising to me. The vast majority or Brazilian beer is lager and in the United States, we are already flooded with a variety of cheap lager beers and plenty of local craft lager beers.

\n\n

I can’t find export data for specific countries, but since the United States is one of the biggest beer markets, given the rarity here, I would expect they are increasingly rare the further you get from Brazil.

\n", "OwnerUserId": "5027", "LastActivityDate": "2019-12-24T01:34:17.627", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7932"}} +{ "Id": "7932", "PostTypeId": "2", "ParentId": "7909", "CreationDate": "2020-01-01T18:07:07.457", "Score": "3", "Body": "
-**1.** Use a Screw (the longer the better), a screwdriver, and a hammer. Wrap a small towel around top of bottle and screw. Pry slowly and cautiously the screw out with claw hammer, just like pulling a nail. \n-**2.** Push the cork in with the handle of a wooden spoon, or any blunt object similar in size. \n-**3.** Pump it out. Start with a bike pump and place the pump needle between the cork and the rim of the wine bottle. Pump it three or four times, but be careful because if you pump too much the bottle could explode. After a couple of pumps it cork will jump out or you can pull it out.\n-**4.** Twist it out with keys or a serrated knife. \n-**5.**  Wrap the bottle with a towel and use the wall to smack it out. \n-**6.** Slap it out with a shoe, with wine bottle facing horizontal or between your legs facing down to start. \n-**7.** Take a hanger and form it in the shape of a hook with a pair of pliers. Place the new hook on the edge of the cork with the u shape facing up. Wiggle the hook back and forth until it’s about 2 inches down. Rotate the hook so it grabs the bottom of the cork and then begin pulling once it catches the hook.\n-**8.** Make a small cut on either side of the cork and find a pair of clean, curved nail scissors or a pair of pliers. Put the nail scissors or pliers into the place the cork was cut and lift.\n-**9.** Insert a key, preferably one you have extra copies of, at a 45 degree angle into the cork until most of it is inserted into the cork. Then begin twisting the cork up as pushing up with the key until you get the cork out. Be careful because a weak key has a possibility of breaking.\n-**10.** Insert a screw hook into the cork and once sufficiently screwed in, pull. Next time you won’t have to spend so much time searching for a wine opener.\n-**11.** Use a string. Tie a figure eight knot and slip it past the cork by wedging it down with a screwdriver or scissors. Once the knot is below the cork, tilt the bottle and then pull the string.\n
\n", "OwnerUserId": "10006", "LastActivityDate": "2020-01-01T18:07:07.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7933"}} +{ "Id": "7933", "PostTypeId": "1", "AcceptedAnswerId": "7940", "CreationDate": "2020-01-02T12:16:17.583", "Score": "3", "ViewCount": "5024", "Body": "

I have decided to drink only beer as a New Year’s resolution, however one of my friends said that beer is more hazardous than whiskey.

\n\n

Can anyone help me with this? What should I drink ?

\n", "OwnerUserId": "10010", "LastEditorUserId": "5064", "LastEditDate": "2020-01-12T22:50:29.493", "LastActivityDate": "2020-05-30T18:13:08.140", "Title": "Which drink is moderately less hazardous to health: Beer, Whiskey, Rum, Vodka or Wine?", "Tags": "recommendations health drinking", "AnswerCount": "2", "CommentCount": "5", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7934"}} +{ "Id": "7934", "PostTypeId": "2", "ParentId": "105", "CreationDate": "2020-01-05T01:05:47.987", "Score": "1", "Body": "

wow. \"cold numbs your tongue.\" Seems like a very unusual answer to a sensible question.\nI can say that each time I try different types of ale or beer I like to read the label for their opinion but most of the time I start with fully chilled and pour some in a glass and let it settle down then take a sip and wait for maybe 5 minutes and try another and so on until I get an opinion of how that particular brew changes and then read their opinion (if one exists) again to see if my experience agrees or to compare what they must be trying to focus on based on their opinion.\nOnce I figure it out then that is how I drink that brew.\nAlthough I accidentally poured some Chimay Grand Reserve blue label and forgot it one night. When I returned maybe an hour later, it was fairly room temperature. The amazing thing is that it smelled fruity like a wine and even had a wine like taste. I use a wide wine glass for my sampling so it captured some of the vapors probably better than a mug or a bottle would have. I do not always have an hour to wait to let that happen but it was a pleasant surprise. Usually with the Chimay I let the massive head settle down then take a sip because at cold temp it has one characteristic that I like. Then I wait for maybe close to 10 minutes and drink some more. Typically between 10 and 20 minutes is the part I probably like most for general drinking. Right after it starts warming up from frige temp it begins to seem too much like drinking alcohol. I can feel and taste the alcohol then it gets a little warmer and begins to take on a sweeter malty flavor. Then allowed to sit longer it goes into a less attractive taste only to eventually seem like wine after it makes it to another level of warmness. Sometimes I pour a 2nd glass after the first reaches a certain flavor and sort of alternate between them to enjoy the different flavors that all came out of the same bottle.

\n", "OwnerUserId": "10014", "LastEditorUserId": "10014", "LastEditDate": "2020-01-05T01:11:23.677", "LastActivityDate": "2020-01-05T01:11:23.677", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7935"}} +{ "Id": "7935", "PostTypeId": "2", "ParentId": "7927", "CreationDate": "2020-01-07T08:06:16.440", "Score": "3", "Body": "

Dry Martini can sometimes become a very philisophical topic.

\n\n

As Eric Shain already pointed out, the classic martini consists of gin and vermouth 6:1. You should not forget the water, that is melted while stirring it. This is quite an important part of making a good Martini. You should stirr it for several minutes.

\n\n

More puristic people go to a ratio of 10:1 or even 15:1. To get to a more extreme combination, you put vermouth into your ice cubes, stirr it for a short while, and then pour the vermouth away, so that only the ice cubes for stirring your gin are thinly layered with vermouth.

\n\n

There are even recipes where you would simply put a bottle of gin in the freezer, put vermouth in an atomizer, then pour gin in a frozen martini glass, pfff vermouth once with the atomizer and voila - your martini. This is already very close to your suggestion of just drinking cold gin.

\n\n

The famous Winston Churchill once said: \"The best Martini is a bottle of gin, that stood in the shadow of a bottle of vermouth.\"

\n\n

So there it is ;-)

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2020-01-07T08:12:23.430", "LastActivityDate": "2020-01-07T08:12:23.430", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7937"}} +{ "Id": "7937", "PostTypeId": "1", "CreationDate": "2020-01-09T12:20:31.933", "Score": "3", "ViewCount": "1120", "Body": "

I am trying to find out when in history grape juice or non-alcoholic wine was first used?

\n\n

Any ideas?

\n", "OwnerUserId": "10024", "LastEditorUserId": "5064", "LastEditDate": "2020-01-11T02:33:12.580", "LastActivityDate": "2020-02-10T15:47:48.710", "Title": "When was non alcoholic wine first invented?", "Tags": "wine history non-alcoholic", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7938"}} +{ "Id": "7938", "PostTypeId": "2", "ParentId": "7937", "CreationDate": "2020-01-09T13:01:06.557", "Score": "1", "Body": "

wiki says:

\n\n
\n

The method of pasteurizing grape juice to halt the fermentation has been attributed to an American physician and dentist, Thomas Bramwell Welch in 1869. A strong supporter of the temperance movement, he produced a non-alcoholic wine to be used for church services in his hometown of Vineland, New Jersey.

\n
\n\n

Of course, simple grape juice, that you'll get by just pressing grapes, is probably used much much longer.

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-01-09T13:01:06.557", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7940"}} +{ "Id": "7940", "PostTypeId": "2", "ParentId": "7933", "CreationDate": "2020-01-12T16:50:31.557", "Score": "5", "Body": "

Which drink is moderately less hazardous to health: Beer, Whiskey, Rum, Vodka or Wine?

\n\n

There is no one perspective that is a definite answer to this question because there are many factors that must be taken into account.

\n\n
    \n
  • How much alcohol is considered moderate?
  • \n
  • What type of drink contains more calories and thus makes one gain weight more quickly?
  • \n
  • What types of drinks can by those who are gluten intolerant?
  • \n
\n\n

How to drink moderately and how much alcohol in a drink is considered to be moderate?

\n\n

Most people consider drinking by consuming a drink or two socially or in private. Drinking too much in some circumstances can lead to another alcohol poisoning.

\n\n
\n

What is Moderate Alcohol Use?

\n \n

Guidelines for moderate drinking have been set by the US Department of Health and Human Services and the World Health Organization.

\n \n
    \n
  • The US guidelines suggest no more than 1 drink per day for women and no more than 2 drinks per day for men. A drink is defined as 12 oz of beer, 5 oz of wine, or 1.5 oz of spirits.

  • \n
  • The WHO guidelines suggest no more than 2 drinks per day, and no more than 5 drinking days per week. They recommend 2 non-drinking days. Of course, you can't stockpile your drinks, and have them all at the end of the week.

  • \n
\n \n

A Standard Drink - The Definition of a Drink

\n \n

A standard drink is 14g of pure alcohol according to the US Department of Health and Human Services. The World Health Organization defines a drink as 10g of pure alcohol.

\n \n

Each milliliter of pure alcohol weighs 0.79 grams. Therefore, you can calculate the alcohol content of a drink with the following formula:

\n \n
    \n
  • 1 can of beer (330 ml, 12 oz) at 5% (strength) x 0.79 (conversion factor) = 13 grams of alcohol

  • \n
  • 1 glass of wine (140 ml, 5 oz) at 12% x 0.79 = 13.3 grams of alcohol

  • \n
  • 1 shot of liquor (40 ml, 1.5 oz) at 40% x 0.79 = 12.6 grams of alcohol

  • \n
\n \n

Note that a 750ml bottle of wine contains 5 drinks. Therefore 2 drinks a day is less than half a bottle of wine a day.

\n \n

\"enter

\n \n

Recommended Alcohol Guidelines - Moderate (Social) Drinking Plan

\n
\n\n

Now for the question of weight gain! Which drinks contain more calories and thus can make it more readily possible to get one fatter more quickly. The amount of carbohydrates must also be taken into account.

\n\n
\n

Alcohol can either give you a beer belly or help you uncover your abs. After all, while one Archives of Internal Medicine study shows that people who put back one or two drinks a day are less likely to gain weight, research in The American Journal of Clinical Nutrition shows that men consume an extra 433 calories on days they have just a couple of drinks.

\n \n

While lowered inhibitions and drink-fueled munchies have something to do with it, 61 percent of the caloric increase comes from the alcohol itself. So, if you're trying to lose weight while still enjoying the occasional drink, you'd better be wise about which drinks you choose. Here are the best and worst booze you can order.

\n \n

The Best Wine

\n \n

Red or white, you can expect to consume roughly 100 to 120 calories per glass. (That's assuming, however, that you're drinking a standardized 5-ounce glass. Research from Iowa State and Cornell shows that people tend to over-pour by 12 percent.)

\n \n

However, there are some considerations to make when picking grapes: White wine typically contains fewer carbohydrates than does red wine, which makes a small difference in terms of calories, says Caroline Cederquist, M.D., author of The MD Factor and creator of bistroMD. Meanwhile, red wine is richer in antioxidants, and a 2014 study in The Journal of Nutritional Biochemistry, red wine's ellargic acids delay the growth of fat cells while slowing the development of new ones.

\n \n

Vermouth

\n \n

“A fortified wine with higher alcohol content and infused spices and herbs, vermouth is a calorie saver if you have it by itself—as it's commonly served in Europe,\" says Georgie Fear, R.D., author ofLean Habits for Lifelong Weight Loss. A 1.5-ounce serving contains a mere 64 calories, and typically contains about 15 to 18 percent alcohol, she says. Plus, research out of Budapest shows that it's jam-packed with polyphenol compounds, which may promote healthy weight loss.

\n \n

Still, remember that if you mix it into a Manhattan or martini, you're probably going to be consuming far more calories and sugar, Fear says.

\n \n

Straight Liquor

\n \n

When it comes to getting the most alcohol for the fewest calories, shots and straight booze on the rocks are the way to go. \"There isn't much of a difference between 80-proof hard liquors,\" Cederquist says. \"They all have around the same amount of calories and carbohydrates.\" And as calories increase along with alcohol content, the difference isn't huge. For instance, a shot of 86-proof whiskey contains 105 calories and a shot of 80-proof vodka contains 97.

\n \n

However, you also need to keep in mind that the sweeter the liquor, the more calories it typically contains, she says. \"If you're looking for a lower calorie alternative, avoid the flavored vodkas and spiced rums and go for the original or 'plain' option offered,\" she says. \"If you are looking for a flavor boost, try low-calorie mixers like a flavored seltzer or fresh squeezed lemon or lime. This will provide the taste without the calories.\"

\n \n

Light Beers

\n \n

With fewer calories and carbs, these are the best brewskis for weight loss, Cederquist says. Many light beers contain 90 to 100 calories per 12 ounces, while extra-light beers pack about 55 to 65.

\n \n

However, just don't use that as an excuse to have more beers than you typically would, or you'll undo all benefits. Hey, they generally pack less alcohol, right? Well, yeah, but they actually tend to have a higher percentage of their calories coming from alcohol compared to standard brews. Budweiser Select 55 for example derives 88.2 percent of its calories from alcohol, compared to Bud Light at 74.1 percent, and regular Budweiser at 66.9 percent calories, Fear says.

\n \n

The Worst

\n \n

Sugar-Packed Cocktails

\n \n

\"Margaritas and Long Island Iced Teas can set you back more calories than a large order of McDonald's French Fries,\" Fear says. Even worse, calories from sugar-laden drinks come as a sneak attack. When you drink a marg, your body is so overwhelmed with the alcohol content that your body doesn't properly metabolize the sugar. Instead, it stores the sweet stuff as fat.

\n \n

There is never a good excuse to drink these and other sugar-filled cocktails especially if you are trying to lose weight or not develop diabetes, she says. Now, if you've got a skilled mixologist behind your bar, you're probably calorically safe ordering a cocktail. After all, he'd never serve up one of these artless offenses.

\n \n

High-Alcohol Craft Beers

\n \n

\"The last five years have seen an explosion of craft breweries creating high-alcohol varieties, which pack more calories per bottle than you may realize,\" Fear says. Remember, more alcohol means more calories. Every gram of the good stuff contains seven calories.

\n \n

For instance, Flying Dog Horn Dog, which contains 10.2 percent alcohol by volume, also contains 314 calories per bottle, and Dogfish Head 120 Minute IPA boasts 18 percent alcohol by volume, but also packs 450 calories into each bottle. That's a meal in a glass. Unfortunately, though, all that alcohol can wind up making you hungrier.

\n \n

The Best and Worst Booze to Drink if You Want to Lose Weight

\n
\n\n

If one deals with a gluten sensitivity, the only options is to avoid drinks with no gluten in them.

\n\n
    \n
  • Wine is gluten free.
  • \n
  • Sake is gluten free.
  • \n
  • Distilled drinks are gluten free.
  • \n
  • Most beers are not gluten free, however some are. This goes for some ciders as well.
  • \n
\n\n

This article explains it quite nicely: Gluten Free Beer, Alcohol and Wine

\n\n

The end result is that all forms of drinking alcohol must be done in moderation. There is no one drink that is less hazardous to one’s health. Just keep it to one or two drinks a day.

\n\n

If weight loss is on your mind, I would recommend a shot or two of straight (neat) liquor(s) or a light beer. Just because it is a light beer that should not be a license to drink as much as one wants, since moderation is always the key factor here.

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-01-12T16:50:31.557", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7941"}} +{ "Id": "7941", "PostTypeId": "2", "ParentId": "7933", "CreationDate": "2020-01-14T19:04:24.273", "Score": "1", "Body": "

Another perspective. \nAlcoholic drinks contain ethanol and methanol\nEthanol is the alcohol we want because it has the intoxicating effect we want without the detrimental effects of methanol that causes hangovers and blindness.\nCheaper drinks contain more bad and less good.\nParticulates and dissolved solids also cause hangovers. \nSo the more expensive and clearer the liquid the healthier it is. Providing the amount drunk is equivalent. Flushing with a pint or two of water before bed also mitigates the damage.\nIn conclusion vodka in the same alcohol concentration as the others would be the least harmful. Ie vodka watered down to the same percentage alcohol as the beer would do less harm.

\n", "OwnerUserId": "10012", "LastEditorUserId": "10012", "LastEditDate": "2020-05-30T18:13:08.140", "LastActivityDate": "2020-05-30T18:13:08.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7942"}} +{ "Id": "7942", "PostTypeId": "1", "AcceptedAnswerId": "7953", "CreationDate": "2020-01-16T18:49:49.700", "Score": "2", "ViewCount": "259", "Body": "

Khvanchkara is a red wine of Aleksandrouli, Mujuretuli grapes from a region with the same name in Georgia.

\n\n

As being mentioned in Wikipedia:

\n\n
\n

Khvanchkara is a high-end, naturally semi-sweet red wine made from the Alexandria & Mudzhuretuli grape varieties cultivated in the Khvanchkara vineyards in Racha, Western Georgia. The wine has a strong, distinctive bouquet and a well-balanced tannin profile with flavors of raspberry. It has a dark ruby color. Khvanchkara wine is one of the most popular Georgian semi-sweet wines. It contains 10.5-12.0% alcohol, 3-5% sugar and has 5.0-7.0% titrated acidity. The wine has been made since 1907. It was awarded 2 gold and 4 silver medals at various international exhibitions.

\n
\n\n

This wine tastes so good, however I could not find it in Europe. I live in the Netherlands (and Italy). Does anyone know which other wines I can find in Europe would taste similar to Khvanchkara?

\n", "OwnerUserId": "10036", "LastActivityDate": "2020-01-28T17:33:58.697", "Title": "Which other wines taste similar to Georgian Khvanchkara?", "Tags": "wine red-wine europe", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7943"}} +{ "Id": "7943", "PostTypeId": "2", "ParentId": "6402", "CreationDate": "2020-01-18T21:34:51.487", "Score": "2", "Body": "

You CAN have a true absinthe that is well over 70 proof that has been properly steeped with herbs and then distilled. It is all about the distillation technique. If you use a double boil or oil bath method of distillation, you will get an extremely high proof blanched liquor. Other factors are the batch size, initial water content and type of still used. If you use a laboratory grade distillation set and work in 500-1000ml batches you can achieve a 180 proof Absinthe in the end result.

\n\n

ALL distillate liquors are clear after distillation. EVERY. SINGLE. ONE.\nWhiskey gets its brown color from the burnt wood on the inside of a whiskey barrel. Same with scotch, etc. Real distilled Absinthe is made green when green herbs containing chloryphyl are steeped in the clear liquor and then subsequently filtered out AFTER the distillation process is completed.

\n\n

You can tell if your absinthe is artificially colored by setting a small glass in the sun. If it has been colored by steeped herbs, it will turn brown as the sun's UV rays break down the chloryphyl. If however, it has been artificially colored, it will stay green. If it is sold in a clear bottle, it is most likely colored with artificial coloring, as tinted glass will block the UV and preserve the chloryphyl, whereas a clear glass container will not.

\n\n

The BEST way to determine if your absinthe has been properly made with the right herbs and then distilled is to add cold water to the drink. If the absinthe goes milky, called opalescing, it has been made correctly with wormwood and distilled. If not, artificial coloring and flavorings, or a steep with herbs and simple filtration without distillation, has most likely been used to produce the end product.

\n", "OwnerUserId": "10041", "LastEditorUserId": "10041", "LastEditDate": "2020-01-18T21:41:21.793", "LastActivityDate": "2020-01-18T21:41:21.793", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7944"}} +{ "Id": "7944", "PostTypeId": "1", "AcceptedAnswerId": "7945", "CreationDate": "2020-01-20T01:14:35.107", "Score": "3", "ViewCount": "116", "Body": "

I am looking for the brand of light rum that has the stongest rum flavor. I emphasize light because what I am looking for is distinctive rum flavor, not the flavor of the barrel in which it was aged. I normally use Bacardi light, but to me, its flavors are too weak. Any recommendations?

\n", "OwnerUserId": "10043", "LastEditorUserId": "9887", "LastEditDate": "2020-01-24T16:16:59.710", "LastActivityDate": "2020-01-25T06:54:37.120", "Title": "Rum brand with the strongest rum flavor?", "Tags": "flavor rum", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7945"}} +{ "Id": "7945", "PostTypeId": "2", "ParentId": "7944", "CreationDate": "2020-01-20T12:32:58.863", "Score": "4", "Body": "

I would recommend \"Appleton White\" from Jamaica. It's a blend of column still and pot still rum, and pot still destillation tends to produce a more flavourful spirit.

\n\n

You might also want to look into rhum agricole. it's not destilled from molasses but from sugarcane juice. it's a different flavour profile, but for me, it's more intense.

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-01-20T12:32:58.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7946"}} +{ "Id": "7946", "PostTypeId": "1", "AcceptedAnswerId": "7947", "CreationDate": "2020-01-21T10:40:41.177", "Score": "1", "ViewCount": "91", "Body": "

After treading into the world of non-alcoholic beer, and moving away from alcohol altogether I've discovered that there are distinct disadvantages from drinking beer that still has a 0.5% ABV - most non-alcoholic beers.

\n\n

And so Budweiser Prohibition serves as an interesting beer as it's 100% alcohol free. All of the taste of a standard, generic beer, with zero buzz or hangover.

\n\n

My question is - despite the lack of alcohol, are there any health issues associated with drinking Budweiser Prohibition, outside of the calories it provides?

\n", "OwnerUserId": "938", "LastActivityDate": "2020-01-23T21:00:49.680", "Title": "Health Issues Associated with Budweiser Prohibition?", "Tags": "health non-alcoholic", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7947"}} +{ "Id": "7947", "PostTypeId": "2", "ParentId": "7946", "CreationDate": "2020-01-23T21:00:49.680", "Score": "1", "Body": "

Yes, they are full of sugar and calories regardless of the alcohol. Treat them like soft drinks if you are counting calories.

\n", "OwnerUserId": "6111", "LastActivityDate": "2020-01-23T21:00:49.680", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7949"}} +{ "Id": "7949", "PostTypeId": "1", "CreationDate": "2020-01-24T18:27:11.770", "Score": "2", "ViewCount": "113", "Body": "

I read an article saying alcohol improves blood flow but it does not mention which kind.

\n\n

What do you think about this?

\n", "OwnerUserId": "10050", "LastEditorUserId": "9887", "LastEditDate": "2020-01-29T10:36:56.150", "LastActivityDate": "2020-02-14T09:06:49.637", "Title": "Alcohol to improve blood flow?", "Tags": "health alcohol", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7950"}} +{ "Id": "7950", "PostTypeId": "2", "ParentId": "7944", "CreationDate": "2020-01-25T06:54:37.120", "Score": "3", "Body": "

My choice for a light rum with a strong flavor is Leblon. It is made from fresh cut sugarcane unlike Bacardi (which is made from molasses), and is only aged for 6 months so you don't get any notes from the barrel.

\n\n

But more importantly, it's reasonably priced (~$23 for 750ml) and widely available throughout the US. You'll often see it at bars for those not wanting the well rum or Bacardi.

\n", "OwnerUserId": "8172", "LastActivityDate": "2020-01-25T06:54:37.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7951"}} +{ "Id": "7951", "PostTypeId": "2", "ParentId": "6752", "CreationDate": "2020-01-27T00:00:50.000", "Score": "1", "Body": "

Putting Salt in Beer before consumption leads to formation of bubbles and foam which we see while pouring fresh beer out of the can or bottle.

\n", "OwnerUserId": "10054", "LastActivityDate": "2020-01-27T00:00:50.000", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7952"}} +{ "Id": "7952", "PostTypeId": "2", "ParentId": "7949", "CreationDate": "2020-01-28T16:15:30.383", "Score": "3", "Body": "

Alcohol relaxes your blood vessels as it is a vasodilator.

\n\n

That means it can improve blood flow - although the negatives far outweigh the positives and most people aren't required to take vasodilators and can be harmed by them.

\n\n

This is also where the old wives tale about drinking whiskey if you're cold comes from (think St Bernards). It can save your fingers from frost bite, but your body is actually restricting the blood flow for good reason - you may loose fingers but you have a better chance of survival - so it's better to only have that whiskey once you're back in the warmth. Drinking will relax the capillaries in your fingers and toes, allowing the warm blood from your centre-of-mass to flow. This actually means the overall temp of your body will cool down.

\n\n

As to which kind is \"best\" it's simply the drink with the highest alcohol content. Hence traditionally something such as Whiskey or Brandy. For added effect though, you could consider drinks with a high concentration of other naturally occurring vasodilators such as these (from first link):

\n\n
    \n
  • Coenzyme Q10
  • \n
  • L-arginine
  • \n
  • Magnesium
  • \n
  • Cocoa
  • \n
  • Garlic
  • \n
  • Niacin (nicotinic acid or vitamin B3)
  • \n
  • mint (which contains levomenthol)
  • \n
\n", "OwnerUserId": "8672", "LastEditorUserId": "10012", "LastEditDate": "2020-02-14T09:06:49.637", "LastActivityDate": "2020-02-14T09:06:49.637", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7953"}} +{ "Id": "7953", "PostTypeId": "2", "ParentId": "7942", "CreationDate": "2020-01-28T17:33:58.697", "Score": "2", "Body": "

Amarone and Valpoliccella Ripasso from Italy are your safest bet. Any wine that’s made with dried grapes (appassimento) will hold some sweetness without moving into the category of dessert wine or fortified (port). These wines should be readily available through the world and may other countries are producing appassimento styles, one I am familiar with is Mayu Carmenere Appassiment from Chile which is fantastic!\nYou should be able to find any of these styles in most supermarkets or wine retailers. Unfamiliar with the Netherlands but it shouldn’t be too hard to find them and if you are spending time in Italy it’s hard to imagine you haven’t came across Amarone before?

\n", "OwnerUserId": "8440", "LastActivityDate": "2020-01-28T17:33:58.697", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7954"}} +{ "Id": "7954", "PostTypeId": "2", "ParentId": "109", "CreationDate": "2020-01-30T15:59:05.243", "Score": "1", "Body": "

Use it as an opportunity to try making ice beer.

\n\n
\n

Ice beer was developed by brewing a strong, dark lager, then freezing the beer and removing some of the ice. This concentrates the aroma and taste of the beer, and also raises the alcoholic strength of the finished beer. This produces a beer with 12 to 15 per cent alcohol. In North America, water would be added to lower the alcohol level.

\n
\n\n

Basically it can improve the flavour - I have tried \"proper\" ice beer and it's good!

\n\n

I've heard of a method where they essentially defrost it upside down over a container and you drink what melts (since ethanol melts at lower temps than water).

\n\n

For obvious reasons (i.e. you're unsealing the container), the beer won't be as fizzy.

\n", "OwnerUserId": "8672", "LastActivityDate": "2020-01-30T15:59:05.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7955"}} +{ "Id": "7955", "PostTypeId": "1", "CreationDate": "2020-01-31T21:51:46.527", "Score": "2", "ViewCount": "12020", "Body": "

This is an odd question, but one that I have wondered about for a long time.

\n\n

When I drink alcohol there is a magic sweet spot where my nose gets very stuffy feeling and I sound stuffy while talking. Drinking less and drinking more result in a clear nose and no stuffiness. It is clearly inflammation as blowing my nose results in no production and nasal spray such as Afrin alleviates it.

\n\n

Here is what I have found:

\n\n
    \n
  • Beer: results in a stuffy nose after 1.5 - 2 beers. It clears after 3 - 4, like clockwork
  • \n
  • Wine: I don't drink it often but have noticed stuffiness on par with beer when I drink white wine. I have not experimented enough with red wine, but have not observed stuffiness after 3 - 4 glasses.
  • \n
  • Liquor: For the most part, stuffiness does not occur with liquor. The occasions it does, it takes more (3 - 4 drinks) to get stuffy and clears relatively quickly
  • \n
\n\n

NOTE: I have not observed stuffiness from other non-alcoholic drinks and I do not have any known food allergies.

\n\n

What is it about alcoholic drinks that could cause this reaction, and why would liquors/red wine be less likely to cause it than beer and white wine?

\n", "OwnerUserId": "10068", "LastActivityDate": "2020-09-25T07:43:01.497", "Title": "What causes my stuffy nose after drinking alcohol?", "Tags": "health drinking", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7956"}} +{ "Id": "7956", "PostTypeId": "2", "ParentId": "7955", "CreationDate": "2020-02-02T13:56:08.200", "Score": "7", "Body": "

I'll keep it simple. All three of those alcoholic drinks have something different in them. You said wine and booze don't do it very much yet beer makes you stuffy. Hops are very well know to cause stuffiness and allergic reaction. It could be more than hops, it could be something to do with malt. You might try less hopped beers so a Helles Lager vs an IPA and see if one makes you more or less stuffy. Most people have an allergic reaction to the histamines in wine, which causes flushing of the face and neck and nasal congestion.

\n\n

You could take an anti-histamine (Zyrtec or Benadryl) before you drink and see if that helps.

\n", "OwnerUserId": "6111", "LastActivityDate": "2020-02-02T13:56:08.200", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7957"}} +{ "Id": "7957", "PostTypeId": "1", "CreationDate": "2020-02-05T17:49:35.813", "Score": "1", "ViewCount": "42", "Body": "

I'm working with a physical copy of Stevenson Reeves Practical Alcohol Tables Vol 2. I'm doing a lot of calculations that involve temperature/density changes. I am looking for a legal/paid for/online version of the tables that I can import into excel. Does anyone have a table that might help?

\n", "OwnerUserId": "10075", "LastEditorUserId": "5064", "LastEditDate": "2020-02-09T19:23:12.200", "LastActivityDate": "2020-02-09T19:23:12.200", "Title": "Table of alcohol densities vs temperature", "Tags": "temperature alcohol", "AnswerCount": "0", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7961"}} +{ "Id": "7961", "PostTypeId": "1", "AcceptedAnswerId": "7962", "CreationDate": "2020-02-09T17:32:45.767", "Score": "2", "ViewCount": "56", "Body": "

Can anyone please name this type of cognac?

\n\n

\"enter

\n\n

I drank this once and then found this old photo. I believe it to be Armenian.

\n", "OwnerUserId": "10083", "LastEditorUserId": "5064", "LastEditDate": "2020-02-11T23:28:28.983", "LastActivityDate": "2020-02-11T23:28:28.983", "Title": "What's name of the cognac in the below Armenian photo?", "Tags": "spirits cognac", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7962"}} +{ "Id": "7962", "PostTypeId": "2", "ParentId": "7961", "CreationDate": "2020-02-09T22:12:51.567", "Score": "0", "Body": "

I found it, its name is Proshyan.

\n", "OwnerUserId": "10083", "LastActivityDate": "2020-02-09T22:12:51.567", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7963"}} +{ "Id": "7963", "PostTypeId": "2", "ParentId": "7937", "CreationDate": "2020-02-10T15:47:48.710", "Score": "2", "Body": "

I'm sure the \"Ancients\" drank grape juice. It was probably a delicious treat when it was in season when the grapes were ripe in the Fall. I love drinking the juice from my wine grapes, it's very good! But, without filtration or sulfites, there was no way to store grape juice without spontaneous fermentation, even after boiling it. Eventually something would turn it into wine or vinegar. So, you always ended up with wine whether they wanted it or not. So, yes, they probably drank grape juice, but only for a short period after harvest time.

\n", "OwnerUserId": "6111", "LastActivityDate": "2020-02-10T15:47:48.710", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7964"}} +{ "Id": "7964", "PostTypeId": "2", "ParentId": "7961", "CreationDate": "2020-02-11T23:27:36.683", "Score": "2", "Body": "

It is without doubt the Armenian \"Proshyan\" VSOP cognac. It is not the \"Proshyan\" XO or the \"Proshyan\" VS. All three are from Armenia.

\n\n

\""Proshyan"

\n\n

\"Proshyan\" VSOP

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-02-11T23:27:36.683", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7965"}} +{ "Id": "7965", "PostTypeId": "1", "AcceptedAnswerId": "7966", "CreationDate": "2020-02-12T01:17:33.390", "Score": "0", "ViewCount": "46", "Body": "

I am trying to get into different IPA's and just wanting some suggestions. I have been drinking Surly's IPAs, but I want to branch out and try some others.

\n", "OwnerUserId": "10087", "LastActivityDate": "2020-02-13T15:26:19.353", "Title": "What would be good IPA choices in the midwest area?", "Tags": "ipa imperial-ipa", "AnswerCount": "2", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7966"}} +{ "Id": "7966", "PostTypeId": "2", "ParentId": "7965", "CreationDate": "2020-02-12T15:00:11.540", "Score": "0", "Body": "

IPAs are actually a pretty broad range of beers themselves. If you want to amp up the bitter side of things, look for west coast IPAs. Some nationally available ones would be things from Stone, Sierra Nevada, or even Sam Adams Rebel IPA, among many many more.

\n\n

East Coast/NE IPAs tend to not be as bitter, have more sweetness and highlight some more of what the hops and other ingredients bring. Sam Adams has a NE IPA as well, though I mostly know more regional brewers for this stuff.

\n\n

Of course, categories often fall apart when you try to map the real world into them, so there are a lot of IPAs that won't fit cleanly into either, and some of these are really well known. Heady Topper helped really get the IPA scene roaring in NE, but wouldn't really fit a lot of people's expectations for a NE IPA now. Nor would Lunch or Dinner, though all three are delicious. They're just markedly different from, say, Congress Street from Trillium or Julius from Treehouse.

\n\n

So, the real way to get into IPAs will be to look for local brewers who are making things and go try them. There's a ton of variety within the style, so you'll just have to try things to find what you like.

\n\n

The national brands can give you a sense of what to expect from the different variations, but that will just help you point in the right direction.

\n\n

I don't know how widely distributed things in the midwest are, but Listerman's Brewering in Ohio makes some decent stuff, like Hank the Dumpster Kitty. M-43 from Old Nation Brewing in Michigan is not too bad either. I'm unfortunately not super familiar with that area though.

\n", "OwnerUserId": "6878", "LastActivityDate": "2020-02-12T15:00:11.540", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7967"}} +{ "Id": "7967", "PostTypeId": "1", "CreationDate": "2020-02-12T20:55:15.370", "Score": "2", "ViewCount": "93", "Body": "

As fully asked in the question are there any alcohol recipes that contain mushrooms?

\n", "OwnerUserId": "10012", "LastEditorUserId": "5064", "LastEditDate": "2020-02-13T00:42:05.497", "LastActivityDate": "2020-02-13T00:42:05.497", "Title": "As yeast is a fungus, are there any alcohol recipes that contain mushrooms?", "Tags": "brewing ingredients craft-beers mushrooms recipes", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7968"}} +{ "Id": "7968", "PostTypeId": "2", "ParentId": "7967", "CreationDate": "2020-02-13T00:40:46.357", "Score": "2", "Body": "

As yeast is a fungus, are there any alcohol recipes that contain mushrooms?

\n\n

The short answer is yes, but you still need the yeast to start the fermentation.

\n\n
\n

Mushroom-Infused Beer Recipes

\n \n

Below you’ll find some basic beer recipes that incorporate mushrooms. Each recipe is sized to make 5 gallons of beer. However, given the broad range of ingredients available to homebrewers, you don’t have to limit yourself to the ingredients you see here. You can modify any existing recipe. Just be sure to formulate your beer to balance sweetness and bitterness. And consider making it a specialty regional beverage that incorporates local and organically grown ingredients. Have fun making your first mushroom beer, and “hopfully” many more!

\n \n

Turkey Tail Ale

\n \n

A golden pale ale with turkey tail (Trametes versicolor)

\n \n
    \n
  • 6 pounds extra-light malted grain

  • \n
  • 
4 ounces fresh or 2 ounces dried turkey tail mushrooms

  • \n
  • 1 ounce hops

  • \n
  • Ale yeast

  • \n
\n \n

Iceman Amber

\n \n

An amber ale with birch polypore (Piptoporus betulinus) and amadou (Fomes fomentarius)

\n \n
    \n
  • 6 pounds extra-light malted grain
  • \n
  • 1 pound amber malt
  • \n
  • 
12 ounces carrot juice (preferably organic)
  • \n
  • 4 ounces fresh or 2 ounces dried birch polypore mushrooms
  • \n
  • 4 ounces fresh or 2 ounces dried amadou mushrooms
  • \n
  • 1 ounce hops
  • \n
  • Ale yeast
  • \n
\n \n

Reishi Red

\n \n

A natural red lager with reishi (Ganoderma spp.)

\n \n
    \n
  • 6 pounds extra light malted grain

  • \n
  • 1 pound amber malt

  • \n
  • 
12 ounces red beet juice (preferably organic)

  • \n
  • 
4 ounces fresh or 2 ounces dried reishi mushrooms

  • \n
  • 1 ounce hops

  • \n
  • Ale yeast

  • \n
\n \n

Agarikon Stout

\n \n

A dark, earthy brew with agarikon (Laricifomes officinalis, Fomitopsis officinalis)

\n \n
    \n
  • 1 pound chocolate malted grain

  • \n
  • 1 pound crystal malted grain

  • \n
  • 5 pounds pale malted grain

  • \n
  • 2 ounces liquid agarikon mushroom extract (from colonized grain)

  • \n
  • 1 ounce hops

  • \n
  • Trappist yeast

  • \n
\n \n

Note: Agarikon is endangered and should not be harvested in the wild, but it is a powerful medicinal mushroom worthy of a stout beer. Since this mushroom cannot be cultivated in large quantities and the mycelium is slow to grow, the best option for this recipe is to allow myceliated cakes to supercolonize over the course of several months, until they are thick with biomass, and then prepare an extract from them. - Brew Outside the Box: Making Mushroom-Infused Beer

\n
\n\n

Technically speaking, working with mushrooms doesn’t pose any major technical hurdles during the brewing process, making it an easy ingredient to play around with, although approaches vary by brewery. Some infuse whole dried mushrooms into the wort (the water extracted during the mashing process), transforming the hot liquid into a sort of mushroom broth, which is then fermented and bottled. Others dry mushrooms and grind them into a powder, which is then made into a tea and added to the beer after fermentation is complete.

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-02-13T00:40:46.357", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7969"}} +{ "Id": "7969", "PostTypeId": "1", "AcceptedAnswerId": "7971", "CreationDate": "2020-02-13T01:26:14.230", "Score": "2", "ViewCount": "3174", "Body": "

I live in Minnesota and I will see people put olives in their beer and I have never understood why.

\n", "OwnerUserId": "10087", "LastEditorUserId": "5064", "LastEditDate": "2020-02-15T12:09:48.430", "LastActivityDate": "2020-06-16T00:26:01.303", "Title": "Why do some people put olives in their beer?", "Tags": "taste pairing", "AnswerCount": "4", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7970"}} +{ "Id": "7970", "PostTypeId": "2", "ParentId": "7965", "CreationDate": "2020-02-13T15:26:19.353", "Score": "0", "Body": "

In my opinion IPAs are best consumed fresh. This suggests looking for local breweries where you can get beers perhaps only a few weeks after bottling or canning. Beer Advocate is a decent source of beer reviews. You don't mention where you live, but since you can get Surly, here is the rankings for Minnesota beers.

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-02-13T15:26:19.353", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7971"}} +{ "Id": "7971", "PostTypeId": "2", "ParentId": "7969", "CreationDate": "2020-02-14T23:42:24.140", "Score": "5", "Body": "

Why do some people put olives in their beer?

\n\n

Apart from the obvious reason, because they can, they seems to be couple of reasons for this.

\n\n
    \n
  • Some individuals actually enjoy doing it.
  • \n
  • Olives are paired quite nicely with some varieties of beer.
  • \n
  • For some it is a sort of tradition: beertini.
  • \n
  • It is part of barroom culture in the Midwest.
  • \n
\n\n
\n

Olives still have that much needed salty taste which keeps us thirsty and makes our beer that much more appreciated, and with so many varieties of olives available they make pairing with some great craft beers a perfect choice! And with olives being used in cocktails for decades why wouldn’t they work with beer? The key is finding the right match.

\n \n

Through some experimenting with various olives and types of beer, I came to one conclusion, and that was to not go any darker than an amber ale. Beers like stouts and deep IPA’s when tasted with olives felt a little bitter. The hops seemed to be competing with the olive and maybe the brine but anything lighter than an amber ale was really tasty!

\n \n

Here’s how some of my favorite Delallo olives ended up being a good pairing with five varieties of beer.

\n \n

Calamata Olives + Belgian Ale

\n \n

These are popular olives usually from Greece with a smooth skin and chewy bite to them. They’re definitely on the milder side for flavor and went really well alongside a light and crisp Belgian ale. Belgian beers are know to include spices in the fermentation process which also goes well with the olives.

\n \n

Piccante Green Pitted Olives + Hefeweizen

\n \n

Piccante means spicy and these Sevillano olives are combined with red pepper flakes. Although the olives aren’t too spicy I needed a beer that would tame the heat but still let the olive taste come through and Hefeweizen does that perfectly. The beer is crisp and should be served well chilled. This is the perfect snack pairing for a warm summers day!

\n \n

Castelvetrano Olives + Saison

\n \n

These Sicilian green olives are buttery and smooth with a soft bite and a mellow flavor. Pairing them with a light and fruity Saison made perfect sense. Saison’s are not that common amongst the rest of the belgian wheat beers but they have a distinctive crisp and fresh summery taste, making them a great pairing choice with the Castelvetrano’s.

\n \n

Olives Jubilee Mix + Red Amber Ale

\n \n

Because this mix consists of Kalamata, Picholine and green olives marinaded in savory spices, the choice for beer had to be a bold one but not as strong as a dark stout. Tasting these spiced olives with a red amber ale seemed to cut the happiness of the beer and elevate the spices in the olives. This pairing was probably the boldest of all of the combinations but still really tasty.

\n \n

Aglio Green Pitted Olives + Pilsner Lager

\n \n

Italian green olives with a texture much like the Castelvetrano’s but covered in chopped garlic pieces. The garlic isn’t overpowering and pairs well with a light Pilsner Lager. Some people might say this kind of beer isn’t very exciting. It’s really light but it lets the garlic shine through from the Aglio Olives. This is one for quick picnic on a hot summers day. Throw down a blanket and enjoy! - Olive and Beer Pairing Guide

\n
\n\n

Putting an olive in a glass of beer has become known as a beertini.

\n\n
\n

At first glance, the “Beertini” is the ultimate dad joke—something that a sitcom father would facetiously claim as his favorite drink after overhearing someone order an Appletini. His flannel-shirt-wearing buddies would all chuckle and eye-roll as they clinked their mugs together, happy with their classic, no-fuss beer selection.

\n \n

In certain pockets of the Midwest, though, the combination of beer and olives known as the Beertini (also called the Minnesota, North Dakota or Wisconsin Martini, depending on where you’re located) is not only very real, but is deeply engrained in barroom culture.

\n \n

In its most elemental form, the Beertini is a drink and bar snack in one. The way a drinker preps his or her Beertini relies both on what’s available and on individual taste: a canned beer or a draft beer can be used, as can a stein or a lager glass, and the olive count can range from just a few to a whole bowl if the spirit moves you. Beertini-crafting is a trial and error process.

\n \n

What the drink lacks in a colorful origin story (no one quite knows—or, frankly, cares—where the first Beertini came to be), it makes up for in simple best practices. Craft beer varieties need not apply and the olives can only be green, the kind most often found swimming in their own juices on dusty bar tops. Want to get wild and use a pimento or blue cheese-stuffed green olive? Not a problem. Try to drop a black olive in your beer, though, and watch the room raise a collective eyebrow.

\n \n

The olives—and, often, a splash of olive juice—brighten up the beer, spotlighting how the humblest of ingredients can become the perfect odd couple. They also offer a charming lesson in barroom chemistry. When plunked into a glass of beer, the olives neither settle at the bottom nor lollygag around at the top of the glass. Instead, they bob up and down, sinking and rising like tiny, edible submarines. It’s downright hypnotic.

\n \n

Travel a little further down into South Dakota, and you’ll encounter a variation unceremoniously dubbed “Red Beer” (sometimes known unappetizingly as a “Bloody Beer”), which calls on both olives and tomato juice to brighten up a standard lager. The addition of tomato juice draws parallels to the Michelada—minus some of the spice, of course. But no one is quite sure if the two share a common ancestor, or if it is, perhaps, a case of multiple independent discoveries in the same vein as calculus or the theory of natural selection.

\n \n

There also seem to be an almost infinite number of permutations and combinations for the way Red Beer can be crafted. Several people suggest swapping out the tomato for orange juice if it’s before noon to create a “poor man’s Mimosa,” while others claim the more olives you can plop into the glass, the better. A few even prefer the additional crunch of a pickle.

\n \n

Weber estimates you can find Red Beer (or a Beertini) in just about every single neighborhood bar across South Dakota, but seems less optimistic about the drink’s ultimate future. Craft breweries have been frothing up all over the Midwest for years now, supported largely by a boom of millennial enthusiasts, while Beertinis and Red Beer are the barroom hacks of a former generation.

\n \n

But it’s hard to imagine olive-speckled beer steins disappearing anytime soon. The practice is, after all, a true testament to the creativity of Midwestern drinkers and their spirit of brassy, briny industriousness. - How the Beertini Became a Midwestern Staple

\n
\n\n

Some bars in Spain serve olives as a bar snack, so it seems beer and olives are a little more commonplace than simply just the Midwest!

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-02-14T23:42:24.140", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7972"}} +{ "Id": "7972", "PostTypeId": "2", "ParentId": "7111", "CreationDate": "2020-02-15T01:11:46.873", "Score": "1", "Body": "

Can all sugars be used for brewing?

\n\n

I would venture to say yes for the most part. That is all sugars expect maltodextrin and lactose.

\n\n
\n

What is Sugar?

\n \n

But before I can answer the questions above, I do need to lay some groundwork and describe the different building blocks. It won’t take long and once you understand what everything is made of, it becomes a lot easier to understand the answers. All sugars are carbohydrates, molecules that contain both carbon (carbo-) and hydrogen (-hydrate) atoms. Carbohydrates have the general formula of CnH2nOn, meaning they have one carbon (C) and one oxygen (O) to every two hydrogens (H2). In sugars, the “n” usually equals 5 or 6. For example, glucose has the formula C6H12O6, meaning it is constructed of six carbon atoms, twelve hydrogen atoms and six oxygen atoms. Incidentally, fructose also has the formula C6H12O6, but the atoms are arranged differently in the molecule.

\n \n

The most common type of sugar is called glucose (aka. dextrose, blood sugar, corn sugar). Glucose is a monosaccharide, hexose-type sugar, meaning that it is a single molecule consisting of six carbon atoms. Other hexoses relevant to brewing are fructose and galactose. Elementally, these monosaccharides are all the same, but they are isomers of each other i.e., their chemical structure and arrangement gives them different properties. For instance, an isomer of glucose called fructose (also known as fruit sugar), tastes sweeter than glucose.

\n \n

Let’s examine the sugars found in a typical beer wort made from 2-row barley base malt. The main constituent of wort is maltose, which typically comprises around 50% of the total carbohydrates in wort. This is followed by maltotriose, which comprises around 18% of the total carbohydrates. The remainder of the wort is made up of glucose (10%), sucrose (8%), fructose (2%) and finally assorted dextrins, which together account for 12% of the wort carbohydrates.

\n \n

Maltose is a glucose disaccharide, which means that it is made up of two glucose molecules. Sucrose is another disaccharide and consists of one glucose and one fructose. Sucrose is a naturally occurring plant sugar, and is used as table sugar worldwide. Sources include sugar cane, beets, maple sap and nectar. Maltotriose is a trisaccharide consisting of three glucose molecules. Dextrins (aka. oligosaccharides) are larger carbohydrates consisting of more than three monosaccharide groups. Monosaccharides are sweeter tasting than polysaccharides. In descending order of sweetness: fructose is sweeter than sucrose, which is sweeter than glucose, which is sweeter than maltose, which is sweeter than maltotriose.

\n \n

Fermentation

\n \n

Yeast are apparently very methodical little organisms. Even though sucrose usually comprises only a small percentage of the wort, studies have shown that most brewers yeast strains seem to work on it first — breaking it down into its glucose and fructose components. Once the sucrose has been broken down, the yeast cells consume the glucose first, followed by fructose, maltose and finally maltotriose. Some yeast strains behave differently; consuming maltose at the same time as the monosaccharides, but this seems to be the exception.

\n \n

Most yeast strains are glucophilic, utilizing most of the glucose in the wort before consuming the other monosaccharides. They also ferment most of the monosaccharides before fermenting maltose and subsequently maltotriose. In fact, it is known that high levels of glucose and fructose in a wort (e.g. >15–20%) will inhibit the fermentation of maltose. This repressive behavior is probably a common cause of stuck fermentations in worts containing a lot of refined sugars — the yeast have fermented the monosaccharides and then quit, leaving more than half of the total sugars unfermented.

\n \n

Yeast metabolize the different wort sugars in different ways. To consume the disaccharide sucrose, the yeast utilizes an enzyme called invertase, which works outside the cell to hydrolyze the molecule into its components — glucose and fructose. The glucose and fructose molecules are then transported through the cell wall and metabolized inside the cell. Conversely, maltose and maltotriose are transported into the cell first, and then are broken down into glucoses by the enzyme maltase. Even though the enzyme for both sugars is the same, maltose is typically consumed first, indicating that the cell wall transport mechanism for the two sugars is different. Maybe maltotriose is too big to get through the maltose door!

\n \n

The take-home message is that all fermentable sugars are broken down into monosaccharides like glucose before being utilized by the yeast, and that yeast evidently prefer to eat their sugars one course at a time. This has big implications for wort formulation in our pursuit of new recipes and unique styles.

\n \n

\"enter

\n \n

Lots of different sugars can be used in brewing, and now that we know what the yeast want to eat and when, we can make better choices for their use. Which brings us to a good starting point — why would we want to use anything other than the sugars that come naturally form the barley?

\n \n

\"enter

\n \n

Brewing Sugars & How To Use Them

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-02-21T01:06:44.197", "LastActivityDate": "2020-02-21T01:06:44.197", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7973"}} +{ "Id": "7973", "PostTypeId": "1", "AcceptedAnswerId": "7982", "CreationDate": "2020-02-15T04:35:48.037", "Score": "0", "ViewCount": "244", "Body": "

I'm no expert on Rose but it appears that it is not necessary either red or white wine.

\n\n

My question is historically or even now is there any benefit / interesting flavor combinations that are made through mixing various ratios of various types of red and white together?

\n", "OwnerUserId": "10091", "LastActivityDate": "2020-03-27T17:21:34.283", "Title": "Is there any benefit to mixing red and white wine togther?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7974"}} +{ "Id": "7974", "PostTypeId": "1", "AcceptedAnswerId": "7981", "CreationDate": "2020-02-15T12:07:36.380", "Score": "-3", "ViewCount": "79", "Body": "

Does a Sober Scottish man really exists?

\n\n

I recently being crazy about Scottish Culture, accent, land...

\n\n

I noticed that every Scottish man loves his beer more than water is that true?

\n", "OwnerUserId": "10093", "LastEditorUserId": "5064", "LastEditDate": "2020-02-16T16:41:31.503", "LastActivityDate": "2020-02-19T14:44:16.173", "Title": "Does a Sober Scottish man really exists?", "Tags": "drinking craft-beers scotch", "AnswerCount": "1", "CommentCount": "1", "ClosedDate": "2020-02-29T17:46:02.543", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7975"}} +{ "Id": "7975", "PostTypeId": "1", "CreationDate": "2020-02-15T12:46:47.780", "Score": "1", "ViewCount": "107", "Body": "

If you want to get drunk to chill out and have a good time every once in a while, without going too much in the crazy side and doing very embarrassing things (vomiting, etc), then what is the best option for drinking?

\n\n

What is less harmful to one's health?

\n\n

And what gives the best drunk experience?

\n\n

I know it depends on the amount too. But, regardless of that factor, which kinds of beverage are the best suggestions?

\n", "OwnerUserId": "10092", "LastEditorUserId": "5064", "LastEditDate": "2020-02-16T16:35:11.173", "LastActivityDate": "2020-02-29T17:53:09.577", "Title": "Good beverage suggestions to get drunk but not too drunk?", "Tags": "recommendations health drinking drink preparation-for-drinking", "AnswerCount": "3", "CommentCount": "0", "ClosedDate": "2020-03-08T19:01:51.803", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7976"}} +{ "Id": "7976", "PostTypeId": "2", "ParentId": "7975", "CreationDate": "2020-02-16T15:05:18.927", "Score": "2", "Body": "

I'll give you my advice after 30+ years of being an adult and working in the alcohol industry for many years. Here it is: Drink the drink that has the least amount of alcohol you can stand. For me that means light beer when I know I will be at a party or another situation. I had friends of mine that would take Coors light and put it in a pitcher with crushed ice so they could drink more. It could mean putting ice cubes in your white wine. It could mean putting less alcohol in your mixed drinks. One shot instead of two.

\n\n

Another tactic many take is one alcohol drink, one glass of water.

\n\n

Beer is kind of self limiting because it fills you up and limits how much you can drink. Avoid things like red wine, whisky and mixed drinks with a lot of sugar. They will make you the sickest.

\n\n

In the end, you can get drunk on anything and throw up and have a really bad hangover. But from some limited research (Look up Mythbusters Vodka vs Beer episode) that the clearer the alcohol (Vodka, White Wine, Light Beer) the less worse your hangover will be.

\n", "OwnerUserId": "6111", "LastActivityDate": "2020-02-16T15:05:18.927", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7977"}} +{ "Id": "7977", "PostTypeId": "2", "ParentId": "7975", "CreationDate": "2020-02-17T00:06:28.240", "Score": "1", "Body": "

Good beverage suggestions to get drunk but not too drunk?

\n\n

As with anything, it will most likely depend on the individual involved.

\n\n

Be a drinker and not tinker. Skip the beer and go with vodka, if it were myself. That is what I do when it comes to getting hammered! But I do avoid those bizarre flavoured ones. I like my vodka straight or with sofa water (my personal favourite), coke or ginger ale and both the vodka, whether straight or mixed should be refrigerated (personal preference). Cold vodka tastes so much better and hangovers are very mild for me.

\n\n
\n

Beer Drunk

\n \n

Freshman 15, comes from no other then beer. People end up drinking more beer because it isn't as strong as other alcohol but it can get you really [messed] up if you drink an excessive amount. There are many activities that make drinking beer so much fun and encourage drinking. Beer pong, flip cup, slap cup, keg stands etc... If you can't understand what someone is saying, they've most likely drank a 24.

\n \n

Vodka Drunk

\n \n

Yes, you can taste the difference between good and cheap vodka. The [crummy] type of vodka burns your throat like rubbing alcohol, especially when you're taking shots. Expect a loud and fun person that is down to do anything if they're vodka drunk. And please, keep your vodka in the freezer (it tastes so much better.)

\n \n

Wine Drunk

\n \n

One of the reasons people love drinking wine, is because they think they look classy drinking it. Wine is safe and reliable but the spins can hit you out of no where. It has the ability to cheer you up when you are down but it can also drown you in tears. Best part of it all - no one will judge you for having a glass of wine mid day (perhaps a bottle over lunch)

\n \n

Whiskey Drunk

\n \n

Whiskey is a popular choice for dark liquor and sometimes things can get out of hand. People tend to be aggressive and turn into a completely different persona when they consume an excessive amount of whiskey. They'll most likely get into a physical fight or verbally insult the easiest target. There's a serious love-hate relationship between whiskey and people.

\n \n

Tequila Drunk

\n \n

Party is here! For most people, tequila comes at the end of the night when they're already drunk but they don't realize it. And tequila doesn't come in single shots, they all come together. You have shots after shots after shots and BAM - you black out. - 6 Types Of Drunk You'll Get Depending On What You Drink

\n
\n\n

Whatever you drink to party eyed on, never get wasted on, I will never do ouzo again! I am sure that ouzo is not a nightmare drink for everyone, but it is one to be aware of the ouzo effect.

\n\n
\n

The ouzo effect (also louche or spontaneous emulsification) is a cloudy (louche) oil-in-water emulsion that is formed when water is added to ouzo and other anise-flavored liqueurs and spirits, such as pastis, rakı, arak, sambuca and absinthe. Such microemulsions occur with only minimal mixing and are highly stable.

\n
\n\n

Do not forget that drinking water can lesson the effects of a hangover.

\n\n
\n

While food and water may ease some of the symptoms, they won’t cure a hangover. The best way to avoid one is to moderate your drinking and have water between alcoholic drinks. Remember that water won’t make you any less drunk or protect your liver. - Alcohol myth buster

\n
\n\n

More information can be gleaned from the following articles:

\n\n\n", "OwnerUserId": "5064", "LastActivityDate": "2020-02-17T00:06:28.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7979"}} +{ "Id": "7979", "PostTypeId": "1", "CreationDate": "2020-02-18T13:03:05.173", "Score": "2", "ViewCount": "54", "Body": "

I love the beer. Most folks do I suppose. I cant be the only one that has issues with GI after only having a few of these.
\nI can drink other alcohol just fine. Why this one beer?

\n", "OwnerUserId": "10099", "LastEditorUserId": "5064", "LastEditDate": "2020-02-19T01:05:02.590", "LastActivityDate": "2020-02-19T01:05:02.590", "Title": "I seem to only suffer gastro-intestinal issues when I drink a particular beer. That being Founders All Day IPA Session Ale. Why?", "Tags": "health ipa", "AnswerCount": "0", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7981"}} +{ "Id": "7981", "PostTypeId": "2", "ParentId": "7974", "CreationDate": "2020-02-19T14:44:16.173", "Score": "0", "Body": "

I know plenty of Scots who are t-total or drink relatively little.

\n\n

Additionally, there are loads of additional Scottish licencing laws which are aimed to reduce binge drinking and have been shown to have a positive effect. Source: The Guardian

\n\n

In my personal experience (my boyfriend being himself half Scot and my Step-mum being full Scot) the Scottish actually drink less than the rest of the UK and definitely less than, say, the Welsh people I know. (I.e. myself and family before anyone has a go!)

\n\n

In short: Yes a sober Scottish man does exist. Source: I know at least one.

\n", "OwnerUserId": "8672", "LastActivityDate": "2020-02-19T14:44:16.173", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7982"}} +{ "Id": "7982", "PostTypeId": "2", "ParentId": "7973", "CreationDate": "2020-02-19T14:51:32.530", "Score": "5", "Body": "

Your question seems to be based on a false assumption. Rose is not a \"mix\" of red and white wine.

\n\n

Red wine is produced by (red) grapes which have their skins left on during fermentation, white wine is produced from pealed grapes (of any colour).

\n\n

Rose is produced by extracting the skins (or red grapes) at some point in the fermentation process.

\n\n

It's a common misconception!

\n\n

Source: Napareserva

\n\n
\n\n

To answer the clarification in the comments:

\n\n

Often wine is blended to bring in the best parts of different grapes:

\n\n
\n

The goal in blending is to bring together wines that don’t stand alone to make a wine that is superior to its parts. There is a big difference between blending, which is meant to improve your wine, and mixing, which is intended to make something — like an off-flavor —go away. Source: WineMaker

\n
\n\n

Personally - being brought up to appreciate good wines - the idea of mixing red and white is blasphemy. They are just too different and therefore do not follow the \"rules\" laid out in the link above.

\n\n

However, I did find evidence that it has been considered - I imagine you could end up with a wine very similar to a Rose if you got the balance right. I'm not sure I can really credit that with being a \"source\" though.

\n\n

This answer has been asked elsewhere though and, although I don't often like to just copy and paste an answer from elsewhere but the last paragraph seemed exactly what you are looking for:

\n\n
\n

Rosé is popular nowadays and some producers do mix red and white wine grapes in order to satisfy demand, it's all about business, after all, however, such wines tend to be made of not very high quality grapes because there is no point in mixing the grapes or wines of premium quality together since they will cancel out their flavours anyway. Sometimes, producers will add some extra sugar to the mix in order to balance out or mask the shortcomings of taste that appeared due to mixing the products that are not supposed to be mixed.

\n
\n\n

The post also goes into more detail about why they are generally too different.

\n", "OwnerUserId": "8672", "LastEditorUserId": "8672", "LastEditDate": "2020-02-20T10:53:45.790", "LastActivityDate": "2020-02-20T10:53:45.790", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7983"}} +{ "Id": "7983", "PostTypeId": "2", "ParentId": "7076", "CreationDate": "2020-02-19T15:17:30.273", "Score": "1", "Body": "

I have never personally tried but my advice would be not to heat it.

\n\n

In the same way that you wouldn't heat a shop bought sugar syrup - you will boil off the water and be left with a thicker syrup and possibly one which would crystallise.

\n\n

You can either add the ingredients to your Torani's Syrup and leave for X days to see what happens, or follow a recipe to make your own!

\n\n

Here is one I found for a sugar-free lavender syrup which you should be able to amend for a Ginger Cardamon version.

\n", "OwnerUserId": "8672", "LastActivityDate": "2020-02-19T15:17:30.273", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7984"}} +{ "Id": "7984", "PostTypeId": "1", "AcceptedAnswerId": "7994", "CreationDate": "2020-02-19T22:01:17.227", "Score": "3", "ViewCount": "430", "Body": "

The only brand I know is Riunite. Several years back I bought another brand regularly, but I have forgotten the name. It was the same price range as Riunite.

\n\n

By cheap I mean both price and quality. I like Lambrusco, but my impression is the stuff is made to be like table wine. Drinkable without much complexity.

\n", "OwnerUserId": "10105", "LastEditorUserId": "5064", "LastEditDate": "2020-02-25T00:13:27.523", "LastActivityDate": "2020-03-01T12:48:23.800", "Title": "Are all lambrusco cheap?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7985"}} +{ "Id": "7985", "PostTypeId": "1", "CreationDate": "2020-02-20T02:48:39.063", "Score": "3", "ViewCount": "140", "Body": "

I frequently notice a very specific smell/taste in wine. I find it rather unpleasant, so I presume it is a known commonly occurring wine defect (I notice it probably at least 30% of the time). The trouble is, I don't know what it's called, so it's difficult to complain about it or send a bottle back because of it. I know it sounds silly, but the taste I'm referring to reminds me exactly of easter egg dye, though it's not exactly a vinegar taste. It often becomes more pronounced as the wine sits out in the glass. I've tried reading up on common wine defects, but none seem to really match. Does anyone have any idea what the taste is I'm referring to?

\n", "OwnerUserId": "10106", "LastActivityDate": "2020-07-21T15:08:30.810", "Title": "What is the technical term for the \"vinegar/easter egg dye\" smell in some wines?", "Tags": "wine", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7986"}} +{ "Id": "7986", "PostTypeId": "5", "CreationDate": "2020-02-21T02:36:52.967", "Score": "0", "Body": "

For questions relating to the subject of whisky and its history.

\n\n
\n

Whisky or whiskey is a type of distilled alcoholic beverage made from fermented grain mash. Various grains (which may be malted) are used for different varieties, including barley, corn, rye, and wheat. Whisky is typically aged in wooden casks, generally made of charred white oak.

\n \n

Whisky is a strictly regulated spirit worldwide with many classes and types. The typical unifying characteristics of the different classes and types are the fermentation of grains, distillation, and aging in wooden barrels.

\n \n

The word whisky (or whiskey) is an anglicisation of the Classical Gaelic word uisce (or uisge) meaning \"water\" (now written as uisce in Modern Irish, and uisge in Scottish Gaelic). Distilled alcohol was known in Latin as aqua vitae (\"water of life\"). This was translated into Old Irish as uisce beatha (\"water of life\"), which became uisce beatha in Irish and uisge beatha [ˈɯʃkʲə ˈbɛhə] in Scottish Gaelic. Early forms of the word in English included uskebeaghe (1581), usquebaugh (1610), usquebath (1621), and usquebae (1715).

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-02-21T02:36:52.967", "LastActivityDate": "2020-02-21T02:36:52.967", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7987"}} +{ "Id": "7987", "PostTypeId": "4", "CreationDate": "2020-02-21T02:36:52.967", "Score": "0", "Body": "For questions relating to the subject of whisky. (Primarily Scotch, Canadian, and Japanese whisky.) ", "OwnerUserId": "5064", "LastEditorUserId": "37", "LastEditDate": "2020-03-08T19:01:10.873", "LastActivityDate": "2020-03-08T19:01:10.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7989"}} +{ "Id": "7989", "PostTypeId": "2", "ParentId": "7985", "CreationDate": "2020-02-21T23:58:08.090", "Score": "2", "Body": "

Probably what you are smelling is a combination of oxidized wine, ethyl acetate and acetic acid. Oxidized wine smells like sherry and the volatile acidity smells exactly like you described it. Vinegar. Ethyl Acetate smells like nail polish remover.

\n\n

What happens when you leave wine out, the metabisulfites break down and can't prevent oxidation anymore and also will allow the acetobacter bacteria to do it's thing, which is to convert alcohol into vinegar.

\n", "OwnerUserId": "6111", "LastActivityDate": "2020-02-21T23:58:08.090", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7990"}} +{ "Id": "7990", "PostTypeId": "2", "ParentId": "7985", "CreationDate": "2020-02-22T14:04:18.090", "Score": "-1", "Body": "

What is the technical term for the “vinegar/easter egg dye” smell in some wines?

\n\n

The technical term for smell is odour.

\n\n

An odor (American English) or odour (British English; see spelling differences) is caused by one or more volatilized chemical compounds that are generally found in low concentrations that humans and animals can perceive by their sense of smell. An odor is also called a \"smell\" or a \"scent\", which can refer to either a pleasant or an unpleasant odor.

\n\n
\n

While \"scent\" can refer to pleasant and unpleasant odors, the terms \"scent\", \"aroma\", and \"fragrance\" are usually reserved for pleasant-smelling odors and are frequently used in the food and cosmetic industry to describe floral scents or to refer to perfumes.

\n \n

In the United Kingdom and other Commonweath, English-speaking nations, \"odour\" refers to scents in general – without positive or negative connotations; but in the United States, and for many non-native English speakers around the world, \"odor\" generally has a negative connotation as a synonym for \"stink\".1 An unpleasant odor can also be described as \"reeking\" or called a \"malodor\", \"stench\", \"pong\", or \"stink\".

\n
\n\n

Taste is simply the gustatory perception of flavours while eating or drinking foods.

\n\n
\n

Taste, gustatory perception, or gustation is one of the five traditional senses which belongs to the gustatory system.

\n \n

Taste in the gustatory system allows humans to distinguish between safe and harmful food, and to gauge foods’ nutritional value. Digestive enzymes in saliva begin to dissolve food into base chemicals that are washed over the papillae and detected as tastes by the taste buds. The tongue is covered with thousands of small bumps called papillae, which are visible to the naked eye. Within each papilla are hundreds of taste buds.3 The exception to this are the filiform papillae that do not contain taste buds. There are between 2000 and 50004 taste buds that are located on the back and front of the tongue. Others are located on the roof, sides and back of the mouth, and in the throat. Each taste bud contains 50 to 100 taste receptor cells.

\n \n

Bitter foods are generally found unpleasant, while sour, salty, sweet, and umami tasting foods generally provide a pleasurable sensation. The five specific tastes received by taste receptors are saltiness, sweetness, bitterness, sourness, and savoriness, often known by its Japanese term \"umami\" which translates to ‘deliciousness’. As of the early twentieth century, Western physiologists and psychologists believed there were four basic tastes: sweetness, sourness, saltiness, and bitterness. At that time, savoriness was not identified, but now a large number of authorities recognize it as the fifth taste.

\n
\n\n

To say that wine tastes or smell like vinegar or Easter Egg dye is a way of describing the odour or our gustatory perception of how bad wine smell or tastes.

\n\n
\n

I've found cheap wines to have a higher likelihood of tasting like vinegar Easter egg dye. - Hacker News

\n
\n\n

Why this is to be occurring in a particular wine is due to various possible reasons. What gives wine a particular gives off a bad smell or has a particular bad taste may be caused as the examples below demonstrates:

\n\n
    \n
  • Too much air contact to the wine: oxidation
  • \n
  • Bacteria can turn your wine into an odd smelling juice at times.
  • \n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-02-22T14:16:35.387", "LastActivityDate": "2020-02-22T14:16:35.387", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7991"}} +{ "Id": "7991", "PostTypeId": "2", "ParentId": "7834", "CreationDate": "2020-02-22T20:25:43.970", "Score": "3", "Body": "

The label looks like Serbian, and says:

\n\n
Гарантовано природна (garantovano prirodna) = Guaranteed Natural\nстара 10 година      (stara 10 godina)      = Aged 10 Years\n
\n\n

I don't see anything that identifies it further. But if this was offered as a \"typical\" Yugoslav gift, it might well be barrel-aged plum brandy (slivovitz).

\n", "OwnerUserId": "10109", "LastActivityDate": "2020-02-22T20:25:43.970", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7992"}} +{ "Id": "7992", "PostTypeId": "2", "ParentId": "69", "CreationDate": "2020-02-22T22:10:26.313", "Score": "2", "Body": "

The 5 to 13% figure above is a misinterpretation. Those percentages refer to the ratio of lactose to grain. If you look at actual recipes for home-brewed stouts, you'll find that they use 0.5 to 1.0 lb (250–500 g) of lactose for a recipe that makes 5 gallons (20 L). The larger amount makes a stout that is quite sweet.

\n\n

That works out to between 1.25% and 2.50% lactose. A one-pint glass of milk stout will contain 6–12 grams of lactose, somewhat less than a one-cup serving of milk. Someone who is mildly lactose intolerant should be able to drink a pint with no ill effects, but if you are very intolerant then lactase would be a good idea.

\n", "OwnerUserId": "10109", "LastActivityDate": "2020-02-22T22:10:26.313", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7993"}} +{ "Id": "7993", "PostTypeId": "2", "ParentId": "6991", "CreationDate": "2020-02-22T22:35:46.977", "Score": "0", "Body": "

I would take this source with a grain of salt, it doesn't link to any studies, it's from a commercial site, and there are spelling errors. The spelling errors however could be attributed to the author being a non-native english speaker, they claim to be a doctor from a seemingly well regarded medical school in China.

\n
\n

Safe for the stomach rate of alcohol

\n

Any alcohol above 40% of course damages the mucous membranes (chemical burn) [...] Strong alcohol provokes esophagitis, gastritis, gastro-duodenitis.in constant use are formed of chronic inflammatory diseases and are prerequisites for cancer of the esophagus and stomach.

\n
\n

The above statements can be somewhat corroborated, through more reputable sources. The Oklahoma State Government has patrol officer training material that describes how alcohol passes through the body and it's effect. The training is relatively easy to follow and in my opinion, interesting. The takeaway here is that alcohol is not digested. It is absorbed mostly by membranes in the esophagus, the stomach, and the small intestine. The rate of absorption is in part determined by an equilibrium with alcohol and water on either side of the membrane. This means that the higher concentration of alcohol, the faster it's absorbed into your body. This article published in Clinics in Liver Disease, an Elsevier journal, goes over some of the fancy chemistry and largely goes over my head. However it has this to say...

\n
\n

Alcohol has irritant properties and high concentrations can cause superficial erosions, hemorrhages and paralysis of the stomach smooth muscle.

\n
\n

It also says

\n
\n

Peak blood alcohol levels are higher if ethanol is ingested as a single dose rather than several smaller doses, probably because alcohol concentration gradient will be higher in the former case.

\n
\n

So even after drinking the same amount of alcohol you may have a higher BAC, and your body processes higher concentrations of alcohol differently than lower concentrations. It can be rough on your stomach. That said, having a meal before you drink does a lot to slow the rate of absorption.

\n

I believe that most of the concern people have about high ABV drinks, at least in the United States, stems from rumors about moonshine. Moonshine is one of the most widely known high-alcohol spirits. If improperly made it can blind or kill you. Many people don't understand what causes these effects and associate it with the high-alcohol content. However these side effects are usually caused by wood-alcohol, a byproduct of poor distilling technique. They can also be caused by lead-poisoning, which can happen if you make booze in lead pipes. "Moonshine" that you see in the store is regulated and safe.

\n", "OwnerUserId": "5974", "LastEditorUserId": "-1", "LastEditDate": "2020-06-18T08:36:38.857", "LastActivityDate": "2020-02-22T22:44:40.617", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7994"}} +{ "Id": "7994", "PostTypeId": "2", "ParentId": "7984", "CreationDate": "2020-02-23T20:41:26.897", "Score": "4", "Body": "

Are all lambrusco cheap?

\n\n

The short answer is no.

\n\n

The most highly rated of its wines are the frizzante (slightly sparkling) red wines, designed to be drunk young. Aged wines are generally not an issue here and generally speaking are on the more inexpensive price range. But this is not absolute. It does have some historical value to its name also.

\n\n
\n

Lambrusco is the name of both an Italian red wine grape and a wine made principally from said grape. The grapes and the wine originate from four zones in Emilia-Romagna and one in Lombardy―principally around the central provinces of Modena, Parma, Reggio-Emilia, and Mantua. The grape has a long winemaking history, with archaeological evidence indicating that the Etruscans cultivated the vine. In Roman times Lambrusco was highly valued for its productivity and high yields, with Cato the Elder stating that produce of two thirds of an acre could make enough wine to fill 300 amphoras.

\n \n

The most highly rated of its wines are the frizzante (slightly sparkling) red wines, designed to be drunk young, from one of the eight Lambrusco denominazione di origine controllata (DOC) regions: Colli di Parma Lambrusco, Lambrusco Grasparossa di Castelvetro, Lambrusco di Sorbara, Lambrusco Salamino di Santa Croce, Reggiano Lambrusco, Colli di Scandiano e Canossa Lambrusco, Modena Lambrusco, and Lambrusco Mantovano. Throughout the 1970s and 1980s sweet Lambrusco was the biggest selling import wine in the United States. During that time the wine was also produced in a white and rosé style made by limiting the skin contact with the must.

\n
\n\n

Today, there are various levels of dryness / sweetness, including secco (bone dry / dry), amabile (off-dry / sweet) and dolce (very sweet). Sweet Lambrusco became hugely popular in the United States in the late 1970s-1980s, reaching a high of over 13 million cases exported to the country in 1985. The wine is noted for high acidity and berry flavors. Many of the wines now exported to the United States include a blend of Lambruscos from the different DOCs and are sold under the Indicazione Geografica Tipica (IGT) designation Emilia.

\n\n
\n

The wine is rarely made in a \"champagne\" (metodo classico) style; instead, it is typically made using the Charmat process where a second fermentation is conducted in a pressurized tank.

\n \n

In Australia a number of cheaper bottled and box wines are produced by Australian vineyards and sold as \"Lambrusco\". They are typically medium-sweet, around 10% ABV and styled as an \"easy drinking\" product.

\n
\n\n

Some Lambrusco wine will taste cheap, but I imagine not all.

\n\n
\n

Lambrusco Wines Worth Drinking

\n \n

Upon the boisterous expression of the beauty of Lambrusco, you may be remonstrated with something like,

\n \n

“You mean that cheap, sweet red wine that tastes like soda?”

\n \n

Well not exactly, but yes, that one. Apparently, Lambrusco still has a long way to go since it tarnished its reputation nearly 40 years ago (blame the wine boom of the 1970s). Fortunately, this means you can find great wines for obscenely good prices. Lambrusco is awesome and its story is more fascinating than probably imagined.

\n \n

Lambrusco Wines Worth Drinking

\n \n

Lambrusco is actually a family of very old grape varieties native to Italy. Most wines are a blend of several distinct varieties, each with a unique taste profile. It is unclear exactly when these varieties manifested, but Cato may have mentioned them in De Agri Cultura in 160 BC – humanity’s oldest printed farming manual. So when you drink Lambrusco, you are drinking some O.G. juice (several millennia older than Cabernet).

\n \n

Today, the best Lambruscos are dry (secco) and barely sweet (semisecco) and are almost always made in a semi-sparkling, frizzante, style. There are about 10 different varieties (8 closely related varieties, to be exact). That said, there are the 4 high quality varieties you should know: Lambrusco di Sorbara, Lambrusco Maestri, Lambrusco Grasparossa, and Lambrusco Salamino. These four offer the complete range of styles and they’ll match with an incredible array of foods from Korean barbecue to Argentinian empanadas.

\n \n

Classy Lambrusco Wines to Try

\n \n

Lambrusco di Sorbara

\n \n

This grape produces the lightest and most delicate and floral of the Lambrusco wines, often in a light, pink-rose hue. The best versions are in a dry and refreshing style but have delightfully sweet aromas of orange blossom, mandarin orange, cherries, violets, and watermelon. You’ll find these wines labeled primarily as Lambrusco di Sorbara and they pair extremely well with spicy Thai and Indian cuisine.

\n \n

Lambrusco Grasparossa

\n \n

This is the grape that makes the boldest Lambrusco wines with flavors of black currant and blueberries, supported by moderately high, mouth-drying tannin and a balancing creaminess from the Charmat sparkling production process. You’ll find this wine labeled as Lambrusco Grasparossa di Castelvetro (which includes 85% of this grape) and is great to pair with fennel-infused sausages, lasagna, or even barbecue ribs.

\n \n

Lambrusco Maestri

\n \n

Wines of Lambrusco Maestri are more grapey with soft and creamy bubbles and subtle notes of milk chocolate. L. Maestri is actually the most well-travelled of all the Lambrusco varieties and there are some excellent examples coming out of Australia (Adelaide Hills) and Argentina (Mendoza). It’s a little harder to find a single-varietal Lambrusco Maestri in Italy, although to quote Italian wine expert, Ian d’Agata,

\n \n
\n

“Try: Cantine Ceci, Nero di Lambrusco Otello, guaranteed to change your mind about Lambrusco forever and turn you into a believer.” Ian d’Agata, Native Wine Grapes of Italy

\n
\n \n

Lambrusco Salamino

\n \n

This Lambrusco has cylindrical salami-shaped bunches (which is what the grape is named after). These wines have the delightful aromatic qualities of Lambrusco di Sorbara (imagine cherries and violets) with the structure (tannin), creaminess, and deep color of Lambrusco Grasparossa. Expect Lambrusco Salamino to be made in sweetest styles, including semisecco and and dolce to counterbalance its tannin – oddly enough, the sweetness makes it a great match for burgers. This variety can be found labeled as Reggiano Lambrusco Salamino and Lambrusco Salamino di Santa Croce.

\n
\n\n

More information may be gleaned from the following article(s):

\n\n\n", "OwnerUserId": "5064", "LastActivityDate": "2020-02-23T20:41:26.897", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7995"}} +{ "Id": "7995", "PostTypeId": "2", "ParentId": "7984", "CreationDate": "2020-02-25T14:43:00.280", "Score": "1", "Body": "

Riunite is a cheap brand by the largest wine company in Italy.

\n\n

IL SUPERCLUB DEL VINO VALE 6,5 MILIARDI COOP IN TESTA

\n\n

But some Lambrusco scored top ratings on a famous Italian wine guide, included item #4 on the article suggested by Ken Graham.

\n\n

Tre Bicchieri 2020 Preview. The 13 best wines of Emilia-Romagna

\n\n

And price can be higher for Lambrusco made in a \"champagne\" (metodo classico) style, the only ones with some aging as seen here.

\n", "OwnerUserId": "8185", "LastEditorUserId": "5064", "LastEditDate": "2020-03-01T12:48:23.800", "LastActivityDate": "2020-03-01T12:48:23.800", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7996"}} +{ "Id": "7996", "PostTypeId": "2", "ParentId": "7975", "CreationDate": "2020-02-29T17:53:09.577", "Score": "1", "Body": "

My tactic has always been to have a couple of beers at the start of the night (or maybe ciders) as they fill me up and slow down consumption, but then I drink spirits and cocktails for the rest of the night at a rate which gets me tipsy or happy drunk, but not so drunk I have difficulty walking or that I embarrass myself or my friends. And this successfully means I have had 1 hangover in 40 years of drinking.

\n\n

And while some subscribe to the idea that certain types of alcohol make you drunk differently to others, I have to say that doesn't match my experience. Cheap spirits can feel nasty, but any good drink can be drunk in moderation or excess and get you to the level of drunk you require.

\n\n

Tequila, for example - teenagers may try cheap tequila or chartreuse shots, not good taste, but they do get you drunk quickly and cheaply. A good quality tequila or reposado, however, can be enjoyed as a sipping drink, like a good whisky or absinthe. Much more enjoyable at my age.

\n", "OwnerUserId": "187", "LastActivityDate": "2020-02-29T17:53:09.577", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7997"}} +{ "Id": "7997", "PostTypeId": "1", "AcceptedAnswerId": "8002", "CreationDate": "2020-03-01T01:43:32.597", "Score": "4", "ViewCount": "89", "Body": "

What flavours of ice cream can be used with different types of alcoholic drinks to make a great float?

\n\n

We all know that root beer makes a great float, usually with vanilla ice cream. But I would like to know about the possibility of using different flavours of ice cream with various types of alcoholic drinks such as gin or even apple ciders?

\n\n

Any recommendations?

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-03-25T21:19:26.127", "Title": "What flavours of ice cream can be used with different types of alcoholic drinks to make a great float?", "Tags": "recommendations ingredients pairing drink", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"7999"}} +{ "Id": "7999", "PostTypeId": "2", "ParentId": "7997", "CreationDate": "2020-03-01T16:34:32.607", "Score": "1", "Body": "

One of the great ones we grew up with was the Cider Spider - a cider float with vanilla ice cream, using proper cider, not the strange thing that seems to pass for cider in the US. I assume it came from Australia, as it was my mother who introduced us to it.

\n\n

But since then experimentation has showed that most basic ice cream flavours can work well in fairly normal drinks. Strawberry with rums and gin, vanilla with everything, and even chocolate with dark rums and chocolate liqueurs.

\n\n

There are some weirder ice creams that work in cocktails - chocolate, orange and rosemary ice cream can work well with a spiced rum or tequila-based cocktails.

\n\n

In reality, I think the use of ice cream is only limited by your palette or imagination. Ice cream cocktails are generally sweet and creamy, which puts some people off. They can also congeal rapidly - which can be offputting.

\n", "OwnerUserId": "187", "LastActivityDate": "2020-03-01T16:34:32.607", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8002"}} +{ "Id": "8002", "PostTypeId": "2", "ParentId": "7997", "CreationDate": "2020-03-02T15:13:22.697", "Score": "1", "Body": "

My favorites:

\n\n
    \n
  • Vanilla ice cream in Jagermeister
  • \n
  • Orange sherbet in Bailey's Irish Cream (it's like an adult dreamsicle).
  • \n
\n\n

As @Rory mentions, ice cream cocktails automatically become sweet and creamy, which is why I find sticking with liquors that you expect to be sweet and creamy pair very well.

\n\n

Per your original mention of the classic root beer float, I just recently discovered that adding a single shot of vodka to a typical root beer float is pretty awesome.

\n\n

I also recently discovered the \"Grasshopper\", which is apparently a \"classic\" cocktail:

\n\n
    \n
  • 1 shot COGNAC
  • \n
  • 1 shot GREEN CREME DE MENTHE
  • \n
  • 2 scoops of chocolate ice cream
  • \n
\n\n

Blend all together and enjoy your boozy liquid version of a Think Mint cookie.

\n", "OwnerUserId": "10039", "LastEditorUserId": "10039", "LastEditDate": "2020-03-25T21:19:26.127", "LastActivityDate": "2020-03-25T21:19:26.127", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8003"}} +{ "Id": "8003", "PostTypeId": "1", "CreationDate": "2020-03-02T16:43:11.310", "Score": "1", "ViewCount": "80", "Body": "

Is it illegal to make wine on my farm, do I need a license to make wine? I have searched the internet but can only find answers concerning beer making.

\n", "OwnerUserId": "10125", "LastEditorUserId": "5064", "LastEditDate": "2020-03-02T21:57:16.750", "LastActivityDate": "2020-03-02T21:57:16.750", "Title": "Is it legal to make wine on my farm?", "Tags": "wine", "AnswerCount": "0", "CommentCount": "6", "FavoriteCount": "1", "ClosedDate": "2020-03-08T19:01:37.837", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8004"}} +{ "Id": "8004", "PostTypeId": "5", "CreationDate": "2020-03-03T00:10:35.770", "Score": "0", "Body": "

A liqueur is an alcoholic drink composed of distilled spirits.

\n\n
\n

A liqueur is an alcoholic drink composed of distilled spirits and additional flavorings such as sugar, fruits, herbs, and spices. Often served with or after dessert, they are typically heavily sweetened and un-aged beyond a resting period during production, when necessary, for their flavors to mingle.

\n \n

Liqueurs are historical descendants of herbal medicines. They were made in Italy as early as the 13th century, often prepared by monks (for example, Chartreuse). Today they are produced the world over, commonly served straight, over ice, with coffee, in cocktails, and used in cooking.

\n \n

In some areas of the United States and Canada liqueurs are also referred to as cordials or schnapps, though the terms refer to different beverages elsewhere.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-03-03T00:10:35.770", "LastActivityDate": "2020-03-03T00:10:35.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8005"}} +{ "Id": "8005", "PostTypeId": "4", "CreationDate": "2020-03-03T00:10:35.770", "Score": "0", "Body": "Questions pertaining to the subject of liqueurs an alcoholic drink composed of distilled spirits.", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-03-03T00:10:35.770", "LastActivityDate": "2020-03-03T00:10:35.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8007"}} +{ "Id": "8007", "PostTypeId": "1", "AcceptedAnswerId": "8014", "CreationDate": "2020-03-10T23:54:47.560", "Score": "0", "ViewCount": "47", "Body": "

I'm asking which type of water is best for making a mash to distill down to a vodka? Distilled water or bottled mineral water?

\n", "OwnerUserId": "10012", "LastActivityDate": "2020-03-19T13:06:45.150", "Title": "It's it better to use mineral water or distilled water for my mash when making vodka?", "Tags": "water", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8010"}} +{ "Id": "8010", "PostTypeId": "5", "CreationDate": "2020-03-14T21:14:28.323", "Score": "0", "Body": "

For questions pertaining to the subject of the edible fungus found in nature and known as mushrooms.

\n\n
\n

A mushroom, or toadstool, is the fleshy, spore-bearing fruiting body of a fungus, typically produced above ground, on soil, or on its food source.

\n \n

The standard for the name \"mushroom\" is the cultivated white button mushroom, Agaricus bisporus; hence the word \"mushroom\" is most often applied to those fungi (Basidiomycota, Agaricomycetes) that have a stem (stipe), a cap (pileus), and gills (lamellae, sing. lamella) on the underside of the cap. \"Mushroom\" also describes a variety of other gilled fungi, with or without stems, therefore the term is used to describe the fleshy fruiting bodies of some Ascomycota. These gills produce microscopic spores that help the fungus spread across the ground or its occupant surface.

\n \n

Forms deviating from the standard morphology usually have more specific names, such as \"bolete\", \"puffball\", \"stinkhorn\", and \"morel\", and gilled mushrooms themselves are often called \"agarics\" in reference to their similarity to Agaricus or their order Agaricales. By extension, the term \"mushroom\" can also refer to either the entire fungus when in culture, the thallus (called a mycelium) of species forming the fruiting bodies called mushrooms, or the species itself.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-03-14T21:14:28.323", "LastActivityDate": "2020-03-14T21:14:28.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8011"}} +{ "Id": "8011", "PostTypeId": "4", "CreationDate": "2020-03-14T21:14:28.323", "Score": "0", "Body": "For questions pertaining to the subject of the edible fungus found in nature and known as mushrooms.", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-03-14T21:14:28.323", "LastActivityDate": "2020-03-14T21:14:28.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8012"}} +{ "Id": "8012", "PostTypeId": "5", "CreationDate": "2020-03-15T02:20:37.623", "Score": "0", "Body": "

For questions pertaining to the quantity of payment or compensation given by one party to another in return for one unit of goods or services, also known as it’s price.

\n\n
\n

A price is the quantity of payment or compensation given by one party to another in return for one unit of goods or services.1 A price is influenced by both production costs and demand for the product. A price may be determined by a monopolist or may be imposed on the firm by market conditions.

\n \n

In modern economies, prices are generally expressed in units of some form of currency. (For commodities, they are expressed as currency per unit weight of the commodity, e.g. euros per kilogram or Rands per KG.) Although prices could be quoted as quantities of other goods or services, this sort of barter exchange is rarely seen. Prices are sometimes quoted in terms of vouchers such as trading stamps and air miles. In some circumstances, cigarettes have been used as currency, for example in prisons, in times of hyperinflation, and in some places during World War II. In a black market economy, barter is also relatively common.

\n \n

In many financial transactions, it is customary to quote prices in other ways. The most obvious example is in pricing a loan, when the cost will be expressed as the percentage rate of interest. The total amount of interest payable depends upon credit risk, the loan amount and the period of the loan. Other examples can be found in pricing financial derivatives and other financial assets. For instance the price of inflation-linked government securities in several countries is quoted as the actual price divided by a factor representing inflation since the security was issued.

\n \n

\"Price\" sometimes refers to the quantity of payment requested by a seller of goods or services, rather than the eventual payment amount. This requested amount is often called the asking price or selling price, while the actual payment may be called the transaction price or traded price. Likewise, the bid price or buying price is the quantity of payment offered by a buyer of goods or services, although this meaning is more common in asset or financial markets than in consumer markets.

\n \n

Economic price theory asserts that in a free market economy the market price reflects interaction between supply and demand: the price is set so as to equate the quantity being supplied and that being demanded. In turn these quantities are determined by the marginal utility of the asset to different buyers and to different sellers. Supply and demand, and hence price, may be influenced by other factors, such as government subsidy or manipulation through industry collusion.

\n \n

When a commodity is for sale at multiple locations, the law of one price is generally believed to hold. This essentially states that the cost difference between the locations cannot be greater than that representing shipping, taxes, other distribution costs and more.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-03-15T02:20:37.623", "LastActivityDate": "2020-03-15T02:20:37.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8013"}} +{ "Id": "8013", "PostTypeId": "4", "CreationDate": "2020-03-15T02:20:37.623", "Score": "0", "Body": "For questions pertaining to the quantity of payment or compensation given by one party to another in return for one unit of goods or services, also known as it’s price.", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-03-15T02:20:37.623", "LastActivityDate": "2020-03-15T02:20:37.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8014"}} +{ "Id": "8014", "PostTypeId": "2", "ParentId": "8007", "CreationDate": "2020-03-19T13:06:45.150", "Score": "1", "Body": "

It can be used, and distilled water and mineral. The output will be different taste. Distilled water gives a softer taste.

\n", "OwnerUserId": "10154", "LastActivityDate": "2020-03-19T13:06:45.150", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8015"}} +{ "Id": "8015", "PostTypeId": "2", "ParentId": "7973", "CreationDate": "2020-03-19T22:54:54.160", "Score": "-1", "Body": "

One can make outstanding rosé by mixing red and white grapes, but that is not the same thing as mixing red and white wine. Based on process, rosé is made (with an exception to be described below) just as a white wine: fermenting only the juice of a grape, not the skins. Fermentation in this instance is what happens when yeast consumes the sugars in the must (defined as the juice or juice/skins - possibly stems, too, whatever is being fermented)). Red wines are made by fermenting juice and skin of grapes. A wine's color primarily comes from the skins. Most 'red' or 'black' grapes used for wine have dark skins, but clear flesh. If you press them quickly and remove the skins, you'll have white juice (blanc de noirs, in French wine terms). To make a rosé, vintners typically take red grapes, press them gently, and let the juice and skins macerate together for a short time in order for some of the pigments from skin tint the still unfermented juice. When the winemaker decides there is enough color, he/she/they removes the skins and then ferments the now pink juice. Just like white wines, there is no fermentation on the skins. It should be added that many white wines are made with some amount of pre-fermentation skin contact, too, since the winemaker might want to extract some aromatic or structural elements from the skins. Since 'white' grapes don't have dark color, this extraction does not significantly change the color of the unfermented juice or must. A winemaker might decided that the rosé might be improved by blending some unfermented juice from white grapes to the must, or, perhaps, blend the fermented pink juice (now wine), with other fermented white juice, again, wine. Understand, the pink wine (rosé) is not red wine. It is made just like white wine - especially those white wines made by some pre-fermentation skin contact as described above. This blending is not at all a cheat. Some of the finest rosé wines are made that way, including the most expensive still rosé on the market, Gérard Bertrand's Clos du Temple, made from Grenache, Cinsault, Syrah, Mourvèdre, and Viognier, the latter being a white grape, retails for $190/bottle. A great number of far less expensive rosés are made similarly.

\n\n

So, about the exception: sparkling rosé wine can be made by blending a little red wine into white. The reason for this might be chalked up to historical precedence as well problems getting red grapes properly ripe in the Champagne region of northern France, but also since most quality sparkling wine is made by a process of double fermentation. That is, a base, still wine is made that is then put into bottles with a little yeast and a little sugar, then sealed by using a crown cap (a soda bottle cap). The yeast consumes the sugar, creating the by-products of alcohol (not much, since there isn't much sugar) and carbon dioxide, which creates the bubbles. A good deal of this base wine is in fact made from red grapes like Pinot Noir and Pinot Meunier, which are pressed quickly with skins immediately removed, often blended with Chardonnay, in order to make white sparkling wine. However, it is permissible to add a quantity of still red wine (made by fermenting on the skins) to the white base wine, before it goes into bottles for secondary fermentation. Since fermentation will, in fact, be achieved now, without skin contact, the resulting bubbly rosé passes muster. Truth be told, no one cares about the rationalization, they just do it that way. The influence that the Champagne region has on the broader world of sparkling wines has meant that the practice of coloring the otherwise white base wine with red wine has spread to them, as well.

\n\n

The prohibition against blending red and white wine for rosé, by the way, is pretty much a European thing. You can do it in the US, but I don't know any quality producers who do so. Surely, a lot of the cheap stuff is made that way, basically because the needs of production for huge volumes of wine that doesn't have to be all that good require flexibility.

\n\n

By the way, it has become fashionable in the past decade or so (though the practice is thousands of years old), to ferment white grapes on their skins, too, essentially making a red wine from white grapes. Well, sort of. What do you get when you mix red with yellow (which is the actual color of most ripe white wine grapes)? Orange. Hence, what are

\n\n
\n

One can make outstanding rosé by mixing red and white grapes, but that is not the same thing as mixing red and white wine. Based on process, rosé is made (with an exception to be described below) just as a white wine: fermenting only the juice of a grape, not the skins. Fermentation in this instance is what happens when yeast consumes the sugars in the must (defined as the juice or juice/skins - possibly stems, too, whatever is being fermented)). Red wines are made by fermenting juice and skin of grapes. A wine's color primarily comes from the skins. Most 'red' or 'black' grapes used for wine have dark skins, but clear flesh. If you press them quickly and remove the skins, you'll have white juice (blanc de noirs, in French wine terms). To make a rosé, vintners typically take red grapes, press them gently, and let the juice and skins macerate together for a short time in order for some of the pigments from skin tint the still unfermented juice. When the winemaker decides there is enough color, he/she/they removes the skins and then ferments the now pink juice. Just like white wines, there is no fermentation on the skins. It should be added that many white wines are made with some amount of pre-fermentation skin contact, too, since the winemaker might want to extract some aromatic or structural elements from the skins. Since 'white' grapes don't have dark color, this extraction does not significantly change the color of the unfermented juice or must. A winemaker might decided that the rosé might be improved by blending some unfermented juice from white grapes to the must, or, perhaps, blend the fermented pink juice (now wine), with other fermented white juice, again, wine. Understand, the pink wine (rosé) is not red wine. It is made just like white wine - especially those white wines made by some pre-fermentation skin contact as described above. This blending is not at all a cheat. Some of the finest rosé wines are made that way, including the most expensive still rosé on the market, Gérard Bertrand's Clos du Temple, made from Grenache, Cinsault, Syrah, Mourvèdre, and Viognier, the latter being a white grape, retails for $190/bottle. A great number of far less expensive rosés are made similarly.

\n
\n\n

So, about the exception: sparkling rosé wine can be made by blending a little red wine into white. The reason for this might be chalked up to historical precedence as well problems getting red grapes properly ripe in the Champagne region of northern France, but also since most quality sparkling wine is made by a process of double fermentation. That is, a base, still wine is made that is then put into bottles with a little yeast and a little sugar, then sealed by using a crown cap (a soda bottle cap). The yeast consumes the sugar, creating the by-products of alcohol (not much, since there isn't much sugar) and carbon dioxide, which creates the bubbles. A good deal of this base wine is in fact made from red grapes like Pinot Noir and Pinot Meunier, which are pressed quickly with skins immediately removed, often blended with Chardonnay, in order to make white sparkling wine. However, it is permissible to add a quantity of still red wine (made by fermenting on the skins) to the white base wine, before it goes into bottles for secondary fermentation. Since fermentation will, in fact, be achieved now, without skin contact, the resulting bubbly rosé passes muster. Truth be told, no one cares about the rationalization, they just do it that way. The influence that the Champagne region has on the broader world of sparkling wines has meant that the practice of coloring the otherwise white base wine with red wine has spread to them, as well.

\n\n

The prohibition against blending red and white wine for rosé, by the way, is pretty much a European thing. You can do it in the US, but I don't know any quality producers who do so. Surely, a lot of the cheap stuff is made that way, basically because the needs of production for huge volumes of wine that doesn't have to be all that good require flexibility.

\n\n

By the way, it has become fashionable in the past decade or so (though the practice is thousands of years old), to ferment white grapes on their skins, too, essentially making a red wine from white grapes. Well, sort of. What do you get when you mix red with yellow (which is the actual color of most ripe white wine grapes)? Orange. Hence, what are called \"orange\" wines.

\n", "OwnerUserId": "10155", "LastEditorUserId": "8672", "LastEditDate": "2020-03-27T17:21:34.283", "LastActivityDate": "2020-03-27T17:21:34.283", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8016"}} +{ "Id": "8016", "PostTypeId": "1", "CreationDate": "2020-03-20T16:58:25.857", "Score": "0", "ViewCount": "63", "Body": "

In the process of distilling water. Does the said water become de-ionised? I don't know how many ways I've tried to put this but it keeps coming back as not up to your standards. Oh that did it it wasn't verbose enough.

\n", "OwnerUserId": "10012", "LastEditorUserId": "11579", "LastEditDate": "2021-07-15T15:07:10.970", "LastActivityDate": "2021-07-15T15:07:10.970", "Title": "Is distilled water automatically deionised water?", "Tags": "distillation water", "AnswerCount": "0", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8017"}} +{ "Id": "8017", "PostTypeId": "1", "AcceptedAnswerId": "8249", "CreationDate": "2020-03-22T14:41:18.293", "Score": "4", "ViewCount": "251", "Body": "

Corona beer sales are dropping due to the coronavirus-19 because of a possible similarity in name?

\n\n

Are there any other know sales of some wine, beer or other alcoholic drinks that have plummeted due to such naming similarities in the present pandemic or some other historically known pandemic, even at a local level?

\n\n
\n

As of February 2020, after the COVID-19 coronavirus spread throughout China, Corona suffered a $170 million loss in earnings in the country. The company attributed the sales drop to fewer people going out in public, with many bars and restaurants being forced to close down. Multiple brands of beer experienced relative sales slumps in the country, as the spread of the COVID-19 coronavirus had generally dampened public activities. Sales were typically high over the period, due to Chinese New Year celebrations. - Corona (beer)

\n
\n\n

Although Corona beer sales have dropped, it is not unique at the moment, the sale other drinks and beer sales have dropped. I am only interested in historical name tagging of some sort of alcoholic drinks that are associated with some sort of historical flue or pandemic?

\n\n

If one can find the opposite frenzy that occurred in the above situations that would be acceptable data for an answer too.

\n\n

Here follows a satire on the Corona beer demise:

\n\n

\"Mexican

\n\n

Mexican beer rebrands as Ebola to avoid association with coronavirus

\n\n
\n

Mexico City (dpo) - The dangerous coronavirus is spreading quickly and is a source of fear for many. In order to avoid associations with the negative headlines, Mexican commercial brewery Grupo Modelo has announced that its most popular beer, Corona Extra, is to be rebranded as Ebola Extra. “We don’t want our customers to feel like they are drinking an infectious disease,” explained a spokesperson for Grupo Modelo, hence the decision to go for a worldwide rebrand.

\n \n

The new name, Ebola, is a neologism with a lovely ring to it according to the brewery. It stands for Extremo abocado liquido con ácido ascórbico or “very quaffable liquid containing ascorbic acid.” Ascorbic acid is an ingredient of Corona (now Ebola) along with water, hops, yeast, barley malt, maize, rice and papain.

\n \n

The rebrand will be part of a multimedia ad campaign featuring the catchy slogan, “I’m doing great. I’ve got Ebola.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "938", "LastEditDate": "2020-05-01T00:48:37.523", "LastActivityDate": "2021-01-20T10:38:33.697", "Title": "Alcohol sales dropping due to name similarity with other things", "Tags": "history health drink", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8018"}} +{ "Id": "8018", "PostTypeId": "2", "ParentId": "418", "CreationDate": "2020-03-24T09:01:37.057", "Score": "1", "Body": "

Yes. Also taking up several glasses of beer in a day can increase your blood pressure level. People already suffering from high blood pressure are advised not to take in consumption at all. https://www.addictionrehabcenters.com/addiction-treatment/inpatient-rehab/

\n", "OwnerUserId": "10164", "LastActivityDate": "2020-03-24T09:01:37.057", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8019"}} +{ "Id": "8019", "PostTypeId": "1", "AcceptedAnswerId": "8021", "CreationDate": "2020-03-25T09:05:42.653", "Score": "2", "ViewCount": "221", "Body": "

In recent days there are so many messages spreading over the social media saying drinking alcohol kills corona virus in our body? Is this true? As far as I understand, using alcohol based hand rubes will kill the virus from the surface of our body and it won't work inside our body.

\n", "OwnerUserId": "269", "LastEditorUserId": "8580", "LastEditDate": "2020-04-27T10:32:48.297", "LastActivityDate": "2020-04-27T12:04:24.917", "Title": "Will drinking alcohol kill corona virus inside our body?", "Tags": "health", "AnswerCount": "1", "CommentCount": "3", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8020"}} +{ "Id": "8020", "PostTypeId": "1", "CreationDate": "2020-03-25T17:25:57.667", "Score": "2", "ViewCount": "110", "Body": "

As you know with the ongoing corona-virus issue, the need of alcohol as a disinfectant had increased dramatically.

\n\n

I live in Iran, where alcohol is illegal. Nowadays, even if you can find a 100cc of 70% ethanol, you can expect to pay x10 price.

\n\n

I'm looking for a way to make 70% alcohol with simple things that may find in any kitchen for daily needs.

\n", "OwnerUserId": "10171", "LastEditorUserId": "8672", "LastEditDate": "2020-03-27T17:21:40.077", "LastActivityDate": "2020-04-07T11:19:28.457", "Title": "Homemade alcohol", "Tags": "alcohol distillation", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8021"}} +{ "Id": "8021", "PostTypeId": "2", "ParentId": "8019", "CreationDate": "2020-03-28T17:26:01.750", "Score": "4", "Body": "

Unfortunately the short answer is: no. Alcoholic drinks do not prevent or heal, as stated by the World Health Organization on February 21, 2020, in a post on their Facebook profile (source).

\n\n

\"image

\n", "OwnerUserId": "8580", "LastEditorUserId": "5064", "LastEditDate": "2020-04-27T12:04:24.917", "LastActivityDate": "2020-04-27T12:04:24.917", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8022"}} +{ "Id": "8022", "PostTypeId": "1", "CreationDate": "2020-03-30T20:44:04.093", "Score": "1", "ViewCount": "214", "Body": "

I cannot find any information on this can. I believe it is from the 1950s.

\n\n

\"BUSCH

\n\n

Busch Bavarian Beer

\n\n

The words BUSCH BAVARIAN BEER is on the front and back. It is printed over mountains with 2 black circles around it. The outer circle is a little bigger then the inter circle. Below the word beer is product of U.S.A. Inside the circle at the bottom it says clear and bright as mountain air. Below the circle it say Contents 12 FL. OZ. On top is a Kansas tax stamp. Inside a black circle are the words Busch Bavarian beer. Then also inside is another small circle with a sunflower. In the middle of the flower is a 12. Going around the large circle on the end it says Kansas C.M.B.Tax paid 94/100 cent. At the front very bottom of the can it says Brewed and canned at ST. Louis, MO. By Anheuser Busch, INC. 2nd. Beer can is a Stroh Light. 12oz. A common can except this has a Founding Sponsor Liberty 1886-1986 printed on the side of the can with the liberties head in the middle of a little square. Thank You

\n", "OwnerUserId": "11184", "LastEditorUserId": "5064", "LastEditDate": "2020-03-31T01:36:44.127", "LastActivityDate": "2020-05-02T15:01:15.103", "Title": "Busch Bavarian Beer can", "Tags": "history cans", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8024"}} +{ "Id": "8024", "PostTypeId": "2", "ParentId": "8022", "CreationDate": "2020-04-02T14:59:31.280", "Score": "1", "Body": "

And, according to English Wikipedia and its source (ref. [26]), you may be right:

\n\n
\n

Busch Bavarian Beer was introduced in 1955 on national TV. Busch Beer was originally sold in the South, Midwest, and Mid-Alantic regions of the U.S.

\n
\n", "OwnerUserId": "8580", "LastActivityDate": "2020-04-02T14:59:31.280", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8025"}} +{ "Id": "8025", "PostTypeId": "2", "ParentId": "3453", "CreationDate": "2020-04-02T17:06:42.287", "Score": "1", "Body": "

I am pleased to add a pint that I enjoyed particularly: Firefly Bitter is an excellent 3.7% amber ale produced by Hanlons Brewery in the county of Devon.

\n\n

\"Hanlons

\n\n

Further, why not to try those of St. Austell from Cornwall?

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-05-24T14:17:00.023", "LastActivityDate": "2020-05-24T14:17:00.023", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8026"}} +{ "Id": "8026", "PostTypeId": "2", "ParentId": "6770", "CreationDate": "2020-04-03T12:10:10.883", "Score": "0", "Body": "

I would add one more suggestion from Italy: the Belgian Ale Birra Kuka Rosa.

\n\n

Translating some excerpts from the webpage linked above:

\n\n
\n

From the reinterpretation of an ancient Belgian recipe still used in the Gent area, which involves the use of berries during malting, a unique aroma is obtained [...] The smell is fragrant, with clear notes of raspberries and red fruits which however do not cover the hints of hops and malt. The taste features notes of red fruit and spices.

\n
\n\n

Then, once again, I am so surprised that noone in years mentioned the specialties by the Swedish Brewski, brewed with cherries or berries or pineapple or mango...and - well - probably many other fruits!!

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-04-04T07:48:58.763", "LastActivityDate": "2020-04-04T07:48:58.763", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8027"}} +{ "Id": "8027", "PostTypeId": "1", "CreationDate": "2020-04-04T12:11:41.057", "Score": "1", "ViewCount": "72", "Body": "

Are there any craft beers themed for quarantine or confinement? Are any beers specifically marketed for this type of occasion?

\n", "OwnerUserId": "5847", "LastActivityDate": "2020-04-19T20:56:07.440", "Title": "Are there quarantine themed beers?", "Tags": "recommendations craft-beers", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8028"}} +{ "Id": "8028", "PostTypeId": "2", "ParentId": "8027", "CreationDate": "2020-04-04T17:00:47.770", "Score": "2", "Body": "

I just made one. I called it \"Lockdown Pride\", inspired heavily by Dave Line's recipe for London Pride.

\n\n
    \n
  • 3.5kg Maris Otter
  • \n
  • 250g Belgian Amber Malt
  • \n
  • 20l water
  • \n
  • Irish moss
  • \n
  • 250g Palm Sugar
  • \n
  • 30g Fuggles
  • \n
  • 75g (+ 10g dry hop) East Kent Goldings
  • \n
  • Lallemand Nottingham yeast
  • \n
\n\n

The hops were made into a tea in a pressure cooker for 15mins and then lautered in the post boil cool down. The beer was only boiled for 10 mins. OG 1049, FG 1010, that makes 5.2% abv.

\n\n

Of course, it's not for sale ... not that the pubs are open anyway.

\n", "OwnerUserId": "11202", "LastActivityDate": "2020-04-04T17:00:47.770", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8029"}} +{ "Id": "8029", "PostTypeId": "2", "ParentId": "8027", "CreationDate": "2020-04-04T22:37:52.950", "Score": "3", "Body": "

Are there quarantine themed beers?

\n\n

What about the obvious: Corona beer!

\n\n
\n

The novel coronavirus pandemic has temporarily killed all production of Corona beer — but not because of the fake rumours or jokes linking it to the disease.

\n \n

Grupo Modelo, the company that brews Corona beer in Mexico, has been forced to temporarily suspend production under the country’s lockdown measures to slow the spread of COVID-19, the disease caused by the virus. - Corona beer production halts due to coronavirus pandemic

\n
\n\n

It looks officially quarantined to me!

\n\n

As a joke they should perhaps rename it Ebola in lieu of Corona!

\n\n

\"enter

\n\n

I will say this at least: Doing external maintenance in town I find empty Corona beer cans or bottles every day!

\n\n

\"Black

\n\n

Black Plague craft beer might fit the bill also.

\n\n

\"Baphomet

\n\n

Baphomet - Graphic Stein

\n\n

If you can not find a ”quarantine beer” in your neighbourhood or home, perhaps to can just go ahead and drink your favourite beer in a beer stein. After all they came out with lids during the bubonic plague as a means to reduce infections from insects.

\n\n
\n

Some 500 years ago Europe was inundated with swarms of flies during the summer months. This combined with memories of the plague called for some sort of action by citizens.

\n \n

By the 1500s folks in Germany had figured out that the plague had taken fewer victims in areas that adhered to certain hygienic standards. Cleanliness made a difference in who lived and who died so laws were passed to encourage citizens to leave their filthy ways to the past. One of those laws was that all food and beverage containers had to have lids to protect people from dirty insects.

\n \n

Covered containers were just a small part of the movement to clean up the community. Another law required that beer could only be made from hops, cereals, yeast and water. This allowed for a better quality beer and did away with the recipes that made beer from rotten bread and such.

\n \n

Long story short is that the beer industry took off in Germany and has never looked back. The covered beer stein was one innovation that took the fancy of the population long after the threat of disease had passed. The upper class would have had their beer steins made from pewter but the commoner would have embraced those made of pottery. Other mediums used would have included ivory, porcelain, wood, silver and more. Everyone would have had their own individual stein and some of them could be right fancy. All sorts of designs from coats of arms to biblical scenes have turned up on the outside of these steins.

\n \n

When the industrial age hit beer steins became less expensive to make. Instead of individually molding pottery into a mug they could now be mass produced with each design having a sharpness once associated with the hand made. Strong pottery seemed to be the chosen medium for most steins however glass and pewter did enter the market in a big way.

\n \n

Finding one of these beauties would be a treat for the collector. Over a 500 year period there would have been lots of steins made in Germany for the discerning collector to find. For the collector of the original steins they can expect to pay hundreds of dollars. Those who collect steins issued by American breweries will pay considerably less. - Beer stein an invention caused by the bubonic plague

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-04-19T20:56:07.440", "LastActivityDate": "2020-04-19T20:56:07.440", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8030"}} +{ "Id": "8030", "PostTypeId": "2", "ParentId": "3503", "CreationDate": "2020-04-05T03:45:02.257", "Score": "0", "Body": "

\"enter\"enter

\n\n

The above picture is actually from my aged beer that I cracked open tonight. I purchased this particular beer from Lakenheath, England in September 2014. The beer is very much well-aged and has hints of sherry within. It has little carbonation, as do most English Ales.

\n", "OwnerUserId": "11206", "LastActivityDate": "2020-04-05T03:45:02.257", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8031"}} +{ "Id": "8031", "PostTypeId": "2", "ParentId": "7684", "CreationDate": "2020-04-06T22:09:44.497", "Score": "2", "Body": "

This article does not reference any date, but says something interesting:

\n\n
\n

Mexicans have long known that a little sodium chloride on the tongue can help to mollify the fiery flavor that characterizes much of their food. They use salt when downing chile peppers, for example. By the same token, citrus juices of various kinds have long been used to kill the aftertaste of the more potent forms of alcohol [...] Anyway, when tequila came to the U.S., the salt and lime (or lemon) bit came with it.

\n
\n\n

Further, Stanford University Press Blog states that salt and lime were used to mask bad tequila:

\n\n
\n

Legend holds that the origin of serving salt and lime with tequila evolved as a response to an early tequila “boom” in the late 19th-century. The unpredicted spike in popularity led to a proliferation of poor quality tequila brands; salt and lemon were used to mask the taste of crudely-made tequila. Unpleasant or not, the ritual remained and soon became a familiar feature throughout Mexican popular culture.

\n
\n", "OwnerUserId": "8580", "LastActivityDate": "2020-04-06T22:09:44.497", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8032"}} +{ "Id": "8032", "PostTypeId": "2", "ParentId": "8020", "CreationDate": "2020-04-07T11:19:28.457", "Score": "3", "Body": "

To make it with \"simple things that may find in any kitchen for daily needs\" is not possible to my knowledge. However you can with a few pieces bits that you should be easily able to get your hands on.

\n\n

For example this recipe I found online :

\n\n
    \n
  • Roughly 2 pounds of white sugar (preferably not bleached).
  • \n
  • 1 gallon of water, purified if possible.
  • \n
  • 2 empty water jugs made of HDPE plastic (simply look at the mark on the bottom of the jug), or a glass drinking jug.
  • \n
  • 1 jar of simple baker’s yeast.
  • \n
  • About 2 ½ feet of coiled copper tubing (not as expensive as you might think).
  • \n
  • A bowl of cold water or ice big enough to hold your container (this is not a\nnecessary step but it helps speed up the process).
  • \n
  • 1 thermometer.
  • \n
  • 1 funnel.
  • \n
  • Duct tape.
  • \n
\n\n

Note that it does take over 2 weeks.

\n", "OwnerUserId": "8672", "LastActivityDate": "2020-04-07T11:19:28.457", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8033"}} +{ "Id": "8033", "PostTypeId": "2", "ParentId": "7241", "CreationDate": "2020-04-10T00:38:07.493", "Score": "1", "Body": "

I either pour a little at the bottom of a glass, and then add prosecco... or as of late...

\n\n

I pour a shot of it into a fruity beer, such as a cranberry/ raspberry sour. I call it an italian car bomb. It's surprisingly refreshing.

\n", "OwnerUserId": "11219", "LastActivityDate": "2020-04-10T00:38:07.493", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8034"}} +{ "Id": "8034", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2020-04-13T04:30:04.883", "Score": "1", "Body": "

Don’t do this unless it’s horrible tequila and you would have a reason to want to destroy terrible flavor and aromas. Certain spirits, like tequila/mezcal and bourbon/scotch/whisky, should virtually never be stored in the freezer and aren’t meant to be served that cold. Freezing actual good tequila is worse than just setting your money on fire because it does the tequila a disservice.

\n", "OwnerUserId": "11227", "LastActivityDate": "2020-04-13T04:30:04.883", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8035"}} +{ "Id": "8035", "PostTypeId": "1", "CreationDate": "2020-04-14T05:57:35.550", "Score": "2", "ViewCount": "24", "Body": "

If I brew beer at home can I give it to friends or relatives. In South Africa

\n", "OwnerUserId": "11231", "LastActivityDate": "2020-04-14T05:57:35.550", "Title": "Home Brewing in South Africa", "Tags": "laws", "AnswerCount": "0", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8036"}} +{ "Id": "8036", "PostTypeId": "1", "CreationDate": "2020-04-15T08:41:18.013", "Score": "1", "ViewCount": "49", "Body": "

I bought it last at Eagle Spirit 212 Wye Road Sherwood Park, Alberta, Canada.

\n", "OwnerUserId": "11238", "LastEditorUserId": "6874", "LastEditDate": "2020-04-17T12:58:50.277", "LastActivityDate": "2020-04-17T12:58:50.277", "Title": "Where can I buy Grimbergen Beer in Edmonton or Sherwood Park, Alberta?", "Tags": "drink canada", "AnswerCount": "0", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8037"}} +{ "Id": "8037", "PostTypeId": "2", "ParentId": "7969", "CreationDate": "2020-04-17T14:53:57.323", "Score": "1", "Body": "

This is a very interesting post, as I would never do such a thing as I prefer Bourbon Barrel Aged Beers, so olives in that would be odd. There is a beer called Salty Lady with is a Gose that tastes like one mixed pickle juice and peppercini juice for that really sour flavor...

\n", "OwnerUserId": "7933", "LastEditorUserId": "5064", "LastEditDate": "2020-04-25T22:07:12.130", "LastActivityDate": "2020-04-25T22:07:12.130", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8039"}} +{ "Id": "8039", "PostTypeId": "1", "AcceptedAnswerId": "8044", "CreationDate": "2020-04-19T13:28:56.923", "Score": "1", "ViewCount": "75", "Body": "

Popsicles bring home the idea of warmer days and entertainment amongst friends. During our self isolation moments we want to make the best of the moment of those fun days (like being on a beach), but in reality staying home because of the Covid-19 situation.

\n\n

Does anyone have any recommendations to make on alcoholic popsicles? Is there a particular mould that works best for keeping it colder longer? Any ideas are welcome.

\n\n

Would appropriate a recipe in any answers (even via a link).

\n\n

Any personal experiences would make a recommendation so much more meaningful!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-04-19T23:48:43.957", "LastActivityDate": "2020-04-22T00:06:24.633", "Title": "Alcoholic popsicle recommendations?", "Tags": "taste recommendations ingredients alcohol recipes", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8040"}} +{ "Id": "8040", "PostTypeId": "2", "ParentId": "8039", "CreationDate": "2020-04-19T20:47:36.300", "Score": "2", "Body": "

Dirty Pirate Popsicles

\n\n

I honestly have never made this one. Some time back a friend of mine made these for a backyard barbecue. They were quite delicious. However not being quite as hard as ice, we had to down it relatively quick. The ones in the picture were similar to my friend’s popsicles.

\n\n

\"Dirty

\n\n
\n

Ingredients

\n \n

2 1/2 cups Diet Coke™

\n \n

1/3 cup Captain Morgan™ original spiced rum

\n \n

1/3/cup Kahlúa™

\n
\n\n

My friend told me that using Diet Coke worked better than the regular coke.

\n\n

Wanting to make some for a nice form of distraction, I wanted to find out if a particular shape of popsicle would stay harder longer. Here is what I found out.

\n\n
\n

Slightly flat Coke will produce a popsicle that stays frozen longer. To quickly and manually flatten out the carbonation, empty out enough Coke from a 2-liter bottle to leave a 3-inch space from top of bottle to top of coke. Place cap back on and shake vigorously for 10 seconds. Set aside to leave bubbles to subside. - Dirty Pirate Popsicle

\n
\n\n

The following is taken from Quora:

\n\n
\n

Do Ice shapes matter? If so, which shape of Ice keeps my drink colder the longest?

\n \n

The larger the surface area, the faster the ice will melt. A cube of ice will last longer than a flat slab of ice of the same mass. The shape with the smallest surface area per volume is a sphere.

\n \n

A spherical piece of ice would melt slower than any other shape. There are moulds available to make spherical ice cubes, and they are favoured by some people who use them in alcoholic drinks because they take longer to water down the beverage.

\n
\n\n

That is right round popsicle moulds work best for any alcoholic popsicles!

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-04-19T20:47:36.300", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8041"}} +{ "Id": "8041", "PostTypeId": "2", "ParentId": "385", "CreationDate": "2020-04-20T23:28:28.947", "Score": "1", "Body": "

Guinness and Harp - a Half & Half

\n\n

Guinness and Ale - Bass, Smithwick's, or John Courage is a Black and Tan.

\n\n

The thought of attempting to properly pour either using lite beer is deplorable!

\n", "OwnerUserId": "11248", "LastActivityDate": "2020-04-20T23:28:28.947", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8042"}} +{ "Id": "8042", "PostTypeId": "1", "CreationDate": "2020-04-21T11:17:46.533", "Score": "1", "ViewCount": "37", "Body": "

Good day everyone,

\n\n

I write for The Citizen newspaper.

\n\n

Mpumalanga Provincial Commissioner Lt General Mondli Zuma has stated it is illegal to home brew beer. I'd like to help correct him on this. If anyone is willing to speak to me on the record, I would appreciate it greatly.

\n\n

I've read the \"How to homebrew legally in South Africa?\", however I need a bit more detail (How to homebrew legally in South Africa?)

\n\n

Please DM me your contact details and I'll call you asap.

\n\n

Thank you.

\n", "OwnerUserId": "11251", "LastActivityDate": "2020-04-21T11:17:46.533", "Title": "Home brew legalities South Africa", "Tags": "home-brewing", "AnswerCount": "0", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8043"}} +{ "Id": "8043", "PostTypeId": "1", "CreationDate": "2020-04-21T21:40:55.167", "Score": "1", "ViewCount": "58", "Body": "

Planning to do a Quarantine Beer Around The World company event and one of the categories is Wheat Beer - specifically looking at hefeweizens. A favorite is Live Oak given the clover and banana nodes but looking for additional recommendations.

\n", "OwnerUserId": "11256", "LastEditorUserId": "5064", "LastEditDate": "2020-04-22T12:13:10.477", "LastActivityDate": "2020-04-30T00:29:30.920", "Title": "Recommendations for a hefeweizen or wheat beer?", "Tags": "recommendations hefeweizen", "AnswerCount": "2", "CommentCount": "1", "ClosedDate": "2020-05-04T03:54:41.170", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8044"}} +{ "Id": "8044", "PostTypeId": "2", "ParentId": "8039", "CreationDate": "2020-04-21T21:56:10.303", "Score": "2", "Body": "

A few of out of the box ideas if you don't want to deal with the hassle of alcohol being a bit finicky when freezing or you don't have molds. I've done all of these myself.

\n\n

1) Pour a glass of Prosecco and dip any store-bought fruity popsicle in as the \"ice\" - makes for a good Bellini!

\n\n

2) If you do have a mold, a fun one from the college days is soaking gummy bears in vodka, then freezing them in a mold with something like ginger ale. It's very sweet though! The same recipe was on this list from Country Living: 18 Boozy Popsicles to Enjoy This Summer.

\n\n

3) If you have a snow cone maker or a way to obtain shaved ice/drive through a sonic...pick your favorite \"slush\" or \"snow cone\" and top with alcohol. For example, I love a good coconut snow cone with some sweet half & half and a shot of light rum on top.

\n\n

Hope that helps!

\n", "OwnerUserId": "11256", "LastEditorUserId": "5064", "LastEditDate": "2020-04-22T00:06:24.633", "LastActivityDate": "2020-04-22T00:06:24.633", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8045"}} +{ "Id": "8045", "PostTypeId": "2", "ParentId": "6741", "CreationDate": "2020-04-22T00:55:08.467", "Score": "1", "Body": "

I recently made a chartreuse clone by diluting everclear to 110 proof. Then add 3 tbsp juniper berries, 2 tsp herbs de Provence, tsp fennel seeds, 4 peppercorns, tsp coriander seeds’ 1 bay leaf, and 3 mint leaves. Let stand for a week a filter. Add 1 cup sugar. The recipe is for a fifth.

\n", "OwnerUserId": "11257", "LastActivityDate": "2020-04-22T00:55:08.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8047"}} +{ "Id": "8047", "PostTypeId": "5", "CreationDate": "2020-04-22T11:40:06.430", "Score": "0", "Body": "", "OwnerUserId": "-1", "LastEditorUserId": "-1", "LastEditDate": "2020-04-22T11:40:06.430", "LastActivityDate": "2020-04-22T11:40:06.430", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8048"}} +{ "Id": "8048", "PostTypeId": "4", "CreationDate": "2020-04-22T11:40:06.430", "Score": "0", "Body": "Tag for posts relating to ginger beer.", "OwnerUserId": "8672", "LastEditorUserId": "8672", "LastEditDate": "2020-04-27T10:32:54.670", "LastActivityDate": "2020-04-27T10:32:54.670", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8049"}} +{ "Id": "8049", "PostTypeId": "2", "ParentId": "8043", "CreationDate": "2020-04-22T13:53:36.800", "Score": "2", "Body": "

I like Paulaner's Hefeweizen (German brewer) and also Leinenkugel's Sunset Wheat and it's hard to go wrong with Blue Moon.

\n\n

But beer tends to be quite regional as far as what is available outside the large brewers. Local craft beers normally don't make it too far away.

\n\n

My recommendation would be to use a site like Beer Advocate or Untappd to try and find local stores selling them.

\n", "OwnerUserId": "5027", "LastActivityDate": "2020-04-22T13:53:36.800", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8051"}} +{ "Id": "8051", "PostTypeId": "2", "ParentId": "8043", "CreationDate": "2020-04-24T09:13:41.070", "Score": "2", "Body": "

I firmly suggest Maisel's from Bayreuth (Germany) and Weihenstephaner from Freising (Germany), this latter both hefe and kristall. Traditional - no flavours or special effects - but mandatory to try.

\n\n

Also, how not to cite HB from Munich (Germany).

\n\n

Cheers!!

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-04-30T00:29:30.920", "LastActivityDate": "2020-04-30T00:29:30.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8054"}} +{ "Id": "8054", "PostTypeId": "1", "CreationDate": "2020-05-01T02:40:20.307", "Score": "1", "ViewCount": "79", "Body": "

Can I drink Dogfish Head Sixty One four years after the expiry date?

\n\n

Would there be any danger to one’s health? Will it just give a bad taste or is it harmful?

\n", "OwnerUserId": "11281", "LastEditorUserId": "37", "LastEditDate": "2020-05-04T03:53:15.870", "LastActivityDate": "2020-05-04T03:53:15.870", "Title": "Can I drink Dogfish Head Sixty One four years after the expiry date?", "Tags": "health craft-beers", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8055"}} +{ "Id": "8055", "PostTypeId": "2", "ParentId": "8054", "CreationDate": "2020-05-01T16:30:29.487", "Score": "2", "Body": "

There should be no danger to your health, it just probably won't taste very good depending on how well it's sealed. 61 is 6+% ABV which should be more than enough to prevent most if not all harmful pathogens from growing. It's also absurdly hoppy which increased the antimicrobial properties even more.

\n\n

If there's anything fuzzy or slimy floating around you may want to avoid it since the experience may be unpleasant but there shouldn't be anything in there that will actually make you sick. There's a very specific reason alcoholic beverages in general are given a lot of credit for allowing human civilization to survive until we figured out germ theory and sanitary practices, and that's that alcoholic drinks became much safer than ground water after we invented the city.

\n", "OwnerUserId": "268", "LastActivityDate": "2020-05-01T16:30:29.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8059"}} +{ "Id": "8059", "PostTypeId": "1", "AcceptedAnswerId": "8062", "CreationDate": "2020-05-11T08:34:02.717", "Score": "5", "ViewCount": "680", "Body": "

On bottles of Budweiser it claims that:

\n\n
\n

We know of no brand produced by any other brewer which costs so much to brew and age.

\n
\n\n

Photo

\n\n

This seems implausible both from the point of view of economics (it’s brewed in enormous quantities and sold cheaply), and given it doesn’t involve any special additional ingredients, ageing, or hand production. Why do they claim this and how are they allowed to?

\n\n

Note: I can see that it may hinge on what “brew”, “know”, “producer” means but unlike, for example “possibly the best beer in the world....” , it makes an objective claim.

\n", "OwnerUserId": "11308", "LastEditorUserId": "37", "LastEditDate": "2020-05-17T00:51:52.660", "LastActivityDate": "2020-05-17T01:01:35.597", "Title": "Is Budweiser really the most expensive beer to brew?", "Tags": "history brewing breweries", "AnswerCount": "1", "CommentCount": "9", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8061"}} +{ "Id": "8061", "PostTypeId": "1", "CreationDate": "2020-05-12T11:56:10.233", "Score": "4", "ViewCount": "96", "Body": "

An English relative sent me a map of distilleries based in England today, which I'd never thought of before. Of course Scotch can only be made in Scotland, which begs the question of what these English distilleries are doing. Do they try to mimic the style of Scotch, generally, or something else?

\n\n

\"enter

\n", "OwnerUserId": "938", "LastActivityDate": "2020-06-20T22:56:08.063", "Title": "The style of whiskies produced in England?", "Tags": "whisky", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8062"}} +{ "Id": "8062", "PostTypeId": "2", "ParentId": "8059", "CreationDate": "2020-05-17T01:01:35.597", "Score": "7", "Body": "

The answer may be in the question you asked:

\n\n
\n

it’s brewed in enormous quantities

\n
\n\n

If you look at the aggregate cost, it is indeed almost certainly the most expensive beer in the world to brew and age, because they make so much of it. The total cost for brewing Budweiser probably far exceeds the cost of brewing any other single recipe, year over year.

\n\n

Per bottle, however is a different story. Budweiser isn't particularly cheap, from a bill of materials perspective, but it isn't exceptionally expensive either. However when it was introduced, it was extremely expensive. At retail it cost the equivalent of $17 a bottle today. The cost savings today are largely due to efficiencies in integration, scale, and processes.

\n\n

So is it still true that it's the most expensive beer to produce today? On a per bottle basis, certainly not. That doesn't mean, however, that they're cutting corners on production, but as the comments noted, simply taking whatever legal liberties are available to them when making that claim.

\n", "OwnerUserId": "37", "LastActivityDate": "2020-05-17T01:01:35.597", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8064"}} +{ "Id": "8064", "PostTypeId": "1", "CreationDate": "2020-05-22T08:27:42.227", "Score": "4", "ViewCount": "109", "Body": "

I recently bought a bottle of beer (imperial stout) which is \"best before\" 2033. It's more than 13 year from now. I know that strong beers have a high longevity and I even have some Belgians expiring in 3-4 years. But 13? Is it possible that a beer can be stored for 13 years without loosing its quality or is it rather a typo (and it's not 33 but probably 22 or 23)?

\n\n

\"Best

\n", "OwnerUserId": "4742", "LastActivityDate": "2020-06-15T01:39:57.827", "Title": "Can a beer be stored for 13 years?", "Tags": "storage imperal-stout", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8065"}} +{ "Id": "8065", "PostTypeId": "1", "CreationDate": "2020-05-26T23:16:43.760", "Score": "3", "ViewCount": "229", "Body": "

If you check websites like Drizly, it seems that people in Ohio aren’t allowed to order a bottle of scotch. Why is that?

\n\n

Edit: The delivery services I’m referring to (e.g. Drizly) are a delivery service like food deliveries, not UPS or FedEx. They aren’t distributors, and they don’t carry the packages across state lines — they’re just local drivers that pickup and deliver a bottle from the nearest liquor store.

\n\n

Also, they deliver beer, so I doubt it has to do with minors.

\n\n

As an additional note, they deliver scotch in the state I’m from, so it seems to be something unique to this state, like some kind of law (which I have been unable to find).

\n", "OwnerUserId": "11350", "LastEditorUserId": "-1", "LastEditDate": "2020-06-16T20:29:12.177", "LastActivityDate": "2021-01-18T15:41:20.637", "Title": "Why aren’t people in Ohio allowed to order a bottle of scotch?", "Tags": "spirits laws", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8066"}} +{ "Id": "8066", "PostTypeId": "2", "ParentId": "212", "CreationDate": "2020-05-29T15:04:56.597", "Score": "0", "Body": "

Ale Le Coq in Sweden make a triple Bock label has rams head with red glowing eyes Mostly Alkies drink it because of the strength but it tastes lovely.

\n", "OwnerUserId": "11358", "LastActivityDate": "2020-05-29T15:04:56.597", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8067"}} +{ "Id": "8067", "PostTypeId": "2", "ParentId": "8064", "CreationDate": "2020-05-29T17:46:39.873", "Score": "2", "Body": "

I was trying to find a study, which would prove if it is true or not, but I was not lucky.\nAt least I found a few resources, that say, that especially imperial stouts can last even 10 years.1,2

\n\n

In one article, there is even written about imperial stouts, that

\n\n
\n

Bolder flavors and mouthfeel tend to smooth out after several years.3

\n
\n\n

In that case, I do not think, this would be a typo. Still, there certainly can be some change in quality.

\n", "OwnerDisplayName": "user11359", "LastActivityDate": "2020-05-29T17:46:39.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8068"}} +{ "Id": "8068", "PostTypeId": "1", "AcceptedAnswerId": "8091", "CreationDate": "2020-05-30T14:52:14.110", "Score": "2", "ViewCount": "1701", "Body": "

I was wondering whether or not coffee can be mixed with tequila.

\n\n

If yes, in which quantities or how?

\n\n

What would be the result, would it taste good?

\n\n

Normally I get two very different results after drinking both separately, would be nice to know what would happen after drinking both being mixed.

\n", "OwnerUserId": "8485", "LastActivityDate": "2020-06-27T16:25:23.137", "Title": "What happens if you mix coffee with tequila?", "Tags": "taste recommendations spirits tequila mixers", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8069"}} +{ "Id": "8069", "PostTypeId": "2", "ParentId": "8068", "CreationDate": "2020-05-31T00:07:40.280", "Score": "3", "Body": "

Coffee can definitely be mixed with tequila.

\n\n

However most recipes do not stop at simply a tequila/coffee mixture. The vast majority of such drinks involve a few more ingredients into these types of drinks.

\n\n

A friend of mine is a great fan of kahlua, so obviously we like to make something similar to a Mexican Coffee.

\n\n
\n

Ingredients

\n \n
    \n
  • 10 ounces coffee (freshly brewed hot)
  • \n
  • 2 ounces coffee liqueur (such as Kahlua)
  • \n
  • 2 ounces tequila
  • \n
  • 3 ounces heavy cream
  • \n
  • 2 teaspoons sugar
  • \n
  • ground cinnamon (for garnish)
  • \n
\n
\n\n

I find this rather enjoyable drink!

\n\n

What happens if you mix coffee with tequila?

\n\n

The answer is that one could possible be a wired drinker (drunk)! Lol.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-06-03T11:29:08.587", "LastActivityDate": "2020-06-03T11:29:08.587", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8070"}} +{ "Id": "8070", "PostTypeId": "2", "ParentId": "6860", "CreationDate": "2020-05-31T01:34:58.497", "Score": "1", "Body": "

There are many stories/ visuals which support that the Marula tree from Southern Africa will naturally ferment after falling off the tree, and that animals from the area will eat them for pleasure, this also is the main ingredient in Amarula, a popular alcohol brand in SA (this is just what I've been told/ read, if anyone knows otherwise please do let me know!)

\n", "OwnerUserId": "11362", "LastActivityDate": "2020-05-31T01:34:58.497", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8072"}} +{ "Id": "8072", "PostTypeId": "2", "ParentId": "8064", "CreationDate": "2020-06-11T18:14:35.433", "Score": "2", "Body": "

I'm not an expert on very old beers but it doesn't sound too unreasonable. Heavy beers with lots of hops and alcohol would usually stay good for longer than lighter beers. The way the bottles are stored may become a factor if you are going to store them for longer periods of time. The way the bottles were stored might affect their value if you were to sell them later on.

\n\n

Usually beers intended for long storage would have cork and muselet, rather than a metallic cap. You can mitigate the effects of the metallic caps by storing the bottles in an upright position so the beer makes as little contact with the cap as possible. High quality beers would typically be in dark bottles to protect them from light. Storing the bottles in pitch black would probably be a good idea if you wanted them to last for that long. Not sure what would be a good temperature.

\n", "OwnerUserId": "11382", "LastActivityDate": "2020-06-11T18:14:35.433", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8073"}} +{ "Id": "8073", "PostTypeId": "2", "ParentId": "7969", "CreationDate": "2020-06-11T18:54:30.137", "Score": "2", "Body": "

I'm from the Midwest, and this is very common. I've done this for years, and since I became gluten free about 8 years ago (not by choice), I do this often. The gluten free beers are not that great, so adding olives or making it a red beer helps with the taste.

\n", "OwnerUserId": "11383", "LastActivityDate": "2020-06-11T18:54:30.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8075"}} +{ "Id": "8075", "PostTypeId": "1", "AcceptedAnswerId": "8077", "CreationDate": "2020-06-14T05:33:31.550", "Score": "4", "ViewCount": "88", "Body": "

Back in the day, I used to see Maker's 46 advertised without the \"Kentucky Straight Bourbon\" label. Instead, it was just called \"Kentucky Bourbon Whisky\" as in this picture:

\n\n

\"enter

\n\n

However, they are now bottling it with the \"Straight\" label, as seen here:\n\"enter

\n\n

It was my understanding that in order to be a \"straight\" bourbon whisky, you need to be matured in 100% American oak, period. But Maker's 46 is finished with French oak staves, so how are they able to circumvent this categorization law?

\n", "OwnerUserId": "11387", "LastActivityDate": "2020-06-15T10:24:39.557", "Title": "Makers 46 \"Straight Bourbon\"", "Tags": "bourbon", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8076"}} +{ "Id": "8076", "PostTypeId": "2", "ParentId": "8064", "CreationDate": "2020-06-15T01:39:57.827", "Score": "5", "Body": "

I recently acquired a book called \"Vintage Beers\" by Patrick Dawson. The subject of the book is about aging beers and what characteristics of beers lend themselves to cellaring.

\n\n

He lists 14 rules for aging beers. He clearly states that most beers are not good for aging and that they are best consumed fresh but if a beer meets certain criteria than it can, and will, benefit from aging.

\n\n

I will not take the time to paraphrase the whole book but i will include a few quotes.

\n\n
\n

You cellar and drink 10-year old beers? Are you crazy?

\n \n

Aging beer allows time for flavors not immediately present to develop\n and meld.

\n \n

Rule #3, Darker malts create sherry and port flavors with age.

\n \n

Beers should be cellared bellow their fermentation temperature.

\n
\n\n

The bottom line is if you love a particular beer and it falls withing the guidelines set forth in his book then you would be well advised to age it properly and enjoy it at a quality and taste level not available unless it is aged in a cellar.

\n", "OwnerUserId": "6473", "LastActivityDate": "2020-06-15T01:39:57.827", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8077"}} +{ "Id": "8077", "PostTypeId": "2", "ParentId": "8075", "CreationDate": "2020-06-15T08:28:59.203", "Score": "3", "Body": "

Actually, the label doesn't say it's Straight Bourbon Whisky. It says it's Straight Bourbon Whisky finished with french oak. So, it was Straight Bourbon before it was finished.

\n\n

Jim Beam probably didn't use Straight Bourbon in earlier releases, or made sure they can legally put \"Straight\" on the label in the meantime.

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2020-06-15T10:24:39.557", "LastActivityDate": "2020-06-15T10:24:39.557", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8078"}} +{ "Id": "8078", "PostTypeId": "2", "ParentId": "7969", "CreationDate": "2020-06-16T00:26:01.303", "Score": "2", "Body": "

\"enter

\n\n

\"enter

\n\n

Yum! Because it's delicious! Despite using a New Glarus glass, my favorite beer to add sinkers, (Olives) to is Hoegaarden. Otherwise a cold & cheap Miller Lite does the trick. Olives add a briney, salty kick of flavor. Especially good in hot weather. I'm from Southern Minnesota and we call olives sinkers. \nSome folks prefer a pickle to olives. Usually with a Bud Lite. I hate Bud Lite but it's tolerable with a pickle.

\n", "OwnerUserId": "11389", "LastActivityDate": "2020-06-16T00:26:01.303", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8079"}} +{ "Id": "8079", "PostTypeId": "1", "AcceptedAnswerId": "8080", "CreationDate": "2020-06-16T12:07:45.810", "Score": "3", "ViewCount": "821", "Body": "

If a 12 year old single malt Scotch has the label of double cask or double matured (some say double wood), assuming oak and sherry, does it mean

\n\n
    \n
  1. a portion of the whisky is matured in oak cask for 12 years, and a portion of the whisky is matured in sherry cask for 12 years and the final product is a mixture of the two in some ratio (e.g. 50:50). OR

  2. \n
  3. the whisky in matured in oak cast for some years (say 8) and then the whisky from the oak cask has been transferred to sherry cask for the rest of the years (4) for further maturation.

  4. \n
\n\n

I hope my question makes sense. Please answer if you know the answer but don't make guesses.

\n", "OwnerUserId": "11392", "LastEditorUserId": "3875", "LastEditDate": "2020-06-16T20:27:41.647", "LastActivityDate": "2020-06-17T07:42:10.023", "Title": "How are double and triple casks whiskies matured?", "Tags": "whiskey whisky", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8080"}} +{ "Id": "8080", "PostTypeId": "2", "ParentId": "8079", "CreationDate": "2020-06-17T07:42:10.023", "Score": "3", "Body": "

The answer is of course: both

\n\n

Lets take some popular examples...

\n\n

Balvenie Double Wood\nMatured in Ex-Bourbon casks and finished in Ex-Oloroso Sherry Casks, so (2)

\n\n

Auchentoshan Three Wood\nMatured in Ex-Bourbon casks for 10 years, then finished for two years in Ex-Oloroso Sherry casks and then finished for six month in Ex-PX Sherry casks, so (2)

\n\n

Laphroaig Four Oak\nA vatting of whisky matured in four different types of casks: Ex-Bourbon barrels, Quarter casks, Virgin oak barrels and European oak hogsheads, so (1)

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-06-17T07:42:10.023", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8081"}} +{ "Id": "8081", "PostTypeId": "1", "CreationDate": "2020-06-18T14:52:26.503", "Score": "1", "ViewCount": "28", "Body": "

I have Celiac and cannot drink normal beers. (which I miss) I love the taste of beer, and the only ones I have found and available in stores that taste decent are RedBridge and New Grist. (not a fan of cider beers). I am looking for new gluten free beers with great taste and are truly gluten free, and not just gluten reduced. Would love to hear recommendations from you.\nThank you.

\n", "OwnerUserId": "11383", "LastEditorUserId": "5064", "LastEditDate": "2020-06-20T23:10:58.300", "LastActivityDate": "2020-06-21T12:59:43.203", "Title": "Gluten-Free beer recommendations?", "Tags": "recommendations specialty-beers gluten-free", "AnswerCount": "0", "CommentCount": "2", "ClosedDate": "2020-06-22T10:17:42.880", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8082"}} +{ "Id": "8082", "PostTypeId": "2", "ParentId": "8061", "CreationDate": "2020-06-20T22:56:08.063", "Score": "1", "Body": "

Generally, they make something that doesn't resemble Scotch Whisky. There are many styles and types of whisky, or whiskey with an 'e', and it's made all around the world. There are distinct and famous styles from Ireland, Japan, and the United States. Sullivan's Cove from Australia, Mackmyra from Sweden, and Kavalan from Taiwan have all made award winning whiskys. There are at least 4 whisky distilleries in Toronto, Canada alone.

\n

Not every whisky made in Scotland can even technically be called a Scotch, there are regulations that Scotch follows and some distillers will step outside of those bounds for creative reasons. Scotch regions are also individually recognized for their unique styles.

\n

Often in areas where there is no strong history of whisky, each distillery will kind of do their own thing because the drinkers of the region don't have strong expectations of what the whiskey should be. This is especially true in today's global economy, consumers have tasted bottles from all over the world so there is no accepted standard in new markets. The distillers will borrow ideas from regions that do have a strong tradition, mostly they just try to make something that tastes good. So even though Japanese whisky, for example, was borne essentially directly from Scotch in the 60's, there are strong differences between them. Some of this is because whisky highballs are super popular in Japan, and whiskys will be blended with this in mind. Some of this is for technical reasons, different altitudes make for different distillation temperatures.

\n

In conclusion, they different... probably.

\n", "OwnerUserId": "5974", "LastActivityDate": "2020-06-20T22:56:08.063", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8084"}} +{ "Id": "8084", "PostTypeId": "2", "ParentId": "791", "CreationDate": "2020-06-21T14:23:09.493", "Score": "2", "Body": "

Gluten-Free beer recommendations?

\n

Just as gluten intolerance will vary with individuals, so will recommendations for gluten-free beer recommendations vary as being preferred by individuals, at any given time.

\n

As for myself, I too am gluten-intolerant (celiac), but taste is a whole different ballgame. I started out by going to the government liquor stores to ask about the best beers for celiac suffers.

\n

Naturally they were non-committal in their recommendations, but one in fact said to avoid any buckwheat brewed beer as the taste (flavour) was quite strong and many seemed to not truly enjoy the taste. But then, taste is a personal preference. Just as buckwheat honey goes, I prefer an other type of honey. Buckwheat has a strong flavour to say the least.

\n

Other than recommending that you ask your local liquor stores what they recommend, I will simply recommend these as coming from the net, the 10 Best Gluten-Free Beers:

\n
    \n
  1. ESTRELLA DAMN DAURA
  2. \n
  3. GREEN’S AMBER ALE
  4. \n
  5. IPSWICH ALE BREWERY, CELIA SAISON
  6. \n
  7. TWO BROTHERS PRAIRIE PATH GOLDEN ALE
  8. \n
  9. STONE DELICIOUS IPA
  10. \n
  11. BRUNEHAUT BELGIAN TRIPEL
  12. \n
  13. OMISSION LAGER
  14. \n
  15. GLUTENBERG IPA
  16. \n
  17. MIKKELLER PETER PALE AND MARY
  18. \n
  19. NEUMARKTER LAMMSBRÄU PURE LAGER
  20. \n
\n

As I said before taste is a personal choice, but I do not personally prefer buckwheat beer, as it is a strong flavoured tasting beer. Once again tasre is a personal matter.

\n

Ultimately, I recommend you talk to your local outlets and find out what is popular on the local market.

\n

Personally I prefer a natural hop flavoured beer. Do not know why but it tastes good to me.

\n

As far as I am concerned I have turned over to gluten-free ciders as my personal go to choice.

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-06-21T14:23:09.493", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8085"}} +{ "Id": "8085", "PostTypeId": "2", "ParentId": "5031", "CreationDate": "2020-06-24T13:23:56.770", "Score": "2", "Body": "

I have a pewter tankard exactly the same as the one pictured.

\n

It has engraving on it which says: “Mike\nCongratulations for 3-6-65 21st Birthday from Reg” It was a gift to my father from his best buddy at the time. Reg had enlisted in the Vietnam War as a volunteer.

\n

My father didn’t as he was gainfully employed and waited to be called. He never was.

\n

I was born in 1967. Reg returned years later but with significant struggles and lost his leg.

\n

Maybe this gift has some bearing on the tradition of recruitment as Reg wanted him to go with him?

\n

\"enter

\n

\"enter

\n", "OwnerUserId": "11405", "LastEditorUserId": "5064", "LastEditDate": "2020-06-24T22:54:47.427", "LastActivityDate": "2020-06-24T22:54:47.427", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8086"}} +{ "Id": "8086", "PostTypeId": "1", "CreationDate": "2020-06-25T20:57:01.050", "Score": "3", "ViewCount": "56", "Body": "

I would like to add a few bottles of Rosé to my wine collection and would like a few recommendations on good Rosé. If you have one, let me know what it is.

\n", "OwnerUserId": "11383", "LastEditorUserId": "5064", "LastEditDate": "2020-06-25T22:22:39.320", "LastActivityDate": "2020-06-27T12:27:09.957", "Title": "Looking for a Rosé recommendation", "Tags": "wine recommendations", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8087"}} +{ "Id": "8087", "PostTypeId": "2", "ParentId": "7907", "CreationDate": "2020-06-25T21:37:37.533", "Score": "0", "Body": "

Take a can of chewing tobacco and blast off.

\n", "OwnerUserId": "920", "LastActivityDate": "2020-06-25T21:37:37.533", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8088"}} +{ "Id": "8088", "PostTypeId": "2", "ParentId": "8086", "CreationDate": "2020-06-25T23:10:18.470", "Score": "4", "Body": "

Looking for a Rosé recommendation?

\n

The ultimate recommendation would involve that particular variety of Rosé you may be interested in.

\n

Having lived many years in France and having drank wine on a very regular bases while overseas, I would like to recommend the Tavel Rosé.

\n

There is just something awesome about wine made from grapes in the Rhone Valley!

\n
\n

Tavel Rosé

\n

The French wine region of Tavel, on the sloping bank of Rhone, is known for its famous rosé wines. In fact, Tavel wines are only available in rosé variety. The rosé wines of this region are also known as the “The King of Rosés”. From light salmon to ruby pink, there are a variety of rosé wines with complex aromas of summer fruits and a full, rounded mouth with hints of spice. The wines in this region are made from Grenache, Syrah, and Clairette varieties.

\n

Food Pairing

\n

It can be served as an aperitif or with seafood pasta, cold fish starters, herb sausages, and a variety of cheese.

\n
\n

The following may be of some interest in making an ultimate choice of Rosé that one may be looking for as a recommendation:

\n\n

\"10

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-06-25T23:10:18.470", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8089"}} +{ "Id": "8089", "PostTypeId": "2", "ParentId": "8086", "CreationDate": "2020-06-26T17:08:02.137", "Score": "3", "Body": "

Ken Graham's answer is excellent. I will say that when I visited Provence, I found just about every rose delicious. In general, everyday Cote de Provence rose is less expensive than Tavel rose. So I might suggest starting with a Cote de Provence rose and graduate to a Tavel.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2020-06-27T12:27:09.957", "LastActivityDate": "2020-06-27T12:27:09.957", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8090"}} +{ "Id": "8090", "PostTypeId": "1", "AcceptedAnswerId": "8092", "CreationDate": "2020-06-27T12:37:09.580", "Score": "2", "ViewCount": "161", "Body": "

I always thought that real bourbon can only be made in the great state of Tennesee, but this country song confuses me:

\n
\n

While I down Kentucky bourbon
\nI am waiting for a call
\nAnd the moon and stars tonight
\nAre playing shadows on the wall

\n

— "Hung Up on You" by Chris Collingwood and Adam Schlesinger.
\nFrom Fountains of Wayne's 2003 album "Welcome Interstate Managers".

\n
\n", "OwnerUserId": "4638", "LastEditorUserId": "11599", "LastEditDate": "2021-01-15T12:53:30.903", "LastActivityDate": "2021-01-15T12:53:30.903", "Title": "Can whiskey made outside of Tennessee be considered bourbon?", "Tags": "whiskey bourbon", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8091"}} +{ "Id": "8091", "PostTypeId": "2", "ParentId": "8068", "CreationDate": "2020-06-27T16:25:23.137", "Score": "3", "Body": "

There are a ton of cocktails that mix tequila and coffee. There are three options for the coffee part of it: canned/bottled, liquor/liqueur, and home brewed/coffee house. Home brewed coffee is fun for experimentation and there are a lot of variables to work with. Coffee has three different growing regions, different roasts, and brewing methods. These things matter very much and make it hard to balance for a cocktail. Keep this in mind when you have a terrible cocktail with home-brewed coffee in it, a different coffee may turn it into something wonderful. Honestly though, most people can't make a good cup of coffee as it is. If you do make a hot coffee destined for a cold cocktail, let it cool first to reduce dilution from the ice. In practice, the same challenges of using home brewed coffee apply to coffee that you get from a coffee shop.

\n

Here are a few that use home brewed coffee:

\n

South of No North: tequila, coffee, cynar, simple syrup, egg white. I have not had this one, but of the cocktails here it's the one I'm most interested in. Cynar is an amaro, a bitter liqueur, made with artichoke. If you've never had an amaro, I would try a few at the bar before buying a bottle. A lot of people don't like them the first time around, ease into it with maybe Amaro Meletti and club soda.

\n

Jalisco Martini: tequila, espresso, and coffee liquor. This is simplest of them all, most in line with what you're looking for. A single shot of espresso should be about one ounce, which is what's called for here. If there is a good coffee house around, I would order an espresso to go and take it home to mix. This recipe was adapted from a recipe by two of the founders of Altos tequila. Feel free to swap Altos, or any tequila, for the Patron which is called for. Patron supports the site author. You can also swap in Kahlua for the coffee liquor for something a little sweeter.

\n

But First, Coffee: tequila, espresso, coffee liqueur, and a spiced coca-cola reduction. This is a sponsored post by a coffee liqueur brand, but it's a good brand. Also, I really like coffee and coke mixed together so this is my kind of thing.

\n

Spiked Horchata: tequila, espresso, Kahlua, almond milk, and agave syrup. From the Kahlua website. Generally, if it's called for Kahlua is not interchangeable with other coffee liquors as it has rum and vanilla that make it unique. The recipe calls for "Olmeca". We can assume "Olmeca" is Altos tequila, probably blanco or reposado. Olmeca Altos tequila is owned by the same parent company as Kahlua, which is the only reason they call for it so, swap it out at will.

\n

Canned or bottled coffees are a little easier to work with than homemade coffee. It's more consistent and easier to swap out. There are a ton of options to choose from though so, when a specific brand isn't called for, there's still some experimentation involved.

\n

Coffee Margarita: tequila, cold brew, Kahlua, lime juice. This sounds... horrifying. It's from the Kahlua website. I'd only give it a try if I already had the ingredients on hand, and I wanted a good laugh. But it could be good, I've never tried it so what do I know?

\n

Mixing coffee drinks is at its most straightforward when they only call for coffee liquors/liqueurs. There are fewer brands to choose from, you'll find a specific brand called for or you'll have a personal favorite. A lot of brands are interchangeable, though some are higher quality than others.

\n

IMO: mezcal, shochu, coffee liquor. Mezcal is related to tequila, like the relationship between Scotch and whisky. Tequila is regulated, it can only be made with blue agave and can only be made in a handful of regions. Mezcal can be made from any number of agave varietals. Shochu is a japanese liquor, in this case made from sweet potato. This is different than what you're looking for, very little coffee here. I include it because this is a super interesting cocktail.

\n

Hot Tamale: tequila, Kahlua, hot sauce. If you thought it couldn't get worse than dumping a bunch of lime juice into your coffee, you can dump a bunch of hot sauce into your coffee. The only coffee here is from the Kahlua, which has very little caffeine in it. There are still other tequila and Kahlua drinks are their website, which I mention for anyone just looking for that coffee & tequila flavor.

\n", "OwnerUserId": "5974", "LastActivityDate": "2020-06-27T16:25:23.137", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8092"}} +{ "Id": "8092", "PostTypeId": "2", "ParentId": "8090", "CreationDate": "2020-06-27T19:10:46.450", "Score": "7", "Body": "

Bourbon has a stronger association with Kentucky than it does Tennesee. Many people even believe that bourbon has to be made in Kentucky in order to legally qualify as bourbon, which is a misconception. This association is for a good reason though, bourbon gets it's name from a county in Kentucky. After bourbon's creation, there is a long history of it being made elsewhere around the country, but after a bourbon market crash in the 1970's, the remaining distillers, with the exception of one, were all in Kentucky. That's no longer the case but, it created the impression that all bourbon comes from Kentucky. Tennessee has Tennessee whiskey, which is basically bourbon made in Tennessee. People often associate Tennessee whiskey with the 'sour mash' process, where some mash is taken from the last batch and used in the new batch. The association between sour mash and Tennessee whiskey is mostly because of labeling and advertising, most bourbons also use a sour mash. Easily the most famous whiskey from Tennessee, Jack Daniels, is labelled as Tennessee whiskey. This has created an even larger distinction, in the minds of the public, between bourbon and Tennessee whiskey. The difference between the two really boils down to regional pride.

\n", "OwnerUserId": "5974", "LastActivityDate": "2020-06-27T19:10:46.450", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8094"}} +{ "Id": "8094", "PostTypeId": "1", "CreationDate": "2020-06-28T16:19:31.417", "Score": "3", "ViewCount": "100", "Body": "

I am looking to make a bunch of Cherry Vishniak this year and I am trying to figure out how best to store it for a long period of time (1-5+ years). I have several corny kegs that I am thinking about storing it in but I don't know if vodka would work well stored in a stainless steel container for long periods of time.

\n

The recipe for the Cherry Vishniak is

\n
3 cups of water\n3 cups of white sugar\n3 cups of vodka\n~2lbs of bing cherries\n
\n

Boil 3 cups of water and 3 cups of sugar to make a simple syrup. Once cool add that to a container with the rest of the ingredients and let sit for a very long period of time.

\n

I have found reference online to aluminum and stainless containers altering the taste of the contents (mainly aluminum) but nothing really related to how long a 304 stainless steel keg can hold something like a cherry vishniak and if it will alter the taste after a few years.

\n

Does anyone know if the stainless steel corning keg would work for making some vishniak?

\n", "OwnerUserId": "11413", "LastActivityDate": "2022-01-29T00:09:10.843", "Title": "Long-term Storage of Vishniak in Corny Keg (Stainless Steel)", "Tags": "vodka keg", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8096"}} +{ "Id": "8096", "PostTypeId": "1", "CreationDate": "2020-06-30T07:34:42.640", "Score": "3", "ViewCount": "91", "Body": "

Traveling to Vietnam in 2018-19 I had the chance to try several (very good!) local craft beers and one of those I tasted in Ho Chi Minh was by Archetype Brewing Co.

\n

I am trying to find out any reference, for example the address of the brewery headquarters, or a company website, because neither Google Maps nor RateBeer and Untappd seem to know where this brand of beer is produced.

\n

Archetype Vietnam is not Archetype USA: https://www.ratebeer.com/search?q=Archetype&tab=brewer

\n

Their logo:

\n

\"Logo\"

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-06-30T14:37:43.743", "LastActivityDate": "2021-03-27T20:37:44.927", "Title": "Where is Archetype microbrewery in Vietnam?", "Tags": "breweries craft-beers local", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8097"}} +{ "Id": "8097", "PostTypeId": "2", "ParentId": "8096", "CreationDate": "2020-06-30T10:24:43.677", "Score": "0", "Body": "

It appears that this brewery is not local to Ho Chi Minh city at all but is based in North Carolina. The only brewery I can find with that name is https://archetypebrewing.com/ based out of Asheville. When I checked their "beer finder" with Ho Chi Minh City ( https://archetypebrewing.com/beer-finder/?fwp_beer_finder_proximity=10.8230989%2C106.6296638%2C10%2CHo%2520Chi%2520Minh%2520City%252C%2520Vietnam - direct link so sorry about the garbled URL ) it finds several locations in the city that sell their beer.

\n", "OwnerUserId": "909", "LastActivityDate": "2020-06-30T10:24:43.677", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8098"}} +{ "Id": "8098", "PostTypeId": "1", "CreationDate": "2020-07-02T02:45:50.683", "Score": "4", "ViewCount": "75", "Body": "

I saw a graph online that seems to be used for quantifying flavour characteristics of an alchoholic drink (sake).

\n

\"enter

\n

Source here and here.

\n

Is this graphing system used for quantifying beer flavors too? If not, is a different system used?

\n", "OwnerUserId": "11425", "LastEditorUserId": "5064", "LastEditDate": "2020-07-05T15:12:22.530", "LastActivityDate": "2020-07-05T15:12:22.530", "Title": "Is there a way quantify beer flavour characteristics?", "Tags": "taste flavor", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8099"}} +{ "Id": "8099", "PostTypeId": "2", "ParentId": "8098", "CreationDate": "2020-07-02T14:30:00.107", "Score": "4", "Body": "

Wikipedia has an entire article on beer measurements. The main truely quantitative measure of taste I'm aware of is the International Bitterness Unit or IBU. Wikipedia has a section which describes the IBU. Of course there are other quantitative measures like alcohol by volume that while not exactly taste give some value in assessing a beer. I've also seen specific gravity reported, but this isn't very common in my experience.

\n

Beer Advocate provides user reviews of beers where the beers are assessed numerically based on look, smell, taste and mouthfeel on a 1 to 5 scale. Although these are based on opinion, with enough reviews a useful amount of user feedback is obtained and quantified (to two significant figures).

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-07-02T14:30:00.107", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8100"}} +{ "Id": "8100", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2020-07-03T07:52:26.917", "Score": "0", "Body": "

I know people who freeze tequilas, rums, and vodkas. The thing is, at room temperatures these drinks will have more taste and perfume. If you put them in the freezer, they loses that flavor and become more acidic. For example, rum and whiskey are miserable in the fridge. But for tequila it's OK if you will have it in shots as it is more intense, and vodka is OK because it is pure alcohol.

\n", "OwnerUserId": "11430", "LastEditorUserId": "37", "LastEditDate": "2020-07-07T18:44:18.473", "LastActivityDate": "2020-07-07T18:44:18.473", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8101"}} +{ "Id": "8101", "PostTypeId": "2", "ParentId": "8098", "CreationDate": "2020-07-05T15:10:12.973", "Score": "1", "Body": "

Is there a way quantify beer flavour characteristics?

\n

I tried to find a site that could standardize this question and this is what I came up with the following. If it does not truly answer your question, it is definitely helpful. Please remember to follow the links.

\n
\n

Beer Tasting 101

\n

It can be as easy as taking the time to notice the flavours in every beer you drink. Here are a few general rules to keep in mind:

\n
    \n
  1. Make sure your beer isn’t too cold.
  2. \n
\n

If a beer is very cold, it is a lot harder to taste. It’s a good idea to pull your beer out of the fridge 15 minutes early (or you can always take your time drinking it!)

\n
    \n
  1. Always pour the beer into a glass.
  2. \n
\n

This releases the aromas, as well as the CO2, and will make it a lot easier to taste the full flavour of the beer.

\n
    \n
  1. Relax and Enjoy:
  2. \n
\n

Taking a moment to smell your beer and linger on your first sip will make every beer a rewarding experience.

\n

Taste and Savour

\n

This section outlines basic beer-tasting technique, and what to look for. The Beerology™beer evaluation sheet provides some helpful guidelines and terminology, and can be downloaded to have beer-tasting sessions at home, at the pub, or to record personal impressions.

\n

Appearance

\n

Raise your glass, and take a moment to appreciate the appearance of the beer in front of you. Although colour and clarity aren’t necessarily an indication of the beer’s quality, the look of any given beer was crafted intentionally and is an integral part of the drinking experience. The colour chart on the Beerology™beer evaluation sheet provides common beer colour descriptors. The clarity of a beer can vary from brilliant to cloudy. Head can tell you a bit more about the beer. Beers that aren’t extreme in their alcohol content should have good head retention (the foam doesn’t collapse immediately). Head retention often indicates a well-crafted beer, made with quality ingredients. As you drink your beer, look for lace-like pattern (left by the foam) on the sides of your glass. This is known as Belgian lace and is another indication of good quality.

\n

Aroma

\n

Smelling your beer is one of the most important steps in beer tasting. Our sense of smell informs the way we taste things, opening up a complexity of flavours to the palate. If the beer has no discernable aroma, agitate it by swirling it around in your glass. This will release some carbonation, which will carry the aroma up to your nose. It is always easiest to start with a general impression: how intense is the aroma? Is it sweet (malt aroma), sharp (hop aroma), or a balance of different notes? If you like, you can then take the time to identify more specific aromas in the beer. The Beerology™beer evaluation sheet provides some common aroma descriptors. Of course, it is always important to note whether you like the aroma of the beer or not!

\n

Flavour

\n

The flavour of a beer should be a natural continuation of the aroma. There are a few added dimensions that will appear, most notably bitterness. Swirl the beer around in your mouth before swallowing it. Take a note of any flavours you taste, compare these flavours to other flavours you know. Does this beer remind you of anything? If you like, take a look at the Beerology™beer evaluation sheet and see if the beer contains any of the common beer characters listed. Again, it is helpful to note the intensity of the flavour, the balance between sweetness and bitterness, and your general impressions.

\n

Mouthfeel

\n

Another component of flavour is mouthfeel. Mouthfeel refers to the texture and weight of the beer, as opposed to the actual taste. High alcohol beer can have a warming quality, not unlike hard alcohol, while bitter beers can sometimes be astringent. The weight, or body, of beer can also vary from being light and watery, to being full and heavy. Another interesting thing to notice is the carbonation level, since it varies between different beers. Ask yourself: is this carbonation level pleasant or distracting?

\n

Finish

\n

The final component of flavour is finish. Take a moment to pause between sips. Does the flavour of the beer linger, or is the finish short? The after-taste can be sweet or bitter, and can take on many flavours, either in succession or all at once. Also notice the intensity of the finish. The finish of a beer depends greatly on the style in which it is brewed. The most important thing to note is: do you want to take another sip?

\n

General Impression

\n

Having taken a few moments to appreciate the various aspects of the beer in front of you, it is always a good idea to summarize your impressions of the beer. Were the flavours really lively and well balanced, or did they fall flat? Did the beer have a very fresh quality to it, or do you suspect that it was stale? Finally, take a moment to decide how much you liked the beer. Just because it was very flavourful and fresh, doesn’t mean that it was to your taste! Feel free to take more notes and share your impressions with friends.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2020-07-05T15:10:12.973", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8102"}} +{ "Id": "8102", "PostTypeId": "1", "AcceptedAnswerId": "8108", "CreationDate": "2020-07-07T11:18:22.350", "Score": "1", "ViewCount": "3802", "Body": "

Some time ago I ordered a Becardi Cola, I however received a Baileys cola. The cola and Baileys seemed to have reacted, it turned into something spongy. How did this happen? What reaction took place?

\n", "OwnerUserId": "9854", "LastActivityDate": "2020-07-23T01:10:36.993", "Title": "Why shouldn't you mix baileys and cola?", "Tags": "mixers", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8103"}} +{ "Id": "8103", "PostTypeId": "2", "ParentId": "8102", "CreationDate": "2020-07-07T13:39:36.837", "Score": "-1", "Body": "

The carbondioxide in the cola will react with the cream in the baileys, this results in the cream solidifying in your stomach which can suffocate you in high quantities. Tonic is even worse..

\n", "OwnerUserId": "11433", "LastActivityDate": "2020-07-07T13:39:36.837", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8104"}} +{ "Id": "8104", "PostTypeId": "1", "AcceptedAnswerId": "8105", "CreationDate": "2020-07-10T00:04:07.377", "Score": "3", "ViewCount": "257", "Body": "

I don't know about everyone else, but I perceive Heineken as sweet (not quite Pepsi, but still)

\n

\"enter

\n

I looked up its nutritional info, and it appears that Heineken has 0 sugars. There exist chemical compounds that are not sugars, but still taste sweet though.

\n

Which chemical compound gives Heineken its sweet taste?

\n", "OwnerUserId": "953", "LastEditorUserId": "953", "LastEditDate": "2020-11-27T08:07:28.280", "LastActivityDate": "2020-11-27T08:07:28.280", "Title": "Which chemical compound gives Heineken its sweet taste?", "Tags": "taste specialty-beers nutrition", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8105"}} +{ "Id": "8105", "PostTypeId": "2", "ParentId": "8104", "CreationDate": "2020-07-10T07:03:55.920", "Score": "4", "Body": "

Chances are that the sweet taste comes from the malt used in Heineken (and other beers).

\n

Malt contains starches that are easily broken down into simple forms of sugar (like Maltose) early on. Amylase enzymes present in your saliva start breaking down starch into sugars, leading to a sweet taste when drinking Heineken.

\n", "OwnerUserId": "11437", "LastActivityDate": "2020-07-10T07:03:55.920", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8108"}} +{ "Id": "8108", "PostTypeId": "2", "ParentId": "8102", "CreationDate": "2020-07-17T17:59:54.443", "Score": "3", "Body": "

Cream liqueurs curdle because of their high dairy content. Dairy products (such as milk or cream) curdle in the presence of an acidic liquid. Acids have a very low pH, which lowers the overall pH of the mixture. As the pH drops below 5.5, the casein proteins in the dairy ingredients begin to curdle. That’s what you called “spongelike texture”. To safeguard against this avoid mixing cream liqueurs with high-acid mixers such as citrus juices and soft drinks (most soft drinks do not taste sour, but they do contain high levels of citric and phosphoric acids and they have the same effect due to the pH levels).   

\n

If you enjoy a mixed drink with cream liqueurs try coffee, hot chocolate, other cream liqueurs, or milkshake-style cocktails (in which the dairy enhances the smooth mouthfeel of the ice cream). Cream liqueurs are also delicious served alone on the rocks.   

\n", "OwnerUserId": "11459", "LastEditorUserId": "6370", "LastEditDate": "2020-07-23T01:10:36.993", "LastActivityDate": "2020-07-23T01:10:36.993", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8110"}} +{ "Id": "8110", "PostTypeId": "1", "CreationDate": "2020-07-18T21:04:59.223", "Score": "2", "ViewCount": "93", "Body": "

I don't have much experience with alcoholic drinks, and how it's treated after purchase.\nbut I know that a can of non-cold (room temp) beer can be stored for as long time before cooling in a refrigerator.

\n

But if I purchased a non-cold can of beer and emptied it in another bottle (plastic), would it keep its original taste and can still have the property of being stored for a long time before putting it in the refrigerator?

\n

*sorry for my English

\n", "OwnerDisplayName": "user11464", "LastEditorUserId": "5064", "LastEditDate": "2020-07-19T21:45:29.150", "LastActivityDate": "2020-08-03T22:04:01.843", "Title": "Can a can of beer keep its taste after emptied into a bottle and stored for a week?", "Tags": "storage alcohol", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8111"}} +{ "Id": "8111", "PostTypeId": "1", "CreationDate": "2020-07-21T12:43:45.730", "Score": "1", "ViewCount": "420", "Body": "

I'm looking to implement a wine database API into my app. What are the most extensive and comprehensive databases to look for? I know about Wine-searcher.com API. Has anyone any experience with it and the data it outputs? What other APIs should I take a look at?

\n", "OwnerUserId": "11472", "LastEditorUserId": "11472", "LastEditDate": "2020-07-22T14:22:12.380", "LastActivityDate": "2020-07-23T00:56:29.420", "Title": "What are the best paid wine database APIs? (most extensive and comprehensive)", "Tags": "wine alcohol restaurants", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8112"}} +{ "Id": "8112", "PostTypeId": "2", "ParentId": "8111", "CreationDate": "2020-07-23T00:56:29.420", "Score": "2", "Body": "

Software Engineer here (with experience in the liquor industry)... So, this is a bit of a tricky question to answer and entirely depends on what kind of data you're looking to extract. There's a lot of different data that could be extracted from different resources.

\n
    \n
  • Item name
  • \n
  • Barcode
  • \n
  • Price
  • \n
  • Size
  • \n
  • Description
  • \n
  • Tasting notes
  • \n
  • Region (it was created)
  • \n
  • Alcohol percentage
  • \n
  • Wine scores
  • \n
  • Awards
  • \n
  • Grape variety
  • \n
  • Winery
  • \n
  • User reviews (from whatever API you are using)
  • \n
  • Etc. etc.
  • \n
\n

It should also be noted that the values are entirely different, based on the vintage of the wine that is selected. Simply going by barcode won't help, as many wineries use the same barcode across multiple vintages.

\n

There then comes the question -- what price are you trying to display? Do you want to show which locations nearby you can buy the product and their prices? Or are you trying to display the wholesaler pricing? From my experience, wholesalers will generally withhold this kind of information.

\n

As far as wine-searcher.com, their data seems pretty good for the most part but according to their API developers page, it doesn't include everything I mentioned above. Going through wine-searcher also means 2 different APIs (Price Check API & Marketplace API), and you'd have to pay for each.

\n

A lot of the other so-called "open source wine databases" online aren't kept up-to-date and don't contain much information. You could try contacting those in charge of CellarTracker, but I'm not sure if they have an API for use to the public.

\n
\n

Your question is pretty open-ended, but I think the data you are looking for (in relation to wine-searcher) would be found here. But once again, you're going to have to pay based on the amount of queries you are doing per day.

\n", "OwnerUserId": "8172", "LastActivityDate": "2020-07-23T00:56:29.420", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8113"}} +{ "Id": "8113", "PostTypeId": "1", "CreationDate": "2020-07-27T14:56:05.180", "Score": "4", "ViewCount": "7946", "Body": "

Does alcohol help in sex? If so, which alcoholic drink is best act as aphrodisiac?

\n", "OwnerUserId": "11481", "LastEditorUserId": "5064", "LastEditDate": "2020-07-28T02:36:27.813", "LastActivityDate": "2020-07-28T02:36:27.813", "Title": "Which alcoholic drink can be best regarded as aphrodisiac?", "Tags": "health drink alcohol", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8114"}} +{ "Id": "8114", "PostTypeId": "2", "ParentId": "8113", "CreationDate": "2020-07-28T02:34:29.307", "Score": "5", "Body": "

Which alcoholic drink can be best regarded as an aphrodisiac?

\n

Well that will have to depend on the person!

\n

Alcohol seems to be able to work as an aphrodisiac. However, it is strongly recommended not to have more than a drink or two at most. More than that and any alcoholic drink may have a bad affect on one’s sex life.

\n
\n

Effects in females

\n

It increases sexual desire — sort of

\n

A drink or two may boost arousal, but it’s not a sure bet.

\n

Drinking alcohol increases testosterone levels in females. This male sex hormone plays a role in sexual desire. It may be a factor in females reporting more sexual desire when drinking.

\n

There’s also an element of expectation. People often associate drinking with lowered inhibitions and feeling sexier and more confident. It’s kind of like a self-fulfilling prophecy: If you expect to get lucky when you’re drinking, you probably will.

\n

It can increase and decrease sexual arousal

\n

Some females may have more interest in sex when they’ve had a few drinks, but that doesn’t mean their bodies are going to be into it. - Here’s What Happens When You Mix Booze with Sex

\n
\n

Men should make sure not to over drink.

\n
\n

Effects in males

\n

The effects of alcohol on males are a bit more straightforward.

\n

Getting hard might be difficult

\n

Yep, “whiskey dick” is a thing. And it’s not just whiskey that’s to blame. Any alcoholic beverage can do it. - Here’s What Happens When You Mix Booze with Sex

\n
\n

For the ladies, red wine causes the sex drive to be even more pronounced than with other drinks, at least according to a group of Italian researchers who discovered that the compounds in the wine actually enhance levels of sexual desire in the fairer sex. What the researchers uncovered was that the red wine specifically increased blood flow to women’s erogenous areas, which in turn led to increased levels of desire. The researchers were quick to point out, however, that after more than a drink or two the other effects of alcohol began to take hold, which led to a less pleasurable experience. Moderation, it seems, is key.

\n

For those a little more adventurous, here are nine aphrodisiac cocktails to spice up your night:

\n\n

All said and done, there is no one liquor, liqueur, wine or any other alcoholic drink is the best aphrodisiac on the market. However, red wine seems best for the ladies.

\n

To enhance the the mood, I would recommend some high end chocolates for the ladies.

\n

Just keep in mind, that a drink or two seems to be the best. More than that can make the affects of the alcohol in one’s system can backfire.

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-07-28T02:34:29.307", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8115"}} +{ "Id": "8115", "PostTypeId": "1", "AcceptedAnswerId": "8117", "CreationDate": "2020-07-29T22:48:17.990", "Score": "3", "ViewCount": "101", "Body": "

I've recently inherited a set of these glasses and I can't seem to figure out what type of glass/stemware they are and what cocktails are traditionally served in them (if any). Picture attached, jigger for reference.

\n

\"enter

\n", "OwnerUserId": "11487", "LastEditorUserId": "5064", "LastEditDate": "2020-07-31T16:52:38.113", "LastActivityDate": "2020-08-03T08:09:37.257", "Title": "What type of stemware is this?", "Tags": "cocktails glassware", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8116"}} +{ "Id": "8116", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2020-07-31T16:09:55.113", "Score": "0", "Body": "

I absolutely love brandy in tea. Hot black tea with brandy, cream, and sugar! Nom, nom, nom!

\n", "OwnerUserId": "11490", "LastActivityDate": "2020-07-31T16:09:55.113", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8117"}} +{ "Id": "8117", "PostTypeId": "2", "ParentId": "8115", "CreationDate": "2020-08-03T08:09:37.257", "Score": "4", "Body": "

They are probably dessert wine glasses for sherry or port.\nToday they usually have a longer stem, especially mondern designs, but in the past, there were quite a few short stem sherry glasses and often also with such a knob in the stem (see attached images)

\n

\"enter

\n

\"enter

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-08-03T08:09:37.257", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8118"}} +{ "Id": "8118", "PostTypeId": "2", "ParentId": "8110", "CreationDate": "2020-08-03T22:04:01.843", "Score": "2", "Body": "

Unfortunately, beer will go flat if you put it in a plastic bottle after a few hours. However, the best option is a beer saver, which is a cap made out of silicone. This can be put onto any type of bottle, and the beer's carbonation stays intact

\n", "OwnerUserId": "11497", "LastActivityDate": "2020-08-03T22:04:01.843", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8119"}} +{ "Id": "8119", "PostTypeId": "2", "ParentId": "7712", "CreationDate": "2020-08-03T22:08:35.333", "Score": "1", "Body": "

There are a few that are popular in South Korea. One is the Imperial Scotch, Scotch Blue by Lotte Chilsun, and Windsor. They are sourced from Scottish distilleries for the Korean Market.

\n", "OwnerUserId": "11497", "LastEditorUserId": "5064", "LastEditDate": "2020-08-05T16:15:04.770", "LastActivityDate": "2020-08-05T16:15:04.770", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8124"}} +{ "Id": "8124", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2020-08-11T08:01:26.377", "Score": "2", "Body": "

Hot mint tea goes great with rum. Almost any kind of rum will do it.\nThis is a beverage that is drunk usually in the cold season and you can find it at the chalets near the skiing spots (as rum keeps you warm).\nIn Romania if it's winter and you get to one of this chalets and ask for "a tea" it is possible that you will automatically get an alcoholic tea without any notice.

\n", "OwnerUserId": "11508", "LastEditorUserId": "11508", "LastEditDate": "2020-08-11T13:17:57.807", "LastActivityDate": "2020-08-11T13:17:57.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8125"}} +{ "Id": "8125", "PostTypeId": "2", "ParentId": "6315", "CreationDate": "2020-08-13T00:27:21.323", "Score": "2", "Body": "

I'll add some Japanese suggestions to this list.

\n

Cold oolong tea with shochu (usually barley) is a very common mix. Also, jasmine tea with awamori is an Okinawan favorite. Both are light, easy to drink and refreshing. If there's a Japanese market near you, you can probably get both the liquor and tea there.

\n

I've also seen interesting green tea-infused cocktails, like martinis, mojitos and highballs, though I haven't had a chance to try those yet.

\n", "OwnerUserId": "7430", "LastActivityDate": "2020-08-13T00:27:21.323", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8126"}} +{ "Id": "8126", "PostTypeId": "2", "ParentId": "7712", "CreationDate": "2020-08-16T17:41:29.803", "Score": "0", "Body": "

There is Golden Blue in Busan.

\n

While they do not distill their own whiskey, they do blend.

\n

I read that they plan to start distilling their own but i can not find any info on when this will happen.

\n", "OwnerUserId": "6473", "LastEditorUserId": "6473", "LastEditDate": "2020-08-17T20:17:08.283", "LastActivityDate": "2020-08-17T20:17:08.283", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8127"}} +{ "Id": "8127", "PostTypeId": "1", "AcceptedAnswerId": "8129", "CreationDate": "2020-08-17T20:19:31.570", "Score": "1", "ViewCount": "129", "Body": "

I'm almost 20 years old and a 2nd year UG student. After going to college, occasionally I tried a bit of Vodka (Smirnoff, Magic Moments), Whiskey (Red Label, Signature, etc.), Rum (Old Monk), etc.

\n

As our stipend is not that high (5k/month in Indian currency, Much more than many UG stipends though).

\n

It would be great if I can get some light on how to select among these drinks, how are they chosen (say for serving various purposes), how can I both save money and have a fine drink, etc, etc.

\n", "OwnerUserId": "11492", "LastEditorUserId": "5064", "LastEditDate": "2020-08-17T21:31:22.937", "LastActivityDate": "2020-08-24T04:32:48.870", "Title": "How to choose spirits?", "Tags": "recommendations spirits price", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8128"}} +{ "Id": "8128", "PostTypeId": "2", "ParentId": "8127", "CreationDate": "2020-08-20T10:06:46.553", "Score": "2", "Body": "

All of them may be had straight, as they often are in the places from where they originate.

\n

Having said that, some people find cheaper spirits more palatable when mixed:

\n
    \n
  • Vodka + orange juice
  • \n
  • Whisk(e)y + Coca Cola (or Ginger Ale) + perhaps some squeezed lime
  • \n
  • Rum + Coca Cola + squeezed lime
  • \n
\n

How much mixer to use, is up to individual taste. Some might prefer to camouflage the spirit entirely, while others times want the spirit to 'bleed through' the drink.

\n", "OwnerUserId": "7790", "LastEditorUserId": "7790", "LastEditDate": "2020-08-24T04:32:48.870", "LastActivityDate": "2020-08-24T04:32:48.870", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8129"}} +{ "Id": "8129", "PostTypeId": "2", "ParentId": "8127", "CreationDate": "2020-08-20T13:23:33.623", "Score": "1", "Body": "

How to choose spirits?

\n

An in-depth spirit knowledge will help you a lot when making cocktails at home. Not all beginners would have this practical knowledge yet. So here is a short list of five (5) essential spirits a cocktail party thrower might need to create liquid deliciousness.

\n
    \n
  • Rum: Sugar cane based spirit
  • \n
  • Whisky: Grain based aged spirit
  • \n
  • Tequila: Agave based spirit
  • \n
  • Vodka: Any fermentable sugar based spirit
  • \n
  • Gin: Neutral alcohol based spirit flavoured with juniper berry & botanicals.
  • \n
\n

Obviously there are also more spirits in the world. But with these five different spirits you can already make countless cocktails.

\n

Of course one could say the same for ouzo.

\n
\n

Ouzo is a dry anise-flavoured aperitif that is widely consumed in Greece and Cyprus. It is made from rectified spirits that have undergone a process of distillation and flavoring. Its taste is similar to other anise liquors like rakı, arak, pastis and\nSambuca.

\n

Ouzo is not used in many mainstream cocktail drinks, although in Cyprus it does form the basis of a cocktail called an Ouzini.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-08-20T16:53:50.230", "LastActivityDate": "2020-08-20T16:53:50.230", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8130"}} +{ "Id": "8130", "PostTypeId": "1", "AcceptedAnswerId": "8139", "CreationDate": "2020-08-30T21:21:20.050", "Score": "1", "ViewCount": "557", "Body": "

I would like to make Kykeon, as close as possible to the original recipe as possible.

\n

I understand the recipes of making Kykeon, but am at a loss as to what modern wine would be considered as a close substitute.

\n
\n

Kykeon was an Ancient Greek drink of various descriptions. Some were made mainly of water, barley and naturally occurring substances. Others were made with wine and grated cheese. It is widely believed that kykeon usually refers to a psychoactive compounded brew, as in the case of the Eleusinian Mysteries. A kykeon was used at the climax of the Eleusinian Mysteries to break a sacred fast, but it is also mentioned as a favourite drink of Greek peasants.

\n

It was supposed to have digestive properties: In Aristophanes' Peace Hermes recommends it to the hero who ate too much dry fruit and nuts.

\n

Aristocrats shunned it as a peasant drink: Theophrastus' Characters depicts a peasant who goes to the Ecclesia drunk with kykeon.

\n
\n

The recipe I am going to use is not magical in any sense of the imagination and will be made with ordinary ingredients.

\n
\n

Lesbos wine is wine made on the Greek island of Lesbos in the Aegean Sea. The island has a long history of winemaking dating back to at least the 7th century BC when it was mentioned in the works of Homer. During this time the area competed with the wines of Chios for the Greek market. An apocryphal account details one of the brothers of the poet Sappho as a merchant trading Lesbos wine with the Greek colony of Naucratis in Egypt. The most noted Lesbos wine was known as Pramnian which draws similarities today to the Hungarian wine Eszencia. The popularity of Lesbos wine continued into Roman times where it was highly valued along with other Aegean wines of Chios, Thasos and Kos.

\n

Other types of Pramnian

\n

While Lesbos is considered by some scholars to be the main source of Pramnian, there is association of the name with wines from Smyrna and Icaria. The Greek writer Athenaeus used the term in almost a generic way to refer to any dark, long lived wine of good quality. Athenaeus's description also paints a different description than of a Tokay-like wine, instead of a wine that is dry and very strong. The resulting grape must be very high in sugar and even after a brief fermentation period it still retains high residual levels and creates a viscous, honeyed sweet wine.

\n
\n

The recipe I will use is based on this YouTube video: Kykeon: The Drink of Greek Heroes

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-08-30T23:05:28.910", "LastActivityDate": "2020-09-08T19:35:20.310", "Title": "What modern wine would considered close to the Greek Pramnian wine?", "Tags": "wine recommendations recipes", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8131"}} +{ "Id": "8131", "PostTypeId": "1", "CreationDate": "2020-09-02T21:15:30.823", "Score": "-3", "ViewCount": "131", "Body": "

I’ve recently started enjoying beer and so far really like the taste and lightness of Sapporo. Any beers you suggest that are similar?

\n

What are your favorites you think I should try?

\n

I’m in NorCal so local brews are appreciated. I can enjoy beer with my friends now! Lol

\n", "OwnerUserId": "11547", "LastActivityDate": "2020-11-26T08:34:16.513", "Title": "Beer recommendations for a noob", "Tags": "taste recommendations breweries flavor craft-beers", "AnswerCount": "3", "CommentCount": "1", "ClosedDate": "2020-12-01T13:46:53.617", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8132"}} +{ "Id": "8132", "PostTypeId": "2", "ParentId": "8131", "CreationDate": "2020-09-03T14:22:48.970", "Score": "1", "Body": "

Sapporo is a mass market lager. You can try other lagers and pilsners for something similar. Beer snobs are going to look down on something like Sapporo, but it's okay to like what you like. What I might caution is that craft breweries are likely to make beer with stronger flavors than a mass market lager. As you get more experience with beer it is quite possible your tastes will evolve. One reason to like beer is that there are so many styles. While you might like lagers, it would be good to stretch you experience to other styles. A really good resource is Beer Advocate. You can get descriptions of different beer styles and rankings within styles.

\n

As for Northern California, I have limited experience. One brewery I have been to is Russian River Brewing in Santa Rosa. They make a vast array of beers including the best IPA I've ever had. Most craft breweries offer "flights" which are a series of small pours (3 or 4 ounces). This allows you to try different beer varieties without committing to an entire glass.

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-09-03T14:22:48.970", "CommentCount": "10", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8133"}} +{ "Id": "8133", "PostTypeId": "2", "ParentId": "4726", "CreationDate": "2020-09-05T14:37:58.543", "Score": "0", "Body": "

There are indeed several kinds of liquor, beverage and food flavourings available on the market, being "smoke", "barley" and "tobacco" just a few of them, found in niche stores throughout the whole planet and not a bit hard to find - and this may be the answer to all interested brewers out in the wild.

\n

I used to know a particular aquaintance who enjoyed for instance, to drop a whole chopped and minced chewing tobacco tablet from a notorious retail brand, into his beer can or bottle, before chilling it, and letting it age for a few days or months.

\n

Later, I learned this was rather a widespread and not-out-of-the-ordinary habit, and thay he had become a brewer himself, and kept doing that and selling the product, with relevant success.

\n

I just tried some of one of its products, which flavor could be described as a "spicy, woody-smoke-flavored-with-some-murky-notes" stout ale, quite enjoyable, by the way.

\n

Cheers, and keep on the good brewing.

\n

K.

\n", "OwnerUserId": "11553", "LastActivityDate": "2020-09-05T14:37:58.543", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8134"}} +{ "Id": "8134", "PostTypeId": "2", "ParentId": "8094", "CreationDate": "2020-09-05T22:53:53.713", "Score": "0", "Body": "

I would say try it with a small batch!

\n

My only concern would be, if there was a pressure build up (temperature changes) in the keg, you might end up with fizzy vodka/Cherry Vishniak, now that may be interesting (I just googled it as I was typing and it is actually a thing)

\n

You learn something every day, I may try it tomorrow (force carb) in a spare keg.

\n

\"enter

\n", "OwnerUserId": "11556", "LastActivityDate": "2020-09-05T22:53:53.713", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8135"}} +{ "Id": "8135", "PostTypeId": "1", "AcceptedAnswerId": "8137", "CreationDate": "2020-09-06T08:01:41.033", "Score": "6", "ViewCount": "115", "Body": "

I've already done some research and from what I understand, in the fining phase agents such as fish bladders or egg whites are used to group together the debris in the wine. This makes filtering them out easier. So in theory the fining agents should get removed in the filtration process too. But some may get missed. So a wine that advertises itself as vegan or vegetarian used an alternative to fining agent? Do some vegan wines simply skip the fining phase, or do all wines go through fining?

\n

Is it more of a marketing thing to call a wine vegan since realistically most already are?

\n", "OwnerUserId": "11557", "LastActivityDate": "2020-09-08T08:05:15.167", "Title": "Why aren't all wines vegetarian?", "Tags": "wine finings", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8136"}} +{ "Id": "8136", "PostTypeId": "1", "CreationDate": "2020-09-07T01:15:17.363", "Score": "1", "ViewCount": "122", "Body": "

I have a 1996 Atlanta Olympic bottle of Korbel champagne. Are there collectors?

\n", "OwnerUserId": "11559", "LastEditorUserId": "5847", "LastEditDate": "2021-06-28T14:42:45.247", "LastActivityDate": "2021-06-28T14:42:45.247", "Title": "Are there collectors of old champagne bottles not opened? I’ve got 1996 bottle with Atlanta Olympic Rings on it", "Tags": "champagne", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8137"}} +{ "Id": "8137", "PostTypeId": "2", "ParentId": "8135", "CreationDate": "2020-09-08T08:05:15.167", "Score": "1", "Body": "

So a wine that advertises itself as vegan or vegetarian used an alternative to fining agent?

\n

That's true. There are alternatives to the use animal products for fining. Examples are clay, silica and vegetable plaque.

\n

Do some vegan wines simply skip the fining phase, or do all wines go through fining?

\n

There are a lot of wine makers that prefer not to fine their wines. Not necessarily because they are animal friendly, but because they believe this process deprives the natural flavour and texture. Those wines are often called "natural wine".

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-09-08T08:05:15.167", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8139"}} +{ "Id": "8139", "PostTypeId": "2", "ParentId": "8130", "CreationDate": "2020-09-08T19:10:32.577", "Score": "2", "Body": "

I too and trying to recreate this at the moment. I have seen completely contradictory descriptions of Pramnian wine. Some very sweet like the Eszencia or Tokaji style made from dried grapes. The Greek study tool online from Tufts defines Pramnian as "raisin-wine" which is too interpretive since other descriptions are are of a dark, dry, strong wine that is not not necessarily pleasurable.

\n

My approach is to try both. I went to my local Total Wine store with the largest selection and to their Greek wine section. Pramnian is definitely red and they had four. One was a retsina which was not a style in Homer's day. The other three were two dry table wines and a sweeter red for about $10 each. I got all three. I told the wine clerk what I was doing and he recommended a good quality dry Sardinian red (Dolia) since the volcanic soil where it's grown resembles what would be found in Lesbos. I will start experimenting this week. I may even infuse the wine with herbs like mint and oregano to get to something like a vermouth. I'm using pearl barley, raw yellow honey, and a couple goat cheese varieties (from a fresher chevre, to a drunken goat, to an unpasteurized hard Spanish goat cheese). My guess is following the recipe will result in a pretty unpalatable concoction but I will deviate as much as I need to until I get to something I like, probably like a goat cheese barley-polenta with onion and red wine.

\n", "OwnerUserId": "11566", "LastEditorUserId": "5064", "LastEditDate": "2020-09-08T19:35:20.310", "LastActivityDate": "2020-09-08T19:35:20.310", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8140"}} +{ "Id": "8140", "PostTypeId": "2", "ParentId": "8131", "CreationDate": "2020-09-11T15:12:46.977", "Score": "1", "Body": "

If you like Japanese beer and Sapporo in particular, you might also enjoy Asahi. It's what I order when the restaurant is out of Sapporo. Same light style and fine carbonation.

\n

However, just so my answer is not a measly three sentences long, I would recommend you occasionally try something from the dark-side of beer. I will name only one but there are literally thousands out there and almost all are great.

\n

Spaten is a huge German brewer. They export a lot but you're most likely going to find it in a large supermarket or a Bev-mo or Total Wines etc. It's not usually in the corner liquor store cooler. They make a dark lager called Optimator. If you ever tried Heineken dark or Beck's Dark etc this is the antidote to those poor examples.

\n

Sold in ,33l (six packs, 12 FL OZ) and ,5l bottles (singles). It's about a ~7-8% ABV. For best results, serve well chilled in a tall beer glass. Truth is they're great straight from the bottle, too.

\n

I love to try just about any beer and I have to work hard to find a really bad beer but I have, I'm afraid, found a few. Optamator is the one I know I can always go back to and reset and recalibrate my beer tastebuds.

\n", "OwnerUserId": "11571", "LastEditorUserId": "7965", "LastEditDate": "2020-09-23T23:06:31.357", "LastActivityDate": "2020-09-23T23:06:31.357", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8141"}} +{ "Id": "8141", "PostTypeId": "1", "CreationDate": "2020-09-14T11:53:41.363", "Score": "4", "ViewCount": "1249", "Body": "

Both whisky and vodka can be made from fermented grains. So is it just a marketing decision which to call it? Generally speaking vodka is clear, odorless and tasteless. And whisky is a brown colour and has more of a bite. Of course there's exceptions.

\n", "OwnerUserId": "11557", "LastActivityDate": "2021-01-31T09:06:20.787", "Title": "Can a liquor be both a vodka and whisky? What's the difference?", "Tags": "whiskey vodka whisky", "AnswerCount": "6", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8142"}} +{ "Id": "8142", "PostTypeId": "2", "ParentId": "8141", "CreationDate": "2020-09-14T14:13:09.770", "Score": "2", "Body": "

Can a liquor be both a vodka and whisky? What's the difference?

\n

The short answer is yes.

\n

Here is what Wikipedia has to say about what constitutes a liquor.

\n
\n

Liquor (also hard liquor, hard alcohol, distilled alcohol, fire water, or spirit water) is an alcoholic drink produced by distillation of grains, fruits, or vegetables that have already gone through alcoholic fermentation. The distillation process purifies the liquid and removes diluting components like water, for the purpose of increasing its proportion of alcohol content (commonly expressed as alcohol by volume, ABV).1 As liquors contain significantly more alcohol than other alcoholic drinks, they are considered "harder" – in North America, the term hard liquor is used to distinguish distilled alcoholic drinks from non-distilled ones, whereas the term spirits is used in the UK. Brandy is a liquor produced by the distillation of wine, and has an ABV of over 35%. Other examples of liquors include vodka, baijiu, shōchū, soju, gin, rum, tequila, mezcal, and whisky. (Also see list of alcoholic drinks, and liquors by national origin.)

\n

The term does not include alcoholic beverages such as beer, wine, mead, sake, huangjiu or cider, as they are fermented, not distilled. These all have a relatively low alcohol content, typically less than 15%. Nor does it include wine based products fortified with spirits, such as port, sherry or vermouth.

\n

There is no evidence for a health benefit for liquor at any level of consumption. Compared to other types of alcohol, excess consumption of liquor is more strongly associated with harmful health effects.

\n
\n

The mixing of mash ingredients that would traditionally constitute two different type of liquors would still be considered a liquor as long as it is properly distilled after fermentation has occurred.

\n

The mixing of two different types of liquors use still constitute a liquor by principle, such as vodka and whiskey, but would in general be called a cocktail.

\n

However a drink mixed with a liquor and another alcoholic beverage that is simply fermented and not distilled is no longer a liquor but a cocktail

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-09-14T14:48:58.367", "LastActivityDate": "2020-09-14T14:48:58.367", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8143"}} +{ "Id": "8143", "PostTypeId": "2", "ParentId": "8141", "CreationDate": "2020-09-14T17:09:51.873", "Score": "0", "Body": "

You could distill a fermented grain mash multiple times in a still and filter it, getting something that could be called vodka (distilled multiple times and filtered) and whisky (distilled in a still). If you then age it in barrels, it's probably legally both - an aged vodka and a very clear whisky.

\n", "OwnerUserId": "3875", "LastActivityDate": "2020-09-14T17:09:51.873", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8144"}} +{ "Id": "8144", "PostTypeId": "1", "AcceptedAnswerId": "8146", "CreationDate": "2020-09-14T18:21:01.747", "Score": "2", "ViewCount": "204", "Body": "

Beer is made in Breweries, wine in Wineries, where is rum made? I have a friend who says rummery but that is marked as a misspelling. I asked google and they said Barbados. Does anyone know?

\n", "OwnerUserId": "11578", "LastActivityDate": "2020-09-24T18:55:18.793", "Title": "What is the location where they make rum called?", "Tags": "rum", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8145"}} +{ "Id": "8145", "PostTypeId": "2", "ParentId": "8141", "CreationDate": "2020-09-15T05:50:04.923", "Score": "1", "Body": "

There is no general definition of what a whisky is.

\n

There are of course special kinds of whisky (Single Malt Scotch Whisky, Kentucky Straight Bourbon, etc.) which are very well defined, but the simple word "whisky" can, unfortunatelly, be pretty much everything. There are "whiskies" from india, for example, that are distilled from molasses. This kind of spirit is usually called rum in other countries.

\n

So, the question if something can be a whisky and vodka at the same time, can definitely be answered with yes.

\n

If you look into grain destillated spirit (in scotland, for example), there is grain whisky. It is made from other grains than malted barley (but can contain this as well, but it's more expensive) and is usually distilled in a coloumn still. This is pretty much the same production method as a grain made vodka. And when you mature it in a cask for 3 years, you could either call it a grain whisky, or a cask aged vodka.

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-09-15T05:50:04.923", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8146"}} +{ "Id": "8146", "PostTypeId": "2", "ParentId": "8144", "CreationDate": "2020-09-15T08:37:54.243", "Score": "3", "Body": "

Spirits, such as vodka, whisky and also rum, are produced in a distillery.

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-09-15T08:37:54.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8147"}} +{ "Id": "8147", "PostTypeId": "1", "AcceptedAnswerId": "8155", "CreationDate": "2020-09-15T13:38:47.557", "Score": "4", "ViewCount": "258", "Body": "

Please explain, what types of glasses are used for Fortified wines and why?

\n

For example:

\n
    \n
  • Spanish: Jerez/Sherry, Moscatel
  • \n
  • Portuguese: Port, Madeira
  • \n
  • Italian: Marsala
  • \n
\n", "OwnerUserId": "11579", "LastEditorUserId": "6273", "LastEditDate": "2020-12-25T06:22:17.527", "LastActivityDate": "2020-12-25T06:22:17.527", "Title": "What types of glasses are used for Fortified Wines?", "Tags": "glassware", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8149"}} +{ "Id": "8149", "PostTypeId": "1", "CreationDate": "2020-09-17T13:30:56.280", "Score": "1", "ViewCount": "54", "Body": "

Are there local micro-breweries in Pittsburgh?

\n

What are craft beers that one can find only in Pittsburgh?

\n

On https://en.wikipedia.org/wiki/List_of_breweries_in_Pennsylvania#Southwestern_Pennsylvania, there's a list of breweries but they don't look like microbrews =(

\n

There's a longer list on https://pittsburghbreweries.com/. Have anyone visited all 30+ breweries? Which of them are craft beer brews? Or are they all craft breweries?

\n

Interestingly Rochefort 10 is rated top beer in Pittsburgh, can any steelers verify this? https://www.ratebeer.com/BestInMyArea.asp?CountryID=213&StateID=38

\n", "OwnerUserId": "123", "LastActivityDate": "2020-11-06T20:00:55.163", "Title": "Craft beers and Microbreweries in Pittsburgh?", "Tags": "breweries local", "AnswerCount": "1", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8150"}} +{ "Id": "8150", "PostTypeId": "1", "AcceptedAnswerId": "8152", "CreationDate": "2020-09-18T15:38:53.550", "Score": "2", "ViewCount": "117", "Body": "

Had a bottle of Rum but can’t recall the name now; hoping members can identify it.

\n

Bottle was shape and size of an ordinary narrow Bordeaux wine bottle (prob. 750ml). The glass bottle was covered with a leather casing, with (a thick?) stitching running up to the top. The bottle itself is not meant to be slipped out of the casing, it’s tight against the bottle (unless of course you were to cut the leather off).

\n", "OwnerUserId": "7965", "LastEditorUserId": "7965", "LastEditDate": "2020-09-21T03:05:35.290", "LastActivityDate": "2020-09-22T06:32:46.993", "Title": "Bottle of Rum covered in leather", "Tags": "bottles rum identification", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8151"}} +{ "Id": "8151", "PostTypeId": "1", "CreationDate": "2020-09-20T05:02:19.753", "Score": "1", "ViewCount": "31", "Body": "

I’m looking for information about Devenish brewery. I found a few images of beer labels that I love and am doing a little art project to recreate the whole set.\nIf you have any information, access to images or maybe even Devenish labels in your possession I’d love to see and hear all about it!

\n", "OwnerUserId": "11588", "LastEditorUserId": "5064", "LastEditDate": "2020-09-23T16:43:00.147", "LastActivityDate": "2020-11-26T08:06:32.980", "Title": "Seeking images of Devenish brewery labels", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8152"}} +{ "Id": "8152", "PostTypeId": "2", "ParentId": "8150", "CreationDate": "2020-09-22T06:32:46.993", "Score": "3", "Body": "

Sounds like the Ron Centenario Fundacion 20 anos

\n

\"enter

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-09-22T06:32:46.993", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8154"}} +{ "Id": "8154", "PostTypeId": "2", "ParentId": "8144", "CreationDate": "2020-09-23T16:35:22.813", "Score": "1", "Body": "

What is the location where they make rum called?

\n

The simplest answer would be a distillery!

\n

However another possibility does exist.

\n

Unofficially, Porcopedia states that a rummery is an Alcohol production building. it is like the Cider Mill, Wine cellar and Brewery. At best this would be an urban definition and resembles the imaginary than true reality. Thus a distillery is the proper definition as to where rum is made.

\n
\n

The Rummery is an Alcohol production building. it is like the Cider Mill, Wine cellar and Brewery.

\n

The Rummery makes Rum. - Rumery

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-09-24T18:55:18.793", "LastActivityDate": "2020-09-24T18:55:18.793", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8155"}} +{ "Id": "8155", "PostTypeId": "2", "ParentId": "8147", "CreationDate": "2020-09-23T17:21:20.080", "Score": "2", "Body": "

What types of glasses are used for Fortified Wines?

\n

First of all, why even use port or dessert wine glasses?

\n
\n

Port glasses unveil the seductive nuances of dessert wines and are intrinsically decadent in the hand. Designed to concentrate the aromas of sweeter and late harvest wines, dessert wine glasses reveal the complex flavors of port and sauterne as you linger into the evening. Port wine glasses are simply delightful to hold, and a port wine glass set is always a cherished gift. Find sleek, stemmed port glasses and beautifully blown sipper sets ready to be marveled over and sipped from. - Port & Dessert Wine Glasses

\n
\n

Fortified wine glasses come in a variety of shapes these days and are constantly being updated.

\n
\n

There are as many different styles of glassware as wine styles these days, but which glass is best to use for fortified wines? There are many options but most likely you will have a suitable glass tucked away somewhere in your cupboard… possible next to an old fortified wine forgotten! Get both out and give them a try, you may be surprised!

\n

Fortified wines deserve a large glass that allows you to swirl and smell the wine. These wines have amazing aromas and depths of flavour so allowing the wine to concentrate these flavours in the glass will only add to your enjoyment of the wine. We recommend a good sized wine glass with a rounded body and slightly tapered sides towards the top. This will allow for swirling will minimal chance of spill and more importantly get your nose in for a good sniff to experience all the wine has to offer. Using a larger sized glass also allows you a generous sized pour you can sit down, relax and enjoy your wine. Don’t feel tempted to fill it to the top though, a good splash you can swirl about is all you need.

\n

For entertainment at a dinner party you may wish to consider port sippers. These little hand-blown glasses look similar to a headless cat with a round body and a tail running the side. There is some merit to these in that while holding the glass you hands warm up the wine and helping release more flavour. They also make a loud slurping sound as you sip your glass entertaining your guests and signifying the bottle/decanter may need to be returned in that direction for a refill.

\n

So put away the old style thimbles and get yourself a decent size glass, pour, swirl and savour the flavours of your fortified wines! - which Wine Glass?

\n
\n

For more information about this subject matter the following may be of help:

\n\n", "OwnerUserId": "5064", "LastActivityDate": "2020-09-23T17:21:20.080", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8156"}} +{ "Id": "8156", "PostTypeId": "1", "CreationDate": "2020-09-24T02:22:06.420", "Score": "2", "ViewCount": "169", "Body": "

I used to work in fairly fine dining restaurants, so I know some about wine. The problem I'm looking at is my step-father has an impressive cellar, but some of the wines are rather aged. I think last Christmas we had a couple bottles of 1982 Château Lafite Rothschild or similar. I have no idea why he would waste that bottle of wine on my plebeian tastes, but he does.

\n

The problem is the corks are really starting to go (the bottom of the cork is breaking down, but not rotten). He will spend about 30 minutes finessing the wine key (corkscrew) into the cork and wrestling it out. Invariably, the bottom of the cork will break and fall into the bottle. It doesn't affect drinkability, but we have to hear him rant about it until he's fished every piece of cork out before pouring into the decanter.

\n

I thought about getting him a gas injection wine opener. It looks like most of these are based on nitrous oxide or argon gas, which wouldn't affect the wine in any way.

\n

My question is: Would the needle used to inject the gas into the bottle be able to penetrate the cork but at the same time not break out the bottom of the cork that's in the condition I've described. Or, are these contraptions just gimmicks for the plebs like me?

\n

NOTE: I realize that him opening the wine might be part of his presentation.

\n", "OwnerUserId": "11596", "LastActivityDate": "2021-09-01T22:44:22.190", "Title": "Are gas injection based wine openers a good idea?", "Tags": "wine red-wine", "AnswerCount": "5", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8157"}} +{ "Id": "8157", "PostTypeId": "2", "ParentId": "8156", "CreationDate": "2020-09-24T16:11:21.613", "Score": "0", "Body": "

I never used such a bottle opener myself, but there are wine bars (for example Le Millésime in Bordeaux) that use such opening systems to be able to serve wines such as old vintages from Château Cheval Blanc by the glas.

\n

So I think this shouldn't be a problem.

\n", "OwnerUserId": "8518", "LastActivityDate": "2020-09-24T16:11:21.613", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8158"}} +{ "Id": "8158", "PostTypeId": "1", "CreationDate": "2020-09-25T01:28:57.843", "Score": "0", "ViewCount": "96", "Body": "

I just noticed that the logo on one of Minhas Breweries (Calgary Alberta and Monroe Wisconsin) products has changed. "Boxer Ice" beer now says "BXR Ice", but otherwise looks identical.\nMany of their products use the "Boxer" name, so changing only one of them seems unusual.

\n

What is the reason for this subtle name change?

\n", "OwnerUserId": "11599", "LastActivityDate": "2020-09-25T01:28:57.843", "Title": "Why is \"Boxer Ice\" beer now called \"BXR Ice\"?", "Tags": "breweries craft-beers", "AnswerCount": "0", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8160"}} +{ "Id": "8160", "PostTypeId": "2", "ParentId": "7594", "CreationDate": "2020-09-25T15:48:18.417", "Score": "1", "Body": "

Why do you call some wines by region and other wines by grapes varietal?

\n

There are several factors to be taken into consideration here. First of all, let us start with the definition of what a grape varietal is.

\n
\n

A varietal wine is a wine made primarily from a single named grape variety, and which typically displays the name of that variety on the wine label. Examples of grape varieties commonly used in varietal wines are Cabernet Sauvignon, Chardonnay and Merlot. Wines that display the name of two or more varieties on their label, such as a Chardonnay-Viognier, are blends and not varietal wines. The term is frequently misused in place of vine variety; the term variety refers to the vine or grape while varietal refers to the wine produced by a variety.

\n

As vintners and consumers have become aware of the characteristics of individual varieties of wine grapes, wines have also come to be identified by varietal names.

\n

The term was popularized in the US by Maynard Amerine at the University of California, Davis after Prohibition seeking to encourage growers to choose optimal vine varieties, and later promoted by Frank Schoonmaker in the 1950s and 1960s, ultimately becoming widespread during the California wine boom of the 1970s. Varietal wines are commonly associated with New World wines in general, but there is also a long-standing tradition of varietal labelling in Germany and other German-influenced wine regions including Austria, Alsace, and the Czech Republic. - Varietal

\n
\n

Wine region as such generally are those regions which have had some amount of known historical wine making in their past and thus are more well know as such.

\n

The usage of these terms seems to have several factors involved in why we call them as such.

\n
\n

Unlike American wines, most European wines are named for the region where their grapes grow rather than for the grape variety itself. Many of these European wines come from precisely the same grape varieties as American wines (like Chardonnay, Cabernet Sauvignon, Sauvignon Blanc, and so on), but they don’t say so on the label. Instead, the labels say Burgundy, Bordeaux, Sancerre, and so on: the place where those grapes grow.

\n

Why name a wine after a place?

\n

Grapes, the raw material of wine, have to grow somewhere. Depending on the type of soil, the amount of sunshine and rain, and the many other characteristics that each somewhere has, the grapes will turn out differently. If the grapes are different, the wine is different. Each wine, therefore, reflects the place where its grapes grow.

\n

In Europe, grape growers/winemakers have had centuries to figure out which grapes grow best where. They’ve identified most of these grape-location matchups and codified them into regulations. Therefore, the name of a place where grapes are grown in Europe automatically connotes the grape (or grapes) used to make the wine of that place. The label on the bottle usually doesn’t tell you the grape (or grapes), though.

\n

The terroir game

\n

*Terroir is a French word that has no direct translation in English, so wine people just use the French word, for expediency. Terroir has no fixed definition; it’s a concept, and people tend to define it more broadly or more narrowly to suit their own needs. The word itself is based on the French word terre, which means soil; so some people define terroir as, simply, dirt.

\n

But terroir is really much more complex (and complicated) than just dirt. Terroir is the combination of immutable natural factors — such as topsoil, subsoil, climate (patterns of sun, rain, wind, and so on), the slope of the hill, and altitude — that a particular vineyard site has. Chances are that no two vineyards in the entire world have precisely the same combination of these factors. So terroir is considered to be the unique combination of natural factors that a particular vineyard site has.

\n

Terroir is the guiding principle behind the European concept that wines should be named after the place they come from. The thinking goes like this: The name of the place connotes which grapes were used to make the wine of that place (because the grapes are set by regulations), and the place influences the character of those grapes in its own unique way.

\n

Therefore, the most accurate name that a wine can have is the name of the place where its grapes grew. It’s not some nefarious plot; it’s just a whole different way of looking at things. Understanding Wine Names by Region

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2020-09-25T15:48:18.417", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8162"}} +{ "Id": "8162", "PostTypeId": "2", "ParentId": "8090", "CreationDate": "2020-09-28T22:58:37.373", "Score": "2", "Body": "

Bourbon is national regulated, and considered the national spirit of the US. Tennessee Whiskey, is State regulated.

\n

Bourbon is very much associated with Kentucky, not Tennessee but they are very similar.

\n", "OwnerUserId": "11609", "LastActivityDate": "2020-09-28T22:58:37.373", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8164"}} +{ "Id": "8164", "PostTypeId": "2", "ParentId": "446", "CreationDate": "2020-10-05T02:16:19.187", "Score": "1", "Body": "

Drinking a nearly 3 year old Hopsecutioner in a can and it tastes only slightly less hoppy then a fresh one.

\n

I'll call BS on all the theories. Fact is that the one I am drinking has been kept cold and in a can for 3 years and is delicious.

\n", "OwnerUserId": "11623", "LastActivityDate": "2020-10-05T02:16:19.187", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8165"}} +{ "Id": "8165", "PostTypeId": "2", "ParentId": "8149", "CreationDate": "2020-10-07T19:41:33.583", "Score": "2", "Body": "

A search on Google Maps gave me these results:

\n\n

...and very probably many other local ones producing a few hundred liters per time!

\n", "OwnerUserId": "8580", "LastActivityDate": "2020-10-07T19:41:33.583", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8167"}} +{ "Id": "8167", "PostTypeId": "1", "AcceptedAnswerId": "8168", "CreationDate": "2020-10-11T22:55:49.907", "Score": "3", "ViewCount": "180", "Body": "

Recommendations for some pandemic coronavirus drinks?

\n

I would like to have an enlightened coronavirus engagement with a few selective friends, following the governmental guidelines here in Canada .

\n

Of course it would be catered towards a more adult theme, meaning that alcohol would be served.

\n

The theme includes, food and drinks that have a pandemic theme, either by a name association such as Corona Beer or some weird historical food association such as seen in this YouTube Video (Weird Cures for the Black Plague - Candied Horseradish).

\n

Thus my question : What alcoholic drink recommendations can one suggest for a pandemic or Covid-19 themed dinner engagement?

\n

The more historical the better!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-10-12T20:14:04.800", "LastActivityDate": "2020-12-19T21:09:06.053", "Title": "Recommendations for a pandemic coronavirus drink?", "Tags": "recommendations cocktails", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8168"}} +{ "Id": "8168", "PostTypeId": "2", "ParentId": "8167", "CreationDate": "2020-10-12T12:36:16.017", "Score": "5", "Body": "

During the spanish flu, whiskey was an accepted medicine: Amid 1918 Pandemic, Bootleg Whiskey Became a Respectable Medicine (or an excuse to bypass prohibition).

\n

A Hot Toddy is traditionally drunk to cure symptoms of a flu or cold.

\n

The icelandic spirit Brennivin is also called "Black Death".

\n

One idea could be to serve shots in disinfectant spray bottles. However, this might be not very classy.

\n", "OwnerUserId": "8518", "LastEditorUserId": "5064", "LastEditDate": "2020-10-12T22:10:08.863", "LastActivityDate": "2020-10-12T22:10:08.863", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8169"}} +{ "Id": "8169", "PostTypeId": "2", "ParentId": "8167", "CreationDate": "2020-10-12T17:06:00.767", "Score": "2", "Body": "

Beers.

\n

Irish Death, Iron Horse Brewery;

\n

Dead Guy, Rouge Brewing;

\n

Death, Rivertown Barrel House And Brewing;

\n

Wake Up Dead Imperial Stout, Left Hand Brewing;

\n

Cocktails:

\n

Left 4 Dead;

\n

The Apocalypse Cocktail;

\n

I would suggest that about an hour before the end of your party you have peasant pulling a hand cart walk through yelling , "Bring out yer Dead"

\n

Everyone will be drinking out of the same glass, right?

\n", "OwnerUserId": "6473", "LastActivityDate": "2020-10-12T17:06:00.767", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8170"}} +{ "Id": "8170", "PostTypeId": "2", "ParentId": "8167", "CreationDate": "2020-10-12T23:04:13.300", "Score": "1", "Body": "

Recommendations for a pandemic coronavirus drink?

\n

How about a Mahogany cocktail!

\n
\n

Mahogany is a dark drink whose traditional recipe is 2 parts of gin to 1 part of treacle. It was drunk by active outdoorsmen such as Cornish fisherman and Canadian lumberjacks.

\n
\n

Why a mahagoni drink one may ask? Black treacle was once believe to cure the Black Plague.

\n
\n

Treacle—a by-product of sugar production—would often be given to sick patients. Unfortunately, it had to be at least ten years old to be considered effective. The old, smelly, sticky substance was believed to combat not only the horrific effects of the disease, but to rid the body of it for good.

\n

This remedy actually has a touch of sense to it: potentially disease-fighting moulds, yeasts and other cultures would have thrived in the syrup and matured over time. But we can only wonder who thought of this in the first place, and how on earth the victims managed to swallow. - 10 Crazy Cures for the Black Death

\n
\n

\"Tate

\n

Tate & Lyle's Black Treacle

\n

Beer steins were created to protect people from dirty insects during the Black Plague. Why not make it historically interesting at the same time. Any beer in a beer stein goes good with the pandemic atmosphere at the present moment.

\n
\n

Beer stein an invention caused by the bubonic plague

\n

Who would think that the bubonic plague, flies and beer steins would have anything in common? As the adage says, "Invention is the mother of necessity."

\n

Some 500 years ago Europe was inundated with swarms of flies during the summer months. This combined with memories of the plague called for some sort of action by citizens.

\n

By the 1500s folks in Germany had figured out that the plague had taken fewer victims in areas that adhered to certain hygienic standards. Cleanliness made a difference in who lived and who died so laws were passed to encourage citizens to leave their filthy ways to the past. One of those laws was that all food and beverage containers had to have lids to protect people from dirty insects.

\n

Covered containers were just a small part of the movement to clean up the community. Another law required that beer could only be made from hops, cereals, yeast and water. This allowed for a better quality beer and did away with the recipes that made beer from rotten bread and such.

\n

Long story short is that the beer industry took off in Germany and has never looked back. The covered beer stein was one innovation that took the fancy of the population long after the threat of disease had passed. The upper class would have had their beer steins made from pewter but the commoner would have embraced those made of pottery. Other mediums used would have included ivory, porcelain, wood, silver and more. Everyone would have had their own individual stein and some of them could be right fancy. All sorts of designs from coats of arms to biblical scenes have turned up on the outside of these steins.

\n
\n

\"Pewter

\n

Pewter beer stein

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-12-19T21:09:06.053", "LastActivityDate": "2020-12-19T21:09:06.053", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8171"}} +{ "Id": "8171", "PostTypeId": "1", "AcceptedAnswerId": "8199", "CreationDate": "2020-10-13T15:15:18.497", "Score": "1", "ViewCount": "167", "Body": "

What possible health benefits are there with drinking alcohol in moderation?

\n

The other day, I was reading the St. Paul’s Letter to Timothy where Paul had recommended that Timothy take a little wine for the sake of his stomach.

\n
\n

Drink no longer water, but use a little wine for thy stomach's sake and thine often infirmities. - 1 Timothy 5:23

\n
\n

This got me thinking that there could be some possible health benefits of consuming alcohol in moderation, whether it be wine, beer or some other stronger drink?

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-12-01T06:19:05.727", "Title": "What possible health benefits are there with drinking alcohol in moderation?", "Tags": "health alcohol", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8172"}} +{ "Id": "8172", "PostTypeId": "2", "ParentId": "7765", "CreationDate": "2020-10-13T23:10:20.313", "Score": "-1", "Body": "

Well I left mine out for 3 days with oranges, apples, peaches, lemons, pineapple along with Stella Rosa peach wine, triple sec, Cpt. Morgan rum, Jim beam vanilla, Malibu rum, crystal lite lemonade, and drank it without getting sick. Just didn’t eat the fruit as it looked very ripe!

\n", "OwnerUserId": "11638", "LastActivityDate": "2020-10-13T23:10:20.313", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8173"}} +{ "Id": "8173", "PostTypeId": "1", "AcceptedAnswerId": "8216", "CreationDate": "2020-10-21T18:57:32.617", "Score": "0", "ViewCount": "83", "Body": "

For a pubquiz, I am looking for a "Trappist" beer that lost that label (preferably), or ceased to exist. All I can find are the current 12 Trappists, nothing about old ones.

\n", "OwnerUserId": "4167", "LastActivityDate": "2020-12-16T08:24:38.820", "Title": "Are there examples of \"Trappist\" beers that lost that label (or ceased to exist)?", "Tags": "history trappist", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8174"}} +{ "Id": "8174", "PostTypeId": "2", "ParentId": "8173", "CreationDate": "2020-10-22T15:07:46.300", "Score": "0", "Body": "

The La Trappe beer lost for a while the Trappist label (see https://en.wikipedia.org/wiki/De_Koningshoeven_Brewery).\nIt had, then it lost, and now it has.

\n", "OwnerUserId": "8185", "LastActivityDate": "2020-10-22T15:07:46.300", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8175"}} +{ "Id": "8175", "PostTypeId": "2", "ParentId": "590", "CreationDate": "2020-10-23T21:05:45.990", "Score": "-1", "Body": "

For me the hardest definition seems to be between beer and wine. Both are a source of carbo plus yeast plus fermentation (and minus distillation).\nIn a general sense it would seem beer is from cereals and wine is from “other” and doesn’t require the addition of water. Then we have cider, which I’m guessing is defined by the substances used, ie apples and pears, and carbonation. But champagne (sparkling wine) is carbonated...\nI think it comes down to language conventions.

\n", "OwnerUserId": "11658", "LastActivityDate": "2020-10-23T21:05:45.990", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8177"}} +{ "Id": "8177", "PostTypeId": "1", "AcceptedAnswerId": "8214", "CreationDate": "2020-10-24T21:00:16.797", "Score": "2", "ViewCount": "2017", "Body": "

An Ontario-based whisky distillery has created a new “Nanaimo Bar Cream” liqueur which is reportedly “flying off shelves” across the country. Here in BC liqueur has just arrived on the shelves.

\n

I would like to serve it in a cocktail at our Christmas dinner. My father-in-law is from Nanaimo, BC.

\n
\n

Forty Creek Whisky first launched its new Nanaimo Bar-flavoured liqueur locally in September before expanding it across the country in October. Already, inventory in B.C. is hard to find.

\n

The flavours include hints of wafer, coconut, chocolate and rich custard, says Allard.

\n

Nanaimo Bar Cream liqueur is available at 100 BC Liquor Stores and approximately 200 private liquor stores in the province, according to Forty Creek.

\n

Given the success of the product, the distillery hopes to make the dessert liqueur a permanent addition to its portfolio. - Canadian whisky distillery launches Nanaimo Bar liqueur

\n
\n

Although it may be served straight and neat, I would like to serve it in a cocktail. Any recommendations would be welcome.

\n

Also any food pairings recommendations would be greatly appreciated also, avoiding the obvious one: Nanaimo Bar

\n

\"FORTY

\n

FORTY CREEK - NANAIMO BAR CREAM

\n", "OwnerUserId": "5064", "LastActivityDate": "2020-12-18T22:40:38.277", "Title": "What cocktails would be good mixed with Nanaimo Bar Cream?", "Tags": "recommendations pairing cocktails liqueur", "AnswerCount": "3", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8178"}} +{ "Id": "8178", "PostTypeId": "1", "AcceptedAnswerId": "8180", "CreationDate": "2020-10-25T00:35:01.510", "Score": "3", "ViewCount": "976", "Body": "

I recently bought a Moet Imperial Brut for a special occasion and since it's the first time I have anything to do with something of that quality instead of a cheap sparkling wine, I'd like to do everything properly so I've been doing my research for some time now and while it's obvious that it should be chilled before serving, whether using the freezer for that purpose is actually bad for the champagne's taste or if it's just an urban myth isn't so clear to me.

\n

Basically all the sources claim that the preferable way to chill champagne is a bucket filled 50/50 with cold water and ice and say that it takes 15-20 minutes to chill the bottle in this scenario - yet, the freezer method, which they say would take 10-15 minutes, is presented as a big faux pas because it kills carbonation and thus some taste values - which is a bit peculiar considering those timeframes are... well... the same. So how come the ice/water bath is great and freezer is an eternal sin?

\n

Is that really the case? Does using the freezer diminish the taste of the beverage?

\n", "OwnerUserId": "11662", "LastEditorUserId": "11662", "LastEditDate": "2020-10-25T19:02:54.970", "LastActivityDate": "2020-10-26T07:38:13.320", "Title": "Is chilling champagne in the freezer detrimental to its taste?", "Tags": "wine serving champagne", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8179"}} +{ "Id": "8179", "PostTypeId": "2", "ParentId": "8178", "CreationDate": "2020-10-25T20:55:12.247", "Score": "4", "Body": "

I don't know if it somehow hurts the carbonation in a freezer, but I do believe that chilling in a bucket of water and ice is faster than chilling in the freezer. Heat transfer to air is much slower than to water. Depending on what sources you refer to the ice/water bucket should be 10 to 15 minutes where as a freezer might be 15 to 20 minutes. The problem with a freezer is that if its cold enough the champagne could conceivably freeze and break the bottle. A water bucket is guaranteed no to do this so its safer. Another technique is to add salt to the ice water bath. This is supposed to speed the cooling to less than 10 minutes.

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-10-25T20:55:12.247", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8180"}} +{ "Id": "8180", "PostTypeId": "2", "ParentId": "8178", "CreationDate": "2020-10-26T07:38:13.320", "Score": "5", "Body": "

English is not my native language and I am not sure of the meaning of the word freezer. I believe it is the part of the fridge that goes under 0°C.

\n

In France, according to my habits, the champagne usually goes in the fridge with the other beverages. We put it in the freezer only when we have unexpected guests and we need to cool the bottle quickly.

\n

The problem if the bottle stays too long in the freezer is that the water in the champagne might freeze which will cause it to lost its carbonation.

\n

On top of that if you drink it too cold you will miss some of its flavour (like for every beverages drink too cold)

\n", "OwnerUserId": "11663", "LastActivityDate": "2020-10-26T07:38:13.320", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8181"}} +{ "Id": "8181", "PostTypeId": "2", "ParentId": "590", "CreationDate": "2020-10-30T10:00:29.293", "Score": "2", "Body": "

In the UK the legal definition of beer is really silly it is a drink that HMRC deems to be beer, bacause you said it was beer. That is pretty much it. And below 0.5% can be call Low/No Alcohol beer. No definition of what it is made from or the process used.

\n

Alcoholic Liquor Duties Act 1979

\n

" “Beer” includes ale, porter, stout and any other description of beer, and any liquor which is made or sold as a description of beer or as a substitute for beer and which is of a strength exceeding 0.5 per cent."

\n

Excise Notice 226 refers back to the 1979 act.

\n

Most people would consider beer to be a fermented beverage that used grains or malted grains as its base, and has not been distilled.

\n

I personally would not consider Snake Venom a beer, as it has been fortified and to get it to 60+% I would say it likey has more distilled spirit in it than it does beer. So, to my mind it is strong vokda with a beer mixer.

\n

As opposed to Sink the Bismark or Tactical Nuclear Penguin from Brewdog that were freeze distilled to increase ABV, these were not mixed with alcohol, they had water removed. I still struggle to see this as beer, as although it has not been distilled in the standard sense it has still gone through a distillation process.

\n

I would say tthat beer must not be distilled, but, this raises a issue of low alcohol beers. Would they still be beer as many of them go through vacuum distillation to remove the alcohol.

\n", "OwnerUserId": "4857", "LastEditorUserId": "4857", "LastEditDate": "2020-10-30T10:09:34.803", "LastActivityDate": "2020-10-30T10:09:34.803", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8182"}} +{ "Id": "8182", "PostTypeId": "2", "ParentId": "590", "CreationDate": "2020-11-01T18:36:04.897", "Score": "-1", "Body": "

Alaska Man's definitions:

\n
    \n
  1. Facilitator of the warm and fuzzy, all is right with the world, euphoria.

    \n
  2. \n
  3. Nectar of the Gods.

    \n
  4. \n
  5. Bubbly beverage beloved by billions.

    \n
  6. \n
  7. Barley Enjoyed Everyday Repeated.

    \n
  8. \n
\n

Oh great and wise Ninkasi, let me sing to thee a Hymn

\n", "OwnerUserId": "6473", "LastEditorUserId": "6473", "LastEditDate": "2020-11-01T18:44:39.727", "LastActivityDate": "2020-11-01T18:44:39.727", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8183"}} +{ "Id": "8183", "PostTypeId": "1", "AcceptedAnswerId": "8184", "CreationDate": "2020-11-01T23:33:16.780", "Score": "2", "ViewCount": "53", "Body": "

I found about a dozen bottles of my father's home made wine. My father passed away some time ago and I would like to restore the wine as a keepsake since I am not a wine drinker. Originally it was made from zinfandel grapes in oak brandy barrels. It has been stored in a dark, cool basement but the bottles were righ side up when I found them.

\n

There is a lot of sediment at the bottom of the bottles but I opened one and the aroma was very nice, at least to me it seemed to be. Unfortunately I do not know the age. Some of the bottles may be over 30 years. It is a mix of years. I hate to throw it out but there is concern from a food safety perspective. Can any process be used to "restore" the wine such as filtration so I can keep it. I suspect not but it does not hurt to ask an expert. I don't like the idea of having something he made just sit in a bad way.

\n", "OwnerUserId": "11682", "LastActivityDate": "2020-11-02T14:52:04.727", "Title": "Can aged home made wine be restored?", "Tags": "wine red-wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8184"}} +{ "Id": "8184", "PostTypeId": "2", "ParentId": "8183", "CreationDate": "2020-11-02T14:52:04.727", "Score": "2", "Body": "

This is pure speculation, but here is what I think. The wine is either palatable or not. The traditional way to deal with sediment is decanting. This is where the wine is slowly poured into a container (a decanter) while observing the sediment, usually with a bright light behind the bottle. The idea is to stop pouring just before the sediment escapes. You lose some liquid in the process. I suppose you could try pouring through a coffee filter too. Once decanted the wine should probably be drunk within a day or two.

\n

Fine wine is often aged for 30 years, but it is very likely the wine is spoiled or at least well past its prime. The alcohol in the wine should keep it safe to drink, but since it was home made I can only speculate about that.

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-11-02T14:52:04.727", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8185"}} +{ "Id": "8185", "PostTypeId": "2", "ParentId": "7885", "CreationDate": "2020-11-12T20:24:26.607", "Score": "1", "Body": "

I'm late with this answer, but there are a lot of things to do with leftover fruit that's been soaked in alcohol! Applying ideas in this article about leftovers makes me think you could:

\n
    \n
  1. Cut off the peels and simmer the fruit with some sugar to use in desserts,
  2. \n
  3. Do something similar but for a glaze on meat (boozy citrus + chicken sounds pretty good),
  4. \n
  5. Use the clementines in a smoothie (if the peels have become soft enough they might blend right in),
  6. \n
  7. Freeze pieces of the clementines in ice cubes to use in cocktails later (they'll look pretty and give the cocktail flavor as they melt)
  8. \n
\n

Other ideas: https://letsplayadrinkinggame.com/blog/8-fun-ways-use-leftover-alcohol-soaked-fruit/

\n", "OwnerUserId": "11698", "LastActivityDate": "2020-11-12T20:24:26.607", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8186"}} +{ "Id": "8186", "PostTypeId": "1", "CreationDate": "2020-11-14T04:36:17.397", "Score": "3", "ViewCount": "50", "Body": "

The best cocktail I've ever had is at Santo Mezcal in Santa Barbara, California called the Riveria Hermosa.

\n

The ingredients shown in the menu just say "bitters". I'm wondering what bitters would go best with the other ingredients: bourbon, blood orange syrup, lemon juice, and pinot noir. Any help would be great.

\n", "OwnerUserId": "11700", "LastEditorUserId": "5064", "LastEditDate": "2020-11-17T16:44:02.110", "LastActivityDate": "2020-12-14T14:53:21.930", "Title": "What's bitters to use with bourbon, blood orange syrup, lemon juice and pinot noir?", "Tags": "recommendations whiskey ingredients cocktails", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8187"}} +{ "Id": "8187", "PostTypeId": "2", "ParentId": "4867", "CreationDate": "2020-11-16T23:16:12.960", "Score": "0", "Body": "

I would resist the tendency to group "double IPAs"The witj IPAS ge in general tje ABV of doubles is generally increased by adding malt which makes the beer sweeter, departing from the traditional strong hoppiness of IPAs. I love double IPAs but they don't taste the same as IPAs

\n", "OwnerUserId": "11707", "LastActivityDate": "2020-11-16T23:16:12.960", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8188"}} +{ "Id": "8188", "PostTypeId": "2", "ParentId": "8186", "CreationDate": "2020-11-17T16:42:30.567", "Score": "3", "Body": "

What's bitters to use with bourbon, blood orange syrup, lemon juice and pinot noir?

\n

Bitters have been around for along time, but have come back into favor as part of the current craft cocktail trend. The two most traditional kinds are Peychaud’s and Angostura, both crucial players in whiskey cocktails such as the Manhattan and the old-fashioned. But these days, the sky’s the limit.

\n

Taking into consulting the ingredients of the cocktail you are interested in, I would recommend using Angostura bitters based on this particular recipe.

\n

The only additional ingredient would be the Pinot noir wine.

\n

I am confident that the Angostura bitters will work it’s magic quite well.

\n

And by the way.

\n

Bone Appetite!

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-12-14T14:53:21.930", "LastActivityDate": "2020-12-14T14:53:21.930", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8189"}} +{ "Id": "8189", "PostTypeId": "2", "ParentId": "6283", "CreationDate": "2020-11-18T15:16:55.917", "Score": "2", "Body": "

I've been having constant digestive issues for a few years now. Nausea whenever I eat, especially if the meal contains protein or fats. I take ginger, hydrochloric acid, fennel, and digestive enzymes at every meal to help, but I still get nauseous constantly.... I also get constipated very easily. My grandfather is from Germany, and recently told me to drink a small amount of Jagermeister with my meals to help with my digestion....now, I used to work as a Vitamin & supplement supervisor and learned quite a bit about herbal remedies, so I have been aware of the benefits of licorice, but I did not expect the results from the Jager to be significant. I have been incredibly surprised at how well the Jagermeister has been helping! My stomach is emptying faster, as well as my bowels moving more frequently. I am grateful and excited to be feeling so much better! Thank you grandpa, for reminding me that Jager had been used in the old days as such a beneficial health tonic. A little bit at the beginning of every meal has worked wonders for me :)

\n", "OwnerUserId": "11710", "LastActivityDate": "2020-11-18T15:16:55.917", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8191"}} +{ "Id": "8191", "PostTypeId": "1", "CreationDate": "2020-11-20T01:49:43.633", "Score": "5", "ViewCount": "290", "Body": "

Is there anything unique about beer in Asian countries compared with European beer? or is it mainly just a brand difference?

\n

Some of them are for example, Tsingtao beer of China, Saigon beer of Vietnam, Asahi beer of Japan, and Singha beer of Thailand etc.

\n

Some of these beer have added rice besides wheat, which is said to make the fermentation process easier. But is there any essential difference from European beer because of some possible factors like terroir, as well as the difference between European wine and New World wine?

\n", "OwnerUserId": "8181", "LastEditorUserId": "6473", "LastEditDate": "2020-11-23T19:27:57.713", "LastActivityDate": "2021-06-11T08:49:00.853", "Title": "Differences in beers from Asia in comparision to beers from Europe", "Tags": "specialty-beers", "AnswerCount": "1", "CommentCount": "7", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8193"}} +{ "Id": "8193", "PostTypeId": "2", "ParentId": "8171", "CreationDate": "2020-11-26T08:02:26.500", "Score": "1", "Body": "

My Grandmother drank one glass of red wine nightly with dinner. Shes in her 90s and fit as a fiddle. Red wine is great for your heart, it also lowers bad cholesterol!

\n
\n

Red Wine and Grape Juice

\n

Alcohol may raise levels of good HDL cholesterol by as much as 5 to 15 percent, research shows — and red wine is particularly beneficial because its polyphenol antioxidants may also lower LDL levels. If you’re not into vino, grape juice can provide some of the same heart-healthy benefits.

\n
\n", "OwnerUserId": "11729", "LastEditorUserId": "5064", "LastEditDate": "2020-11-26T16:25:22.410", "LastActivityDate": "2020-11-26T16:25:22.410", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8194"}} +{ "Id": "8194", "PostTypeId": "2", "ParentId": "8151", "CreationDate": "2020-11-26T08:06:32.980", "Score": "1", "Body": "

\"enter

\n

Came across this, am i barking up the right tree?

\n", "OwnerUserId": "11729", "LastActivityDate": "2020-11-26T08:06:32.980", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8195"}} +{ "Id": "8195", "PostTypeId": "2", "ParentId": "8131", "CreationDate": "2020-11-26T08:34:16.513", "Score": "0", "Body": "

My favorite beers that every beer enthusiast should try: Newcastle Brown Ale, Samuel Smith's Oatmeal Stout, Moose Drool, Alaskan Amber, Mac & Jack's, and last but not least, when I'm at a bar that has limited options, Manny's is a good standby choice. Have fun and don't drink and drive :)

\n", "OwnerUserId": "11729", "LastActivityDate": "2020-11-26T08:34:16.513", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8197"}} +{ "Id": "8197", "PostTypeId": "2", "ParentId": "8171", "CreationDate": "2020-11-27T17:38:52.240", "Score": "0", "Body": "

What possible health benefits are there with drinking alcohol in moderation?

\n

First of all, let us define what drinking in moderation is.

\n

Caveat: This question deals only with possible health benefits! There remains always some risks in drinking alcohol even moderately, which I am not dealing with here.

\n
\n

Defining moderate

\n

Moderate alcohol use for healthy adults generally means up to one drink a day for women and up to two drinks a day for men.

\n

Examples of one drink include:

\n
    \n
  • Beer: 12 fluid ounces (355 milliliters)

    \n
  • \n
  • Wine: 5 fluid ounces (148 milliliters)

    \n
  • \n
  • Distilled spirits (80 proof): 1.5 fluid ounces (44 milliliters)

    \n
  • \n
\n
\n

Eating a healthy diet and being physically active also has a great impact on one’s health benefits. So any moderate drinking should been seen in light of one’s general way of life at the time.

\n

Some possible health benefits of moderate drinking are:

\n
    \n
  • Reducing your risk of developing and dying of heart disease (1)
  • \n
  • Possibly reducing your risk of ischemic stroke (when the arteries to your brain become narrowed or blocked, causing severely reduced blood flow) (1)
  • \n
  • Possibly reducing your risk of diabetes (1)
  • \n
  • Red Wine Can Actually Burn Fat (2)
  • \n
  • Alcohol Can Help Fight Colds (2)
  • \n
  • Red Wine is Beneficial to Your Heart (2)
  • \n
  • Drinking Moderately Can Improve Sexual Function in Men (2)
  • \n
  • And for Women, It Offers Libido-Boosting Powers (2)
  • \n
  • Red Wine Can Boost Your Memory (2)
  • \n
  • Wine Can Make You Live Longer (2)
  • \n
  • Vino Can Boost Your Vaccine's Effects (2)
  • \n
  • White Wine Is Weight-Loss Friendly (2)
  • \n
  • A Glass of Cabernet Could Enhance Your Workout (2)
  • \n
  • Beer Has Vitamins (2)
  • \n
  • Beer Lowers Heart Attack Risks in Women (2)
  • \n
  • Like Wine, Vodka Is Also Heart-Friendly (2)
  • \n
  • Whisky Can Help a Sore Throat (2)
  • \n
\n", "OwnerUserId": "5064", "LastActivityDate": "2020-11-27T17:38:52.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8198"}} +{ "Id": "8198", "PostTypeId": "1", "CreationDate": "2020-11-27T22:47:47.110", "Score": "3", "ViewCount": "78", "Body": "

People tend to prefer the taste of "premium" liquors. How much of the taste difference is simply due to them having more sugar? Have there been studies on this?

\n

(I've learned recently that some chemical compounds found in some alcoholic drinks can break down into sugar molecules right in your mouth, due to the enzymes found there. For the purposes of this discussion, we should probably count them as "sugar" also)

\n", "OwnerUserId": "953", "LastEditorUserId": "953", "LastEditDate": "2020-11-28T01:32:04.523", "LastActivityDate": "2020-12-04T18:46:55.963", "Title": "Do \"premium\" liquors contain more sugar?", "Tags": "taste nutrition", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8199"}} +{ "Id": "8199", "PostTypeId": "2", "ParentId": "8171", "CreationDate": "2020-11-28T21:56:20.057", "Score": "2", "Body": "

This might sound strange on alcohol.SE, but "to thine own self be true".

\n

Studies that show that not drinking is less healthy do it because the "teetotalers" are, often enough, former alcoholics.

\n

Skeptics SE has several threads about the "benefits" of moderate drinking:

\n\n

This article by The Guardian examines the flaws of those studies that show moderate drinking to be beneficial:

\n
\n

Never drinkers are also different in a lot of ways, mostly bad, which\nmakes sense if you think about the why people might choose to abstain\nfrom drinking – for example, illness, poverty, and previous\nalcoholism.

\n
\n

The article also reviews a couple of recent studies that show that moderate alcohol consumption is not beneficial.

\n", "OwnerUserId": "953", "LastEditorUserId": "953", "LastEditDate": "2020-12-01T06:19:05.727", "LastActivityDate": "2020-12-01T06:19:05.727", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8200"}} +{ "Id": "8200", "PostTypeId": "2", "ParentId": "8198", "CreationDate": "2020-12-01T00:29:50.353", "Score": "0", "Body": "

I'm just a drinker, not an expert.

\n

When I was younger (18-25), I was used to drink "sweet" drinks. Two main reasons for that:

\n
    \n
  • Sweet is an easier taste, when you are young the bitter is not so affordable
  • \n
  • Sweet is cheaper.......
  • \n
\n

The second motivation is crucial in my opinion. Indeed, adding "extra" sugar to alcoholic drink avoids the producer to perform several time-wasting processes, which would produce, on the other hand, a "premium" product.

\n

Of course, also "premium" products contains sugar. Anyway, I think that the quality of the sugar makes a huge difference. You can produce a whiskey, wine or vodka which naturally contain sugar, or you can produce Vodka+Strawberry, Whiskey+Honey, Wine+Juice... in this case you are adding "bad" sugar to a "bad" product.

\n", "OwnerUserId": "11747", "LastActivityDate": "2020-12-01T00:29:50.353", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8202"}} +{ "Id": "8202", "PostTypeId": "2", "ParentId": "8198", "CreationDate": "2020-12-02T13:58:43.950", "Score": "1", "Body": "

I'm not sure Premium Liquors in general contain more sugar. Quite the contrary, as I find the base level liquors are often just basic alcohol with sugar added.

\n

Premium liquors are typically derived from a higher quality source than the mainstream or entry level; e.g. riper grapes from older vines when it comes to Cognac/Brandy and so on.

\n

In some cases a higher quality source could yield more sugar - but most often, the higher sugar content is used to arrive at a higher alcohol content. Other times, the higher quality is evident in added finesse, depth, aftertaste, complexity.

\n", "OwnerUserId": "7790", "LastActivityDate": "2020-12-02T13:58:43.950", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8203"}} +{ "Id": "8203", "PostTypeId": "2", "ParentId": "8198", "CreationDate": "2020-12-04T18:46:55.963", "Score": "4", "Body": "

I have been in the luxury spirits business for a couple of decades. I can tell you that in the case of brown spirits, whiskey (including subsets like bourbon) and cognac (or in most cases anything aged in high quality wood) the best producers never add sugar. In almost all cases, the legal standards forbid it. The fine taste and smoothness has to do somewhat with quality of raw grain material, and very much with distilling methods (and therefore much higher expense) and the aging wood itself. The best brown spirits producers highly distill their raw spirit (clear without color off the distilling process) that removes a very high amount of fusil oils. Fusil oils are a bad bunch of chemicals that even include benzine. These quality producers have a lower yield of liquid that others include in their spirits. This makes the raw alcohol coming off the stills more expensive. Getting a distillate like this is called a "narrow cut" - retaining only the purist of the distillates. Won't go into it here. The second most important thing is the quality of the wood in which they age the liquid. One company I am intimately familiar with pays 900 Euros for their barrels while most pay 90 USD. Now 90 USD wood is excellent but only if you are experts in wood buying and many pay in between 90 and 900. This is why great liquids taste smooth, are complex and leave no hangover (no fusil oils that are the hangover culprit).

\n

Finally, some inferior Russian vodkas add a very small amount of sugar to make them "smoother" Its not legal but they do. And they are expensive some of them. But high quality producers of pure clear alcohol from which is made gin, vodka and is the base for other drinks are also very high quality and exclude as most all fusil oils. They cost more, and it's worth it for your heath - most have no sugar added.

\n

Finally, remember that a high amount of sugar combined with alcohol (think cocktails) can produce hellatious hangovers because high sugar with low quality alcohol makes for a bad Saturday morning.

\n

Hope this helps the discussion.

\n", "OwnerUserId": "11755", "LastActivityDate": "2020-12-04T18:46:55.963", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8204"}} +{ "Id": "8204", "PostTypeId": "1", "AcceptedAnswerId": "8206", "CreationDate": "2020-12-07T14:38:46.300", "Score": "3", "ViewCount": "137", "Body": "

I had a plum porter lately, it has a really intense plum flavor and aroma and even a bit of plums in the taste, so I thought there were some plum products in it. However, there is nothing in ingredients list which could give the plum note to the drink.

\n

How does the plum falvor originate here?

\n

\"Plum

\n", "OwnerUserId": "4742", "LastActivityDate": "2020-12-09T09:02:38.913", "Title": "What is the source of the plum flavor in (this) plum porter?", "Tags": "specialty-beers flavor porter", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8205"}} +{ "Id": "8205", "PostTypeId": "2", "ParentId": "8204", "CreationDate": "2020-12-08T12:18:14.507", "Score": "2", "Body": "

It's probably a combination of certain hops and yeasts. Some kinds of ale yeasts are known to add a plummy flavour to a beer (WLP500 for example). And also hops like golding or empire can go into this direction.

\n

The dominant exotic fruit taste in e.g. IPAs usually also doesn't originate from actual fruits, but from hops and yeast.

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2020-12-08T12:30:28.940", "LastActivityDate": "2020-12-08T12:30:28.940", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8206"}} +{ "Id": "8206", "PostTypeId": "2", "ParentId": "8204", "CreationDate": "2020-12-09T09:02:38.913", "Score": "5", "Body": "

I contacted the brewery and they replied that

\n
\n

To get the plum flavour we use a natural plum extract.

\n
\n

Curious that it's not on the ingredients list.

\n

PS. It's St.Peter's Plum Porter.

\n", "OwnerUserId": "4742", "LastActivityDate": "2020-12-09T09:02:38.913", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8207"}} +{ "Id": "8207", "PostTypeId": "1", "CreationDate": "2020-12-10T18:19:16.073", "Score": "1", "ViewCount": "122", "Body": "

I regularly buy beers online in December, mainly from Belgium (and Netherlands). Are there any laws about selling beers after best before date (with no notice to potential customers)?

\n", "OwnerUserId": "8185", "LastActivityDate": "2021-03-03T03:02:05.197", "Title": "Selling after best before date (Belgium/Netherlands)", "Tags": "laws belgian-beers", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8208"}} +{ "Id": "8208", "PostTypeId": "1", "AcceptedAnswerId": "8209", "CreationDate": "2020-12-11T01:00:19.943", "Score": "3", "ViewCount": "90", "Body": "

What does “do“ mean in old cocktails?

\n

There’s a post on “do” in old recipes of\nSeasoned Advice SE.

\n

It says that “do.” should be read as “ditto” which makes sense, but I’m reading “Jerry Thomas Bartenders Guide How to mix drinks, or poison customers in the name of Lucifer.” and I found this recipe:

\n

2 glasses of maraschino

\n

2 do. do. Curaçoa

\n

Fill the bowl with ripe strawberries. Should the strawberrry season be over, or under, add a few drops of extract of peach or vanilla.

\n

How do I interpret “do. do.”? In some of the other recipes interpreting “do.” as ditto makes sense. The book was written in 1862.

\n", "OwnerUserId": "11776", "LastEditorUserId": "5064", "LastEditDate": "2020-12-12T17:50:15.773", "LastActivityDate": "2020-12-12T17:50:15.773", "Title": "What does “do“ mean in old cocktails?", "Tags": "cocktails recipes", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8209"}} +{ "Id": "8209", "PostTypeId": "2", "ParentId": "8208", "CreationDate": "2020-12-11T01:30:02.963", "Score": "3", "Body": "
\n

In some of the other recipes interpreting “do.” as ditto makes sense.

\n
\n

It makes sense here too:

\n
    \n
  • 2
  • \n
  • ditto the "glasses"
  • \n
  • ditto the "of"
  • \n
  • Curaçao
  • \n
\n", "OwnerUserId": "11599", "LastActivityDate": "2020-12-11T01:30:02.963", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8210"}} +{ "Id": "8210", "PostTypeId": "1", "CreationDate": "2020-12-11T03:06:10.777", "Score": "5", "ViewCount": "183", "Body": "

I've noticed recently that when it comes to pale ales of all types, alcohol content has increased significantly.

\n

Where ten years ago, most beers were either 4% or 5% or maybe 5.2% alcohol by volume, (in Australia) if I look at most IPAs and other craft beers, most are are minimum 5.8%. It's more common to see them the 6% and even 7-9%.

\n

Is this the case all around the world, or Australia only?

\n

If it is a universal thing, is there a good reason, from the point of view of taste, for this? Or is this more just brewers giving drinkers 'more value for money'?

\n", "OwnerUserId": "87", "LastActivityDate": "2020-12-14T21:32:21.983", "Title": "Why have craft beers increased in alcohol content?", "Tags": "craft-beers alcohol-level australia", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8211"}} +{ "Id": "8211", "PostTypeId": "2", "ParentId": "8210", "CreationDate": "2020-12-11T08:20:19.220", "Score": "2", "Body": "

I don't really think the alcohol content really has increased.

\n

Most standard pale ales still are between 4% and 6%. The IPA are not standard pale ales. They have more hops and sugar which lead to a higher alcohol content.

\n

This is my point of view from Europe at least.

\n", "OwnerUserId": "11663", "LastActivityDate": "2020-12-11T08:20:19.220", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8212"}} +{ "Id": "8212", "PostTypeId": "2", "ParentId": "8210", "CreationDate": "2020-12-12T16:38:20.017", "Score": "1", "Body": "

I am Italian, and I traveled Brittany, Danemark, Bavaria, and Belgium in search for beer. From my point of view, "standard" pale ale still are between 4% and 6%, where "standard" is original-English style.

\n

But as craft beers spread, the U.S. styles with more hops and more alcohol are more common to see all over Europe, so your perception of beers with increased alcool content is not wrong. I think it is both a matter of taste and a need to differentiate products.

\n", "OwnerUserId": "8185", "LastActivityDate": "2020-12-12T16:38:20.017", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8213"}} +{ "Id": "8213", "PostTypeId": "2", "ParentId": "8177", "CreationDate": "2020-12-13T17:10:01.453", "Score": "2", "Body": "

One idea may be to make an affogato with the liquor poured on a mild-taste ice cream portion, for example cream (fior di latte) or custard ice cream.

\n
\n

An affogato or more traditionally known as "affogato al caffe" (Italian for "drowned") is an Italian coffee-based dessert. It usually takes the form of a scoop of fior di latte or vanilla gelato or ice cream topped or "drowned" with a shot of hot espresso. Some variations also include a shot of amaretto, Bicerin, Kahlua, or other liqueur.

\n

Variety of Affogato

\n

Though restaurants and cafes in Italy categorize the affogato as a dessert, some restaurants and cafes outside of Italy categorize it as a beverage. Whether a dessert or beverage, restaurants and cafes usually serve the affogato in a tall narrowing glass, allowing the fior di latte, vanilla gelato, or ice cream melt and combine with espresso into the hollowed space in the bottom of the glass. Occasionally, coconut, berries, honeycomb and multiple flavors of ice cream are added. A biscotti or cookie can also be served and enjoyed along side this beverage. Affogatos are often enjoyed as a post-meal coffee dessert combo eaten and or drank with a spoon or straw.

\n

While the recipe of the affogato is more or less standard in Italy, consisting of a scoop of vanilla gelato topped with a shot of espresso, variations exist in European and American restaurants.

\n

In French, it is known as "gelato al fior di latte" with the translation to English "flower of milk". Typically the ingredients in the ice cream includes dairy, starch, and sugar. It is popular in countries where they dress it with chocolate syrup, cantuccini, or biscotti to provide extra flavors.

\n
\n
\n

Now one proper recipe! For four cups.

\n
    \n
  • 4 egg yolks
  • \n
  • 4 spoons of sugar
  • \n
  • 2 spoons of flour
  • \n
  • 2 spoons of potato starch
  • \n
  • 700 ml of milk
  • \n
  • 100 ml of Nanaimo Bar Cream
  • \n
  • cocoa powder
  • \n
\n

Meanwhile milk gets to boiling temperature in a pan, beat properly the yolks with the sugar, then add the flour, the starch and stir and mix well. Then add the Nanaimo Bar Cream to the mixture. Pour the mixture in the milk pan on low heat and carry on stirring until the cream get dense.

\n

Pour into four cups and cool at room temperature first, then in the fridge. When cooled, sprinkle cocoa and serve!

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-12-18T22:40:38.277", "LastActivityDate": "2020-12-18T22:40:38.277", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8214"}} +{ "Id": "8214", "PostTypeId": "2", "ParentId": "8177", "CreationDate": "2020-12-14T21:26:10.553", "Score": "2", "Body": "

I don't think a liqueur really pairs with food other than a sweet dessert. Given that, I'd "pair" Nanaimo Bar Cream liqueur with German chocolate cake. German chocolate cake confusingly has nothing to do with Germany. Alternatively perhaps Boston cream pie which actually does have something to do with Boston.

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-12-14T21:26:10.553", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8215"}} +{ "Id": "8215", "PostTypeId": "2", "ParentId": "8210", "CreationDate": "2020-12-14T21:32:21.983", "Score": "3", "Body": "

Why have craft beers increased in alcohol content?

\n

From my point of view there seems to be at least three reasons for this trend.

\n
    \n
  • Beer drinkers are drawn to the bolder flavors and the mouth feel of stronger beers.
  • \n
  • The higher alcohol content gives such beers a longer shelf life.
  • \n
  • Stronger beers do not have to be served at cooler temperatures as lighter beers, some can be served somewhat warm.
  • \n
  • Part of craft beer's popularity is in its variety, including high ABV beers.
  • \n
\n
\n

What is driving the popularity of high alcohol beers, and will it last?

\n

With the surge in popularity of craft beers, the alcohol content in a good many of them has also risen. While most large breweries turn out beer with an ABV (alcohol by volume) around 4 to 5 percent, some craft beers boast ABV counts of up to 29 percent, with the average being 5.9 percent.

\n

The American IPA trend among craft brewers exploits this proclivity toward higher alcohol content, with most being between 6 and 10 percent. Double and triple IPAs are even higher. Most craft brewers now have at least one higher ABV variety, and much of it has been driven by consumer demand.

\n

Why do consumers like higher alcohol beers?

\n

Much of the appeal has to do with taste. Higher ABV beers tend to have a richer, more complex taste that can sometimes be on the bitter side. Fans are drawn to the bolder flavors and the mouth feel of these stronger beers, some of which may be barrel-aged like stronger spirits. Instead of having three or four beers, they may share one with a friend to compensate for its strength.

\n

The popularity of higher ABV beers persists in spite of their steeper price tag. A decanter bottle of Sam Adams Utopia, with an ABV of 29 percent, can cost as much as $200. Another factor in popularity with both brewers and drinkers is that the higher alcohol content gives it a longer shelf life. Either way, consumers tend to identify beers with higher ABV as being higher quality.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2020-12-14T21:32:21.983", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8216"}} +{ "Id": "8216", "PostTypeId": "2", "ParentId": "8173", "CreationDate": "2020-12-15T11:01:17.750", "Score": "0", "Body": "

Here is a list of vanished (presumably) trappist breweries (choose English and the click "Others..." on the left pane.

\n

Here is the list

\n
\n

Among the breweries which used to brew Trappist beer are these :

\n
    \n
  • The abbey of La Trappe (France)
  • \n
  • The abbey of Melleray (France)
  • \n
  • The abbey of Mont des Cats (France, beer rebrewed by Chimay since 2011)
  • \n
  • The abbey of Sept Fons (France)
  • \n
  • The abbey of Chambarand (France)
  • \n
  • The abbey of Oelenberg (France)
  • \n
  • The abbey of Notre Dame du Gard (France)
  • \n
  • The abbey of Notre Dame du Port Du Salut (France)
  • \n
  • The abbey of Notre Dame du Bon repos (Saint Julien de Cassagnas) (France)
  • \n
  • The abbey of Notre-Dame de Bonne-Espérance (Échourgnac - France)
  • \n
  • The abbey of Notre Dame de Staoueli (Algeria under French domination)
  • \n
  • The abbey of Tegelen (Netherlands)
  • \n
  • The abbey of Engelszell (Austria, brewing restarted in 2012)
  • \n
  • The abbey of Banja Luka (Bosnia)
  • \n
  • The abbey of Mariawald (Germany)
  • \n
  • It seems that a Trappist brewery also existed in Africa, but we do not have any serious information on this subject. It would be the\nbrewery of the abbey Our Lady of Mokoto in Gisenyi, Rwanda.
  • \n
\n
\n

Keep in mind though, that this information might be incorrect.

\n

If you click the picture on the right side, you'll see some labels which are about 100 years old.

\n", "OwnerUserId": "4742", "LastEditorUserId": "4742", "LastEditDate": "2020-12-16T08:24:38.820", "LastActivityDate": "2020-12-16T08:24:38.820", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8217"}} +{ "Id": "8217", "PostTypeId": "2", "ParentId": "8177", "CreationDate": "2020-12-15T17:06:53.367", "Score": "1", "Body": "

What cocktails would be good mixed with Nanaimo Bar Cream?

\n

Taking up the suggestion in the comments by Ray Butterworth, I looked it up and found this. It sounded quite interesting.

\n

Seeing that some wines pair well with the actual Nanaimo Bars, one could envision using the recipe for a cocktail that follows with a German Riesling, Red Cabernet Sauvignon or a White Sauvignon Blanc:

\n
\n

Since Chocolate goes well with wine and Baileys and Hot Chocolate is a popular drink, we thought this had to work. We were a little nervous at first but it actually shocked us and turned out to taste really good.

\n

Ingredients:

\n
    \n
  • 5 oz Baileys

    \n
  • \n
  • 5 oz Port or a Heavy Red Wine

    \n
  • \n
  • 5 oz Hot Chocolate

    \n
  • \n
  • Garnish with Whipped Cream

    \n
  • \n
\n

Recipe:

\n

First heat up the hot chocolate. Next pour the Baileys into the cup. Then pour the wine into the cup. Top off cup with hot chocolate. Stir the drink until mixed. Do not shake. Garnish drink with Whipped Cream.

\n
    \n
  • 5 oz Baileys

    \n
  • \n
  • 5 oz Port or a Heavy Red Wine

    \n
  • \n
  • 5 oz Hot Chocolate

    \n
  • \n
  • Garnish with Whipped Cream

    \n
  • \n
\n

Recipe:

\n

First heat up the hot chocolate. Next pour the Baileys into the cup. Then pour the wine into the cup. Top off cup with hot chocolate. Stir the drink until mixed. Do not shake. Garnish drink with Whipped Cream.

\n

Source: Luck of the Irish Red Port Cocktail

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2020-12-15T17:06:53.367", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8218"}} +{ "Id": "8218", "PostTypeId": "2", "ParentId": "4537", "CreationDate": "2020-12-17T09:03:58.037", "Score": "0", "Body": "

Definitely, dark beer does not necessarily mean strong beer.

\n

Guinness itself produces a range of different beers (draught, original, smooth, etc.) featuring dark color, almost no transparency, but alchool percentage in the range 4.2% to 5%.

\n

The adjective English already occurs in the two previous answers and, in my taste and experience, English beers are the ones to explore to meet your taste.

\n

The following beers have a dark color, are low in alchool, are not "whole meals" (this one cited in your question is a very important matter to me too!) but nonetheless have the right body and great characteristic tastes:

\n
    \n
  • Boddingtons Draught Bitter (3.5%)
  • \n
  • Boddingtons Pub Ale (4.6%)
  • \n
  • Fuller's London Pride (4.1%)
  • \n
  • St. Austell Tribute Pale Ale (4.2%)
  • \n
  • St. Peter's Best Bitter (3.7%)
  • \n
  • St. Peter's Ruby Red (4.3%)
  • \n
\n

Disclaimer: most of these are not properly black but make the smoked look meet with a great drinkability.

\n

Also, I don't know if this one more would be easily available outside Italy but

\n\n

seems to really be the one you're looking for.

\n

Cheers!!

\n", "OwnerUserId": "8580", "LastEditorUserId": "8580", "LastEditDate": "2020-12-17T09:09:48.837", "LastActivityDate": "2020-12-17T09:09:48.837", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8219"}} +{ "Id": "8219", "PostTypeId": "2", "ParentId": "4537", "CreationDate": "2020-12-17T15:03:15.077", "Score": "1", "Body": "

My favourite is "Waterloo Dark"; it's dark enough to pass in a cola bottle, but doesn't have any of the heaviness or burnt taste that would turn off the blonde beer drinkers.\nIt's also well carbonated, so doesn't have the flatness of Guinness.

\n

It's widely available in Canada, but only a few locations outside, such as Esber Beverage Company | Waterloo Dark in Ohio.

\n", "OwnerUserId": "11599", "LastEditorUserId": "11599", "LastEditDate": "2020-12-18T01:35:16.623", "LastActivityDate": "2020-12-18T01:35:16.623", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8221"}} +{ "Id": "8221", "PostTypeId": "1", "AcceptedAnswerId": "8224", "CreationDate": "2020-12-20T12:59:39.207", "Score": "4", "ViewCount": "632", "Body": "

I'm just getting into wine, and I've tried some red wines, but nothing I particularly liked.

\n

I found a few pinot noirs too sweet, and last night I had a Paso Robles cabernet sauvignon that was a bit too buttery and smooth for me.

\n

What should I look into for wines that are more, I guess, acidic and have an edge to them? I don't need anything particularly bitter, but butteriness and sweetness do put me off.

\n", "OwnerUserId": "11804", "LastActivityDate": "2020-12-25T05:40:53.560", "Title": "What are some types of red wine that aren't buttery or sweet-ish?", "Tags": "wine red-wine", "AnswerCount": "3", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8222"}} +{ "Id": "8222", "PostTypeId": "2", "ParentId": "8221", "CreationDate": "2020-12-20T15:55:44.907", "Score": "1", "Body": "

Very few red wines are actually sweet. Meiomi pinot noir is slightly off dry, but hardly sweet. I've never had a sweet cabernet sauvignon. Buttery is an adjective sometimes associated with California chardonnay which has gone through malolactic conversion. Lots of people seem to like it although I'm not a fan. Here is a good article.

\n

If you have a good wine store, I'd suggest asking the shop keeper for suggestions. Personally I like Spanish wines like Rioja which are good values. You can also look for wines with higher alcohol content. It is hard to imagine getting to 13%+ ABV while maintaining any residual sweetness.

\n", "OwnerUserId": "6370", "LastActivityDate": "2020-12-20T15:55:44.907", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8223"}} +{ "Id": "8223", "PostTypeId": "2", "ParentId": "8221", "CreationDate": "2020-12-24T15:14:48.307", "Score": "0", "Body": "

Technically, red wines are never sweet (with a few exceptions like Recioto) - so you probably mean the wines are full because the grapes were quite ripe, typically from a sunny location.

\n

As a European, I often find American, Australian and similar wines more full and 'friendly', but lacking in acid that would make it pair better with food.

\n

Look for wines from colder climates; e.g. European wines from Austria, Northern Italy, sub-Alpine France or similar non-European versions.

\n", "OwnerUserId": "7790", "LastActivityDate": "2020-12-24T15:14:48.307", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8224"}} +{ "Id": "8224", "PostTypeId": "2", "ParentId": "8221", "CreationDate": "2020-12-24T16:44:24.113", "Score": "3", "Body": "

What are some types of red wine that aren't buttery or sweetish?

\n

My guess is that one could try a red wine like Merlot, Cabernet Sauvignon, and Pinot Noir. Generally speaking they are dry and thus not sweet.

\n

\"enter

\n

Red Wine Sweetness Chart

\n

Some Chardonnays may in fact be buttery, but not all.

\n
\n

What does the term “buttery” mean in reference to wine?

\n

"Buttery" can refer to a flavor, smell, texture or some combination of all three, and it's most commonly associated with Chardonnay. Buttery flavors usually come from diacetyl, an organic compound that’s a natural byproduct of fermentation. Diacetyl can also be a result of putting a wine through a malolactic conversion. Exposing a wine to oak barrels can also emphasize buttery notes—both from the toasting on the inside of the barrel, and the softening effect barrels can have on a wine’s texture.

\n

Have you ever smelled a wine and it’s a dead ringer for butter-flavored popcorn? That’s not a coincidence. Diacetyl is sometimes added to foods for its buttery flavor—think movie-theater popcorn, margarine, crackers and cooking oil.

\n

I consider “buttery” a positive note. Just like any other wine characteristic, I prefer it in balance with a wine’s other elements. But buttery Chardonnays used to be very fashionable, and now much less so. These days, sometimes “buttery” is used as a pejorative term.

\n

Other descriptors in a similar vein are cream/creamy, piecrust, caramel, butterscotch or brioche.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2020-12-25T05:40:53.560", "LastActivityDate": "2020-12-25T05:40:53.560", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8225"}} +{ "Id": "8225", "PostTypeId": "1", "CreationDate": "2020-12-24T19:04:22.080", "Score": "2", "ViewCount": "829", "Body": "

In my home bar, I have some tequila, rum, vodka, and bourbon. Each of these types now has two or more brands (the extras were gifts), which take up space.

\n

I'd like to keep my home bar simple and just have one bottle of each type.

\n
    \n
  1. What issues are there with doing this?
  2. \n
  3. Is this safe?
  4. \n
  5. How will this affect the cocktails I might make?
  6. \n
  7. How should I calculate the new alcohol level?
  8. \n
\n", "OwnerUserId": "11607", "LastActivityDate": "2021-01-04T17:20:14.650", "Title": "Home Bar - Marry Two Bottles of Different Brands?", "Tags": "taste storage ingredients cocktails alcohol-level", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8226"}} +{ "Id": "8226", "PostTypeId": "2", "ParentId": "8225", "CreationDate": "2020-12-24T22:38:45.327", "Score": "3", "Body": "

If the bottles are standard everyday bargain brands then I don't see much problem with mixing them together by type. However it would seem a shame to take a premium bourbon and mix it with something cheap. As for your other question, I'd guess it is as safe as having separate bottles. Unless the cocktail recipe specifies a specific brand I doubt it will affect the result much. As far as alcohol content, most gins (for example) are going to be similar in ABV so mixing won't change things much. Calculating the ABV of the result is a weighted average. Take the ABV of bottle A times the volume in bottle A add the ABV of bottle B times the volume in bottle B and divide the result by the final volume.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2021-01-04T17:20:14.650", "LastActivityDate": "2021-01-04T17:20:14.650", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8227"}} +{ "Id": "8227", "PostTypeId": "1", "CreationDate": "2020-12-28T06:37:53.553", "Score": "1", "ViewCount": "112", "Body": "

Does the yeast in beer weaken when the beer is flat? I use the beer in making bread, and, since I don't drink, it sits in the fridge until I bake bread again. I'm curious whether the yeast weakens in flat beer.

\n", "OwnerUserId": "11827", "LastEditorDisplayName": "user11829", "LastEditDate": "2021-01-03T18:09:23.293", "LastActivityDate": "2021-01-03T18:09:23.293", "Title": "Does the yeast weaken in flat beer?", "Tags": "temperature yeast", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8228"}} +{ "Id": "8228", "PostTypeId": "2", "ParentId": "8227", "CreationDate": "2020-12-28T18:00:14.793", "Score": "4", "Body": "

By the time you open your beer the yeast has mostly exhausted itself by converting the sugars into alcohol.

\n

You may be able to use it to kick start a sourdough starter, or grow it back to an active bacteria, but it will not be able to leaven a batch of bread by itself from the bottle.

\n", "OwnerUserId": "6473", "LastActivityDate": "2020-12-28T18:00:14.793", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8229"}} +{ "Id": "8229", "PostTypeId": "2", "ParentId": "8141", "CreationDate": "2020-12-29T15:08:39.467", "Score": "1", "Body": "

In general terms, vodka is almost pure alcohol and water, with very little inherent flavour.

\n

Whisky starts out the same way, but the final product has a very distinctive flavour (or rather many distinctive flavours, depending upon the maker).

\n

Some of the flavour comes from the fermented malted grain (the equivalent of beer), which is often infused with peat or other smoke.\nBut most of the flavour is absorbed from the burnt wood of the oak barrels in which it is aged for years.\nTwelve year old scotch whisky literally is left to sit in the barrel for twelve years before being bottled.\n(Once bottled, it no longer ages.)

\n

Similarly, brandy is made from fermented fruit (the equivalent of wine), and aged in oak barrels.

\n

Rum is made from fermented molasses, and often flavoured with spices during the aging process.

\n

Almost every kind of liquor starts out as something very similar to vodka.\nIt's the flavour that develops during aging that distinguishes them.

\n

That's why, where taxes are low or non-existent, vodka is very cheap, while whisky is still relatively expensive.

\n", "OwnerUserId": "11599", "LastActivityDate": "2020-12-29T15:08:39.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8230"}} +{ "Id": "8230", "PostTypeId": "2", "ParentId": "8227", "CreationDate": "2021-01-01T17:55:16.673", "Score": "1", "Body": "

I'm not a bread baker, but I believe that the yeast in beer (what little might be there) is different from yeast used for baking and isn't active in the baking process. However the carbonation in beer might impact the texture or rise of the bread. For this reason flat beer might act differently than freshly opened beer.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-01-01T17:55:16.673", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8231"}} +{ "Id": "8231", "PostTypeId": "2", "ParentId": "8225", "CreationDate": "2021-01-03T18:19:52.117", "Score": "2", "Body": "

I have a fairly opposing view to Eric's so thought I should post it as a separate answer:

\n

While there may be some spirits that may be okay to mix almost all spirits have distinct differences between brands.

\n

Vodka: if you have plain vodkas, designed to have as little taste as possible, and just add alcohol to fruit juices etc, these will be good to mix. I would not suggest doing this with for example a Stolichnaya, or Bison, or other distinct vodka, or with any flavoured vodkas.

\n

Gin: you really cannot mix gins, as they all have very different flavours from the mix of botanicals. In fact that is the whole point of keeping multiple bottles.\nTequila: Unless you have really cheap tequila (the kind you use for shots and hide the taste with salt/lemon) they all have distinct tastes, and it would be a shame to mix them - they all make different margaritas, for example.

\n

Rum: again, even within the main groups of dark, light, overproof, spiced, navy etc you have a multitude of flavours, so mixing these will dilute the very notes they are famed for.

\n

Bourbon: between bourbons, Kentucky whiskey, Tennessee whiskey and others, there are huge differences in sweetness, smokiness and other notes. These are also a no-no for mixing.

\n

Also, don't even think about doing this with whisky

\n

To answer your specific questions:

\n
    \n
  1. you'll take away the flavours
  2. \n
  3. it's perfectly safe
  4. \n
  5. they will taste different, but depending on the mixers and your guests' palates, that may be a good or bad thing
  6. \n
  7. if you mix equal quantities, the new alcohol level will be the average of the two
  8. \n
\n

Disclosure: I currently have 12 gins, 3 vodkas, 8 tequilas/mezcals/reposados, 6 bourbons, 11 rums and 32 whiskies in my drinks cabinet. They are all so different, mixing them would be a huge waste.

\n", "OwnerUserId": "187", "LastActivityDate": "2021-01-03T18:19:52.117", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8232"}} +{ "Id": "8232", "PostTypeId": "2", "ParentId": "8141", "CreationDate": "2021-01-03T23:00:46.393", "Score": "2", "Body": "

Interestingly, both names, "whisky" and "vodka," are derivatives of the word for "water" in their respective 'languages of origin'.

\n

"Whisky" (or uisge beath in Scottish Gaelic) means "Water of Life" whereas "vodka" (водка in Russian) means "little water" - both are, in a way, 'terms of endearment'.

\n

So, one might argue that the major difference between the two is simply a matter of language - but I wouldn't necessarily recommend arguing that in a Whisky bar in the Highlands of Scotland, or an equivalent, vodka-supplying establishment in Rural Russia!

\n", "OwnerUserId": "11447", "LastActivityDate": "2021-01-03T23:00:46.393", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8233"}} +{ "Id": "8233", "PostTypeId": "1", "AcceptedAnswerId": "8234", "CreationDate": "2021-01-05T07:17:01.103", "Score": "1", "ViewCount": "237", "Body": "

On special occasions friends or family have brought over expensive 20-25 year old bottles of Spanish or Italian wines to celebrate the occasion.

\n

I'm no wine expert other than going to the local Liquor Store and asking the clerk to recommend a wine with certain qualities like dry, or sweet, fan favorites etc. I thought 'Oh, old means good.' Come trying time, the wine is thin, lacks flavor, no body or depth, it's happened to me twice now.

\n

Other than the allure of holding something in your hand that you could say has been preserved for 20-25 years for this very moment you're about to celebrate, and maybe for a 25th birthday, a 25 year old bottle of wine would be appropriate as well, in terms of the consumption experience, I'd say it was mediocre. You know you're drinking wine, but it isn't memorable, nor is there any pull to do it again.

\n

I've never had that experience with the 25-35$ bottles of Italian, Spanish, or Portuguese wine that I've bought and tried over dinner with friends and family. Maybe those wines are 1-2 years old, but they've been noticeably better. So much so that some pretended to like the old wine not to offend the person that brought it. Right now I can't see why I would even spend money on an expensive old bottle, when I know I can get what I like, consistently every time, and if I get tired of the same bottle I know I can try other bottles within that price range that wont leave me feeling like something was missing and I didn't get what I payed for. Either I keep getting brought bad old expensive wines or maybe something else is going on, I don't have much experience with old expensive wines?

\n

What is going on? Can someone change my mind on old wines? Are there any whose juice is worth the squeeze?

\n", "OwnerUserId": "11853", "LastEditorUserId": "5064", "LastEditDate": "2021-01-11T21:22:44.320", "LastActivityDate": "2021-01-11T21:22:44.320", "Title": "Why is it every time I try an old expensive wine it's doesn't compare to a 25-35$ two year old wine I buy?", "Tags": "wine flavor buying age quality", "AnswerCount": "1", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8234"}} +{ "Id": "8234", "PostTypeId": "2", "ParentId": "8233", "CreationDate": "2021-01-05T11:36:17.507", "Score": "3", "Body": "

Not all wines are suitable for keeping - and the ones that may be, still require good stable conditions with regards to temperature, sunlight and so on. Assuming the 20+ years old wines you’ve had were suitable and have been stored well, there still are other aspects worth considering.

\n

Some districts have a ‘classical’ and a ‘modern’ style of wine making, where I generally find the modern more mainstream-friendly compared to the classical ones that typically pair better with quite specific foods.

\n

At the end of the day, it most often comes down to personal taste; younger wines often exhibit more power and fruit while being a bit rough around the edges - whereas older ones are more subdued as the tannin levels have decreased, allowing finer notes to appear. Having an 'average at best' sense of smell, these notes are often wasted on me unless they are very obvious.

\n

Example: While older Vintage Port (e.g. 1963, 1966) is regarded as more sophisticated than the newer vintages, I still prefer the sheer power of a 10 or 15 year old Vintage Port. Conversely, I always prefer older wines from famous districts such as Burgundy, Rhone, Bordeaux as they are made for storing a few years before release, making the newest vintages quite aggressive.

\n", "OwnerUserId": "7790", "LastActivityDate": "2021-01-05T11:36:17.507", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8236"}} +{ "Id": "8236", "PostTypeId": "2", "ParentId": "6970", "CreationDate": "2021-01-05T16:11:30.733", "Score": "1", "Body": "

What was the most common hard liquor of the Late Middle Ages?

\n

When were the Middle Ages?

\n
\n

In the history of Europe, the Middle Ages or Medieval Period lasted from the 5th to the late 15th century. It began with the fall of the Western Roman Empire and merged into the Renaissance and the Age of Discovery. The Middle Ages is the middle period of the three traditional divisions of Western history: classical antiquity, the medieval period, and the modern period. The medieval period is itself subdivided into the Early, High, and Late Middle Ages.

\n
\n

The distillation process was little known and used in Europe during the Middle Ages. Wine was was distilled into brandy as early as 1313 but it was prepared only as a medicine and was considered as possessing such marvelous strengthening and sanitary powers that the physicians named it “the water of life,” (l’eau de vie) a name it still retains.

\n

The Late Medieval Period is generally considered from 1300-1500.

\n
\n

The first years of the 14th century were marked by famines, culminating in the Great Famine of 1315–17. The causes of the Great Famine included the slow transition from the Medieval Warm Period to the Little Ice Age, which left the population vulnerable when bad weather caused crop failures

\n

These troubles were followed in 1347 by the Black Death, a pandemic that spread throughout Europe during the following three years. The death toll was probably about 35 million people in Europe, about one-third of the population. Towns were especially hard-hit because of their crowded conditions. - Late Middle Ages

\n
\n

Thus bringing everything into perspective, it is easy to see how distilled wine (brandy) would naturally have been used as a medicine back in the day, rather than an outright popular drink.

\n
\n

Brandy began to be distilled in France circa 1313, but it was prepared only as a medicine and was considered as possessing such marvelous strengthening and sanitary powers that the physicians named it “the water of life,” (l’eau de vie) a name it still retains.

\n

In the young America Colonies, George Washington began commercial distilling in 1797 at the urging of his Scottish farm manager, James Anderson, who had experience distilling grain in Scotland. With this experienced help, Washington became one of the largest distillers in young America with five copper stills operating 12 months a year. However, a few years earlier, Laird’s America had opened (making it the oldest apple brandy producer) and began distilling applejack and brandy in 1780. The abundance of naturally available fruits for processing as compared to the labor-intensive planting and harvesting of grains resulted in young America’s practical adaptation of the readily available harvest of local fruits.

\n
\n

The first recorded account for whiskey was in 1495. Certainly, it had been around before then.

\n

It seems logical to presume that brandy was the most common hard liquor in the Late Middle Ages. It was in any case more widespread throughout Europe during this time frame.

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-01-05T16:11:30.733", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8237"}} +{ "Id": "8237", "PostTypeId": "2", "ParentId": "8141", "CreationDate": "2021-01-09T12:17:43.937", "Score": "0", "Body": "

\"Zubrowka

\n

This is probably the closest to what you're looking.

\n

Outside of 'clear' vodkas, there's a whole huge range of flavored vodkas that are given a wild variety of flavor through additions, infusions and other processes - next to more common tastes like cherry, lemon, chestnut or apple, you'll find bread vodka, pepper vodka, horseradish, ginger, chili, and many, many more. Zubrowka Palona is one with smoky whisky flavor - it was vodka aged in the same conditions as whisky, in charred oak barrels. The manufacturer still markets it as a flavored vodka, but at this point there's practically nothing separating it from whisky. And there's nothing that says this process can't be used to flavor vodkas. In the end - you can say every whisky is just a specific kind of flavored vodka.

\n", "OwnerUserId": "130", "LastActivityDate": "2021-01-09T12:17:43.937", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8238"}} +{ "Id": "8238", "PostTypeId": "2", "ParentId": "6432", "CreationDate": "2021-01-13T16:43:08.103", "Score": "0", "Body": "

Traditional drinks for celebrating the Feast of the Epiphany?

\n

It is wine you want perhaps try a Magi Wine

\n

\"Balthazar

\n

Balthazar says it all!

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-01-13T16:43:08.103", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8239"}} +{ "Id": "8239", "PostTypeId": "2", "ParentId": "7457", "CreationDate": "2021-01-13T17:52:13.090", "Score": "0", "Body": "

Dark winter days equal dark winter drinks!

\n

Darker winter days equals dark wines: black wines.

\n

I would recommend a very dark red wine, if it is dark enough it almost almost black!

\n
\n

Wait, what the heck is black wine? Despite its nickname, it’s a red wine made from Saperavi grapes—but its color is such a rich, dark purple, that it looks black. Saperavi is Georgia’s most popular red wine, and the grapes are now being grown throughout the world, including the Finger Lakes region of the U.S., Australia and Eastern Europe. - Psst: Black Wine Is the New Trend You Need to Know

\n
\n

\"Saperavi\"

\n
\n

Saperavi

\n

Dry red wine

\n

Coupled with the aroma acquired after aging in oak barrels, it also brings the flavors of ripe blueberry, caramel and blackcurrant.

\n

This wine, which is intended for a long-term aging, offers a velvet finish and touchy feeling of tannin at the same time.

\n

The balance of aroma, structure and texture places Lukasi’s Saperavi among the best wines.

\n

It is recommended to pair it with meat dishes, game, salads, and the best hard cheese.\nBest to drink at +18 C° – +20 C°.

\n

Alcohol – 11.5% – 13%

\n

It is complementary to robust meat flavours, hunted meat, salads, and aged cheese.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2021-01-13T17:52:13.090", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8240"}} +{ "Id": "8240", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2021-01-14T17:12:19.787", "Score": "2", "Body": "

Yes.

\n

As a food engineer I can confirm you that the taste of the food (here beer) also changes in a bottle vs. can as the light (UV mainly) interacts differently than in a can where the light does not penetrate.

\n

And as mentioned before in the case of beer, the quality of the water is very important and factories located in different locations use different waters, hence a different taste also.

\n", "OwnerUserId": "11880", "LastActivityDate": "2021-01-14T17:12:19.787", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8241"}} +{ "Id": "8241", "PostTypeId": "1", "CreationDate": "2021-01-14T22:48:24.593", "Score": "1", "ViewCount": "248", "Body": "

\"enterHello. I found this aluminum container in a recycling bin.\nIt is about 8 inches tall and 5 inches wide at the bottom.

\n

Someone told me its called a growler and was used to take home beer from a bar,\nbut I don't know if that's accurate.

\n

Thanks!

\n", "OwnerUserId": "11881", "LastActivityDate": "2021-01-18T03:41:16.397", "Title": "Does anyone know what this vintage aluminum container was called and used for?", "Tags": "alcohol distribution", "AnswerCount": "2", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8242"}} +{ "Id": "8242", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2021-01-14T22:58:14.180", "Score": "1", "Body": "

So, besides the light changing the chemical makeup of the beer in bottles thing, drinking from a can absolutely modifies the flavor for me - because of the smell of the aluminum. But, pour it in a glass and I bet I wouldn't be able to tell the difference between any fresh container of the same beer.

\n", "OwnerUserId": "3905", "LastActivityDate": "2021-01-14T22:58:14.180", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8243"}} +{ "Id": "8243", "PostTypeId": "2", "ParentId": "7", "CreationDate": "2021-01-15T04:12:26.377", "Score": "1", "Body": "

Carbonation (fizziness) moves the alcohol to your bloodstream faster. It's why in the USA, they will drink a shot and then chug a beer. The fizziness in the beer makes you drunk faster.

\n", "OwnerUserId": "11883", "LastEditorUserId": "5064", "LastEditDate": "2021-01-15T06:17:09.530", "LastActivityDate": "2021-01-15T06:17:09.530", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8244"}} +{ "Id": "8244", "PostTypeId": "2", "ParentId": "518", "CreationDate": "2021-01-15T14:44:45.603", "Score": "1", "Body": "

In addition to the different rates at which the container warms up in the hand, there could also be the effect of the weight of the container itself.

\n

I've long heard that gin tastes far better when served in a heavy glass.

\n

A quick google shows that the effect can apply to other drinks too:

\n

Secret to the perfect drink: serve it in a heavy glass, say experts

\n", "OwnerUserId": "11599", "LastActivityDate": "2021-01-15T14:44:45.603", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8245"}} +{ "Id": "8245", "PostTypeId": "2", "ParentId": "8241", "CreationDate": "2021-01-15T20:26:48.463", "Score": "1", "Body": "

I suspect it is a vintage milk jug if you picture search on Google "vintage aluminum milk jug" you'll get a lot of similar hits. Every growler I've seen has been glass although I'm no expert.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-01-15T20:26:48.463", "CommentCount": "7", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8247"}} +{ "Id": "8247", "PostTypeId": "2", "ParentId": "8241", "CreationDate": "2021-01-18T03:41:16.397", "Score": "1", "Body": "

Does anyone know what this vintage aluminum container was called and used for?

\n

Personally, I believe it to be an old milk jug!

\n

Having milked cows back in the days gone by, I am sure this is a milk jug.

\n

This eBay site demonstrates where I am going.

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-01-18T03:41:16.397", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8248"}} +{ "Id": "8248", "PostTypeId": "2", "ParentId": "8065", "CreationDate": "2021-01-18T15:41:20.637", "Score": "1", "Body": "

It seems as though there were certain restrictions on home delivery of spirits up until just a few days ago, actually.

\n

"Home delivery," being the same as food-service-home-delivery, and different from having alcohol mailed to your residence, oddly...

\n
\n

Ohio

\n

ALLOWED. Ohio has relaxed laws for alcohol delivery fulfillment but\nprohibits producers that make more than 250,000 gallons of alcohol\nfrom delivery to consumers. You will need to become compliant for\nmailing alcohol to consumers in Ohio, as well as be aware of local and\ncity laws.

\n

https://2ndkitchen.com/breweries/how-to-ship-alcohol/

\n
\n

Again, this has apparently changed as of 2021 since Ohio Governor Mike DeWine signed a bill allowing home delivery of liquor.

\n

So, look for this site and other services to update their respective catalogs and available products very soon - just in time for the next quarantine, no doubt...

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-01-18T15:41:20.637", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8249"}} +{ "Id": "8249", "PostTypeId": "2", "ParentId": "8017", "CreationDate": "2021-01-19T10:41:37.173", "Score": "1", "Body": "

I know of at least one rebranding due to an unfortunate naming convention - though it has nothing to do with a pandemic: Vergina Beer

\n

\"Vergina

\n

Rebranding Vergina

\n

From a greek brewing company... they have since simply rebranded by going back to the greek spelling:

\n

\"Greek

\n

That is not to say that there aren't others... furthermore, there are plenty of companies that should consider rebranding, if they have not already... For example:

\n

Sh*t Wine (literal translation)

\n

\"Shit

\n

A couple others:

\n

\"unfortunate

\n

\"unfortunate

\n

An image search for "worst alcohol brand names" turns up some fairly hilarious results :)

\n", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2021-01-20T10:38:33.697", "LastActivityDate": "2021-01-20T10:38:33.697", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8252"}} +{ "Id": "8252", "PostTypeId": "1", "AcceptedAnswerId": "8253", "CreationDate": "2021-01-21T21:05:47.600", "Score": "3", "ViewCount": "229", "Body": "

I have a stainless steel jigger measuring cup for UK spirits measures, like this image:

\n

\"Jig\"

\n

The alcohol does not seem to 'stick' to the jig cup, so is it okay to use the cup to, say, measure a gin drink then re-use it for, say, a vodka drink, without rinsing the cup?

\n

Or should I always wash or rinse the jig before re-use for either a different spirit or a different brand of the same spirit?

\n

Should I have separate measuring cups for different spirits?

\n", "OwnerUserId": "4309", "LastActivityDate": "2021-01-22T01:36:47.890", "Title": "Can I re-use a spirits measure cup for different spirits?", "Tags": "spirits serving", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8253"}} +{ "Id": "8253", "PostTypeId": "2", "ParentId": "8252", "CreationDate": "2021-01-22T01:36:47.890", "Score": "5", "Body": "

A purist would say always rinse.

\n

A normal person would say don't worry about it.

\n

A pragmatist would say measure the vodka before the gin and no one will be able to tell the difference.

\n", "OwnerUserId": "11599", "LastActivityDate": "2021-01-22T01:36:47.890", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8254"}} +{ "Id": "8254", "PostTypeId": "1", "CreationDate": "2021-01-24T10:29:50.153", "Score": "2", "ViewCount": "202", "Body": "

Does anyone have a recipe for making a sweet vermouth with orange and caramel?

\n

I have looked around but there doesn’t seem to be that many recipes available on the WWW.

\n

If anyone can recommend which herbs to use that would also be great.

\n", "OwnerUserId": "11903", "LastEditorUserId": "5064", "LastEditDate": "2021-01-26T01:20:48.753", "LastActivityDate": "2021-01-26T01:20:48.753", "Title": "Making sweet vermouth", "Tags": "liqueur recipes", "AnswerCount": "0", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8255"}} +{ "Id": "8255", "PostTypeId": "1", "AcceptedAnswerId": "8256", "CreationDate": "2021-01-25T09:18:53.880", "Score": "2", "ViewCount": "284", "Body": "

What is a “Boston Particular?"

\n

When I read a book review (NY Times paywalled, unfortunately) on a history called 'America and Iran’, the review quoted the book saying:

\n
\n

Iranians were and still are great consumers of what was called “Boston Particular (rum laced with whiskey).”

\n
\n

I've never heard of Boston Particular, and I cannot find anything from web research so I'm hoping someone here may know. What is it? Is it a bottled product, or is it a recipe?

\n", "OwnerUserId": "5528", "LastEditorUserId": "5064", "LastEditDate": "2021-01-30T08:43:27.220", "LastActivityDate": "2021-01-30T08:43:55.463", "Title": "What is a “Boston Particular?\"", "Tags": "history whiskey rum", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8256"}} +{ "Id": "8256", "PostTypeId": "2", "ParentId": "8255", "CreationDate": "2021-01-26T01:16:40.620", "Score": "5", "Body": "

What is a “Boston Particular?”

\n

First of all here is the exact quote in question:

\n
\n

It is almost certain that “the first Americans and Persians to interact in person” were not missionaries but “rum traders.” Even then, in spite of public pretenses of piety, Iranians were and still are great consumers of what was called “Boston Particular (rum laced with whiskey).” - What Has Gone Wrong Between Iran and the United States?

\n
\n

Journalists do good work, however their English is not always the best. I believe the phrase should have been phrased in the following manner: A particular Boston rum (laced with whiskey).

\n

This is easily explained seeing the slight faux pas. In this it is quite common to age rum in Boston in used whiskey barrels. Being aged in whiskey barrels would give the rum a taste as being laced with whiskey.

\n

\"Bully

\n

Bully Boy Boston Rum

\n
\n

Bully Boy revives flavors of the Old World with their Boston Rum.

\n

When Bully Boy Distillery opened in Boston, Massachusetts, they felt, given that the regions’ history, it was only fitting that one of their original spirits be a craft rum. You see, dating back to the 1600s, Massachusetts’ original distilleries were famous for their rum production. At their peak, there was about sixty distilleries operating in the state. As an homage, Bully Boy created an aged rum using blackstrap molasses, for the vanilla notes it imparts, and sweet molasses, for its cleaner, fruiter flavor. The combination give Bully Boy Boston Rum a unique, nuanced flavor.

\n

Bully Boy instills its own “house” flavor in a sort of editing process. They include more of the front end of the “run” to get more banana and pineapple notes to compliment the molasses flavors. When their done, the rum goes into whiskey barrels, where it is aged. The time it spends in the barrels mellows the rum, while adding notes of chocolate, vanilla, oak and more layers of complexity.

\n

It took a while to perfect this recipe, but the Willis brothers knew they were on the right track when the rum started evolving its way into their father’s liquor cabinet.

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-01-30T08:43:55.463", "LastActivityDate": "2021-01-30T08:43:55.463", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8257"}} +{ "Id": "8257", "PostTypeId": "2", "ParentId": "7823", "CreationDate": "2021-01-28T10:30:47.443", "Score": "1", "Body": "

Alcohol free beer is also a byproduct of whiskey distilling. Whiskey takes beer and distills the alcohol out of it. This alcohol they flavour and age in barrels to make whiskey. If you take what is left of that beer and force carbonate it and add hops, you are left with alcohol-free beer.

\n", "OwnerUserId": "4638", "LastActivityDate": "2021-01-28T10:30:47.443", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8259"}} +{ "Id": "8259", "PostTypeId": "2", "ParentId": "8207", "CreationDate": "2021-02-01T02:28:53.593", "Score": "1", "Body": "

There's no law infringements in selling beers with past Best Before Date.\nEU allows it. A new regulation is awaited by 2021, but the direction is to avoid food waste. Best practice should be the replacement.

\n", "OwnerUserId": "11932", "LastActivityDate": "2021-02-01T02:28:53.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8261"}} +{ "Id": "8261", "PostTypeId": "1", "AcceptedAnswerId": "8262", "CreationDate": "2021-02-04T12:38:05.603", "Score": "2", "ViewCount": "232", "Body": "

As I understand the famous Saaz hop is grown in a region called Žatec in modern day Czech Republic. Why is this hop not called the Žatec hop? And why exactly is a Czech hop known by a German name? Is this a case of cultural appropriation?

\n", "OwnerUserId": "4638", "LastActivityDate": "2021-02-05T17:20:36.120", "Title": "Why does the Saaz hop have a German name?", "Tags": "history specialty-beers hops", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8262"}} +{ "Id": "8262", "PostTypeId": "2", "ParentId": "8261", "CreationDate": "2021-02-05T17:20:36.120", "Score": "3", "Body": "

Why does the Saaz hop have a German name?

\n

Along time back, the town of Žatec was part of Germany and not part of the now Czech Republic. Thus the name reflects an historical perspective rather than a cultural one.

\n
\n

Officially registered in 1952, the original Saaz, or Czech Saaz as it is sometimes known, has established itself as a staple variety for brewers and dates back more than 700 years. Originating in Zatec, Bohemia (now part of the Czech Republic) it is an esteemed red-bine variety that is now grown around the world. New Zealand in particular has embraced Saaz, breeding several descendants including the popular Motueka and Riwaka varieties (B & D Saaz, respectively).

\n

Saaz is one of the four original Noble hops and has a distinctive and classic aroma. Known for its prominent use in Stella Artois and countless Bohemian Lagers and Pilsners. Its warm, herbal character stems from a high level of farnesene while its other oils are in fair balance.

\n

With such a low alpha acid percentage, Saaz is inarguably an aroma hop, however, when used as an early addition it is thought to add a delicate bitterness. Additionally, its elevated content of polyphenols aids in abating oxidation, giving beer brewed with Saaz a notably longer shelf life.

\n

Growing Saaz is not without its difficulties. Specifically, it endures a meager yield, has weak mildew resistance and light cones. The original Saaz variety has been successfully cloned 9 times between 1952 and 1993 in an effort to improve these factors. Originally, growers were hesitant to hybridize, fearing the loss of its signature and delicate aroma. This hybridization has become necessary though to breed resistance to wilt and mildew and make it a more viable crop. Despite these few shortcomings, breweries use it prolifically worldwide. - Saaz

\n
\n

Žatec and the Saaz noble hop have an interesting intermingled history.

\n
\n

Žatec (German: Saaz) is a town in Louny District, Ústí nad Labem Region, in the Czech Republic. It has about 19,000 inhabitants.

\n

It is famous for an over-700-year-long tradition of growing Saaz noble hops used by several breweries. Žatec produces its own beer and hosts 'Dočesná', its hops-related harvest festival every year on the town square.

\n

The earliest historical reference to the Bohemian fortress of Sacz is in the Latin chronicle of Thietmar of Merseburg of 1004, when King Henry II of Germany reconquered it from the Polish duke Bolesław I Chrobry. During the 11th century it belonged to the Vršovci – a powerful Czech aristocratic family. It received the privileges of a royal town under King Ottokar II of Bohemia in 1265. A coat-of-arms was given to the citizens by King Vladislaus II for their courage during the storming of Milan.

\n

From the outbreak of the Hussite Wars in 1419 to the Thirty Years' War, the town was Hussite or Protestant, but after the Battle of White Mountain (1620) the greater part of the Czech inhabitants left the town, which remained German and Roman Catholic until 1945, when the German speaking inhabitants were forced to leave their home and expelled to Germany. On June 3, 1945 about 5,000 German inhabitants were gathered on the Market place and marched to Postoloprty, where at least 763 were murdered in the Postoloprty massacre, estimates range up to 2,000 victims killed by Czechoslovak military in Žatec and on the March.

\n

During and after the World War II a Messerschmitt production facility and air base for testing aircraft, including new jet fighters, was located close to the town. In 1948 the production facility continued to produce the Avia S-199, a version of the Messerschmitt Bf 109 aircraft which were sold to Israel, with the initial training for the Israeli pilots provided at the air base. Many other military supplies were flown to Israel from the air base, which helped the new state to secure its independence.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2021-02-05T17:20:36.120", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8264"}} +{ "Id": "8264", "PostTypeId": "1", "AcceptedAnswerId": "8269", "CreationDate": "2021-02-07T22:19:32.343", "Score": "-1", "ViewCount": "336", "Body": "

My question is about the ALCOHOLIC BEVERAGES' taste?

\n

HOW do tasters decide that the genuine quality of Scotch whisky is of high quality by tasting.

\n

AND

\n

How do official testers determine authenticity?

\n", "OwnerUserId": "11961", "LastEditorUserId": "11961", "LastEditDate": "2021-02-13T22:10:59.510", "LastActivityDate": "2021-02-14T19:47:06.067", "Title": "How I can confirm that scotch whisky consumed by me is a genuine high quality scotch Whisky Bought by INDIAN RUPEES", "Tags": "taste recommendations whiskey scotch champagne", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8267"}} +{ "Id": "8267", "PostTypeId": "1", "CreationDate": "2021-02-10T07:47:44.417", "Score": "3", "ViewCount": "450", "Body": "

TL;DR:

\n

Is eating meat along with booze beneficial? Or does it reduce any adverse effects of drinking?

\n

By drinking, I mean liquors like whisky, vodka or rum. I seldom drink wine.

\n
\n

Some optional background on this-

\n

I was advised to eat meat whenever I drink by a person. That advice is common and has probably propagated by word of mouth.

\n

That person (perhaps) exaggerated it further by making a rhyming sort of moral verse like sentence

\n
\n

"M for Mod (booze in my language), "M" for Mansh (meat in my language);

\n

"G" for Ganja (cannabis in my language) , "G" for Gakhir (milk in my language).

\n
\n

I am wondering if the first sentence has any relevance. I eat anything ranging from peanuts, roasted peas, etc. when I drink. Liquors are harsh on the throat, and eating any of those comforts the throat and the mouth. Occasionally, I eat meat as well. I would appreciate any response on if eating meat is better while drinking.

\n", "OwnerUserId": "11629", "LastEditorUserId": "11629", "LastEditDate": "2021-02-12T03:58:38.740", "LastActivityDate": "2021-02-16T04:36:34.277", "Title": "Does eating meat along with booze have any benefits?", "Tags": "preparation-for-drinking", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8269"}} +{ "Id": "8269", "PostTypeId": "2", "ParentId": "8264", "CreationDate": "2021-02-12T18:59:03.723", "Score": "2", "Body": "
\n

HOW do tasters decide that the genuine quality of Scotch whisky is of high quality by tasting

\n
\n

It is an acquired skill developed over time with education and experience.

\n

It is learned from much education, a long history of tasting and learning how to interpret what you are tasting by drawing on that education and experience.

\n
\n

How do official testers determine authenticity?

\n
\n

I suggest you take a class (there are others)or join a group of scotch lovers, (create one if you cannot find one) and try to attract other Scotch connoisseur's in your area.

\n

Educate yourself by doing much research, reading and TASTING.

\n", "OwnerUserId": "6473", "LastEditorUserId": "6473", "LastEditDate": "2021-02-12T19:10:09.940", "LastActivityDate": "2021-02-12T19:10:09.940", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8270"}} +{ "Id": "8270", "PostTypeId": "1", "AcceptedAnswerId": "8275", "CreationDate": "2021-02-13T18:33:29.527", "Score": "0", "ViewCount": "489", "Body": "

Indian Army cantonments are supplied all kinds of alcoholic beverages. These supplies are only for army men. Do the drinks strengthen their guts?

\n

My question is: Are the manufacturing special and tastes separate from products sold in the market. Is the reason subsidy or because the drink is strong. Are the supplying companies special for armies?

\n", "OwnerUserId": "11961", "LastEditorUserId": "5064", "LastEditDate": "2021-02-15T18:01:28.110", "LastActivityDate": "2022-02-01T19:42:29.790", "Title": "Indian Army supply of Alcoholic beverages?", "Tags": "taste recommendations storage alcohol-level rum", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8272"}} +{ "Id": "8272", "PostTypeId": "1", "AcceptedAnswerId": "8273", "CreationDate": "2021-02-15T20:04:03.087", "Score": "6", "ViewCount": "567", "Body": "

Are not layered cocktails beautiful? Just look at this post's marvels! And if you want to make one, there are tons of internet references.

\n

Buuuuuut....

\n

How do you drink them?

\n

There usually isn't a spoon nearby. And you don't want to drink N different drinks instead of one cocktail, which is what will happen if you drink it slow, right? And you don't want to be seen stirring with a spoon like it's tea....right?

\n

What is the socially acceptable tactic of consuming a layered cocktail?

\n", "OwnerUserId": "12000", "LastEditorUserId": "5064", "LastEditDate": "2021-02-16T02:09:19.237", "LastActivityDate": "2021-02-16T02:43:23.630", "Title": "How to drink layered cocktails?", "Tags": "drinking cocktails layered-drinks", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8273"}} +{ "Id": "8273", "PostTypeId": "2", "ParentId": "8272", "CreationDate": "2021-02-16T02:43:23.630", "Score": "3", "Body": "

How to drink layered cocktails?

\n

What is the socially acceptable tactic of consuming a layered cocktail?

\n

That will generally depend on the type of layered cocktail one is drinking. There is generally no socially acceptable manner of consuming a layered cocktail! One is free to drink them in the manner befitting the individual.

\n
\n

A layered (or "stacked") drink, sometimes called a pousse-café, is a kind of cocktail in which the slightly different densities of various liqueurs are used to create an array of colored layers, typically two to seven. The specific gravity of the liquid ingredients increases from top to bottom. Liqueurs with the most dissolved sugar and the least alcohol are densest and are put at the bottom. These include fruit juices and cream liqueurs. Those with the least water and the most alcohol, such as rum with 75% alcohol by volume, are floated on top.

\n

These drinks are made primarily for visual enjoyment rather than taste. They are sipped, sometimes through a silver straw, one liqueur at a time. The drink must be made and handled carefully to avoid mixing; however, some layered drinks, such as shooters, are generally drunk quickly. - Layered drink

\n
\n

As for myself, layered cocktails like the B-52 or a Black and Tan are consumed as shooters.

\n

More complex layered cocktails, I use a stainless steel straw and carefully sip one liqueur or liquor at a time. To be honest, I enjoy the individual tastes of the different liqueurs. Some liqueurs have such an overpowering flavour that they are best drunk separately.

\n

Chartreuse, Bénédictine and Absinthe are all strongly flavoured liqueurs and would overpower any layered cocktail if mixed all together before drinking them. Ergo, I use a straw!

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-02-16T02:43:23.630", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8274"}} +{ "Id": "8274", "PostTypeId": "2", "ParentId": "8267", "CreationDate": "2021-02-16T04:36:34.277", "Score": "1", "Body": "

Does eating meat along with booze have any benefits?

\n

Generally speaking: no.

\n

Drinking a little whiskey may be beneficial for the stomach, but would be better somewhat prior to eating.

\n

Even St. Paul ( for those of us who are believers) tells Timothy to drink a little wine because of stomach and frequent ailments.

\n
\n

Stop drinking only water and use a little wine instead, because of your stomach and your frequent ailments. - 1 Timothy 5:23

\n
\n

Drinking in moderation is best. When I am somewhat hungry, I find that one drink will ease my stomach’s wontedness for food if drank about one half hour to an hour before I eat. That includes meat.

\n
\n

Especially after fatty meals, alcohol is said to promote digestion. But it seems it's not the alcohol that has a positive effect on the stomach. On the contrary: alcohol actually impedes gastric emptying. It blocks the action of nerves that are important for the transport of food in the abdomen. So high-proof alcoholic drinks are not beneficial to digestion. Herbal liqueur before a meal can be enjoyable. But here again, it's not the alcohol but the bitter substances the drink contains that stimulate the mucous membranes of the stomach to release acid. That can actually facilitate the pre-digestion of foods. The bitter substances in non-alcoholic beverages such as espresso have a similar effect. The right time for this digestive aid is about half an hour before a meal. And after you eat, a postprandial walk is better than any drink. - Does alcohol after a meal really help digestion?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2021-02-16T04:36:34.277", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8275"}} +{ "Id": "8275", "PostTypeId": "2", "ParentId": "8270", "CreationDate": "2021-02-16T05:23:14.867", "Score": "3", "Body": "

Indian Army supply of Alcoholic beverages?

\n

Are the supplying companies special for armies?

\n

Regardless of which national forces (army) one is in, the main reason for suppling some for of booze is to boost troop moral.

\n

Generally supplies will be obtained by local sources as best possibly done. There are no supplying companies special for armies? Local conditions and local economies will influence the army’s decision on what type of boozes to buy for the troops.

\n

The Romans had wine rations for their troops. That became rations of beer in northern countries.

\n

Wine was give to the French troops in World War I.

\n
\n

It was Arnold Zweig, German anti-fascist writer and WW1 volunteer, who said that it was possible for a man to fight a war “without women, without ammunition, even without strongpoints, but not without tobacco and not at all without alcohol.”

\n

Forces on both sides of the war appreciated this fact: for the maintenance of troop moral, alcohol had an important part to play.

\n

And beyond the tenches, the social and cultural impact of the war would sound the beginning of the 20th Century, and with that, the cocktail boom that would help to define the inter-war years in Europe.

\n

So, from the trenches of three of the major protagonists and two cocktail innovations that are enjoyed to this day, we have assembled the top five drinks associated with the Great War.

\n

When France went to war in 1914, troops were only issued water, but the army quickly began issuing a daily wine ration as early as September 1914.

\n

This consisted of Pinard (a word whose english equivalent would be “plonk”), which was a low-quality red wine. Generally, soliders were issued with ½ liter of Pinard per day, but this could fluctuate depending on the logistical situation.

\n

Soldiers were sometimes issued beer, cider, or brandy in lieu of Pinard, but it remained the most common alcoholic drink consumed at the front.

\n

On special occasions, other drinks like spiced wine or sparkling wine would be issued. Pinard was sometimes mixed with brandy; some reports mention it even being mixed with ether.

\n

Better quality wine, Cognac, and other brandies were also widely available behind the lines, particularly in cafés and brothels catering to soldiers. - Top Five World War One Drinks

\n
\n

Supply and demand for alcohol for troops will vary according to region and economic situations involved, this includes the Indian Army.

\n
\n

Why is liquor drinking encouraged in the Indian Armed Forces?

\n
    \n
  1. As others have pointed out only tax is not charged and limited supply is given.

    \n
  2. \n
  3. Rationed liquor ie in small doses is good for health.

    \n
  4. \n
  5. Liquor helps in relaxation and also frees mind from stress of daily hard routine.

    \n
  6. \n
  7. Liquor high reduces self-censorship so that many times it allows the person to loosen up his feelings clamped up inside. This is like a release valve of pent-up stress. Within limits such regular dispersal of stress is a good thing. Though out of limits it can lead to creating situations which will actually lead to more stress. Given the strict discipline and obedience required in army it might help unwinding from stressful situations.

    \n
  8. \n
  9. Why alcohol helps with stress : As per Ayurveda wine and alcohol are classified extra sweet (not in taste but in after-effect on mind and body). They bring sweet taste to life. Many times people get addicted to this sweet effect of alcohol. For example in Ayurveda alcohol addicts are advised to slowly reduce and replace alcohol with sweet smell, sweet taste, sweet music, sweet warmth, sweet emotions of love, comfort, safety and caring etc. This helps reduce the withdrawal symptoms and slowly wean away the dependence on alcohol.

    \n
  10. \n
  11. It’s not very surprising that people who lead a hard and stressful life away from comforts of family and civilian life need a bit of sweetness in their life as well. It comes in a bottle and can be had in limited quantities on demand.

    \n
  12. \n
  13. Not all postings are on border or troubled areas. Also not all army men are involved in military field operations as some may be in administration or teaching or other duties. Still the traditions of British times may have continued irrespective of type of work.

    \n
  14. \n
\n
\n

The Indian Army will acquire their provisions of alcohol, like all other armies, locally if possible and at the best price possible.

\n

War is hell, and soldiers need a little lift from the misery of their life style. It is more a question of maintaining good troop moral!

\n

The Russians love their vodka, the French their wine and the Indian troops love their rum.

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-02-16T05:23:14.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8276"}} +{ "Id": "8276", "PostTypeId": "1", "CreationDate": "2021-02-17T00:12:36.563", "Score": "1", "ViewCount": "263", "Body": "

I'm looking to do a home brew of a Kosher for Passover beer. Is there a recipe I can follow?

\n", "OwnerUserId": "12007", "LastEditorUserId": "11579", "LastEditDate": "2021-06-30T02:15:48.010", "LastActivityDate": "2021-06-30T02:15:48.010", "Title": "Is there a recipe for a Kosher for Passover beer or ale?", "Tags": "specialty-beers ale home-brewing", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8277"}} +{ "Id": "8277", "PostTypeId": "2", "ParentId": "8276", "CreationDate": "2021-02-17T02:00:24.327", "Score": "1", "Body": "

Here's a company that's trying it:

\n
\n


\nAccording to Chabad.org, beer is '"chametz." What's chametz? According to the site, it's "any food product made from wheat, barley, rye, oats or spelt that has come into contact with water and been allowed to ferment and rise." Aka, considering it is made from wheat and barley, beer is not Passover approved. But! All hope isn't lost — there are now "beers" on the market that are permitted on the Passover table.

\n

An Israeli brewing company called Meadan Craft Brewing has created a beer that's totally kosher for Passover. How? Well, as you know, standard beer is chametz, meaning, it's made with ingredients that need to rise which makes it against Passover law. But this special beer is made with dates. Not only that, but it's gluten-free, too.
\n…
\n— Is Beer Kosher For Passover? Here's What You Need To Know About This Popular Drink

\n
\n

But how you can call something made from fruit "beer", when it's obviously "wine", I don't know.

\n

You might consider corn, since it isn't one of the proscribed grains.

\n

But again, there's still the problem of the yeast.

\n

And of course anyone involved in the process up until it's bottled must be a Sabbath-observing male.

\n", "OwnerUserId": "11599", "LastActivityDate": "2021-02-17T02:00:24.327", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8279"}} +{ "Id": "8279", "PostTypeId": "1", "CreationDate": "2021-02-18T16:38:27.160", "Score": "2", "ViewCount": "197", "Body": "

Since the quarantines and lockdowns, I have picked up the hobby of infusing alcohol. Various sources give various advice as to the length of time in which to let a "Rhum Arrangè" set... some say 2 days, some say 2 weeks, some say 2 months. The basic tenet being 'when it tastes good to you, it's ready.'

\n

I also understand that the higher the proof, the faster and more efficient the dispersal of the flavors...

\n

My question has to do specifically with tea infused rum - I recently bottled some genmaicha in white rum with a couple spoons of honey and a dash of lemon. Realizing that tea will infuse in water in just a few minutes, I am worried that letting it sit for more than just a week or so could make the rum too bitter... Does anyone have some experience with this? How long should I let it sit, accordingly?

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-03-01T17:23:34.243", "Title": "Timing for Rum infusions", "Tags": "rum", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8281"}} +{ "Id": "8281", "PostTypeId": "1", "CreationDate": "2021-02-22T20:00:36.980", "Score": "3", "ViewCount": "238", "Body": "

What are the characteristics of a sipping tequila? What should I look for except Best Sipping Tequilas of 2021 list on the Internet? Is it a special ingredient or some inscription such as reposado?

\n", "OwnerUserId": "6386", "LastActivityDate": "2021-03-01T15:15:36.570", "Title": "How can I distinguish a sipping tequila?", "Tags": "tequila", "AnswerCount": "2", "CommentCount": "7", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8282"}} +{ "Id": "8282", "PostTypeId": "2", "ParentId": "8281", "CreationDate": "2021-02-26T20:27:39.010", "Score": "2", "Body": "

Anejo tequilas

\n

According to Casablanca Mexican restaurant, Anejo tequilas are best for sipping, as Anejo literally means "vintage", and tequilas which are aged between one to three years are best for sipping.

\n

Casablanca Mexican Restaurant, number 4

\n
\n

Añejo tequilas are aged from one to three years, and are considered the best type of tequila for sipping because of their smoother flavor. Añejo means “vintage”, and they are darker than reposado tequilas.

\n
\n

Wikipedia

\n

According to Wikipedia, Anejos are tequilas which are quite literally left in small oak barrels for between one and three years.

\n

Tequila, Wikipedia, types

\n
\n

Añejo [aˈɲexo] ("aged" or "vintage"): aged a minimum of one year, but less than three years in small oak barrels

\n
\n

Barrel room for aged (añejo) tequila by Arandense1\n\"Barrel

\n", "OwnerUserId": "12062", "LastActivityDate": "2021-02-26T20:27:39.010", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8283"}} +{ "Id": "8283", "PostTypeId": "1", "AcceptedAnswerId": "8285", "CreationDate": "2021-02-26T20:52:15.677", "Score": "1", "ViewCount": "267", "Body": "

I know you can have whisky chasers with lager or beer, I used to have them all the time, and still do when I am on a cruiseship.\nHowever, having a chaser is not quite the same as pouring a large amount of whisky straight in to a pint of lager. I have actually never heard of anyone do this before, and I did simply because I was just back from a twelve hour drive, was listening to some dance music and wanted to get merry in record time.

\n

I cannot say that I got any drunker than usual, but I certainly got iller than usually. I came out in a sweat and my heart began racing, and I was still sweating with a racing heart for three days until I suffered what my life saving professor called "a major to massive heart attack".

\n

I was only 40 years old and there was no previous sign of ill health, nor warnings of a heart attack, and my professor was reluctant to put my heart attack down to my smoking, telling me that smoking related heart attacks would be more common in the 50's and 60's than in the 40's, and that at my age it would be more the lungs that he would be concerned about regarding smoking, so I told him about the lethal cocktail and he said nothing at-all regarding this.

\n

So, apart from smoking and too many big macs, what do the experts on alcohol think? Could whisky in lager be considered a lethal cocktail?

\n", "OwnerUserId": "12062", "LastEditorUserId": "12062", "LastEditDate": "2021-02-28T22:21:45.007", "LastActivityDate": "2021-03-01T15:45:58.953", "Title": "Could whisky in lager be considered a lethal cocktail?", "Tags": "cocktails lager beer-cocktails whisky", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8284"}} +{ "Id": "8284", "PostTypeId": "2", "ParentId": "8283", "CreationDate": "2021-02-28T22:17:44.030", "Score": "3", "Body": "

Could whiskey in lager be considered a lethal cocktail?

\n

The short answer is no.

\n

It has not killed me yet!

\n

There are a number of ways to drink a Lager beer with whiskey.

\n

Traditionally, the liquor is drunk in a single gulp and is then "chased" by the beer (lager or otherwise), which is sipped.

\n

The liquor and lager may be mixed by pouring or dropping the shot into the beer. The mixture may be stirred. If the shot glass is dropped into the beer glass, the drink can also be known as a depth charge. As long as drunk in moderation even a depth charge will not kill you.

\n

Whiskey may be poured directly into an open beer bottle or can after consuming some of the beer.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-03-01T15:45:58.953", "LastActivityDate": "2021-03-01T15:45:58.953", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8285"}} +{ "Id": "8285", "PostTypeId": "2", "ParentId": "8283", "CreationDate": "2021-03-01T00:06:23.403", "Score": "4", "Body": "

If you are asking if there is some chemical reaction that makes the mixture of beer and whiskey more toxic than the two drunk separately, I'm pretty sure the answer is no. That said, if you drink a beer and then drink a shot of whiskey you know pretty much how much of each you have consumed. If, however you just pour your whiskey into the beer it might be that you are pouring in more than a shot glass worth and end up with more alcohol. The point is what matters is the total quantity of alcohol you consume and over what time span.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-03-01T00:06:23.403", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8286"}} +{ "Id": "8286", "PostTypeId": "2", "ParentId": "8281", "CreationDate": "2021-03-01T15:15:36.570", "Score": "5", "Body": "

The truth is that Tequila is a sipping alcohol, on the whole.

\n
\n

“In Mexico, tequila is kept in the fridge so it’s perfectly chilled\nwhen served and almost always enjoyed neat,”

\n
\n

according to Angel Bolivar, the head bartender at Casa Neta in New York City.

\n

Of course, as with any alcohol, throwing as much money at it as possible will generally get a person something that comes from the higher shelves and is 'better' and more delicious than some of its competitors. However, you never need to break the bank in order to partake in a fancy and delicious beverage.

\n

Knowing the different types of Tequila is the best way to begin one's search... At the most basic level, there are essentially 2 types of tequila:

\n

1.) "Mixto" or mixed - anything can be labeled as Tequila as long as 51% of the fermented sugars come from the Blue Agave plant. Therefore other sugars and additives, like cane sugar, caramel color, oak and other flavorings, glycerin, and sugar-based syrups, can make up the other 49%... generally any tequila labeled "gold (oro)" and "joven (young)" is going to be a mixto.

\n

2.) 100% agave tequila - this is the stuff that you will want to sip. Leave the cocktails to the mixtos.

\n

From there, the tequilas can be broken up into the way that they are aged. There are essentially 4 classifications of aged tequila that is made from 100% blue agave:

\n

1.) Blanco (white) or Silver - this would be the youngest type of tequila. The liquid is clear because it never sees the inside of a wooden cask.

\n

2.) Reposado - means "rested" and is usually aged for more than a couple months and up to a year.

\n

3.) Añejo - means "vintage" and is aged from one to three years.

\n

4.) Extra Añejo - also "ultra añejo," is going to be tequila aged for more than 3 years time.

\n

I have heard recommendations that beginners should start with sipping white tequilas but, I would vehemently disagree... in my experience, the whites are more "harsh" and fiery. They do not have as many subtle notes or nuanced flavors before and after being in the palate. Morgan Hurley, marketing and beverage director of Mex 1 Coastal Cantina in Charleston, S.C. states;

\n
\n

“Blancos showcase the terroir and the agave, but they also show any\nimperfections.”

\n
\n

TLDR: Any 100% agave tequila labeled "reposado" or "añejo" is going to be your best choice for sipping - though not mandatory, set your budget for around $30 and up for the best experience.

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-03-01T15:15:36.570", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8287"}} +{ "Id": "8287", "PostTypeId": "2", "ParentId": "8276", "CreationDate": "2021-03-01T17:15:53.707", "Score": "0", "Body": "

A hopped apple cider that's fermented fairly dry is a great Kosher for Passover beer substitute.

\n

Like this one - www.passoverbeer.com

\n

And here is homebrew information:

\n

https://byo.com/article/hopped-cider/

\n", "OwnerUserId": "12070", "LastActivityDate": "2021-03-01T17:15:53.707", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8288"}} +{ "Id": "8288", "PostTypeId": "2", "ParentId": "8279", "CreationDate": "2021-03-01T17:23:34.243", "Score": "3", "Body": "

It will vary based on the quantity of tea as well, but a day or two should be plenty. I have not done tea in rum but I did 4 teabags of Lapsang Souchong in a bottle of bourbon, and that only took a day or two.

\n

You can always infuse for longer if you need to, I would recommend tasting after 24 hours.

\n", "OwnerUserId": "12070", "LastActivityDate": "2021-03-01T17:23:34.243", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8289"}} +{ "Id": "8289", "PostTypeId": "1", "CreationDate": "2021-03-15T15:28:39.347", "Score": "2", "ViewCount": "252", "Body": "

In the past there have been attempts to launch alcohol powder as a premix for human consumption (ie. rum flavored powder, all you need is a coke to transform in into a cuba libre).

\n

Does anyone know if any company is manufacturing or willing to for commercial purposes?\nPalcohol was one that got close but never took off. They never gave proof of their alcohol powder being effective.

\n

Thanks in advance.

\n", "OwnerUserId": "12115", "LastEditorUserId": "5064", "LastEditDate": "2021-03-15T23:02:04.733", "LastActivityDate": "2021-03-16T18:15:53.293", "Title": "Do they sell powdered alcohol as a premix drink?", "Tags": "spirits alcohol palcohol", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8290"}} +{ "Id": "8290", "PostTypeId": "2", "ParentId": "8289", "CreationDate": "2021-03-15T23:39:39.920", "Score": "4", "Body": "

Do they sell powdered alcohol as a premix drink?

\n

The short answer is yes, but it is not being sold at present. Latter half of my answer shows how to make your own palcohol at home. It is so easy, so why pay for the extras!

\n

First of all, palcohol was created by a gentleman by the name of Mark Phillips.

\n

The US federal government approved Palcohol on March 10, 2015 and it is now legal to be sold in the United States. However it will not be for sale immediately but possibly in late 2021 at the earliest. I doubt it will ever make it to market, but that is me.

\n

Palcohol, when used as directed, by adding six ounces of liquid to it, is equal to a standard mixed drink.

\n
\n

What flavors are there? We plan on releasing five versions sold in a pouch that is the equivalent to one shot of alcohol:

\n
    \n
  • V which is powder made from premium vodka distilled four times.

    \n
  • \n
  • R which is powder made from premium Puerto Rican rum

    \n
  • \n
\n

V and R can be used two ways. One way is by adding six ounces of your favorite mixer to make a Rum and Coke, Vodka and Orange Juice, etc. Another option is adding six ounces of water to the powder and then adding a flavored drink powder to make it any flavor you want. The result is equivalent to one average mixed drink.

\n

The three cocktail versions are:

\n
    \n
  • Cosmopolitan

    \n
  • \n
  • Powderita - tastes just like a Margarita

    \n
  • \n
  • Lemon Drop

    \n
  • \n
\n

Just add water to these three flavors for an instant cocktail. - Palcohol is Powered Alcohol

\n
\n

Mark Philips from Scottsdale, AZ. explains what palcohol is in his YouTube video: The Truth About Palcohol

\n

Addendum:

\n

You can always make your own. It is so simple you do not need to wait any longer!

\n

On Popular Science's website, Paul Adams wrote that he didn’t know how Palcohol did it but he explained how he could make powdered alcohol at home using a specially modified starch - a maltodextrin made from tapioca and sold under the brand name N-Zorbit M.

\n

\"Maltodextrin

\n

In the right ratio, N-Zorbit M powder can fully soak up the alcohol and still remain powdery.

\n

For an example, Adams suggested drizzling 30 grams of high-proof (150- to 190-proof) alcohol into a mixing bowl containing 100 grams of N-Zorbit M while whisking steadily. You can then either sift it though a fine sieve or just use a blender to begin with.

\n

Done properly, he says, you end up with strong soluble alcohol.

\n

No need to limit yourself to rum or vodka. Any strong alcoholic liquor will do, including whiskey, tequila, gin and absinthe.

\n

Ps. If you do make it yourself in any large quantities make sure to keep it in individual airtight freezer bags and depending on when you intend to use them store them in your fridge or deep-freezer.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-03-16T18:15:53.293", "LastActivityDate": "2021-03-16T18:15:53.293", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8292"}} +{ "Id": "8292", "PostTypeId": "1", "AcceptedAnswerId": "8293", "CreationDate": "2021-03-18T08:23:45.530", "Score": "2", "ViewCount": "135", "Body": "

I don't know if wine merchants still broach the cask in 2021, but why would they? Aren't casks manufactured with a spigot that a seller can just turn on, as shown below? I embolded the phrase below.

\n
\n

broker [14]

\n
\n
\n

Broker has no connection with the\npast tense of break. It comes from Anglo-\nNorman brocour ‘small trader’, but its ultimate\norigin is not clear. A variant Anglo-Norman\nform abrocour has fuelled speculation as to a\nlink with Spanish alboroque ‘sealing of a\nbargain’ and Portuguese alborcar ‘barter’,\nwhich are presumably of Arabic origin (the al- representing\nthe Arabic definite article); but\nother etymologists have sought to link the word\nwith broach, as if the underlying sense were\n‘someone who sells wine from [that is, by\nbroaching] the cask’, and hence any ‘retailer’.

\n
\n

Word Origins (2005 2e) by John Ayto. p 77 Left column.

\n

\"enter

\n", "OwnerDisplayName": "user12125", "LastEditorUserId": "11579", "LastEditDate": "2021-06-11T17:15:22.220", "LastActivityDate": "2021-06-11T17:15:22.220", "Title": "Why would wine sellers need to broach the cask?", "Tags": "wine history", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8293"}} +{ "Id": "8293", "PostTypeId": "2", "ParentId": "8292", "CreationDate": "2021-03-18T14:15:19.133", "Score": "1", "Body": "

I believe that during aging, spigots aren’t inserted into the casks. I’m guessing that plugs are more reliable, allow tighter storage and are cheaper.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-03-18T14:15:19.133", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8294"}} +{ "Id": "8294", "PostTypeId": "1", "CreationDate": "2021-03-19T03:18:22.843", "Score": "5", "ViewCount": "1368", "Body": "

I just purchased this Glencairn glass from Amazon and I think it may be knock-off. The etching on the bottom is different than the majority of the ones I've seen elsewhere. The ones I've seen online I have a standard non-cursive font.

\n

The QR code on the bottom of the box also links to a WeChat app download

\n

Does anybody know if these are legitimate?

\n

The Amazon post is here.

\n

\"1\"

\n

\"2\"

\n

\"3\"

\n", "OwnerUserId": "11487", "LastEditorUserId": "5847", "LastEditDate": "2021-03-19T16:36:26.360", "LastActivityDate": "2021-10-10T14:29:32.637", "Title": "Fake Glencairn Glass?", "Tags": "whiskey glassware", "AnswerCount": "3", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8295"}} +{ "Id": "8295", "PostTypeId": "2", "ParentId": "8294", "CreationDate": "2021-03-19T16:52:00.757", "Score": "1", "Body": "

If you are asking if the glass was made by Glencairn Crystal, then the answer is: no, not likely.

\n

For one, the URL on the top of the box in your photo is different than the one that you will see if you follow the link above. For two, Glencairn Crystal is in Scotland - since the UK is no longer part of the EU (as the bottom of your box displays where your glass was manufactured,) it probably does not come from there. Then, there is the business with the trademark...

\n

Patents expire, and while this may not be manufactured by "ye ol' Glencairn glass works incorporated," the glass is legitimate even if it does not contain the trademark etching of the company.

\n

As long as it has the actual shape as the glass on the box, then it is the real thing.

\n

What makes a glass a Glencairn is the design, in this instance:

\n

\"GlenCairnGlass\"

\n

So, the design has become the thing.

\n

For instance, if I made a plastic flying disc, one could argue that it isn't a frisbee because it doesn't have the right trademark and wasn't made by an authorized party. But, as soon as we ask an objective third party 'what is this flying plastic disc thing that I am holding?' They would say, 'duh, it's a frisbee.'

\n

Just as if you ask someone (who knows what they are looking at,) 'what kind of whiskey glass is this?' They will say, 'it's a Glencairn.'

\n

So, does the glass have the authentic trademark? Probably not. Is it a Glencairn glass? Yes, it definitely is.

\n", "OwnerUserId": "5847", "LastEditorUserId": "5847", "LastEditDate": "2021-03-23T10:14:56.090", "LastActivityDate": "2021-03-23T10:14:56.090", "CommentCount": "7", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"8296"}} +{ "Id": "8296", "PostTypeId": "2", "ParentId": "8294", "CreationDate": "2021-03-19T21:26:35.427", "Score": "1", "Body": "

I don't know if it is real or a fake, but if you are in doubt, I'd return them and buy from a reputable vendor. The same glass is available from Crate and Barrel at a reasonable cost. There are plenty of counterfeit goods on Amazon. I am not saying these are counterfeit, but you do need to be careful.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-03-19T21:26:35.427", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9298"}} +{ "Id": "9298", "PostTypeId": "2", "ParentId": "8096", "CreationDate": "2021-03-27T20:13:48.930", "Score": "2", "Body": "

Where is Archetype microbrewery in Vietnam?

\n

Archetype microbrewery is a relatively new microbrewery (2019) situated in Ho Chi Minh City, Vietnam?

\n
\n

Archetype No Name Pale Ale

\n

Bottle at Biacraft District 1, Ho Chi Minh City. Poured a clear medium amber colour with a lasting frothy white head. The aroma is toffee caramel malt, light woody hop. The flavour is moderate sweet light bitter, with a smooth caramel malt, light fruity, light pepper spice, light dry woody hop bitter palate. Medium bodied with to soft carbonation.

\n
\n

\"enter

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-03-27T20:13:48.930", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9299"}} +{ "Id": "9299", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2021-03-29T13:12:56.337", "Score": "3", "Body": "

It's true that sweet and fruity beers seem to be more appealing to people who do not like beer as a general rule - easing them in with ciders and lambics is potentially a good way to start.

\n

Considering that our taste buds mature and change over time, many people may have a bad experience with beer prior to the age of 22 when most people begin to enjoy more savory flavors. Also, the first beer(s) that Americans, in particular, are likely to taste are truly disgusting - coors, budweiser, bud light, miller, etc. These beers are nicknamed "piss water" et al, for a reason - and, the idea that beer is gross might carry over into adulthood based on these experiences.

\n

With that said, I would add here that there are also ways to approach turning a person into a "real beer" lover...

\n
    \n
  1. Start with a light beer with less of a flavor and body, such as ale, pilsner, or lager. Avoid whites, IPAs, and anything else that might have an "extra" flavor that could be taken as unappealing - unfortunately, this would go for stouts and porters too (my personal favorites.) Even "beer people" that I know and love don't always appreciate dark beers.

    \n
  2. \n
  3. Ensure the beer is cold - icy cold. Beer is generally more palatable, for beginners especially, when it's chilled... we will discuss this more later.

    \n
  4. \n
  5. Ensure the beer is bottled. (Please do not comment or respond to me about how there are studies that show there is no real taste difference between bottles and cans - I know all about those studies. I am not debating the finer points of drinking a canned beer from a glass.) The truth is that drinking a beer from a bottle always tastes better than drinking one from a can. Period.

    \n
  6. \n
  7. Ensure that there are no other beverage options. Possibly the most important aspect in the conversion process... I will take you through a couple scenarios in which I have seen non-beer-drinkers become beer-drinkers:

    \n
      \n
    • Scenario a.) Serve beers when everyone is already inebriated. There are always going to be parties or gatherings at which the well runs dry, so to speak. If you can manage this by design, you might discover that your target audience is much more likely to drink beverages, that they normally would not, after they are already a bit tipsy. So, if your people are still thirsty when there is nothing else to drink, break out the beers.

      \n
    • \n
    • Scenario b.) Serve cold beers on a hot day and/or after a strenuous activity. This is where step 2 above becomes very handy... when one is very hot, an icy cold beer is even more palatable - beer lover or not. Even an icy cold budweiser in a bottle becomes a welcome relief in such instances.

      \n
    • \n
    \n
  8. \n
\n", "OwnerUserId": "5847", "LastEditorUserId": "13851", "LastEditDate": "2021-09-02T16:23:37.317", "LastActivityDate": "2021-09-02T16:23:37.317", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9300"}} +{ "Id": "9300", "PostTypeId": "1", "CreationDate": "2021-03-30T14:38:44.347", "Score": "2", "ViewCount": "151", "Body": "

Is there a name for the class of cocktails where all ingredients are in equal proportions? For example, if I were to make a menu of things like a Corpse Reviver, Paper Plane, Last Word, etc. I'd like to title the menu with that term. I think "Perfect Cocktail" is fitting but I know that's for equal parts sweet and dry vermouth.

\n", "OwnerUserId": "13170", "LastActivityDate": "2021-04-01T19:03:32.913", "Title": "Is there a term for a cocktail made of equal proportions of its ingredients?", "Tags": "cocktails terminology", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9303"}} +{ "Id": "9303", "PostTypeId": "2", "ParentId": "9300", "CreationDate": "2021-04-01T18:49:40.930", "Score": "4", "Body": "

Is there a term for a cocktail made of equal proportions of its ingredients?

\n

There seems to be no known terminology for a cocktail made with equal proportions of ingredients!

\n

However that can not stop one from coining such a phrase. I would suggest something like an ”Equal portioned cocktails!”

\n

Do not call it an Equalizer because that is already a valid cocktail.

\n

If you make a cocktail of four equal portioned ingredients you could call it a 4 by 4 cocktail!

\n

Take the pound cake as an example, called in French a ”quatre-quart” (four-quarter).

\n
\n

The pound cake is aptly named. Historically, the total ingredients are equivalent to one pound. In French, it is called "quatre-quart" because it consists of four ingredients of equal weight: one quarter of flour, one quarter of butter, one quarter of sugar and one quarter of eggs. It is an old recipe that gives a slightly dense cake, ideal for tea and trifles. You could even add grated lemon or orange zest. - Pound Cake

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-04-01T19:03:32.913", "LastActivityDate": "2021-04-01T19:03:32.913", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9305"}} +{ "Id": "9305", "PostTypeId": "1", "CreationDate": "2021-04-12T03:11:05.753", "Score": "3", "ViewCount": "286", "Body": "

I really like the flavor of dark beer, but I hate getting buzzed. Thus, I have developed the habit of drinking a single beer over the course of 1-3 days, because then I can keep my BAC low (ie. sub 0.01%). I am curious if the health effects of drinking slowly differ from drinking fast and intermittently.

\n

For example, will the following have different health effects and how?

\n
    \n
  • 1 beer drunk in 10 min every day
  • \n
  • 1 beer drunk in 8 hours every day
  • \n
\n", "OwnerUserId": "13250", "LastEditorUserId": "5064", "LastEditDate": "2021-11-10T08:08:51.367", "LastActivityDate": "2021-11-10T08:08:51.367", "Title": "Health Effects of Drinking Slowly", "Tags": "health drinking", "AnswerCount": "1", "CommentCount": "1", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9306"}} +{ "Id": "9306", "PostTypeId": "1", "AcceptedAnswerId": "9332", "CreationDate": "2021-04-16T16:25:52.220", "Score": "2", "ViewCount": "166", "Body": "

A friend of mine really enjoyed a glass of Champagne at a restaurant back two years ago, and described it as "sweet" and "smells good". Based on other clues and after many incorrect guesses, we finally have a good guess of the kind of Champagne (Blanc de Meunier Brut Zero) and the winery (a small one). We picked a $40 bottle of Blanc de Noir Brut Champagne at a wine store recently. My friend confirmed that it feels the same and used the same words "sweet" and "smells good" to describe it.

\n

Now that we know it's Brut, "sweet" is clearly a lie.

\n
    \n
  • What does "sweet" really mean when people use it to describe a bottle of Brut Champagne?
  • \n
  • What's so special about Blanc de Noir Champagne, in comparison to other Champagne, that one would use the word "sweet" to describe it?
  • \n
  • I'm hoping that understanding it better would help finding better and/or cheaper alternatives.
  • \n
\n", "OwnerUserId": "13289", "LastActivityDate": "2021-06-19T17:24:57.250", "Title": "When some one uses \"sweet\" to describe Blanc de Noir Brut Champagne, what does it really mean?", "Tags": "champagne", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9307"}} +{ "Id": "9307", "PostTypeId": "2", "ParentId": "9306", "CreationDate": "2021-04-16T20:21:42.677", "Score": "0", "Body": "

Some people say “sweet” when they mean good. Like “That car is a sweet ride!” It can be a habit to use certain adjectives like "sweet" so in this context it is confusing. I'm guessing it is unique to this particular person and that educated wine drinkers would not use "sweet" to describe a brut Champagne.

\n

As for alternatives, there are many types of sparkling wines which are more reasonably priced than Champagne. In France, sparkling wines outside the Champagne region are called "Cremant". There is a certain premium associated with Champagne so Cremant's are often more reasonably priced for comparable quality. I'm particularly fond of Lucien Albrecht Cremant d'Alsace Brut Rose. Spanish Cava can also be found as a dry wine and can be really good.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2021-04-16T22:39:51.187", "LastActivityDate": "2021-04-16T22:39:51.187", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9308"}} +{ "Id": "9308", "PostTypeId": "2", "ParentId": "9306", "CreationDate": "2021-04-17T15:09:36.873", "Score": "1", "Body": "

When some one uses “sweet” to describe Blanc de Noir Brut Champagne, what does it really mean?

\n

Sweetness is a way to express the amount of residual sugars to alcohol levels in a wine or champagne.

\n
\n

Rough rules of thumb say if a wine's alcohol content is 10% or less it will have sweet characteristics. Wines that are even lower (especially down around 8 or 9 percent) will definitely be sweet. Wines in the 11% to 12.5% ABV range are considered 'off-dry' meaning that there is some notable residual sugar. If it’s 12.5 percent or higher, the wine will will be 'dry' and have little to no perceptible sweetness.

\n

Most wines under 10% ABV will be sweet. Typically, wines such as German Riesling and Italian Moscato fall in this category. Wines in the range of 10.5% to 12.5% include Riesling's from Austria, Australia and the U.S., Sauvignon Blanc, and Pinot Grigio (a.k.a. Pinot Gris). Then, in the 12.5% to 15.5% range you find Chardonnay, Pinot Noir, Cabernet Sauvignon, Malbec, Sangiovese, Syrah, Grenache and Zinfandel.

\n

But, as previously pointed out, a grape that starts with low sugar levels, and ferments to the point where all the sugar is consumed by the yeast, will result in a wine with lower alcohol levels and little to no residual sugar. So, this is why alcohol levels are not a dependable way of determining a wine's sweetness.

\n

So, while there’s definitely a loose relationship between a wine’s residual sugar and its alcohol level, it’s not a simple relationship. But you can use the percent alcohol printed on the label as a first indication. - Is There a Relationship Between a Wine's Sweetness and Its Alcohol Level?

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2021-04-17T15:09:36.873", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9309"}} +{ "Id": "9309", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2021-04-19T13:45:55.950", "Score": "1", "Body": "

Even though taste is very personal i would definitly start light. I always think Saison's and Weizen's are great for starters. It is refreshing and has around 5% alcohol.

\n

Depending on the person's taste i would then move to the heavier beers, either fruity(IPA's, Kriek)/sour or triple's. I would consider Stout's and Porters as "endgame".

\n", "OwnerUserId": "13296", "LastActivityDate": "2021-04-19T13:45:55.950", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9310"}} +{ "Id": "9310", "PostTypeId": "1", "CreationDate": "2021-04-19T18:28:56.423", "Score": "3", "ViewCount": "152", "Body": "

Price per Alcohol content of beer formula

\n

Can someone post the formula for the problem of finding an equation to determine the price of the alcohol content in a beer? I've been trying to figure it out but am having trouble figure it out. Basically I am trying to find out which beer will people drink the cheapest, its probably a a cheap blue and silver can but it could be a high ABV% IPA or something pricier per beer but with I higher ABV%.

\n", "OwnerUserId": "13297", "LastEditorUserId": "5064", "LastEditDate": "2021-04-19T23:48:43.280", "LastActivityDate": "2021-05-27T18:11:30.550", "Title": "Price per Alcohol content of beer formula?", "Tags": "alcohol", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9311"}} +{ "Id": "9311", "PostTypeId": "2", "ParentId": "351", "CreationDate": "2021-04-20T06:09:28.903", "Score": "2", "Body": "

I doubt very much there are any detectable metallic elements in the beer you're drinking from being a few minutes in a pewter tankard - however old/ antique pewter does contain lead, and likely is best avoided. What may be happening is that there could be a very slight electric current from a reaction of the beer with the metal on your tongue producing a very small voltage, which give you this metallic "taste" - you get the same, more obvious effect, from a small battery. I mostly drink from a cast pewter tankard for three reasons, it looks the part, it was a present, and you get a better head. However, it would be true that many beer drinkers prefer glass. I think a tankard though is good for more traditional and darker beers, but a glass for lagers and lighter beers - which is what I do. Don't forget millions of beer drinkers drink straight from an aluminium can, and the beer will have been in that can possibly for months. So what about aluminium toxicity and Alzeimers?? I am joking, a bit.

\n", "OwnerUserId": "13298", "LastActivityDate": "2021-04-20T06:09:28.903", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9312"}} +{ "Id": "9312", "PostTypeId": "2", "ParentId": "9310", "CreationDate": "2021-04-20T14:24:41.043", "Score": "2", "Body": "

Alcohol content is not the primary driver of the cost of beer and so unfortunately there is not formula for directly mapping the price of a beer to its alcohol content. There are a number of ingredients in beer, and the non-alcohol producing ingredients (hops and other flavoring ingredients) can easily cost as much or more than the ingredients that produce the alcohol (malts, adjuncts, other fermentable sugars.)

\n

This is why some extremely high alcohol beverages (malt beverages, cheap vodka) can cost far less per ounce than a high quality, considerably lower alcohol beer.

\n

HOWEVER: If you're not looking for a general formula, but want to compare two specific beers, the formula would be to multiply the ABV by the unit of measure for the beer (ounces here in the U.S.) and then divide the results by the price.

\n

EXAMPLE: So I have two beers, one that is 12oz and 4.9% ABV, and costs $0.83 per can, and a second beer that is 16oz and 9.2% ABV, and costs $3.00 per can.

\n

For beer one I multiple the alcohol times the quantity 0.049 * 12 = 0.588 (It contains 0.588oz of alcohol per can.) Now I divide the price ($0.83) by the alcohol content (0.588) and I find that the first beer costs $1.42 per ounce of alcohol.

\n

For beer two I multiple the alcohol times the quantity 0.092 * 16 = 1.472 (It contains 1.472oz of alcohol per can.) Now I divide the price ($3.00) by the alcohol content (1.472) and I find that the second beer costs $2.04 per ounce of alcohol.

\n

So, in this specific case, the lower alcohol beer delivers more alcohol for the price. ($1.42/oz vs. $2.04/oz.)

\n

GENERAL FORMULA: Units are as you give them (Use price in dollars and volume in ounces to get $/ounce -- Use price in Euros and volume in milliliters to get €/ml -- etc.)

\n

Price of alcohol content = [Price of package of beer] / ([Units per package] * [Volume per unit] * [ABV])

\n", "OwnerUserId": "37", "LastEditorUserId": "13476", "LastEditDate": "2021-05-27T18:11:30.550", "LastActivityDate": "2021-05-27T18:11:30.550", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9314"}} +{ "Id": "9314", "PostTypeId": "1", "CreationDate": "2021-04-21T11:31:13.693", "Score": "1", "ViewCount": "141", "Body": "

There seems to have been a consistent trend across many distilleries towards a poorer product over the last 2 decades. A case in point is Laphroaig 10yo. In the late 90s I was a regular drinker of this; recent bottlings are absolutely unrecognisable. Other well-known distilleries that are notorious for this include Highland Park, Jura and many others.

\n

We can speculate as to the cause - a huge rise in demand (especially overseas) for a product which simply cannot respond quickly to market fluctuations, and consolidation of ownership by large companies.

\n

Are there any single malts where there is a consensus that they have remained reasonably consistent - or even improved - in quality since, say 2000? I am most interested in the entry-level age-statement expressions. Perhaps the less well-known distilleries such as Edradour? Or those which haven't changed their range e.g. Glenfarclas?

\n", "OwnerUserId": "13303", "LastActivityDate": "2021-04-27T10:52:27.653", "Title": "Which single malt Scotches have improved over the last 20 years?", "Tags": "scotch quality whisky", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9316"}} +{ "Id": "9316", "PostTypeId": "2", "ParentId": "9314", "CreationDate": "2021-04-27T10:43:29.097", "Score": "5", "Body": "

I find your question difficult to answer, because you mix up two things: consistency and overall quality.

\n

"There seems to have been a consistent trend across many distilleries towards a poorer product over the last 2 decades. A case in point is Laphroaig 10yo. In the late 90s I was a regular drinker of this; recent bottlings are absolutely unrecognisable."

\n

Rhetorical Question: Does a (in your opinion) different tasting Laphroaig make a poorer product?

\n

When we talk about mere quality, there were huge positive steps in the scotch whisky industry over the past 20 to 30 years.

\n
    \n
  • The wash (beer that is destilled)
  • \n
\n

In the past, the washbacks, often made of wood, were cleaned by hand. This lead to a fluctuating cleaning result, and especially in warm weather periods (which even occur in scotland), it happend for the wash to be infected by vinegar bacteria, which made the resulting New Make taste sour. Today a lot of washbacks are made of steel and even the remaining wooden ones are washed by automated cleaning systems for a much better and more consistent result.

\n
    \n
  • The pot stills
  • \n
\n

In the past the pot stills where directly heated with coals. When you have a high temperature concentrated on a small point, solid parts get burnt on pot still and lead to bitter notes in the New Make. Today a rotating rummager is widely used, which heats much more evenly and prevents this effect.

\n
    \n
  • Cask management
  • \n
\n

In the past the cask management was lacking details, or history, of a certain cask. How often was it used? Which destillery did it came from? This lead to casks being used to often and it made it difficult for the blend master to get a consistent batch for a certain bottling, since he has a recipie, but the casks where not labelled sufficient enough. Today a cask gets a barcode which contains all the information what a cask went through which makes trading easier and get more precise results over time.

\n

One problem the scotch whisky industry is facing, is the huge growth in demand for Single Malt whisky. The the past, about 10% to 20% of the whisky production of a distillery went into Single Malts, the rest into the blending idustry. Today it is about 50% to 100%. This changes the cask selection for blends, since some destilleries don't provide them with casks anymore, and also for Single Malts. Because of the high demand, a lot of popular distilleries went out of longer matured casks and had to change their portfolio to younger bottlings, or create No Age Statement bottlings.\nThis had, of course, a huge impact on consistency in terms of taste.

\n

So, to answer your question(s):

\n

"Which single malt Scotches have improved over the last 20 years?": pretty much all

\n

"Are there any single malts where there is a consensus that they have remained reasonably consistent": probably none

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2021-04-27T10:52:27.653", "LastActivityDate": "2021-04-27T10:52:27.653", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9318"}} +{ "Id": "9318", "PostTypeId": "2", "ParentId": "3420", "CreationDate": "2021-04-27T22:20:48.913", "Score": "-2", "Body": "

If you want a lite domestic beer that really is a very light beer flavor to start. Coors Light. Very weak beer flavor.

\n", "OwnerUserId": "13323", "LastActivityDate": "2021-04-27T22:20:48.913", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9319"}} +{ "Id": "9319", "PostTypeId": "2", "ParentId": "6902", "CreationDate": "2021-04-28T15:54:56.487", "Score": "1", "Body": "

Baileys and other Irish Cream manufacturers state that their liqueurs do not need to be refrigerated. As long as they are stored between recommended temperatures of 41ºF/5ºC and 70ºF/21ºC and kept out of direct sunlight, they have a shelf-life of around 2 years.

\n

The alcohol in the product acts as the preservative on its own - so no need to look for anything containing artificial preservatives (in the cases where you can actually find an ingredients label.)

\n

As far as an "unrefrigerated-single-serve-coffee-creamer" version goes - as with almost all types of alcohol, there are plenty of companies that produce miniature versions of Irish Cream, Baileys included:

\n

\"baileys

\n

Considering that the shelf-life is going to be around 2 years whether the bottle is open or not, the miniature versions are manufactured more for consumer convenience than for shelf-life stability.

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-04-28T15:54:56.487", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9320"}} +{ "Id": "9320", "PostTypeId": "2", "ParentId": "7658", "CreationDate": "2021-04-28T16:26:32.243", "Score": "0", "Body": "

A simple google search for "alcohol manufacturing south africa" turns up a lot of helpful results...

\n

Essentially, you need to apply for a macro manufacturing and/or distribution liquor license. In order to do so, you will need to register with the National Liquor Authority (NLA) of South Africa.

\n

The information you need to provide and requirements you need to meet include, but are not limited to: company information, financial interest in the liquor industry, obtaining a "B-BEE" Certificate (Broad-Based Black Economic Empowerment Codes of Good Practice,) projected annual turnover, and a registration fee.

\n

Required documents include:

\n
\n

Applications should be accompanied by:

\n
    \n
  • A business zoning certificate for industrial purposes or a consent letter from the relevant municipality;
  • \n
  • A comprehensive written representation in support of the application;
  • \n
  • Any determination, consent approval or authority required by the Act;
  • \n
  • Valid proof that the prescribed application fee has been deposited in the bank account of the dti;
  • \n
  • A valid certified copy of ID or passport of the applicant;
  • \n
  • Trading business permit if the applicant is a foreigner;
  • \n
  • A South African Police Services (SAPS) police clearance certificate not older than three months from the date of issue;
  • \n
  • If the applicant is a juristic person, valid copies of registration issued by the Companies and Intellectual Property Commission (CIPC) or any other relevant registration authority indicating the financial interest of all members, shareholders, partners or beneficiaries as the case may be;
  • \n
  • A valid tax clearance certificate if the applicant is a juristic person issued by the South African Revenue Services (SARS) within 12 months from the date of application;
  • \n
  • Verification certificate issued in terms of the B-BBEE Act.
  • \n
\n
\n

Considering that the sales and distribution ban in South Africa was recently lifted, I'd say it's a good time to get registered, if you have not already. ;)

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-04-28T16:26:32.243", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9322"}} +{ "Id": "9322", "PostTypeId": "1", "CreationDate": "2021-05-05T21:45:35.173", "Score": "1", "ViewCount": "274", "Body": "

My mom's favorite dinner is lasagna with salad, garlic bread, and cheese cake. I make this for her every twice a year; her birthday and Mother's day. What spirit goes best with this dinner?

\n", "OwnerUserId": "13364", "LastEditorUserId": "5064", "LastEditDate": "2021-05-06T16:25:30.707", "LastActivityDate": "2021-05-06T16:36:53.987", "Title": "What spirit goes best with lasagna?", "Tags": "spirits pairing", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9323"}} +{ "Id": "9323", "PostTypeId": "2", "ParentId": "9322", "CreationDate": "2021-05-05T22:47:03.540", "Score": "2", "Body": "

Not a spirit, but I would serve red wine. In particular a Barbera d'Alba or maybe a Chianti. Red Italian wine seems appropriate and those two are good with pasta in my opinion. It does depend a bit on the kind of lasagna. I'm assuming the standard red tomato sauce kind.

\n", "OwnerUserId": "6370", "LastEditorUserId": "6370", "LastEditDate": "2021-05-05T23:36:39.730", "LastActivityDate": "2021-05-05T23:36:39.730", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9324"}} +{ "Id": "9324", "PostTypeId": "2", "ParentId": "9322", "CreationDate": "2021-05-06T16:36:53.987", "Score": "1", "Body": "

What spirit goes best with lasagna?

\n

Whiskey or bourbon would be my recommendation for pairing spirits with lasagna. Both go well with pasta dishes and Italian foods in general.

\n

If you prefer beer, please check this out: What's a good beer to go with lasagna?

\n

If you desire wine being paired with lasagna the following may be helpful: 10 Wines that Pair Perfectly with Lasagne

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-05-06T16:36:53.987", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9325"}} +{ "Id": "9325", "PostTypeId": "2", "ParentId": "7815", "CreationDate": "2021-05-07T19:46:45.790", "Score": "0", "Body": "

You can find Swiss Absinthe in Alberta - the brand is Larusee

\n", "OwnerUserId": "13384", "LastActivityDate": "2021-05-07T19:46:45.790", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9331"}} +{ "Id": "9331", "PostTypeId": "2", "ParentId": "5171", "CreationDate": "2021-05-23T18:03:31.083", "Score": "1", "Body": "

Yes you absolutely can get sick from mixing oysters and alcohol. Some folks like myself do not produce enough of a certain enzyme to block the histamines produced by consuming oysters. That plus the alcohol turn into one of the most painful and throw up filled could not eat anything for two days sicknesses I have ever experienced

\n", "OwnerUserId": "13474", "LastActivityDate": "2021-05-23T18:03:31.083", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9332"}} +{ "Id": "9332", "PostTypeId": "2", "ParentId": "9306", "CreationDate": "2021-05-25T08:49:01.917", "Score": "3", "Body": "

Technically, the wine is not sweet - as the residual sugar content is nowhere near the required levels.

\n

Calling a Brut Champagne sweet, probably indicates that someone finds the wine more approachable and less ‘mineralic’ than usual - especially when compared to a Blanc de Blanc on Chardonnay.

\n

Generally, Pinot Meunier supplies some ’plumpness’ and fruitiness to a Champagne - which in itself could be interpreted as sweetness. Personally, I sometimes find 100% Meunier very plump - a bit like a 100% Viognier white - which can give the illusion of sweetness despite the residual sugar being close to zero.

\n", "OwnerUserId": "7790", "LastActivityDate": "2021-05-25T08:49:01.917", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9333"}} +{ "Id": "9333", "PostTypeId": "1", "AcceptedAnswerId": "9335", "CreationDate": "2021-06-04T10:44:50.983", "Score": "2", "ViewCount": "89", "Body": "

This question may be quite basic.

\n

How do I properly measure ingredients of a Negroni?

\n

Equal parts of each ingredient.

\n

Is it one cap (cocktail shaker cap) of each?

\n

Or equal in terms of mL.

\n

Using my scales:

\n
    \n
  • Campari, One Cap, 29mL
  • \n
  • Vermouth, One Cap, 27mL
  • \n
  • Gin, One Cap, 23mL
  • \n
\n

So my question is, should it be "30mL, 30mL, 30mL" or "One cap, one cap, one cap".

\n", "OwnerUserId": "13513", "LastActivityDate": "2021-06-07T05:23:54.193", "Title": "Equal Parts Cocktail Measurement", "Tags": "cocktails", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9334"}} +{ "Id": "9334", "PostTypeId": "1", "CreationDate": "2021-06-05T00:40:16.223", "Score": "3", "ViewCount": "3718", "Body": "

I drink Johnnie Walker Blue Label and I didn't fell the alcohol burning my mouth.

\n

Is it similar with Green and Gold Label?

\n

Which one of these two has a better "alcohol burn" hidden?

\n", "OwnerUserId": "13516", "LastEditorUserId": "5064", "LastEditDate": "2021-06-07T04:40:35.747", "LastActivityDate": "2021-06-08T14:31:58.253", "Title": "Johnnie Walker Green vs Gold Label?", "Tags": "taste whisky", "AnswerCount": "2", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9335"}} +{ "Id": "9335", "PostTypeId": "2", "ParentId": "9333", "CreationDate": "2021-06-07T05:23:54.193", "Score": "0", "Body": "

Equal Parts Cocktail Measurement?

\n

Generally speaking, cocktails are measured by volume not weight.

\n
\n

Jiggers, cups, and other tools you use to measure out ingredients for a cocktail.

\n

Your options here are simple and few, so this is not terribly complicated.

\n

Jiggers

\n

Jiggers are the basic hourglass-shaped stainless-steel measuring device you've seen in many a bar. These are cheap and easy to find in most housewares stores, or online. Typically, the larger cup measures out exactly one jigger, or 1 1/2 ounces. The smaller cup is normally one half jigger, or 3/4 ounces. Be careful, a number of other sizes exist, and you should know what units you're working in.

\n

Many professional bartenders have built up strong proficiency with using these in settings where speed is of an essence. The way to use a jigger most efficiently is to hold it between thumb and forefinger, or between your first thumb and forefinger, or between your first and second fingers, like so:

\n

Hold the jigger steady, and fill it brim-full with your liquid of choice; and then it's easy to quickly tip the contents into a shaker or mixing glass.

\n

Another type of jigger is similar to the hourglass model, but it's mounted on a rod.

\n

Measuring Cups

\n

Really, though, it's rare that a home bartender needs to worry about speed. A professional bartender in a high-capacity bar needs to work lightning fast, obviously, but for the home schlub mixing a pre-dinner daiquiri, it's just not necessary.

\n

At home, I almost never use a jigger, unless I just want to practice my jiggering. First of all, not all jiggers are equal: some that might appear to measure a true jigger actually measure 1 1/4 ounces instead of 1 1/2. (The model with the handle, in the picture at top, is one such miscreant.) If I want accuracy in my measuring (and I do), I don't want to have to second-guess the capacity of my tools. My measurer of choice is the Oxo mini angled measuring cup.

\n

I love this darned thing and I use it daily. I even preferred it during my stint as a pro bartender. I only have one problem with it: there's no mark for 3/4 ounces. I usually eyeball it, or if I need more precision, I measure 1/2 and then 1/4 ounces.

\n

I should note, too, that some bartenders don't like measuring amounts as small as 1/4 ounce in these cups. To explain why, I need to mention something called a meniscus. It's the curve in the upper surface of a liquid that's in a container. The reason some people see this as a problem is that the curve can make it difficult to accurately read how close you are to the 1/4-oz. mark.

\n

I have to say I'm not convinced it's always a problem. At most we're looking at a couple of drops of liquid's difference between an accurate measure and an inaccurate measure. If you're measuring a strongly flavored ingredient, such as absinthe or Fernet Branca, a couple of extra drops could affect a cocktail. But for milder tasting ingredients such as lemon juice or simple syrup, it's not going to make a huge difference. - Cocktail 101: Measuring Utensils

\n
\n

Jiggers are used for accurate measurements and are the foundation of consistent cocktails.

\n

A cocktail jigger is a shot or cocktail measuring cup for bartenders, ranging in sizes of 0.5-2.5 oz. For ease of use, many jiggers have fill lines on the inside or outside with oft-used cocktail or shot glass measurements.

\n

The word jigger can also be used as a unit of measurement in cocktail recipes. If you happen to come across a recipe that calls for a jigger (or jigger shot) of any spirit, that refers to the standard jigger size of 1.5 oz. Shot glasses come in various sizes, but a standard shot glass is also 1.5 oz. So in some instances, a jigger and a shot can refer to the same thing. A smaller 1 oz shot, or the 1 oz side of the jigger, is referred to as a “pony shot.”

\n
\n

Common Jigger Sizes

\n

Generally, these bar measures come in a variety of sizes, including:

\n
    \n
  • 2oz.

    \n
  • \n
  • 1.5 oz.

    \n
  • \n
  • 1 oz.

    \n
  • \n
  • .75 oz.

    \n
  • \n
  • .5 oz.

    \n
  • \n
  • .25 oz.

    \n
  • \n
\n
\n

\"Jiggers

\n

Jiggers 101

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-06-07T05:23:54.193", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9336"}} +{ "Id": "9336", "PostTypeId": "2", "ParentId": "9334", "CreationDate": "2021-06-07T08:55:28.500", "Score": "1", "Body": "

Since the Gold Label comes with 40% abv, the same as Blue Label, and Green Label is with 43% a bit stronger, I think you want to go with Gold Label.

\n", "OwnerUserId": "8518", "LastActivityDate": "2021-06-07T08:55:28.500", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9337"}} +{ "Id": "9337", "PostTypeId": "2", "ParentId": "9334", "CreationDate": "2021-06-08T03:23:17.877", "Score": "0", "Body": "

Johnnie Walker Green vs Gold Label?

\n
\n

Green label was added to the fold in 1997. Originally called Pure Malt, it was renamed Green Label in 2004. There is very little smoke at all in Green label. It is made with malt whisky only and has a sweeter more honied flavour profile and is exceptionally smooth.

\n

Gold label was also introduced in 1997, and although had no age statement, the whiskies are around the eighteen year mark. Like Green, Gold has a sweeter flavour profile, with vanilla and caramel being dominant, but there are also more complex and subtle flavours of heather honey and blossom. - The Colours of Johnnie Walker

\n
\n

Although the Green Label has slight smoky notes and has a 43% ABV over a 40 % ABV of the Gold Label, I would go with the Green Label. The spicy black pepper notes also make it my choice, for that ”alcohol burn” some desire.

\n

If you want that hidden burn then go with the Gold Label.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-06-08T14:31:58.253", "LastActivityDate": "2021-06-08T14:31:58.253", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9338"}} +{ "Id": "9338", "PostTypeId": "2", "ParentId": "8191", "CreationDate": "2021-06-09T11:17:35.780", "Score": "5", "Body": "

In general, commercial Asian beer is very like beer from other continents. Industrial Asian brewers mostly started in the 19th century, based on German lager brewing, and still mostly brew German-style lager. There's also a new wave of smaller breweries that copied US-style craft breweries.

\n

You'd be hard put to it to find anything distinctively Asian about these, but there are some Asian variants developed from them.

\n

In Japan they have happoshu, a kind of cheap beer that uses less malt and more sugar from other sources, simply for tax reasons. Vietnam also has a local variant of quickly-brewed lager beers sold cheaply in the street, called bia hoi.

\n

However, traditional Asian beer as brewed by the farmers for their own use is a completely different story. These exist in places like Bhutan, Nepal, and probably quite a few more places, and are brewed according to local traditions that are totally different from western beer.

\n

Western beer is made from malt, but these beers are usually brewed from raw grain using a fungus that breaks down the starch and makes sugar. Japanese sake (rice "beer") and Chinese huangjiu (rice "beer" and grain beer) are also made this way and could be considered Asian types of beer. Certainly huangjiu made from barley has a lot in common with what we call beer.

\n", "OwnerUserId": "1125", "LastEditorUserId": "1125", "LastEditDate": "2021-06-11T08:49:00.853", "LastActivityDate": "2021-06-11T08:49:00.853", "CommentCount": "6", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9340"}} +{ "Id": "9340", "PostTypeId": "2", "ParentId": "9305", "CreationDate": "2021-06-12T02:31:11.370", "Score": "4", "Body": "

Its very well documented how alcohol effects the body, or should I say how its processed. The variable in question here is the rate at which you consume it.

\n

If you drink one beer in 10 minutes then most likely (depending on percentage of alcohol the drink contains) you will feel a 'buzz' because you would be consuming alcohol faster than your body can break it down.\nIf you drink one beer over 1-3 days, your body should be able to break it down without you feeling buzzed.

\n

Prolonged alcohol use, whether you feel the 'buzz' or not, can lead to deficiencies in certains vitamins and minerals in addition to the extra load you are placing on your liver and kidneys which contributes to their decline of function over time versus someone who never drinks alcohol.

\n

Note, there are a lot of variables here so this is general advice.

\n", "OwnerUserId": "13583", "LastActivityDate": "2021-06-12T02:31:11.370", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9342"}} +{ "Id": "9342", "PostTypeId": "2", "ParentId": "8156", "CreationDate": "2021-06-21T23:33:21.773", "Score": "1", "Body": "

It would probably work just fine, but is also probably overkill. As Eric S. mentioned in the comment, I would use an Ah-So. I routinely use mine in for wines that are over a decade old. In fact, I have some wine from specific vintners that I know the corks are going to fall apart if I use a corkscrew (from repeated experience where this is exactly what happened) so I simply always use my Ah-So with them and it gets the corks out cleanly and easily every time.

\n", "OwnerUserId": "37", "LastActivityDate": "2021-06-21T23:33:21.773", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9343"}} +{ "Id": "9343", "PostTypeId": "2", "ParentId": "8136", "CreationDate": "2021-06-28T14:41:34.580", "Score": "2", "Body": "

Yes. There are pretty much collectors of every type for almost any item imaginable... anything that is old, or even remotely interesting, is likely collected somewhere in the world by someone.

\n

A simple search for "bottle collectors" turns up many, many results, including one for The Federation of Historical Bottle Collectors. Who host a "National Antique Bottle Convention" yearly.

\n

Another search for "champagne collectors" similarly returns many, many results, including various social media groups like this one on Facebook called "Champagne Collectors."

\n

By definition, your item is collectible - it's suitable for being collected (as according to the merriam webster dictionary,) and it is less than 100 years old, as stipulated by this article from Antique HQ. Whether or not this particular bottle is considered particularly collectible is subjectively based on the collector(s) themselves. Basically, if someone wants to collect it, then it is a collectible. If you yourself have collected it, then it is a collectible.

\n

However, appraising an item like this is a matter in and of itself... if there is a market for this type of item, this task is easier. When the item is more rare, it's basically left up to who will pay what for it... meaning, if someone wants to buy your bottle for $1 or $1000, then that's what it's worth.

\n

To support this fact, I will reference the old "banana taped to the wall" incident - in which an artist simply taped an old banana to a wall during his exposition. An art collector bought said banana for $120,000... and promptly ate it.

\n", "OwnerUserId": "5847", "LastActivityDate": "2021-06-28T14:41:34.580", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9344"}} +{ "Id": "9344", "PostTypeId": "1", "AcceptedAnswerId": "9345", "CreationDate": "2021-07-03T00:17:31.653", "Score": "4", "ViewCount": "75", "Body": "

I wonder if it's possible for beer to cause you to be sleepier than wine with the same amount of alcohol in it? And if so, what would be the cause?

\n", "OwnerUserId": "953", "LastActivityDate": "2021-07-05T11:27:59.307", "Title": "Different physiological effect of beer and wine?", "Tags": "alcohol", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9345"}} +{ "Id": "9345", "PostTypeId": "2", "ParentId": "9344", "CreationDate": "2021-07-05T09:41:23.407", "Score": "3", "Body": "

There might me several effects that lead to beer being more sleep-inducing, but one of the most important seems to be: the hops.

\n

Hops has a sedative effect and there are even papers on this topic, where non alcoholic beer is investigated for it's sleep enhancement effects.

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2021-07-05T11:27:59.307", "LastActivityDate": "2021-07-05T11:27:59.307", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9346"}} +{ "Id": "9346", "PostTypeId": "1", "AcceptedAnswerId": "9352", "CreationDate": "2021-07-08T15:25:15.477", "Score": "3", "ViewCount": "45", "Body": "

A rule of thumb I've heard concerning pairing (sweet) wine with (sweet) desserts is that the wine should be sweeter than the dessert. For some references, see e.g., here or here.

\n

So suppose I'm serving a sweet dessert but I only have an intuitive feeling of how sweet it is. When picking suitable wine for it, I can look at its sugar content, but how can I match it against the supposed sweetness of the dessert? I can also imagine this can be overdone by always going for the extremely sweet wine.

\n

Ideally, I think I would be looking for a guideline like "dessert of type x, go for a wine with at around y grams of sugar in a liter" and so on.

\n", "OwnerUserId": "13678", "LastActivityDate": "2021-07-19T12:50:50.047", "Title": "Pairing sweet wine with dessert", "Tags": "wine pairing", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9347"}} +{ "Id": "9347", "PostTypeId": "1", "AcceptedAnswerId": "9395", "CreationDate": "2021-07-09T19:20:52.127", "Score": "2", "ViewCount": "80", "Body": "

What pairs well with green wine?

\n

Green wine (Vinho Verde) is basically an inexpensive young wine.

\n
\n

Vinho Verde (literally 'green wine') refers to Portuguese wine that originated in the historic Minho province in the far north of the country. The modern-day 'Vinho Verde' region, originally designated in 1908, includes the old Minho province plus adjacent areas to the south. In 1976, the old province was dissolved.

\n

Vinho Verde is not a grape variety, it is a DOC for the production of wine. The name means "green wine," but translates as "young wine", with wine being released three to six months after the grapes are harvested. They may be red, white, or rosé, and they are usually consumed soon after bottling. A Vinho Verde can also be a sparkling, a Late Harvest or even Brandy. In its early years of production, the slight effervesce of the wine came from malolactic fermentation taking place in the bottle. In winemaking this is usually considered a wine fault but Vinho Verde producers found that consumers liked the slightly fizzy nature. However, the wines had to be packaged in opaque bottles to hide the unseemly turbidity and sediment that the "in-bottle MLF" produced. Today, most Vinho Verde producers no longer follow this practice with the slight sparkle being added by artificial carbonation.

\n
\n

Vinho Verde Is meant to be drunk young, traditionally at least. Don’t put this in your cellar expecting it to improve, just drink it. Knowing that it’s meant to be drunk straight away, some manufacturers don’t even bother putting the vintage date on the bottle.

\n

It is not actually green in colour. Green does not mean that the wine is actually green. If you were worried that you were going to have to drink something the colour of pond water, that probably comes as a relief. Or, maybe it comes as a disappointment. It wasn’t that long ago that orange wine was all the rage, so it wouldn’t be surprising if people were keen to try something that looked like it had been made by Gatorade.

\n

As such I would like to know what pairs well with this type of wine?

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-09-23T02:06:36.697", "Title": "What pairs well with green wine?", "Tags": "wine pairing", "AnswerCount": "2", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9348"}} +{ "Id": "9348", "PostTypeId": "1", "CreationDate": "2021-07-09T19:26:34.247", "Score": "1", "ViewCount": "40", "Body": "

What pairs well with cannabis wine?

\n
\n

Cannabis Wine: Herbs have been infused into wine since the time of ancient Greece. These aromatized wines are now even being infused with cannabis. One such product, Know Label, uses various strains of cannabis that are cold-extracted into the wine during vinification. The final product cannot legally be called wine, and is labeled as a “wine tincture” instead (it has 12% ABV and 3% THC). As for the color, these wines resemble standard red and white wines.

\n
\n

PS. Up here in Canada, marijuana is quite legal!

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-07-09T19:26:34.247", "Title": "What pairs well with cannabis wine?", "Tags": "wine ingredients pairing", "AnswerCount": "0", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9349"}} +{ "Id": "9349", "PostTypeId": "1", "CreationDate": "2021-07-10T18:20:28.383", "Score": "4", "ViewCount": "52", "Body": "

I was having a discussion with a friend about the amount of calories in various kinds of beer, light beers and seltzers and he said that the calorie information in the nutrition section of the can does not account for the amount of calories you gain when your body metabolizes the alcohol.

\n

Is he correct?

\n", "OwnerUserId": "13683", "LastActivityDate": "2021-07-10T19:43:49.887", "Title": "Does calorie count on a can of beer account for calories in the alcohol?", "Tags": "nutrition", "AnswerCount": "1", "CommentCount": "0", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9350"}} +{ "Id": "9350", "PostTypeId": "2", "ParentId": "9349", "CreationDate": "2021-07-10T19:43:49.887", "Score": "2", "Body": "

I have no a priori knowledge. But I can Google. Evidently the calorie count does include the calories from alcohol (see here). This is because the method for determining calories comes from basically burning the sample. However, calories from alcohol are not efficiently digested so the listed calorie count in beer is higher than what is actually digested.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-07-10T19:43:49.887", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9351"}} +{ "Id": "9351", "PostTypeId": "1", "CreationDate": "2021-07-12T23:10:09.543", "Score": "3", "ViewCount": "66", "Body": "

There seems to be two types of weed beers: Cannabis Beer and Cannabis-Infused Beer on the market.

\n

What is the difference between the two and what is the taste difference between the two?

\n

Bonus question: Which one gives individuals the best traditional buzz in comparison to smoking weed?

\n

Cannabis is legal here in Canada.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-08-29T14:54:07.127", "LastActivityDate": "2021-08-31T15:07:32.847", "Title": "Cannibis beer vs.. Cannabis-Infused Beer", "Tags": "taste specialty-beers craft-beers", "AnswerCount": "1", "CommentCount": "2", "FavoriteCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9352"}} +{ "Id": "9352", "PostTypeId": "2", "ParentId": "9346", "CreationDate": "2021-07-19T12:50:50.047", "Score": "3", "Body": "

When sommeliers do pairings, it's (almost) always based on experience in having tasted both the wine and the food, as the goal of a pairing is primarily sensory: tastes, smells, mouth-feel, etc.

\n

I'm not a sommelier, so I welcome someone with actual training to contradict me on this, but I don't think you'll find this rule of thumb to be measured quite so quantitatively.

\n

Sometimes volume of sugar doesn't always translate to perceived "sweetness" due to other flavors or cooking method. Caramel, primarily sugar, can be burnt to be made quite bitter. Fresh fruit can widely vary in sweetness, even just depending on how ripe it is.

\n

In the articles you reference, the sensory aspect is eluded to in that wines that taste sweet with dinner might be too dry to pair with dessert and then taste acrid.

\n

The best way to identify pairings is to take a bit of a wild guess, and taste the pairing for yourself.

\n", "OwnerUserId": "13564", "LastActivityDate": "2021-07-19T12:50:50.047", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9354"}} +{ "Id": "9354", "PostTypeId": "1", "AcceptedAnswerId": "9355", "CreationDate": "2021-07-20T17:14:08.283", "Score": "0", "ViewCount": "46", "Body": "

I have a friend who is a fellow beer aficionado who told me about a brewery in Scotland that produced a beer that had such as high ABV that the government said it couldn't be produced because that technically categorized it as a liquor.

\n

In retaliation the brewery came out with a beer named Nanny State that had such a low ABV that it couldn't be taxed by the government as alcohol. I have not been able to find the name of the brewery. Is anyone familiar with this story and/or the name of the brewery in question?

\n", "OwnerUserId": "12012", "LastActivityDate": "2021-08-08T01:05:12.953", "Title": "What is the name of the Scottish Brewery that makes Nanny State beer?", "Tags": "breweries", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9355"}} +{ "Id": "9355", "PostTypeId": "2", "ParentId": "9354", "CreationDate": "2021-07-20T23:24:30.473", "Score": "2", "Body": "

According to Beer Advocate the brewery is BrewDog.

\n

Balmacassie Drive
\nBalmacassie Commercial Park
\nEllon, Scotland, AB41 8BX
\nUnited Kingdom

\n

There also seems to be a BrewDog in Ohio which also makes Nanny State beer. I think they are the same company.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-07-20T23:24:30.473", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9356"}} +{ "Id": "9356", "PostTypeId": "2", "ParentId": "7412", "CreationDate": "2021-07-21T13:08:51.383", "Score": "1", "Body": "

I just opened a Pelforth Blonde found lurking in the back of my fridge. Best Before Date February 2020. It looks a little darker than I remember. I'm not a beer drinker; it was some my late husband must have put in there. As usually drink cold blonde beer with grenadine (something a hotel owner in France introduced to me to as a long drink) and it tastes fine and refreshing, but I’m no beer expert.

\n", "OwnerUserId": "13704", "LastEditorUserId": "6255", "LastEditDate": "2021-07-25T00:56:52.140", "LastActivityDate": "2021-07-25T00:56:52.140", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9357"}} +{ "Id": "9357", "PostTypeId": "1", "AcceptedAnswerId": "9358", "CreationDate": "2021-07-23T17:27:20.247", "Score": "2", "ViewCount": "56", "Body": "

Before the craft beer craze, most consumption was mass produced bottles and cans that seemed to last forever.

\n

New England or "Hazy" IPAs tend to have a short shelf life of less than 2 months. Are there any ways to increase the shelf life of these beers?

\n", "OwnerUserId": "13710", "LastActivityDate": "2021-07-23T19:49:50.867", "Title": "Ways to avoid Skunked beer?", "Tags": "specialty-beers craft-beers aging skunking", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9358"}} +{ "Id": "9358", "PostTypeId": "2", "ParentId": "9357", "CreationDate": "2021-07-23T18:21:48.240", "Score": "2", "Body": "

How Can You Avoid Skunky Beer?

\n

The best way to avoid skunking of beer is as follows:

\n
    \n
  • Block out as much UV light as possible in all stages within the beer brewing process and storage.
  • \n
  • Use brown bottle in lieu of clear or green bottles.
  • \n
  • Use of opaque keys are best!
  • \n
  • Keep bottled beer out of direct sunlight.
  • \n
  • Storing in a cool or cold environment, like in a refrigerator.
  • \n
\n

A skunked beer tastes like a skunk smells (not good). But what makes beer skunky? It’s commonly thought that subjecting beer to variations in temperature will skunk it. However, skunkiness in beer is caused not by heat, but by light.

\n
\n

What Causes Skunky Beers

\n

Contrary to popular belief, beer does not become skunked after exposure to heating and cooling – unless you’re regularly boiling and nearly freezing your beer. (It does, however, increase the speed at which your beer oxidizes, leading to a slightly less offending wet cardboard flavor.) Instead, the main culprit behind skunking is the UV rays of the sun.

\n

Over time and in large enough quantities, the blue spectrum of UV light interacts with the hop compounds (isohumulones) in your beer, breaking them down and lending an electron to an amino acid. The result is the dreaded MBT compound that gives your beer that skunked flavor.

\n

How Can You Avoid Skunky Beer?

\n

The first step in skunky beer prevention occurs at the brewery – brewers choose packaging that helps to block out UV light and avoid skunking altogether. Kegs and cans are completely opaque and are the best way to prevent skunking, and brown bottles come in a close second – there’s a reason most craft beers are packaged in these two containers. Green and clear bottles let in the most UV light, and the beer contained within is thus the most susceptible to producing MBT.

\n

Skunking can happen at any time– usually during the warehousing or in-store portions of your beer’s trip to your fridge. That means there isn’t a lot you need to do to prevent skunking except purchase beers that come in cans or brown bottles. If your favorites are packaged in clear or green bottles, just do your best to keep your beer out of the sun.

\n

All You Ever Wanted to Know About Skunky Beer – and How to Avoid It

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-07-23T19:49:50.867", "LastActivityDate": "2021-07-23T19:49:50.867", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9359"}} +{ "Id": "9359", "PostTypeId": "1", "AcceptedAnswerId": "9360", "CreationDate": "2021-07-27T14:25:30.783", "Score": "2", "ViewCount": "381", "Body": "

I have a cocktail recipe that calls for Patron XO Cafe. I try to avoid buying bottles of super speciality liquors if I don't anticipate I'll use them frequently. I do have Kahlua on hand which I know is rum based vs tequila based but since they are both coffee liquors I wondered if that would be an appropriate swap?

\n", "OwnerUserId": "12012", "LastActivityDate": "2021-07-28T12:26:33.280", "Title": "Is it appropriate to substitute Kahlua in lieu of Patron XO Cafe?", "Tags": "cocktails substitutions", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9360"}} +{ "Id": "9360", "PostTypeId": "2", "ParentId": "9359", "CreationDate": "2021-07-28T12:26:33.280", "Score": "2", "Body": "

You can definitely substitute Patron XO Cafe with Kahlua concerning the coffee flavor for your drink.

\n

But...

\n
    \n
  1. You'll lack a Tequila taste
  2. \n
  3. Kahlua has a lower ABV
  4. \n
\n

You can try to compensate this by adding a small amount of tequila, if you have a regular one available. So, instead of buying Patron XO Cafe, use Kahlua and a small amount of simple Tequila.

\n", "OwnerUserId": "8518", "LastActivityDate": "2021-07-28T12:26:33.280", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9361"}} +{ "Id": "9361", "PostTypeId": "1", "AcceptedAnswerId": "9363", "CreationDate": "2021-07-28T12:48:07.200", "Score": "2", "ViewCount": "120", "Body": "

My partner and I heard a loud pop one evening that we assumed was a car backfiring in front of our home. It turns out that noise was a can of beer in a case I had ordered for a virtual tasting event that had exploded.

\n

I assume this happened due to the heat. We do have AC units throughout our apartment. I have another case coming soon and I won't be able to fridge all the beers immediately because the tasting event is several weeks away and I need the room in the fridge for other things. Does anyone know how I can prevent cans from exploding if I'm not able to refrigerate them immediately?

\n", "OwnerUserId": "12012", "LastActivityDate": "2021-07-30T15:25:38.273", "Title": "How can I prevent beer cans from exploding?", "Tags": "storage", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9363"}} +{ "Id": "9363", "PostTypeId": "2", "ParentId": "9361", "CreationDate": "2021-07-30T15:25:38.273", "Score": "2", "Body": "

How can I prevent beer cans from exploding?

\n

The best way is to keep the beer cans out of direct sunlight and store them in a cool environment as best as possible.

\n

Normally cans of beer should not explode and your situation as mentioned in the comments is an isolated event. Your can may have been defective in some way or became damaged during transport.

\n

I have had cans explode on me by accidentally dropping them in a hard surface floor, so I would try to avoid that too.

\n

Some believe that overcarbonation is also another issue apparently, especially with a few craft beers in cans.

\n
\n

Beer is the age-old summer favorite drink for barbecues, bars, and trips to the beach. But recent summers have seen a fair share of critical injuries caused by exploding beer bottles and cans. A New York City bartender at The Frying Pan restaurant recently filed a negligence lawsuit against brewing giant Constellation Brands Inc., and others after he was left permanently blinded when an unopened Corona bottle exploded. This incident comes on the heels of several other beer product-related injuries, including recent reports of craft beer cans exploding. Although these may seem like straightforward product liability cases, the complexity of the beer fermentation process and the storage precautions consumers are expected to take beg the question of who is liable for these safety hazards.

\n

According to Draft Magazine, beer bottles tend to explode as a result of [**overcarbonation. If a beer is bottled before the fermentation process is complete, the resulting carbon dioxide has the potential to build up enough pressure to break glass and cause serious injuries. - Exploding Beer Bottles And Cans: A New Wave Of Product Liability Litigation

\n
\n

Generally speaking though such cases are extremely rare. And again, in normal air conditioned home cans should not explode. If you do not have air conditioning, use your refrigerator, at least for the craft beers, just to be on the safe side.

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-07-30T15:25:38.273", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9364"}} +{ "Id": "9364", "PostTypeId": "1", "AcceptedAnswerId": "9366", "CreationDate": "2021-08-04T16:30:10.627", "Score": "3", "ViewCount": "68", "Body": "

I love entertaining and try to keep our home bar stocked with liquors needed for the most commonly requested cocktails. I also try to keep beer, wine, soda, and seltzers on hand when I know people will be dropping over. I love playing bartender for my guests. I have a number of friends who do not drink alcohol. Aside from sodas, teas, and waters, I'd love to have more festive options on hand for guests who don't drink. I've had someone recommend Seedlip to me which I haven't tried yet. I'm curious if others have experience with non-alcoholic spirits. What do you recommend investing in for a home bar so that guests who don't partake in drinking feel more included?

\n", "OwnerUserId": "12012", "LastActivityDate": "2021-08-07T20:02:36.013", "Title": "What are good alcohol-free staples to include in a home bar?", "Tags": "non-alcoholic", "AnswerCount": "2", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9365"}} +{ "Id": "9365", "PostTypeId": "2", "ParentId": "9364", "CreationDate": "2021-08-04T20:48:42.183", "Score": "0", "Body": "

O'Doul's Original Non-Alcoholic Beer is very, very popular here in BC. My father-in-law drinks it quite often, as well as many of my friends and associates.

\n

\"O'Doul's

\n

If you’re interested in truly "non-alcoholic", in lieu of “alcohol-free” there are also many Mocktail recipes that won’t disappoint you in a home bar!

\n

If you would like a juice recommendation. Then Oasis Pineapple Juice is one I would gladly give. 100% juice and no sugar added! Besides, it tastes great.

\n

\"Oasis

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-08-07T20:02:36.013", "LastActivityDate": "2021-08-07T20:02:36.013", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9366"}} +{ "Id": "9366", "PostTypeId": "2", "ParentId": "9364", "CreationDate": "2021-08-06T06:43:12.183", "Score": "3", "Body": "

There are several zero-proof brands out now that make quite tasty pseudo-liquors (Ritual is one excellent brand). Zero proof gin is essentially a botanical "tonic" that can you use 1-to-1 like traditional gin in a cocktail. If you like to play bartender, you might enjoy getting a small collection of zero-proof liquor alternatives.

\n

In addition to the ones marketed as "zero proof gin/whiskey/etc", You can find many other zero proof alternatives to traditional liquors that can help you build lower proof, or zero proof cocktails. Versin Aperitif can be substituted for sweet vermouth; San Pellegrino sanbitter makes a decent Campari substitute. Fee Brothers and some other brands have zero proof bitters in a wide variety of flavors. You might find that if you search for your favorite cocktail ingredients specifically, you'll find decent alternatives without the punch.

\n

It's also important to pay attention to labels to match your guests' preferences & needs. For example, Angostura bitters are 45% alcohol, but you normally just use a few drops. If you want ZERO proof (what the US FDA calls “alcohol-free”), steer clear of them (ex, they are haram for Muslims). But if you just want very low alcohol (what the US FDA calls “non-alcoholic”), then it might not matter. "Non-alcoholic" beer usually has a small amount of alcohol, which the FDA considers an insignificant amount, but your guests may feel differently.

\n", "OwnerUserId": "13564", "LastEditorUserId": "13564", "LastEditDate": "2021-08-06T15:57:36.880", "LastActivityDate": "2021-08-06T15:57:36.880", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9367"}} +{ "Id": "9367", "PostTypeId": "1", "AcceptedAnswerId": "9369", "CreationDate": "2021-08-07T18:49:04.633", "Score": "3", "ViewCount": "84", "Body": "

Among the greater joys in my life is the recent opening of a whiskey bar within walking distance of my house, and I'm now a regular at said bar, tasting and experimenting different ways of enjoying this fine spirit.

\n

Recently I chose to have my whiskey served over ice. The bartender pulled out a large cube from the freezer and let it sit in the glass for a minute or two before pouring the drink over it. His stated reason was that "it would melt less" in my glass.

\n

As I make my own whiskey balls at home, I've been searching for any scientific basis for this claim to try to confirm this claim, but haven't found anything. I did find a link suggesting this practice was to prevent cracking:

\n
\n

it’s very important to temper the ice before use. That means let the ice sit out on the counter for about 5 minutes or until the freezer frost disappears. Ice is too hard and too cold when it first comes out of the freezer. If you pour your favorite spirit on the silicone mold prepared ice ball ... it will crack. By introducing something room temperature to the ice, you condition the outer part of the ice before you make it into an ice ball or put in your drink. You get a perfect ice ball every time.

\n
\n

While I have observed my ice cracking as described, it doesn't bother me, and seems purely aesthetic. I can thus understand how in a service environment such as a bar, presentation is important.

\n

Does cracking ice impact the drink in any other way? From the description above, it seems the "freezer frost" disappears somewhere; would this frost end up as water in my glass, as the bartender claimed, in addition to the cracking? Does it have an impact on how quickly the drink is chilled?

\n", "OwnerUserId": "11627", "LastEditorUserId": "5064", "LastEditDate": "2021-08-07T19:42:58.133", "LastActivityDate": "2021-08-08T02:08:48.537", "Title": "Why does/should my bartender let the ice cube sit before pouring?", "Tags": "whiskey serving bourbon", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9369"}} +{ "Id": "9369", "PostTypeId": "2", "ParentId": "9367", "CreationDate": "2021-08-08T02:08:48.537", "Score": "3", "Body": "

I don't have an answer based on prior knowledge, but based on the info in your question about preventing cracking, it makes sense that it would also prevent ice melt.

\n

Each crack increases the surface area of the ice. If you think back to your Chemistry class in school, you can increase phase change and chemical reactions through three main physical ways: increasing surface area, application of heat, and by shaking/stirring.

\n

The warmer liquor will (eventually) work into the cracks, and increase ice melt due to increased contact with the larger surface area.

\n

Is that increased ice melt due to cracks going to be significant enough that you notice when drinking your whiskey? I can't say. Even if I could point to a scientific study that quantified the difference, it's ultimately down to your personal taste.

\n", "OwnerUserId": "13564", "LastActivityDate": "2021-08-08T02:08:48.537", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9370"}} +{ "Id": "9370", "PostTypeId": "1", "AcceptedAnswerId": "9371", "CreationDate": "2021-08-08T06:32:31.777", "Score": "3", "ViewCount": "133", "Body": "

I'm making reservations at a nice place on the bay where I'm going to go on a date. I'm at the point in the online reservation where I can write requests in a text field. Is it appropriate to request wine at the table upon arrival? I want to make it seem like I am beyond prepared for this date.

\n", "OwnerUserId": "13785", "LastEditorUserId": "5064", "LastEditDate": "2021-08-08T15:57:58.450", "LastActivityDate": "2021-08-25T11:59:40.240", "Title": "Is it appropriate to request a bottle of wine at the table upon arrival at a dinner reservation?", "Tags": "wine pairing", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9371"}} +{ "Id": "9371", "PostTypeId": "2", "ParentId": "9370", "CreationDate": "2021-08-08T15:51:11.367", "Score": "3", "Body": "

Is it appropriate to request a bottle of wine at the table upon arrival at a dinner reservation?

\n

Absolutely, but make sure your guest would be comfortable with your intended instructions to the particular restaurant of your choice. Your setting the mood in a rather noble way.

\n

Make sure that such would not offended your dinner guest and make sure you know the wine varieties preferred of your intended date.

\n

Wine is supposed to relax people. So why not do the ordering ahead of time, especially wine in a public space!

\n

Also make sure your wine will pair as close as possible with the intended meal that is to be served.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-08-08T15:57:11.083", "LastActivityDate": "2021-08-08T15:57:11.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9372"}} +{ "Id": "9372", "PostTypeId": "2", "ParentId": "9370", "CreationDate": "2021-08-08T22:40:55.253", "Score": "2", "Body": "

It's not completely inappropriate. Restaurants are part of the service industry, and love to please customers. Typical advance requests often include preferred seating locations, flowers, notable special occasions, etc.

\n

Requesting wine prior to the meal is unusual, however, and if it's an upscale restaurant, part of the service is bringing the wine to the table and opening it for you, having you taste it, etc. Requesting a "pour it yourself" bottle could possibly be awkward.

\n

If you truly want to impress, visit the restaurant ahead of time, ask to speak to the Sommelier, and offer a significant tip in advance with the details of your reservation, and have him/her meet you upon arrival to provide the requested bottle.

\n

Alternately, investigate the restaurant's corkage fee, and find a wine you want to bring yourself, letting the Somm open it, decant it, and pour it for you.

\n", "OwnerUserId": "11627", "LastActivityDate": "2021-08-08T22:40:55.253", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9373"}} +{ "Id": "9373", "PostTypeId": "2", "ParentId": "7551", "CreationDate": "2021-08-13T05:36:15.610", "Score": "2", "Body": "

"The thing most people don't know is that light red wines like pinot noir and Beaujolais should be served at cellar temperature. Last time I was in Paris (France) I was surprised at how cold they served their red wines."

\n

Good observation. The other week I was in a conversation with a friend. She liked the Pinot Noir that I brought to the gathering, but that it could have been cooled down more. She studied enology at UC Davis and was told there to bring out red wine at 52 degrees. That sounds like cellar temperature to me. One can always warm up the wine in the glass with one's hands to bring it up to the temperature desired. The problem with serving warmer wine is that the alcohol is more pronounced, giving wine a hot flavor component.

\n", "OwnerUserId": "13800", "LastActivityDate": "2021-08-13T05:36:15.610", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9374"}} +{ "Id": "9374", "PostTypeId": "6", "CreationDate": "2021-08-16T20:13:12.433", "Score": "0", "Body": "

Ken Graham

\n

I am more than willing to fulfill the need as a moderator for this site.

\n

I am regularly the most regular person on the site and often flag posts that need attention in whatever domain!

\n

I am willing to answer any questions that may arrive hither-forth!

\n

I am also a moderator on another Stack Exchange site.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-08-27T06:57:29.530", "LastActivityDate": "2021-08-27T06:57:29.530", "CommentCount": "0", "CommunityOwnedDate": "2021-08-16T20:13:12.433", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9375"}} +{ "Id": "9375", "PostTypeId": "6", "CreationDate": "2021-08-16T20:41:46.567", "Score": "0", "Body": "

Rory Alsop

\n

I don’t have the highest rep on this site, but as well as having worked for a distillery, managed real ale and cocktail bars, and distilled my own whisky and gin, I have also been a moderator on various Stack Exchange sites for over 10 years, so I know how the systems work, the behaviours needed, and the patience and tolerance to help a site grow without troubles.

\n", "OwnerUserId": "187", "LastEditorUserId": "187", "LastEditDate": "2021-08-16T20:41:46.567", "LastActivityDate": "2021-08-16T20:41:46.567", "CommentCount": "2", "CommunityOwnedDate": "2021-08-16T20:41:46.567", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9376"}} +{ "Id": "9376", "PostTypeId": "1", "AcceptedAnswerId": "9378", "CreationDate": "2021-08-17T09:16:26.157", "Score": "1", "ViewCount": "176", "Body": "

\"enter

\n

There's this bottle of Blue Label and I wanted to know if it's a limited edition?

\n", "OwnerUserId": "13816", "LastEditorUserId": "5064", "LastEditDate": "2021-08-18T15:07:26.813", "LastActivityDate": "2021-08-18T15:07:26.813", "Title": "Is this 1L bottle of Blue Label a special edition or a regular one?", "Tags": "whiskey alcohol", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9377"}} +{ "Id": "9377", "PostTypeId": "2", "ParentId": "9376", "CreationDate": "2021-08-18T10:20:30.157", "Score": "5", "Body": "

It's not a special edition of Johnnie Walker blue label, it's just a Duty Free Edition, thus the 1 litre size.

\n

The missing "Blended" on the label comes from it's production year. It seems to be from the 70s or 80s, and in that time there was no consistent label regulation for blended malt whiskies. The term "Blended (Malt) Whisky" became part of the scotch regulation in the 90s, before that some distilleries used "Pure Malt", "Vatted Malt" or just "Scotch Whisky".

\n

The same for "Single Malt", as well. Glenfiddich started using this term in the 60s. Before, whiskies that would qualify as a Single Malt were called "Unblended All Malt", for example.

\n

I would recommend buying a current bottling of a Johnnie Walker Blue Label and comparing those two. Should be very interesting to see the development.

\n", "OwnerUserId": "8518", "LastEditorUserId": "5064", "LastEditDate": "2021-08-18T15:05:35.050", "LastActivityDate": "2021-08-18T15:05:35.050", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9378"}} +{ "Id": "9378", "PostTypeId": "2", "ParentId": "9376", "CreationDate": "2021-08-18T14:51:42.807", "Score": "2", "Body": "

Is this 1L bottle of Blue Label a special edition or a regular one?

\n

The bottle in your post is a regular Blue Label Johnnie Walker whiskey.

\n
\n

Blue Label: Johnnie Walker's premium blend. Johnnie Walker Blue Label is blended to recreate the character and taste of some of the earliest whisky blends created in the 19th century. It bears no age statement. Bottles are numbered serially and sold in a silk-lined box accompanied by a certificate of authenticity. It is one of the most expensive blended Scotch whiskies on the market, with prices in the range of US$174 - $450. Over 25 Limited Editions have been released to date.

\n
\n

If it were a limited edition, it would be clearly marked on the bottle a such!

\n

The following image bears this out:

\n

\"Johnnie

\n

Johnnie Walker Blue Label Scotch Whisky Chinese New Year Edition

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-08-18T14:51:42.807", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9379"}} +{ "Id": "9379", "PostTypeId": "1", "AcceptedAnswerId": "9380", "CreationDate": "2021-08-23T04:15:51.110", "Score": "1", "ViewCount": "71", "Body": "

Group of hunting buddies here in BC, are planning have a Sasquatch Day barbecue on October 20!

\n

October 20 is the anniversary of the alleged Patterson–Gimlin film of a real Bigfoot. Hoping to start a new tradition in this neck of the woods!

\n
\n

The footage was shot in 1967 in Northern California, and has since been subjected to many attempts to authenticate or debunk it.

\n

The footage was filmed alongside Bluff Creek, a tributary of the Klamath River, about 25 logging-road miles (40 km) northwest of Orleans, California, in Del Norte County on the Six Rivers National Forest. The film site is roughly 38 miles (60 km) south of Oregon and 18 miles (30 km) east of the Pacific Ocean. For decades, the exact location of the site was lost, primarily because of re-growth of foliage in the streambed after the flood of 1964. It was rediscovered in 2011. It is just south of a north-running segment of the creek informally known as "the bowling alley".

\n

\"Patterson–Gimlin

\n
\n

With the onset of the Covid-19 pandemic, Bigfoot became a part of many North American social distancing promotion campaigns, with the creature being referred to as the "Social Distancing Champion" and as the subject of various internet memes related to the pandemic.

\n

We are cooking up our own version of monster burgers.

\n

Would anyone be able to make a recommendation of what would go well with a Sasquatch Day themed drinks for our barbecue (beer and other drinks ideas are very welcome).

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-08-25T16:53:29.950", "LastActivityDate": "2021-08-25T16:53:29.950", "Title": "Recommendation for a Sasquatch Day barbecue?", "Tags": "wine recommendations pairing cocktails drink", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9380"}} +{ "Id": "9380", "PostTypeId": "2", "ParentId": "9379", "CreationDate": "2021-08-23T14:30:33.567", "Score": "5", "Body": "

A beer that should be relatively easy to find across the United States (and hopefully Canada!) would be Sierra Nevada's Bigfoot Ale. Certainly on target but likely much harder to find outside of Portland, Oregon would by anything by Sasquatch Brewing.

\n

For cocktail fans, while I don't see anything specifically Sasquatch themed, some of the recipes for cocktails involving Monster Energy Drink might fit the bill.

\n", "OwnerUserId": "37", "LastEditorUserId": "37", "LastEditDate": "2021-08-23T14:42:22.470", "LastActivityDate": "2021-08-23T14:42:22.470", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9381"}} +{ "Id": "9381", "PostTypeId": "2", "ParentId": "9379", "CreationDate": "2021-08-23T15:55:11.767", "Score": "2", "Body": "

As a themed idea for wine, you could try Mt. Monster Cabernet Sauvignon. But really, any decent Cabernet Sauvignon would pair well with the burgers.

\n

Other (non-themed) pairings would be any decent Chianti Classico or Syrah.

\n", "OwnerUserId": "13838", "LastActivityDate": "2021-08-23T15:55:11.767", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9382"}} +{ "Id": "9382", "PostTypeId": "2", "ParentId": "9379", "CreationDate": "2021-08-23T23:29:28.873", "Score": "2", "Body": "

How about trying Sasquatch Stout

\n
\n

For the best experience, pair our Sasquatch Stout with:

\n
    \n
  • Smoked Brisket

    \n
  • \n
  • Pulled Pork Sandwich

    \n
  • \n
  • French Onion Soup

    \n
  • \n
  • Oysters

    \n
  • \n
  • Tiramisu

    \n
  • \n
\n

\"Sasquatch

\n
\n

Kokanee beer labels shows a man or Sasquatch standing on top of one of the peaks. The entity is not in the pictures on Kokanee's box packaging. He appears only on the cans or bottles themselves, and is located in one of five various spots on bottles, and in different positions on different cans. This mysterious image appears on 5 out of the 6 different marketing labels.

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-08-25T06:53:05.553", "LastActivityDate": "2021-08-25T06:53:05.553", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9383"}} +{ "Id": "9383", "PostTypeId": "2", "ParentId": "9370", "CreationDate": "2021-08-25T11:59:40.240", "Score": "3", "Body": "

I think the restaurant will be fine with it (hospitality staff are used to dealing with far more unusual requests than this); the question is really what your date will think, which is perhaps more of an interpersonal skills question.

\n

How about asking for some good sparkling wine? You won't know what wine you want to have with the meal until you've chosen dishes, but a bit of bubbly beforehand is universally compatible! Champagne is the traditional choice to impress, Prosecco is more relaxed and fun, Cava, to me, has an unfair image of being a cheapskate's champagne, English sparkling wine marks you out as an innovator (or eccentric), and there are many others.

\n

You could ask for a glass each to be brought to the table the moment you arrive, or for there to be a bottle waiting for you on ice. I would ask for a half-bottle - a whole bottle would be a lot to get through before your starter, unless you are dating Winston Churchill.

\n", "OwnerUserId": "92", "LastActivityDate": "2021-08-25T11:59:40.240", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9384"}} +{ "Id": "9384", "PostTypeId": "1", "CreationDate": "2021-08-29T12:40:46.647", "Score": "2", "ViewCount": "31", "Body": "

How much of an impact do yeasts strains have on their [beer] products? Is this a significant game changer?

\n

I want to craft delicious fermented foods. Beer, bread and pizza are a few of my motives.

\n

I have various (German) beers I absolutely love that I would like to propagate a culture of yeast from to make these foods and beverages. With the impression that these tasty beer's yeast cultures could be a factor that would reflect in the tastiness of these products.

\n

My concerns are how much of a difference propagating such yeast strains are VS. other factors of the product's various ingredients. Mainly, Will I notice a big difference in the individual yeast cultures alone, aside from the other ingredient factors?\nOr does it not matter as much as the other ingredients?

\n", "OwnerUserId": "13856", "LastActivityDate": "2021-09-03T13:38:43.517", "Title": "Propagating a Beer Yeast Culture to other applications", "Tags": "taste yeast", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9385"}} +{ "Id": "9385", "PostTypeId": "2", "ParentId": "9351", "CreationDate": "2021-08-29T13:19:08.747", "Score": "1", "Body": "

The one that gives the "buzz" is one that obviously has THC. Although keep in mind the ingestion via drinking is going to have least immediate effect, vs "in comparison to smoking weed"

\n

I also presume that a cold/chilled beverage is going to solidify the THC crystals, or trichomes, and may take even longer for body to absorb. But probably not too long as body heat will warm it soon enough.

\n

Perhaps the more Alcohol content it has, it can keep the THC in a "dissolved" state. I'm guessing the "Infused" is the weed/THC added later, vs brewing with the weed already in it.

\n

Taste? IDK.

\n", "OwnerUserId": "13856", "LastEditorUserId": "5064", "LastEditDate": "2021-08-31T15:07:32.847", "LastActivityDate": "2021-08-31T15:07:32.847", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9386"}} +{ "Id": "9386", "PostTypeId": "2", "ParentId": "8156", "CreationDate": "2021-09-01T01:53:34.960", "Score": "0", "Body": "

If he likes the show of using the regular corkscrew (I like the waiter's friend myself) but you don't want to wait for all of the cork flotsam to be "fished out," what not get him a Filter? He can open the wine normally and then pour it through into the decanter while catching any cork pieces that are in the bottle.

\n", "OwnerUserId": "13838", "LastActivityDate": "2021-09-01T01:53:34.960", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9387"}} +{ "Id": "9387", "PostTypeId": "2", "ParentId": "8156", "CreationDate": "2021-09-01T14:25:38.593", "Score": "2", "Body": "

A needle will definitely damage the cork less than a corkscrew will. But a significantly deteriorated cork may drop some pieces into the wine regardless of how it's removed. I've had great experiences with the gas-injection wine pourers, but I haven't seen or used a gas-injection wine opener.

\n

I'll echo the recommendations for an Ah-So style wine opener, which might be preferred by someone with more traditional tastes. Combine that with a low-profile stainless steel wine strainer (Rabbit makes a good one) for when the wine is corked.

\n", "OwnerUserId": "13476", "LastActivityDate": "2021-09-01T14:25:38.593", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9388"}} +{ "Id": "9388", "PostTypeId": "2", "ParentId": "8156", "CreationDate": "2021-09-01T16:59:26.860", "Score": "0", "Body": "

My thought is to buy a new cork that is top of the line and made to last for a long time. Then inject pure argon into the bottle before putting the cork into it. In the wine industry, pure argon is often used to top off barrels and vessels containing wine. Look up a local amateur wine making club and you will be sure to find somebody wanting to help the cause.

\n", "OwnerUserId": "13800", "LastEditorUserId": "13800", "LastEditDate": "2021-09-01T22:44:22.190", "LastActivityDate": "2021-09-01T22:44:22.190", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9389"}} +{ "Id": "9389", "PostTypeId": "1", "CreationDate": "2021-09-02T17:52:34.443", "Score": "3", "ViewCount": "95", "Body": "

I am a relative newbie in terms of drinking... I don't know too much about different types of beers (or different types of other alcohols). I only drink occasionally, so when I find something I like, I stick with it - which means I've mostly avoided this problem until now. But I want to branch out from what I know so that I can try new things and learn more.

\n

Say I'm at a bar, and looking at their drinks menu or seeing what's on tap. Assuming there are names listed for the beers, but not descriptions of their flavor/taste, how can I figure out what a beer tastes like before ordering/trying it?

\n

I know that many IPAs are bitter (which I'm not a fan of), and I know that the wheat beers I've had are generally less bitter (which I like more)... But I don't know too much about different kinds of beer (or why they taste the way they taste) besides that. I'm interested in learning more.

\n", "OwnerUserId": "13851", "LastEditorUserId": "13851", "LastEditDate": "2021-09-02T18:25:38.637", "LastActivityDate": "2021-09-05T15:34:43.210", "Title": "How can I figure out what a beer tastes like based on the name (i.e. before ordering/trying it)?", "Tags": "taste flavor terminology", "AnswerCount": "2", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9390"}} +{ "Id": "9390", "PostTypeId": "2", "ParentId": "9389", "CreationDate": "2021-09-03T00:47:32.453", "Score": "4", "Body": "

One good resource is BeerAdvocate. Untappd is another, but you need to create an account for that site. BeerAdvocate has a whole section on beer styles along with reviews and ratings of specific beers. In particular you might like saisons or farmhouse ales. Look for the IBU listing on the beer review. IBU's below 30 are probably more to your liking if you don't like bitterness.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-09-03T00:47:32.453", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9391"}} +{ "Id": "9391", "PostTypeId": "2", "ParentId": "9384", "CreationDate": "2021-09-03T13:38:43.517", "Score": "2", "Body": "

Yeast can change everything in a beer.

\n

The french brewery le père l'amer released 2 beers (or 4) on which they brewed one batch of beer, splitted it in 2 and put one yeast on the first part and an other yeast on the second.

\n

This made 2 beers who looked, smelled and tasted completely differently (and they did not have the same percentage of alcohol too).

\n

Here they are on untappd :

\n

yeast battle #1 verdant VS yeast battle #1 WLP644

\n

yeast battle #2 dry english VS yeast battle #2 london fog

\n", "OwnerUserId": "11663", "LastActivityDate": "2021-09-03T13:38:43.517", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9392"}} +{ "Id": "9392", "PostTypeId": "2", "ParentId": "4952", "CreationDate": "2021-09-03T20:39:25.273", "Score": "1", "Body": "

I used to have the opinion that it didn't really matter that much whether wine used in cooking was a great wine or not. I admit I was somewhat biased as I didn't want to waste good wine when I could drink it.

\n

After making really great award winning wine on a commercial basis and having extra wine on hand (Pinot Noir, Zinfandel, Port, etc.), my thoughts have changed. My wife & I have found, along with others that have cooked with us, that there is a big difference in using great wine in cooking! I'm a believer!

\n", "OwnerUserId": "13800", "LastActivityDate": "2021-09-03T20:39:25.273", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9394"}} +{ "Id": "9394", "PostTypeId": "2", "ParentId": "9389", "CreationDate": "2021-09-05T15:34:43.210", "Score": "4", "Body": "

How can I figure out what a beer tastes like based on the name (i.e. before ordering/trying it)?

\n

The short answer is no.

\n

Personal experience tells me that it is not possible to figure out how a beer will taste like without trying it first.

\n

For example, I have tried some chocolate beers. Some have notes of that I consider powdered cocoa chocolate, while others will have a taste somewhat closer to milk chocolate. Look are deceiving here.

\n

Some liquor stores where I live will graciously let you buy one bottle or can to try out in order to be able to see if you like the beer or not.

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-09-05T15:34:43.210", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9395"}} +{ "Id": "9395", "PostTypeId": "2", "ParentId": "9347", "CreationDate": "2021-09-07T10:13:30.187", "Score": "4", "Body": "

Obviously this is a matter of opinion, but I shall try and answer anyway.

\n

Personally, I got to know Vinho Verde from spending a lot of time in Portugal on holiday. It's a perfect wine for sunny weather and sipping by the poolside as it tends to be relatively low alcohol. I have only ever tried white (which actually does have a slight greenish tinge to it).

\n

In terms of food, I associate it with light lunches of salad or fresh sea-food. Sardines are very popular in Portugal and make a great accompaniment.

\n", "OwnerUserId": "8672", "LastActivityDate": "2021-09-07T10:13:30.187", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9397"}} +{ "Id": "9397", "PostTypeId": "1", "AcceptedAnswerId": "9400", "CreationDate": "2021-09-12T03:42:58.550", "Score": "3", "ViewCount": "90", "Body": "

Wikipedia says:

\n
\n

Some brandies have caramel colour and sugar added to simulate the appearance of barrel aging.

\n
\n

My question is: Does real barrel aging add sugar to liquors, and if so, how much? Is the amount proportional to the age?

\n", "OwnerUserId": "953", "LastActivityDate": "2021-09-15T20:31:47.690", "Title": "Does barrel aging add sugar to liquors?", "Tags": "aging liquor nutrition science", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9398"}} +{ "Id": "9398", "PostTypeId": "1", "CreationDate": "2021-09-12T08:56:44.060", "Score": "1", "ViewCount": "51", "Body": "

I am quite new to vodka and I wonder if their target market plays a role on any aspect of their craft that can affect their taste.

\n

Do you know, based on you experience I guess, if the vodkas made for exporting to other countries are generally better or worse than vodkas made for the russian market ?

\n", "OwnerUserId": "13901", "LastActivityDate": "2021-09-17T16:11:41.540", "Title": "Is vodka made for exportation generally less good?", "Tags": "vodka", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9400"}} +{ "Id": "9400", "PostTypeId": "2", "ParentId": "9397", "CreationDate": "2021-09-14T09:15:15.340", "Score": "5", "Body": "

Barrel aging does add sugar to the liquid (wine, whisky, etc.) that is aged in it.\nIn the toasting process of a barrel, the sugar in the wood caramelizes (cellulose is a sugar polymer and breaks into sugar during the charring process). The liquid has contact with this "caramel", and due to additive maturation, some of it goes into the liquid.

\n

The amount of sugar heavily depends on the toasting grade, time of aging and time a barrel was already used, but in general, it is very low. Sugar concentration analyses of whisky showed an amount ranging from 150 mg/l to 400 mg/l which is too low for human perception.\nIf the barrel had some previous contents (sherry for example), the sugar concentration can be much higher.

\n

See for details:

\n

"Analysis of Barrel-Aged Kentucky Bourbon Whiskey by Ultrahigh Resolution Mass Spectrometry" - Yang 2020

\n

"The effect of cask charring on Scotch whisky maturation" - Clyde 1993

\n

"Spectrophotometric determination of caramel content in spirits aged in oak casks" - Bosocolo 2002

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2021-09-15T20:31:47.690", "LastActivityDate": "2021-09-15T20:31:47.690", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9401"}} +{ "Id": "9401", "PostTypeId": "2", "ParentId": "9398", "CreationDate": "2021-09-15T16:42:32.570", "Score": "1", "Body": "

Is vodka made for exportation generally less good?

\n

Generally speaking I do not believe so. Nevertheless, one should know the vodkas you are buying!

\n
\n

To begin with, why is it that for most people the difference between a good and bad vodka is practically indistinguishable? Well, part of that has to do with regulation. See, in many parts of the world, there is specific regulations designed to ensure that vodka is “without distinctive character, aroma, taste or colour.” That seems to lay the ground work for an industry that should be pretty much uniform across the board right? Well, not quite.

\n

First there is going to be a difference based on what the vodka is being distilled from. Vodka is traditionally made by distilling cereal grains or potatoes that have been fermented. Generally rye and wheat varieties are usually considered higher quality, and therefore you’ll find these bottles to be higher in price point. However, some vodkas can be made from ingredients like molasses, soybeans or rice, and on the rare occasion they’re made from byproducts of oil refining or wood pulp processing. That doesn’t sound appealing does it?

\n

What tends to happen with the “cheaper” varieties is that many of the impurities of the refining process linger, leaving an unpleasant taste or worse yet an unpleasant hangover. Don’t be fooled by the amount of times a vodka is distilled either; it doesn’t matter if a vodka made with poor ingredients is distilled three or more times, you’ve still started with a poor product.

\n

Now, don’t take this to mean that “bad” means “cheap”, or even “good” means “expensive”; the reality is there are a number of great vodkas, made with quality ingredients that fall across all price points. Bad vodka is just poorly made, but good vodka doesn’t have to be expensive. What tends to affect the price point more than anything is the marketing around a vodka, so that “ultra premium” vodka you’re purchasing is more of a lifestyle choice than anything.

\n

All that being said, there are a few excellent vodkas you can rely on when heading into the liquor store. Each serve their own purpose, whether it’s a decent inexpensive bottle for cocktails, or something to act as a showpiece. - Is There Really a Difference Between “Good” and “Bad” Vodka?

\n
\n

Most vodkas on the international market do not fit into the above definition of less good or even bad compared to domestically sold vodkas. I can find no evidence to support a response in the affirmative to this question.

\n

Thus vodkas made for exportation are generally quite good vodkas. In any case, know the vodkas you are buying and read up on them.

\n

Vodkas are rated online for one’s interest, such as the following:

\n\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-09-17T16:11:41.540", "LastActivityDate": "2021-09-17T16:11:41.540", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9403"}} +{ "Id": "9403", "PostTypeId": "1", "AcceptedAnswerId": "9405", "CreationDate": "2021-09-16T03:10:12.157", "Score": "1", "ViewCount": "47", "Body": "

Campari or Aperol - which is sweeter or maybe less bitter than the other one?

\n", "OwnerUserId": "13916", "LastEditorUserId": "187", "LastEditDate": "2021-09-16T15:57:06.050", "LastActivityDate": "2021-09-16T16:49:07.170", "Title": "Campari or Aperol - the sweeter one?", "Tags": "taste spirits cocktails alcohol-level colour", "AnswerCount": "2", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9404"}} +{ "Id": "9404", "PostTypeId": "2", "ParentId": "9403", "CreationDate": "2021-09-16T15:57:42.100", "Score": "3", "Body": "

Aperol is much sweeter, in my opinion. My wife thinks both are too bitter for her.

\n

YMMV

\n", "OwnerUserId": "187", "LastActivityDate": "2021-09-16T15:57:42.100", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9405"}} +{ "Id": "9405", "PostTypeId": "2", "ParentId": "9403", "CreationDate": "2021-09-16T16:49:07.170", "Score": "1", "Body": "

Campari or Aperol - the sweeter one?

\n

Aperol is clearly the sweeter of the two and maybe somewhat less bitter at the same time.

\n
\n

Campari vs Aperol: what’s the difference?

\n

Campari and Aperol are Italian bitter liquors with several key differences. Here’s a breakdown:

\n

Campari overview

\n

Origin: Campari was invented in Italy in 1860 by Gaspare Campari in Novare, Italy. Because it’s got such a long history, it’s a featured ingredient in classic cocktails like the Negroni.

\n

Colour: Campari is bright red in color. Fun fact: The bright red color of Campari originally came from a dye made of crushed insects! That’s no longer in the modern recipe, so it shouldn’t deter you from grabbing a bottle.

\n

Flavour: Campari tastes very bitter, with sweet notes like cherry, clove, cinnamon and orange peel.

\n

Alcohol content: Campari is 48 proof or 24 percent ABV, almost twice that of Aperol.

\n

Aperol overview

\n

Origin: Aperol was also invented in Italy, but much later in 1919. Brothers Luigi and Silvio Barbieri created this aperitif in Padua, Italy. The company that sells Campari, Gruppo Campari, bought Aperol in the 1990s.

\n

Colour: Aperol is a bright orange color: it’s very distinct from Campari.

\n

Flavour: The flavor of Aperol is sweeter and more balanced than Campari, with notes of citrus and herbs.

\n

Alcohol content: Aperol has a lower alcohol content than Campari: it is 22 proof or 11 percent ABV.

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2021-09-16T16:49:07.170", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9406"}} +{ "Id": "9406", "PostTypeId": "1", "CreationDate": "2021-09-18T17:25:06.170", "Score": "2", "ViewCount": "149", "Body": "

Wikipedia says:

\n
\n

Some brandies have caramel colour and sugar added to simulate the appearance of barrel aging.

\n
\n

I wonder how one might know which ones do and do not have added sugar? Would buying only cognacs "imported from France" (in the US) guarantee that they don't have added sugar?

\n", "OwnerUserId": "953", "LastActivityDate": "2021-09-28T05:36:21.963", "Title": "Do cognacs \"imported from France\" have added sugar?", "Tags": "spirits ingredients aging liquor cognac", "AnswerCount": "3", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9407"}} +{ "Id": "9407", "PostTypeId": "2", "ParentId": "7393", "CreationDate": "2021-09-18T20:44:56.867", "Score": "1", "Body": "

Vodka has a calorie density of 231 kcal per 100g. It's known empirically that a person gains 1 lb of weight for every extra 3500 kcal of food he consumes (4000 kcal per lb is also the calorie density of fat)

\n

So the thermodynamics of it is as follows: for every 100g of vodka you consume, you gain 30g of fat. As a rough, and easy to remember estimate, the ethanol you consume becomes fat at an almost 1:1 ratio, by weight.

\n

There will be extra calories in some drinks due to the carbs in them, but the difference is relatively minor compared to the ethanol:

\n

For example, 100g of Pinot Grigio has 83 kcal, and the ethanol in it accounts for 74 kcal.

\n", "OwnerUserId": "953", "LastEditorUserId": "953", "LastEditDate": "2021-09-19T18:12:44.503", "LastActivityDate": "2021-09-19T18:12:44.503", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9408"}} +{ "Id": "9408", "PostTypeId": "1", "CreationDate": "2021-09-18T20:48:59.080", "Score": "2", "ViewCount": "106", "Body": "

You could just keep your vodka/gin in the freezer, and mix it with vermouth. Why do people bother with the ice when making a martini? Ice just waters it down -- and if you do wish to dilute your drink, you can just add water to it.

\n", "OwnerUserId": "953", "LastEditorUserId": "953", "LastEditDate": "2021-09-23T03:50:59.407", "LastActivityDate": "2021-09-23T03:50:59.407", "Title": "Why do people bother with the ice when making a martini?", "Tags": "cocktails vodka gin recipes", "AnswerCount": "1", "CommentCount": "4", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9409"}} +{ "Id": "9409", "PostTypeId": "2", "ParentId": "6838", "CreationDate": "2021-09-19T20:48:49.333", "Score": "2", "Body": "

I do this all the time with tequila, both blanco y reposado (havent tried with a mezcal as I prefer that super Smokey “green” flavor) — you get all of the other subtle aromas/flavors that you would normally miss at room temperature; it also makes for an eeeeasssy and smooth shot. (chilled Casamigos reposado tastes like toasted marshmallows, i don't get that profile when it’s warm)

\n

Also if I pour myself an icy triple shot of tequila, the first shot is smooth and the next sips get more complex as the temp rises..

\n

Life’s too short to make an opinion on something you haven’t tried before… try it all out, pick your favorite and do that when the situation calls for it…

\n

Stay thirsty my friends;)

\n", "OwnerUserId": "13930", "LastActivityDate": "2021-09-19T20:48:49.333", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9410"}} +{ "Id": "9410", "PostTypeId": "2", "ParentId": "9406", "CreationDate": "2021-09-19T20:54:02.063", "Score": "3", "Body": "

It says so on the label. EU regulations require for food additives to be displayed on the products label. Caramel, or E150, is a food coloring and is subject to this rule.

\n

\"enter

\n

I'm not sure about Brandy from non-eu countries. There probably aren't such regulations.

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2021-09-21T07:09:36.880", "LastActivityDate": "2021-09-21T07:09:36.880", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9411"}} +{ "Id": "9411", "PostTypeId": "2", "ParentId": "9406", "CreationDate": "2021-09-20T07:10:59.307", "Score": "0", "Body": "

No,

\n

In France there are very specific rules to make Cognac (if you don't follow those rules you cant't call your drink cognac but just brandy). Those rules are about fermentation, distillation, ageing,... But, from what I know, there is no rules about adding colouring to the end product.\nCertain producers even add caramel colouring just for exportation because in certain countries (asians one for example) it is important to have a dark robe.

\n", "OwnerUserId": "11663", "LastActivityDate": "2021-09-20T07:10:59.307", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9412"}} +{ "Id": "9412", "PostTypeId": "2", "ParentId": "9408", "CreationDate": "2021-09-20T19:14:34.217", "Score": "5", "Body": "

The water, that is melted while stirring, is quite an important part of making a good Dry Martini. It helps smoothen the alcohol and changes the texture of the cocktail (alcohol, water and the mixture of both has a different viscosity)

\n", "OwnerUserId": "8518", "LastActivityDate": "2021-09-20T19:14:34.217", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9413"}} +{ "Id": "9413", "PostTypeId": "2", "ParentId": "9406", "CreationDate": "2021-09-22T18:55:36.457", "Score": "-1", "Body": "

Do cognacs "imported from France" have added sugar?

\n

The short answer is possibly, if they employ certain food colourings.

\n

It is not even possible that some French Cognacs may contain residual sugars.

\n
\n

Residual sugars

\n

Residual sugars, as defined in the FDR, are sugars that are still present in beer after the fermentation process has been completed.

\n
\n

Seeing that cognac is a distilled liquor of 40% makes it very unlikely that the French would add sugar to their finished product. This would additionally alter the taste of the Real McCoy

\n
\n

All Cognac is brandy, but not all brandy can be considered Cognac.

\n

For a brandy to be called Cognac, it must be made from specified grape varieties grown in the AOC (a majority of Ugni Blanc, with small portions of Colombard and Folle Blanche allowed), double-distilled in copper pot stills and aged at least two years in Limousin or Tronçais oak barrels. Cognac must be at least 40 percent alcohol.

\n

The designations you see on Cognac labels—VS (Very Special), VSOP (Very Superior Old Pale) and XO (Extra Old)—are a guarantee of how long a Cognac has been aged. VS indicates that the Cognac has been aged at least two years, VSOP at least four years and XO (Extra Old) at least six years. Most Cognacs are aged much longer, however, featuring a blend of eaux de vie that can date back decades.

\n

Coloring can legally be added to Cognacs to ensure consistency.

\n

Ten Secrets About Cognac

\n
\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-09-28T05:36:21.963", "LastActivityDate": "2021-09-28T05:36:21.963", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9414"}} +{ "Id": "9414", "PostTypeId": "2", "ParentId": "9347", "CreationDate": "2021-09-23T02:06:36.697", "Score": "1", "Body": "

Having had several different types of Vinho Verde from many producers, as a general consensus, it compliments spicy foods(Thai), sushi and seafood. I don't see any reason why one wouldn't enjoy it with a salad or dessert even. My most favorite is a Vinho/Vodka cocktail. Vinho Verde(sparkling), a light tasting vodka, and lime. YUM!!!

\n", "OwnerUserId": "13947", "LastActivityDate": "2021-09-23T02:06:36.697", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9416"}} +{ "Id": "9416", "PostTypeId": "2", "ParentId": "8294", "CreationDate": "2021-10-10T14:29:32.637", "Score": "5", "Body": "

Happy to confirm this is indeed a legitimate Glencairn Glass.

\n

The design on the base stamp was updated in 2019, along with the box design with the latest QR code specifically introduced for those users on "We Chat" in the eastern market. All sellers on amazon linked to our Glencairn Glass store are legitimate resellers.

\n

If you are ever in any doubt please send a message to us through one of our social media platforms, our marketing team will always be happy to answer any of your queries.

\n", "OwnerUserId": "13983", "LastActivityDate": "2021-10-10T14:29:32.637", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9417"}} +{ "Id": "9417", "PostTypeId": "1", "CreationDate": "2021-10-17T13:39:25.827", "Score": "2", "ViewCount": "142", "Body": "

I drank some 11 small bottles of Moretti the other night, with no hangover.

\n

I've noticed though, that if I drink a similar amount of say a Weissbeer, I feel it the next day.

\n

Thus my question: Do cloudy ales produce worse hangovers? And does quality play a part?

\n", "OwnerUserId": "14010", "LastEditorUserId": "5064", "LastEditDate": "2021-10-25T17:36:55.377", "LastActivityDate": "2021-10-25T17:44:33.297", "Title": "Do cloudy beers produce worse hangovers?", "Tags": "hangover", "AnswerCount": "1", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9418"}} +{ "Id": "9418", "PostTypeId": "1", "CreationDate": "2021-10-18T12:07:43.750", "Score": "5", "ViewCount": "172", "Body": "

I've watched many episodes of "Alfred Hitchcock Presents" from the 1950s and early 1960s. In numerous episodes, they are in a fancy room in some house/mansion with a bunch of bottles on a table. It makes me want to replicate that to some extent.

\n

What kind of bottles/brands/kinds of alcoholic beverages should I buy today to roughly equate the top-3 or top-5 or top-10 kinds of booze that they would likely have had in such a setting? I probably will get the cheapest brand/versions, though, but since I know virtually nothing about alcohol, I'm trying to determine what they typically had.

\n", "OwnerUserId": "14013", "LastEditorUserId": "5064", "LastEditDate": "2021-10-19T19:09:25.723", "LastActivityDate": "2021-10-19T19:09:25.723", "Title": "What kind of alcoholic beverages would've been common in a 1950s-1960s USA home?", "Tags": "history recommendations drinking serving united-states", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9419"}} +{ "Id": "9419", "PostTypeId": "2", "ParentId": "9418", "CreationDate": "2021-10-19T02:18:59.627", "Score": "6", "Body": "

What kind of alcoholic beverages would've been common in a 1950s-1960s USA home?

\n

As far as beer goes in 1950, the top brewer was Jos. Schlitz Brewing Co., produced 3.4 million more barrels than the 10th brewer, now-defunct Pfeiffer Brewing Co.

\n

The following chart says it all:

\n
\n

The top brewers by barrelage include Anheuser-Busch, Miller Brewing Company (now MillerCoors), and Pabst Brewing Company, all of which have been ranking in the top 10 since 1950. What’s more striking, however, is how much more substantial the distance between the biggest and 10th-biggest brewers has become.

\n

In 1950, the top brewer, Jos. Schlitz Brewing Co., produced 3.4 million more barrels than the 10th brewer, now-defunct Pfeiffer Brewing Co. By 2017, the distance between top-producing Anheuser-Busch and the 10th-biggest brewer, Mike’s Hard Lemonade Co., was more than 87.5 million barrels.

\n

\"Charted:

\n

Charted: America’s Biggest Brewers by Decade, From 1950 to Now

\n
\n

Lucky Lager was quite popular both in the USA and Canada.

\n
\n

Lucky Lager is an American lager with U.S. brewing and distribution rights held by the Pabst Brewing Company. Originally launched in 1934 by the San Francisco-based General Brewing Company, Lucky Lager grew to be one of the prominent beers of the Western United States during the 1950s and 1960s. In 2019, Pabst announced that the beer brand would be revived and would be brewed by 21st Amendment Brewery, a brewery based in San Leandro.

\n
\n

As far as whisky goes, I.W.Harper was the most popular.

\n
\n

In the late 1950s and 60s, you would be hard-pressed to find a whiskey drinker who hadn’t heard of I.W. Harper bourbon. The brand was one of the products of the Bernheim Brothers distillery; a Kentucky-based operation founded in the mid-1800s, and enjoyed a surge in popularity after World War II. Advertisements boasted that it was "the only bourbon enjoyed in 110 countries," and a favorite of travelers on ocean liners. In the 1969 Bond movie One Her Majesty’s Secret Service, 007 eschews his usual martini for I.W. Harper on ice.- The Return of a Classic American Whiskey

\n
\n

The whiskeys Laphroaig and Bowmore seems to be also quite popular also.

\n
\n

When it comes to the 1960s, there are perhaps two names which stand tall above all others in my book. Laphroaig and Bowmore. These two Islay malts encompass everything that was wonderful about whisky making in this era. Each had fully operational floor maltings using their own source of peat. Each began the decade with direct coal firing and worm tubs; each entered the 1970s converted to steam and condensers. For much of the 1960s each shared the same Glasgow brewery yeast source. Each make would go on to be characterised by intense and almost mesmeric interplay between tropical fruits and peat smoke. Each was sublime from 8 to 40 years of age. Each distillery’s 1960s output fed some stunning younger official bottlings in the 1970s and 1980s. Each distillate is regarded today as some of the finest whisky ever produced. - The most important decade in Whisky: The Legendary 1960s

\n
\n

Back in the day, wine was not cheap and usually drank on specific occasions.

\n

Some mixed drinks became popular in the 1950s:

\n
\n

The Popular Mixed Drinks of the 50s & 60s

\n

By the 1950s, the cocktail had thoroughly permeated American society. Post - WW II soldiers had returned with tales of tropical rum drinks, and gin martinis became all the rage. Although the Manhattan and the Cuba Libre were common drinks for both men and women, sweet dessert-like cocktails, such as the sloe gin fizz and the festively green grasshopper, were ladylike beverages suitable for the novice drinker.

\n

Although today's martinis are made with anything from chocolate liquor to vodka and pomegranate juice, the original cocktail was made only with gin and dry vermouth with a green olive on a fancy toothpick for garnish. The less vermouth, the drier the martini; some said one should only wave the vermouth bottle over the shaker. Switch out the olive for pickled pearl onions and you have a Gibson. Vermouth -- sweet, not dry -- is also a key ingredient in another classic that turns up in old movies: the rye whiskey-based Manhattan. Gin with lemon juice and sugar creates the Tom Collins, a popular summer cooler.

\n

The 1956 Andrews Sisters hit song "Rum and Coca Cola" was a nod to the post-war popularity of rum, which inspired the Cuba Libre, a simple combination of cola and lime. When Polynesian tiki restaurants took off, tropical drinks with umbrellas began a long run of popularity. The Trader Vic's mai tai, made with light rum, orange liqueur, almond syrup, fresh lime juice and rock candy syrup, turned up at cocktail parties alongside the teeny weenies and the bacon-wrapped water chestnuts known as rumaki. Pineapple and coconut flavors made the frothy pina colada a popular poolside rum refreshment. The zombie, a combination of three rums with apricot brandy and a variety of juices, was so powerful that bars often limited customers to two servings.

\n

As co-ed drinking came into vogue, many of the cocktails were designed to attract women. The sumptuous creme de menthe and creme de cacao grasshopper was sometimes blended with ice cream, like a green alcoholic milkshake, and the sweet and fruity sloe gin fizz might as well have come from a soda fountain tap. The simplest of all was the white Russian, a simple mixture of vodka, Kahlua and cream. These drinks were often served either with or in place of dessert.

\n

As the weekend brunch became popular as social gatherings in homes and restaurants, drinks began to take on a healthy disguise. A stick of celery and a couple of olives added to tomato juice and vodka made the bloody Mary cocktail practically a food group of its own. The screwdriver -- simply orange juice and vodka -- provided a good dose of vitamin C, as did its grapefruit juice cousin, the greyhound. Once only known in New Orleans, the elaborate and airy Ramos gin fizz made a comeback for brunch events.

\n
\n

The 7 Best Drinks From the 1950s

\n", "OwnerUserId": "5064", "LastEditorUserId": "5064", "LastEditDate": "2021-10-19T02:26:02.487", "LastActivityDate": "2021-10-19T02:26:02.487", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9420"}} +{ "Id": "9420", "PostTypeId": "2", "ParentId": "9417", "CreationDate": "2021-10-25T17:44:33.297", "Score": "2", "Body": "

Do cloudy beers produce worse hangovers?

\n

I would like to say no.

\n

Having drank many cloudy beers and wines back in the day, they make no difference to me.

\n

Generally speaking, the more alcohol you drink, the more likely you are to have a hangover the next day.

\n
\n

A hangover is a group of unpleasant signs and symptoms that can develop after drinking too much alcohol. As if feeling awful weren't bad enough, frequent hangovers are also associated with poor performance and conflict at work.

\n

As a general rule, the more alcohol you drink, the more likely you are to have a hangover the next day. But there's no magic formula to tell you how much you can safely drink and still avoid a hangover.

\n

However unpleasant, most hangovers go away on their own, though they can last up to 24 hours. If you choose to drink alcohol, doing so responsibly can help you avoid future hangovers. - Hangovers

\n
\n", "OwnerUserId": "5064", "LastActivityDate": "2021-10-25T17:44:33.297", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9424"}} +{ "Id": "9424", "PostTypeId": "1", "CreationDate": "2021-12-05T01:28:05.910", "Score": "3", "ViewCount": "134", "Body": "

How come wineries and wine tasting events are often so generous with their samples that people taste? For example, at many food tasting venues tasting samples are often very small in comparison.

\n

Are wine tasting events just an excuse for people to drink lots of wine and then act classy & sophisticated by calling it a "tasting"?

\n", "OwnerUserId": "13800", "LastActivityDate": "2022-01-08T23:24:43.687", "Title": "How come wineries and/or wine tasting events often so generous in giving samples?", "Tags": "wine", "AnswerCount": "3", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9425"}} +{ "Id": "9425", "PostTypeId": "2", "ParentId": "9424", "CreationDate": "2021-12-05T18:49:25.963", "Score": "8", "Body": "

The simple answer is that it pays off in sales of wine. I suspect that having a good experience makes one more likely to think positively of a winery and its wines. Also, a little alcohol might make one less inhibited about buying a bottle or more.

\n", "OwnerUserId": "6370", "LastActivityDate": "2021-12-05T18:49:25.963", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9426"}} +{ "Id": "9426", "PostTypeId": "2", "ParentId": "9424", "CreationDate": "2021-12-06T00:27:50.217", "Score": "2", "Body": "

How come wineries and/or wine tasting events often so generous in giving samples?

\n

All the reasons that Eric’s answer has suggested are all seemingly quite true.

\n

We have a winery near our residence that demonstrates everything Eric mentions.

\n

On top of that they prepare a 10 grape variety wine each year. If you can name 8 out of the 10 grape varieties involved in the wine you can walk out with a free bottle. It is great publicity and guessing right or wrong the winery is making great sales!

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-12-06T00:27:50.217", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9427"}} +{ "Id": "9427", "PostTypeId": "1", "CreationDate": "2021-12-16T03:32:43.687", "Score": "1", "ViewCount": "218", "Body": "

For normal food, every extra 3500 Calories consumed tend to lead to 1 lb weight gain. However, nutrition tables are created using calorimetry, that is by burning food down to CO2 and H2O, rather than in vitro experiments. Some foods are hard to digest, and will cause less weight gain. Others may be seen as toxins by the body and not digested like normal food. If they are excreted as something with higher energy than CO2 and H2O, their energy is wasted.

\n

Do alcohol calories count for weight gain/loss? More generally, how much do they count? Does 1 calorie from alcohol count more or less for weight gain/loss than 0.5 calories from carbs? Is this different for someone sipping wine for dinner and someone binge-drinking once a week?

\n", "OwnerUserId": "953", "LastEditorUserId": "953", "LastEditDate": "2022-01-10T01:32:16.547", "LastActivityDate": "2022-01-10T01:32:16.547", "Title": "Do alcohol calories count for weight gain/loss?", "Tags": "health nutrition", "AnswerCount": "3", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9428"}} +{ "Id": "9428", "PostTypeId": "2", "ParentId": "9427", "CreationDate": "2021-12-16T03:32:43.687", "Score": "3", "Body": "

Harvard.edu seems to say they count as much as the calories in fat:

\n
\n

Nutrition-wise, alcohol is similar to dietary fat. Like fat, alcohol is mostly metabolized in the liver. At seven calories per gram, alcohol’s energy content is also closer to that of fat, which has nine calories per gram, than to that of carbohydrates or protein, each of which contains four calories per gram.

\n
\n", "OwnerUserId": "953", "LastActivityDate": "2021-12-16T03:32:43.687", "CommentCount": "3", "CommunityOwnedDate": "2021-12-16T03:32:43.687", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9429"}} +{ "Id": "9429", "PostTypeId": "2", "ParentId": "9427", "CreationDate": "2021-12-17T07:06:56.197", "Score": "3", "Body": "

MWB's answer addressed the first question, indicating that alcohol calories behave similar to fat.

\n

Regarding your second question comparing moderate daily intake to binge drinking, the answer seems to be complex. This study indicates correlation, but not causation:

\n
\n

In general, recent prospective studies show that light-to-moderate alcohol intake is not associated with adiposity gain while heavy drinking is more consistently related to weight gain.\n...\nHowever, many factors can explain the conflicting findings and a better characterization of individuals more likely to gain weight as a result of alcohol consumption is needed. In particular, individuals who frequently drink moderate amounts of alcohol may enjoy a healthier lifestyle in general that may protect them from weight gain.

\n
\n

Another study referenced by the one quoted above gives a bit more insight, noting that while the calories may be the same, the interaction with and/or separation from food may be an important factor, but is still secondary to other factors:

\n
\n

Current research clearly shows that energy consumed as alcohol is additive to that from other dietary sources, leading to short-term passive over-consumption of energy when alcohol is consumed. Indeed, alcohol consumed before or with meals tends to increase food intake, probably through enhancing the short-term rewarding effects of food. However, while these data might suggest that alcohol is a risk factor for obesity, epidemiological data suggests that moderate alcohol intake may protect against obesity, particularly in women. In contrast, higher intakes of alcohol in the absence of alcohol dependence may increase the risk of obesity, as may binge-drinking, however these effects may be secondary to personality and habitual beverage preferences.

\n
\n

So in sum... the chemical energy is the same. But timing of the caloric intake does have some relevance and multiple impacts.

\n", "OwnerUserId": "11627", "LastActivityDate": "2021-12-17T07:06:56.197", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9430"}} +{ "Id": "9430", "PostTypeId": "2", "ParentId": "9427", "CreationDate": "2021-12-17T23:30:19.780", "Score": "2", "Body": "

I found this paper (PDF) called "Alcohol Consumption and Obesity: An Update".

\n

It reviews a number of experiments where scientists gave people alcohol and observed changes in their weight after a few weeks. Their summary:

\n
\n

Overall, the available experimental evidence reviewed in this article\nsuggests that moderate intake of alcohol does not lead to weight gain.\nThe systematic review by Bendsen et al. [3•]suggests that this trend\nis less likely in experimental studies examining beer consumption\nexclusively. Also, the intervention periods in the aforementioned\nstudies ranged from 4–10 weeks,and therefore may not have been long\nenough to identify the slight changes in weight that can accumulate\nover time to result in overweight or obesity. A modest increase in\nweight of one kilogram over a 10 week period seems insignificant but\nover five years this could result in up to 26 kg of weight gain if\nno compensation takes place. To our knowledge, there does not appear to\nbe any experimental evidence specifically testing the effects of\nheavy/binge drinking, or of drinking spirits or a combination of\nalcohol sources on weight gain/obesity.

\n
\n

However, this is generally mixing three effects:

\n
    \n
  • alcohol's effect on food consumption (changes in hunger)
  • \n
  • the energy being absorbed from alcohol itself
  • \n
  • the effect of alcohol on how the energy is absorbed from other food (some say that since the body prioritizes digesting alcohol, it's not digesting other food as efficiently)
  • \n
\n

If we look at the description of one of the studies (above this summary):

\n
\n

Fletchner-Mors et al. [53]found that replacing 10% of total daily\nenergy intake during a weight-loss intervention with either grape\njuice or white wine resulted in similar weight loss, with the white\nwine group showing a slightly higher (although not statistically\nsignificant) weight loss. In this case both diets were isoenergetic so\nthis is not a surprising result, as the thermic effect of food was\nlikely higher for white wine than grape juice[53,54].

\n
\n

(emphasis added)

\n

It basically says that (when all calories were counted), the effect of wine on weight gain/loss was essentially the same as that of grape juice with the same amount of calories.

\n", "OwnerUserId": "953", "LastActivityDate": "2021-12-17T23:30:19.780", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9431"}} +{ "Id": "9431", "PostTypeId": "1", "CreationDate": "2021-12-18T00:48:23.667", "Score": "2", "ViewCount": "57", "Body": "

I've found posts on storage of liquor at home (e.g. this), but is there any advice out there for storing liquor out of sunlight for a home bar in a Florida sunroom? In the past, I've learned direct sunlight is a no-no, but I also do see beach bars and other places that do seem to successfully serve alcohol in a hot environment. So a couple of specific questions about this scenario...

\n
    \n
  1. Should I be looking for some kind of fridge that keeps alcohol at room temperature? I don't want it cold but I'm guessing 90 deg F is too warm for storage of open bottles.

    \n
  2. \n
  3. Do beach bars and the like just bring alcohol in and out every day? Should I be looking for a "bar cart" style setup where I can bring things inside after entertaining? Tell me I don't need to find a mini split and just cool my whole sunroom all the time?

    \n
  4. \n
\n

I have a whole house, but my sunroom is the best for entertaining. How does one do a home bar in this environment without hauling stuff back and forth every time? I'd actually love to use that square footage for storage...

\n

Thanks!

\n", "OwnerUserId": "14152", "LastEditorUserId": "5064", "LastEditDate": "2021-12-20T17:02:42.483", "LastActivityDate": "2021-12-20T17:02:42.483", "Title": "Storing liquor out of sunlight for a home bar in a Florida sunroom?", "Tags": "storage cocktails temperature bartending recommendation", "AnswerCount": "1", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9432"}} +{ "Id": "9432", "PostTypeId": "1", "AcceptedAnswerId": "9434", "CreationDate": "2021-12-20T15:41:35.297", "Score": "2", "ViewCount": "66", "Body": "

I've heard the claim that the state of Kentucky produces some of the best bourbons because the state's climate has dramatic temperature changes between seasons.

\n
\n

Kentucky has four different seasons with an invigorating climate.\nSummers are hot, wet, and humid. High temperatures repeatedly cross\nthe 95°F (35°C) mark during peak summer in July, and the heat is\noppressive. Winters are cold, but short of bitter, with night\ntemperatures below 23°F (-5°C) in January.\n-Weather Atlas

\n
\n

The idea is that the wood in the barrel expands from the heat of summer, allowing the bourbon to penetrate deeper into the oak charred barrel wood... and then shrinks again during winter, pushing the liquid out of the wood again. I assume that most bourbon is stored indoors, so I have my doubts that the climate would have much effect, if any.

\n

Is there any proof that having an extreme climate increases quality when aging bourbon?

\n", "OwnerUserId": "14161", "LastActivityDate": "2021-12-21T15:58:21.637", "Title": "Does having an extreme climate increase quality when aging bourbon?", "Tags": "whiskey temperature science bourbon", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9433"}} +{ "Id": "9433", "PostTypeId": "2", "ParentId": "9431", "CreationDate": "2021-12-20T16:52:19.410", "Score": "1", "Body": "

Sunroom in Florida and building a home bar

\n

I understand your fear about posting photos about your sunroom on the net!

\n

In that case I will try to make a generic recommendation.

\n

Make a lockable cabinet, under a counter or closet that can be used to store your alcohol. I would recommend that it be made of hardwood and well insulated. After taking some council from professionals, I would place a an air conditioner or air cooler in it that would not be seen externally.

\n

Try to keep direct sunlight of your area of placement for your alcohol!

\n

Air coolers come in various sizes and can be mounted on walls or ceilings. I have seen the ceiling air coolers used to preserve fruit and vegetables.

\n

Searching the net you may find what you can adopt to your situation. Search and you will find! The following is simply an example of my thinking:

\n
\n

AIR COOLERS

\n

With nearly a century of technological and engineering excellence, our air coolers are second to none. High quality, robust and reliable products – give your business the very best.

\n

A wide range of Güntner air cooler products come with an HACCP certification too, to meet your country’s hygiene requirements.

\n

Slim Compact

\n

High efficiency in a slimline design, this space-saver is made with small and low cold stores in mind. The flat design occupies very little space allowing optimal use of your cold room.

\n

\"SLIM

\n
\n

If need be, you can always use a refrigerator.

\n", "OwnerUserId": "5064", "LastActivityDate": "2021-12-20T16:52:19.410", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9434"}} +{ "Id": "9434", "PostTypeId": "2", "ParentId": "9432", "CreationDate": "2021-12-21T09:34:28.483", "Score": "3", "Body": "

The weather and climate definitly has an effect on how the whisky ages. But I wouldn't talk about increased quality. Quality in terms of "tastes better" is always something subjective. Some people prefer mildly aged spirits from scotland, some like in-your-face-oak from Texas (and some, like me, love both).

\n

In scotland, the average temperatures only various 10°C on average. Whereas in traditional bourbon states like Kentucky it is four times as high. This leads to much more oak influence in the spirit, as you already wrote in your question, because the cask "breathes" (expanding and shrinking of the wood) more. Storing it indoor actually supports this effect, since those warehouses accumulate the heat. They are not air conditioned to a nice, cosy, constant temperature, but they amplify the outside temperature. Pretty much the same way a parking car in the sun get hotter inside, than it is outside:

\n

\"bourbon

\n

Some distilleries even use containers to store their spirit, which pretty much cooks their bourbon (usually closed, only open for the photo): \"container

\n

...that's why they put it on the label, as well: \"cooked

\n", "OwnerUserId": "8518", "LastEditorUserId": "8518", "LastEditDate": "2021-12-21T15:58:21.637", "LastActivityDate": "2021-12-21T15:58:21.637", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9435"}} +{ "Id": "9435", "PostTypeId": "1", "AcceptedAnswerId": "9442", "CreationDate": "2021-12-23T10:50:35.213", "Score": "4", "ViewCount": "83", "Body": "

The majority of sparkling wines have no vintage. Every champagne brand has at least one wine that does not carry a vintage, and a small part of the production output goes into vintage champagnes. How is it that this type of portfolio is virtually non-existent in the still wine sector? There is no non-vintage Pétrus, Penfolds or Ridge. Has this something to do with the production methods or culture of sparkling wines, or what are the reasons for that?

\n", "OwnerUserId": "8518", "LastActivityDate": "2022-01-11T21:38:59.813", "Title": "Why is non-vintage wine so poplar in sparkling wine but not in still wine?", "Tags": "wine champagne vintage", "AnswerCount": "1", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9436"}} +{ "Id": "9436", "PostTypeId": "1", "CreationDate": "2021-12-23T15:28:24.653", "Score": "0", "ViewCount": "47", "Body": "

What are the sales commission percentages folks are using for commission sales only independent sales representatives? Does anyone use kickers for reaching certain sales levels (i.e. $x for each 500 bottles sold) and/or new markets (i.e. kicker for each new retail store added, kicker for each restaurant/bar added, etc.). We are launching a bourbon brand here in S Carolina and looking to leverage independent sales reps on a commission only basis, so any insights anyone can offer would be greatly appreciated.

\n", "OwnerUserId": "14180", "LastEditorUserId": "6040", "LastEditDate": "2022-01-04T12:45:47.350", "LastActivityDate": "2022-01-04T12:45:47.350", "Title": "Commission only sales % for liquor sales representatives?", "Tags": "wine spirits liquor bourbon", "AnswerCount": "0", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9437"}} +{ "Id": "9437", "PostTypeId": "1", "CreationDate": "2021-12-25T14:23:05.393", "Score": "1", "ViewCount": "76", "Body": "

Traditional drinks mentioned in well known literature?

\n

Does anyone know of any drinking traditions of a popular drink that is mentioned in popular historical literature.

\n

I am not limiting to English language, but if one does please provide a translation.

\n

What got me thinking of this was reading about a Smoking Bishop that is mentioned in Charles Dickens’ A Christmas Carol.

\n
\n

Originating in Britain and immortalized by Charles Dickens (1812-1870), a Smoking Bishop is a ‘smoking’ hot drink of wine and port mulled together with the juice of roasted bitter oranges, cloves, star anise, sugar and (occasionally) cinnamon. Compared to traditional mulled wine, which can sometimes be overwhelming, the spices take a minor role in a Smoking Bishop. With port, oranges and sugar, one would expect an overly sweet drink. But the after-punch of bitter fruit is the real star here, pulling our taste buds along a pleasant tightrope of flavor. Finding the balance is key to a good Smoking Bishop… and people have been trying since the 1800’s.

\n

On December 17, 1843, the Smoking Bishop became etched in history with the publication of A Christmas Carol, by Charles Dickens. Dickens places the drink in the final scene of the book, when Ebenezer Scrooge offers his overworked employee, Bob Cratchit (the dad of Tiny Tim), a bowl of Smoking Bishop, along with his promise to be, well… less of a Scrooge. Considering the book sold 5,000 copies by Christmas Eve (6 days later) and has never been out of print, I’d say readers felt this merry conclusion was a success.

\n
\n

“A Merry Christmas, Bob!” said Scrooge with an earnestness that could not be mistaken, as he clapped him on the back. “A merrier Christmas, Bob, my good fellow, than I have given you for many a year! I’ll raise your salary, and endeavor to assist your struggling family, and we will discuss your affairs this very afternoon over a bowl of Smoking Bishop, Bob! Make up the fires, and buy another coal-scuttle before you dot another i Bob Cratchit!

\n
\n
\n

Scrooge was better than his word. He did it all, and infinitely more…” – A Christmas Carol, Charles Dickens.

\n
\n

What is a Smoking Bishop?

\n
\n

Max Miller in his series Tasting History with Max Miller has aa interesting YouTube video on this subject: Smoking Bishop from A Christmas Carol.

\n

In this video, Max gives an impressive account of a Smoking Bishop as a mulled wine as well as a fine recipe and pointers on making it.

\n

However, back to the question at hand. Does anyone known of any classical or traditional drinks in historical literature that is not well known in our days?

\n

A recipe would be greatly appreciated. Historically, I am limiting this to 1900 AD or earlier.

\n

By the way, Merry Christmas to all!

\n", "OwnerUserId": "5064", "LastActivityDate": "2022-01-04T04:03:03.083", "Title": "Traditional drinks mentioned in well known literature from 1900 or earlier?", "Tags": "wine history cocktails drink tradition", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9438"}} +{ "Id": "9438", "PostTypeId": "2", "ParentId": "9437", "CreationDate": "2022-01-04T04:03:03.083", "Score": "1", "Body": "

Vanity Fair (1848) (available here: https://www.gutenberg.org/files/599/599-h/599-h.htm) features a bottle of Rum Shrub among other drinks. There were many different 'shrub' recipes, so it isn't clear exactly what they were drinking, but one could assume that his readers knew exactly what he meant.

\n", "OwnerUserId": "14200", "LastActivityDate": "2022-01-04T04:03:03.083", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9439"}} +{ "Id": "9439", "PostTypeId": "1", "CreationDate": "2022-01-04T05:56:14.990", "Score": "0", "ViewCount": "75", "Body": "

Humans have been drinking alcohol for its intoxicating effects. For intoxication a small amount of alcohol is sufficient, but because the liver is very efficient in filtering it, we need more of it to get intoxicated.

\n

This seems to be the main problem. This is what causes us to drink a lot to get high. This is also what causes liver damage over a long period of time and in short term this is what causes hangover.

\n

This metabolic pathway changes if we co-administer lesser amount of alcohol with alcohol dehydrogenase (ADH) inhibitor like 4-methylpyrazole (4-MP) which slows down breaking of alcohol and one could achieve same amounts of intoxication with comparatively very less alcohol.

\n

Apparently Wikipedia agrees with this, but warns that if the alcohol dose is not reduced then it may cause severe intoxication and overdose.

\n
\n

Concurrent use with ethanol is contraindicated because fomepizole is\nknown to prolong the half-life of ethanol via inhibiting its\nmetabolism. Extending the half-life of ethanol may increase and extend\nthe intoxicating effects of ethanol, allowing for greater (potentially\ndangerous) levels of intoxication at lower doses. Fomepizole slows the\nproduction of acetaldehyde by inhibiting alcohol dehydrogenase, which\nin turn allows more time to further convert acetaldehyde into acetic\nacid by acetaldehyde dehydrogenase. The result is a patient with a\nprolonged and deeper level of intoxication for any given dose of\nethanol, and reduced "hangover" symptoms (since these adverse symptoms\nare largely mediated by acetaldehyde build up

\n
\n

But also agrees that if the dose is adjusted and lowered it can have a positive effect.

\n
\n

If alcoholics instead very carefully reduce their doses to reflect the\nnow slower metabolism, they may get the "rewarding" stimulus of\nintoxication at lower doses with less adverse "hangover" effects -\nleading potentially to increased psychological dependency. However,\nthese lower doses may therefore produce less chronic toxicity and\nprovide a harm minimization approach to chronic alcoholism

\n
\n

Now assuming that alcoholics are placed under strict supervision and two groups are given with just alcohol and alcohol with 4-MP, to achieve comparable intoxication.

\n

So if group A receives, say 15ml of pure alcohol containing beverage, then B receives 3ml or so, of alcohol along with 4-MP.

\n
    \n
  1. Can this help in the prevention of alcohol related liver complications?
  2. \n
  3. Is 4-MP, despite its short-term safety, is safe for long term use?
  4. \n
\n

Is there any data is medical literature on this?

\n
\n

Edit: Regarding the concerns about toxicity.

\n
\n

According to Dr. Dasgupta's research, the perfect BAC in accordance\nwith these moderate drinking guidelines is 0.04 - 0.05%. When your BAC\nis in this range, you feel good, you gain all the health benefits from\nthe alcohol, and you should not appear overly impaired

\n
\n

So even if we assume none of the alcohol breaks down, average human has around 5000 ml of blood. Reverse calculating it 2.5g of alcohol will cause a BAC of 0.05% which is ideal and non-toxic. So if we give someone 3ml of ethanol with 4-MP, then it is, at least theoretically, it's completely safe.

\n", "OwnerDisplayName": "user14203", "LastEditorUserId": "37", "LastEditDate": "2022-02-02T04:22:24.390", "LastActivityDate": "2022-02-02T04:22:24.390", "Title": "Why are people not consuming less alcohol along with alcohol dehydrogenase (ADH) inhibitor like 4-methylpyrazole (4-MP) to reduce liver scarring?", "Tags": "alcohol-level alcohol additives", "AnswerCount": "0", "CommentCount": "21", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9441"}} +{ "Id": "9441", "PostTypeId": "2", "ParentId": "9424", "CreationDate": "2022-01-08T23:24:43.687", "Score": "3", "Body": "

Exactly as Robert said… I happen to work as a supermarket food-sampler and I know that some experts believe a day of sampling can produce a 10-week increase in sales.

\n

Please note, that "10-week increase" does not mean that I sampled stuff on Tuesday, so we expect an increase in sales for the next 10 Tuesdays… no; it means we expect an increase every day for the next 10 weeks.

\n

Turn that back down to every Tuesday and which winery would sneeze at such an increase?

\n", "OwnerUserId": "14218", "LastActivityDate": "2022-01-08T23:24:43.687", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9442"}} +{ "Id": "9442", "PostTypeId": "2", "ParentId": "9435", "CreationDate": "2022-01-11T21:38:59.813", "Score": "3", "Body": "

Champagnes typically mix batches of wines from multiple years in order to attain a consistent 'house style' that is generally free from the vagaries of climate and location. Only in an exceptional year do houses put out vintage champagnes, so you'll notice that the vintages are usually non-consecutive.

\n

Wineries, aside from cheap ones, generally use whatever they grow each year People expect differences between years, and there's a lot of cost in holding wine over in reserve.

\n

In short, the culture of the sparkling wine companies is to have a consistent product while that's not true of the still wine companies.

\n", "OwnerUserId": "14200", "LastActivityDate": "2022-01-11T21:38:59.813", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9443"}} +{ "Id": "9443", "PostTypeId": "2", "ParentId": "38", "CreationDate": "2022-01-14T10:04:04.907", "Score": "-2", "Body": "

simple answer here.

\n

Drinking beer after any other alcohol makes you feel NOT thirsty and therefore you don't feel the urge to drink water before going to bed.

\n

If you drank a more concentrated alcohol after beer you would be thirsty before going to sleep and would drink some.

\n

Contrary to the popular belief, beer is a dehydrating drink. After drinking beer you water balance is negative, you actually need to drink some water. And drinking beer after any other alcohol makes the dehydration problem 1.worse and 2.unnoticed.

\n", "OwnerUserId": "14233", "LastActivityDate": "2022-01-14T10:04:04.907", "CommentCount": "3", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9444"}} +{ "Id": "9444", "PostTypeId": "1", "CreationDate": "2022-01-18T18:54:52.940", "Score": "0", "ViewCount": "43", "Body": "

I've read a lot online about methanol being in your spirit and you should discard the first x amount of ounces that is produced. I was thinking, cant you just heat your mash to 148.5 (methanol boiling point) without the lid on the pot. Would this not just boil off all the methanol in the mash? Then put your lid on and distil the ethanol? Out of all the sites I've read I've never heard this mentioned so maybe there's a reason for it. Looking forward to your input, thanks.

\n", "OwnerUserId": "14246", "LastEditorUserId": "5064", "LastEditDate": "2022-01-27T05:04:33.077", "LastActivityDate": "2022-01-27T05:04:33.077", "Title": "Methanol removal?", "Tags": "home-brew distillation", "AnswerCount": "0", "CommentCount": "1", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9445"}} +{ "Id": "9445", "PostTypeId": "1", "AcceptedAnswerId": "9446", "CreationDate": "2022-01-27T17:13:46.077", "Score": "3", "ViewCount": "47", "Body": "

I'm diabetic and drink red wine over beer because it doesn't spike my sugars as much, presumably because it contains less carbs. But it's just too strong for me. Does anyone know if any red wines exist around the 5 or 6 % alcohol level, and where I can purchase in the UK? Reduced alcohol options perfectly fine. I quite like Malbec.

\n", "OwnerUserId": "14268", "LastEditorUserId": "14268", "LastEditDate": "2022-01-27T17:33:26.260", "LastActivityDate": "2022-01-29T16:11:24.937", "Title": "Do red wines exist around 5-6 % alcohol volume?", "Tags": "red-wine", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9446"}} +{ "Id": "9446", "PostTypeId": "2", "ParentId": "9445", "CreationDate": "2022-01-29T16:11:24.937", "Score": "1", "Body": "

I've searched and haven't found any. There are non-alcoholic wines so you could mix one of those 1 to 1 with a regular wine to get around a 6% ABV. Taste might be an issue.

\n", "OwnerUserId": "6370", "LastActivityDate": "2022-01-29T16:11:24.937", "CommentCount": "2", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9447"}} +{ "Id": "9447", "PostTypeId": "2", "ParentId": "8270", "CreationDate": "2022-02-01T19:34:07.257", "Score": "-1", "Body": "

I have a couson who is an officer in the Indian ARMY on the Assam Rifles Regiment. So everytime when he came home he would always take home a very special class of beer and alcohol. Yes they can get as many as they want he said. Sometimes he would even get a full suitcase pack everytime he is on leave. He said that alcohol is consumpt strictly, and getting drunk while on duty is forbidden. He himself would never drink except only when he took a leave at home. I don't think its any different from what they sold locally but one thing I know is that it is expensive in the market. I am unsure of what brand it is because he would take home different kinds, one of his favorite one is Little Bay?, Budweiser Beer white kind, Aberlour whiskey which is like 7000 rupees in local market in India. So i am assuming it is definitely a good quality whiskey. Maybe the officers can have a better choice? i am unsure.

\n", "OwnerUserId": "14279", "LastEditorUserId": "14279", "LastEditDate": "2022-02-01T19:42:29.790", "LastActivityDate": "2022-02-01T19:42:29.790", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9448"}} +{ "Id": "9448", "PostTypeId": "1", "AcceptedAnswerId": "9449", "CreationDate": "2022-02-02T03:38:15.027", "Score": "1", "ViewCount": "49", "Body": "

Just finished watching a Terminator movie and noticed that many movies display scenes in which drinking establishments have pool tables.

\n

Thus I ask the question: Why are pool tables so popular in drinking establishments?

\n", "OwnerUserId": "5064", "LastActivityDate": "2022-02-03T01:12:24.787", "Title": "Why are pool tables so popular in drinking establishments?", "Tags": "drinking entertainment drinking-establishments", "AnswerCount": "1", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9449"}} +{ "Id": "9449", "PostTypeId": "2", "ParentId": "9448", "CreationDate": "2022-02-03T01:12:24.787", "Score": "3", "Body": "

Billiards is one of several games that are popular in drinking establishments, also including darts, shuffleboard, and cornhole (if there is an outdoor area). These games all have some common features that pair them well with bars. They are casual in nature, short in duration, can be played 1v1 or in teams, don't require much space or specialized equipment, and require minimal maintenance/upkeep on the part of the establishment.

\n

Games like this, of which billiards is probably the most popular, enhance the experience of patrons and help further the convivial atmosphere bars thrive on.

\n", "OwnerUserId": "14285", "LastActivityDate": "2022-02-03T01:12:24.787", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9450"}} +{ "Id": "9450", "PostTypeId": "1", "CreationDate": "2022-02-07T00:51:54.157", "Score": "3", "ViewCount": "86", "Body": "

The attached image is a screen capture from a TV show (@ ~00:12:30).

\n

\"enter

\n

Unfortunately, it flashed for only a fraction of a second, and that's all that was shown.

\n

Though the label on the bottle says "Japanese whiskey," I cannot identify any brand of Japanese whiskey that matches this label.

\n

(This, in itself, does not mean much, though; I am pretty ignorant about Japanese whiskeys, in general.)

\n

From the little Japanese I know, I thought that the character shown along the label's right edge was 神 (= かみ = gods), but I could not find any Japanese whiskey brand online that has this character on its label.

\n

On the other hand, it is quite possible that this is not a real Japanese whiskey brand at all, but rather a made-for-TV prop.

\n

Can anyone recognize this label, and if so, what is the brand?

\n

(For what it's worth, here is a larger version of the same image.)

\n", "OwnerUserId": "14294", "LastEditorUserId": "14294", "LastEditDate": "2022-02-07T19:33:37.323", "LastActivityDate": "2022-02-19T22:40:28.710", "Title": "Is the \"Japanese whiskey\" in the picture a real brand, and if so what is its full name?", "Tags": "whiskey whisky", "AnswerCount": "1", "CommentCount": "5", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9451"}} +{ "Id": "9451", "PostTypeId": "2", "ParentId": "9450", "CreationDate": "2022-02-13T02:55:11.340", "Score": "4", "Body": "

At 12:12 you have another shot, where you better see the shape of the bottle. together with the black cap in your screenshot maybe that rings a bell for someone who is into whiskey?

\n

At 12:15 little more of the label, there it looks more like ...OREI than ...UREI.

\n

I wasn't able to download the video, but maybe if you watch it in high quality you can see more details?

\n

My personal guess is, they took a cheap bottle from a german super market and relabeled by the movie company to avoid legal issues. or they have a warehouse full of movie requisites and took the one that looks most like a whiskey bottle. surest way would be to ask the movie company.

\n

At 1:28:26 it says:

\n
\n

Requisite: Dirk Breitenbach Stephanie Moldrings

\n
\n", "OwnerUserId": "14310", "LastEditorUserId": "5064", "LastEditDate": "2022-02-18T13:33:49.560", "LastActivityDate": "2022-02-18T13:33:49.560", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } +{"index":{"_id":"9454"}} +{ "Id": "9454", "PostTypeId": "2", "ParentId": "7865", "CreationDate": "2022-02-18T16:41:43.467", "Score": "3", "Body": "

In the opening scene of Three's Company, S07 E20 · Hair Today, Gone Tomorrow |\nApr 5, 1983, character Larry Dallas walks into the Regal Beagle and shouts to Mike the Bartender, "Beer me!"

\n", "OwnerUserId": "14329", "LastActivityDate": "2022-02-18T16:41:43.467", "CommentCount": "0", "ContentLicense": "CC BY-SA 4.0" } diff --git a/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilder.java b/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilder.java index 94179c3369..3615d573d7 100644 --- a/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilder.java +++ b/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilder.java @@ -30,6 +30,7 @@ import org.opensearch.sql.opensearch.storage.script.filter.lucene.TermQuery; import org.opensearch.sql.opensearch.storage.script.filter.lucene.WildcardQuery; import org.opensearch.sql.opensearch.storage.script.filter.lucene.relevance.MatchQuery; +import org.opensearch.sql.opensearch.storage.script.filter.lucene.relevance.SimpleQueryStringQuery; import org.opensearch.sql.opensearch.storage.serialization.ExpressionSerializer; @RequiredArgsConstructor @@ -55,6 +56,7 @@ public class FilterQueryBuilder extends ExpressionNodeVisitor + analyzeWildcard = (b, v) -> b.analyzeWildcard(Boolean.parseBoolean(v.stringValue())); + private final BiFunction + analyzer = (b, v) -> b.analyzer(v.stringValue()); + private final BiFunction + autoGenerateSynonymsPhraseQuery = (b, v) -> + b.autoGenerateSynonymsPhraseQuery(Boolean.parseBoolean(v.stringValue())); + private final BiFunction + defaultOperator = (b, v) -> b.defaultOperator(Operator.fromString(v.stringValue())); + private final BiFunction + flags = (b, v) -> b.flags(SimpleQueryStringFlag.valueOf(v.stringValue())); + private final BiFunction + fuzzyMaxExpansions = (b, v) -> b.fuzzyMaxExpansions(Integer.parseInt(v.stringValue())); + private final BiFunction + fuzzyPrefixLength = (b, v) -> b.fuzzyPrefixLength(Integer.parseInt(v.stringValue())); + private final BiFunction + fuzzyTranspositions = (b, v) -> b.fuzzyTranspositions(Boolean.parseBoolean(v.stringValue())); + private final BiFunction + lenient = (b, v) -> b.lenient(Boolean.parseBoolean(v.stringValue())); + private final BiFunction + minimumShouldMatch = (b, v) -> b.minimumShouldMatch(v.stringValue()); + private final BiFunction + quoteFieldSuffix = (b, v) -> b.quoteFieldSuffix(v.stringValue()); + private final BiFunction + boost = (b, v) -> b.boost(Float.parseFloat(v.stringValue())); + + ImmutableMap argAction = ImmutableMap.builder() + .put("analyze_wildcard", analyzeWildcard) + .put("analyzer", analyzer) + .put("auto_generate_synonyms_phrase_query", autoGenerateSynonymsPhraseQuery) + .put("flags", flags) + .put("fuzzy_max_expansions", fuzzyMaxExpansions) + .put("fuzzy_prefix_length", fuzzyPrefixLength) + .put("fuzzy_transpositions", fuzzyTranspositions) + .put("lenient", lenient) + .put("default_operator", defaultOperator) + .put("minimum_should_match", minimumShouldMatch) + .put("quote_field_suffix", quoteFieldSuffix) + .put("boost", boost) + .build(); + + @Override + public QueryBuilder build(FunctionExpression func) { + if (func.getArguments().size() < 2) { + throw new SemanticCheckException("'simple_query_string' must have at least two arguments"); + } + Iterator iterator = func.getArguments().iterator(); + var fields = (NamedArgumentExpression) iterator.next(); + var query = (NamedArgumentExpression) iterator.next(); + // Fields is a map already, but we need to convert types. + var fieldsAndWeights = fields + .getValue() + .valueOf(null) + .tupleValue() + .entrySet() + .stream() + .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().floatValue())); + + SimpleQueryStringBuilder queryBuilder = QueryBuilders + .simpleQueryStringQuery(query.getValue().valueOf(null).stringValue()) + .fields(fieldsAndWeights); + while (iterator.hasNext()) { + NamedArgumentExpression arg = (NamedArgumentExpression) iterator.next(); + if (!argAction.containsKey(arg.getArgName())) { + throw new SemanticCheckException(String + .format("Parameter %s is invalid for simple_query_string function.", arg.getArgName())); + } + ((BiFunction) argAction + .get(arg.getArgName())) + .apply(queryBuilder, arg.getValue().valueOf(null)); + } + return queryBuilder; + } +} diff --git a/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java b/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java index 15b4ad2bad..8991dee633 100644 --- a/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java +++ b/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java @@ -6,6 +6,7 @@ package org.opensearch.sql.opensearch.storage.script.filter; +import static org.junit.Assert.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; @@ -27,10 +28,12 @@ import static org.opensearch.sql.opensearch.data.type.OpenSearchDataType.OPENSEARCH_TEXT_KEYWORD; import com.google.common.collect.ImmutableMap; +import java.util.LinkedHashMap; import java.util.Map; import java.util.stream.Stream; import org.json.JSONObject; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.DisplayNameGeneration; import org.junit.jupiter.api.DisplayNameGenerator; import org.junit.jupiter.api.Test; @@ -44,7 +47,9 @@ import org.opensearch.sql.data.model.ExprDatetimeValue; import org.opensearch.sql.data.model.ExprTimeValue; import org.opensearch.sql.data.model.ExprTimestampValue; -import org.opensearch.sql.data.model.ExprValue; +import org.opensearch.sql.data.model.ExprTupleValue; +import org.opensearch.sql.data.model.ExprValueUtils; +import org.opensearch.sql.exception.ExpressionEvaluationException; import org.opensearch.sql.exception.SemanticCheckException; import org.opensearch.sql.expression.DSL; import org.opensearch.sql.expression.Expression; @@ -361,10 +366,144 @@ void match_invalid_parameter() { dsl.namedArgument("field", literal("message")), dsl.namedArgument("query", literal("search query")), dsl.namedArgument("invalid_parameter", literal("invalid_value"))); + var msg = assertThrows(SemanticCheckException.class, () -> buildQuery(expr)).getMessage(); + assertEquals("Parameter invalid_parameter is invalid for match function.", msg); + } + + @Test + // `buildQuery` calls OpenSearch's (not plugin's) `toString()` function which prints + // - fields' weights inside quotes + // - `flags` as an integer, but not as an enum + // - parameters not in alphabetical order + @Disabled + void should_build_simple_query_string_query_with_default_parameters() { + assertJsonEquals( + "{\n" + + " \"simple_query_string\" : {\n" + + " \"query\" : \"search query\",\n" + + " \"fields\" : [\n" + + " \"field1^1.0\",\n" + + " \"field2^0.3\"\n" + + " ],\n" + + " \"default_operator\" : \"OR\",\n" + + " \"analyze_wildcard\" : false,\n" + + " \"auto_generate_synonyms_phrase_query\" : true,\n" + + " \"flags\" : \"ALL\",\n" + + " \"fuzzy_max_expansions\" : 50,\n" + + " \"fuzzy_prefix_length\" : 0,\n" + + " \"fuzzy_transpositions\" : true,\n" + + " \"lenient\" : false,\n" + + " \"boost\" : 1.0\n" + + " }\n" + + "}", + buildQuery( + dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal(new ExprTupleValue( + new LinkedHashMap<>(ImmutableMap.of( + "field1", ExprValueUtils.floatValue(1.F), + "field2", ExprValueUtils.floatValue(.3F)))))), + dsl.namedArgument("query", literal("search query"))))); + } + + @Test + // Test is disabled because DSL because of: + // 1) DSL reverses order of the `fields` + // 2) `flags` are printed by OpenSearch (not by the plugin) as an integer + // 3) parameters are printed -//- not in lexicographical order + @Disabled + void should_build_simple_query_string_query_with_custom_parameters() { + assertJsonEquals( + "{\n" + + " \"simple_query_string\" : {\n" + + " \"query\" : \"search query\",\n" + + " \"fields\" : [\n" + + " \"field1^1.0\",\n" + + " \"field2^0.3\"\n" + + " ],\n" + + " \"analyze_wildcard\" : true,\n" + + " \"analyzer\" : \"keyword\",\n" + + " \"auto_generate_synonyms_phrase_query\" : false,\n" + + " \"default_operator\" : \"AND\",\n" + + " \"flags\" : \"AND\",\n" + + " \"fuzzy_max_expansions\" : 10,\n" + + " \"fuzzy_prefix_length\" : 2,\n" + + " \"fuzzy_transpositions\" : false,\n" + + " \"lenient\" : false,\n" + + " \"minimum_should_match\" : 3,\n" + + " \"boost\" : 2.0\n" + + " }\n" + + "}", + buildQuery( + dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal( + ExprValueUtils.tupleValue(ImmutableMap.of("field1", 1.F, "field2", .3F)))), + dsl.namedArgument("query", literal("search query")), + dsl.namedArgument("analyze_wildcard", literal("true")), + dsl.namedArgument("analyzer", literal("keyword")), + dsl.namedArgument("auto_generate_synonyms_phrase_query", literal("false")), + dsl.namedArgument("default_operator", literal("AND")), + dsl.namedArgument("flags", literal("AND")), + dsl.namedArgument("fuzzy_max_expansions", literal("10")), + dsl.namedArgument("fuzzy_prefix_length", literal("2")), + dsl.namedArgument("fuzzy_transpositions", literal("false")), + dsl.namedArgument("lenient", literal("false")), + dsl.namedArgument("minimum_should_match", literal("3")), + dsl.namedArgument("boost", literal("2.0"))))); + } + + @Test + void simple_query_string_invalid_parameter() { + FunctionExpression expr = dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal( + new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "field1", ExprValueUtils.floatValue(1.F), + "field2", ExprValueUtils.floatValue(.3F)))))), + dsl.namedArgument("query", literal("search query")), + dsl.namedArgument("invalid_parameter", literal("invalid_value"))); assertThrows(SemanticCheckException.class, () -> buildQuery(expr), "Parameter invalid_parameter is invalid for match function."); } + @Test + void simple_query_string_missing_fields() { + var msg = assertThrows(ExpressionEvaluationException.class, () -> + dsl.simple_query_string( + dsl.namedArgument("query", literal("search query")))).getMessage(); + assertEquals("simple_query_string function expected {[STRUCT,STRING],[STRUCT,STRING,STRING]," + + "[STRUCT,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING],[STRUCT,STRING," + + "STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING,STRING,STRING]," + + "[STRUCT,STRING,STRING,STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING,STRING]}, but get [STRING]", + msg); + } + + @Test + void simple_query_string_missing_query() { + var msg = assertThrows(ExpressionEvaluationException.class, () -> + dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal( + new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "field1", ExprValueUtils.floatValue(1.F), + "field2", ExprValueUtils.floatValue(.3F)))))))).getMessage(); + assertEquals("simple_query_string function expected {[STRUCT,STRING],[STRUCT,STRING,STRING]," + + "[STRUCT,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING],[STRUCT,STRING," + + "STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING,STRING,STRING]," + + "[STRUCT,STRING,STRING,STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING],[STRUCT,STRING,STRING,STRING,STRING,STRING," + + "STRING,STRING,STRING,STRING,STRING,STRING]}, but get [STRUCT]", + msg); + } + + // TODO simple_query_string tests: + // - with one field + // - without weight(s) + // - with all fields ("*") + @Test void cast_to_string_in_filter() { String json = "{\n" diff --git a/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/SimpleQueryStringTest.java b/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/SimpleQueryStringTest.java new file mode 100644 index 0000000000..746d8e5c75 --- /dev/null +++ b/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/SimpleQueryStringTest.java @@ -0,0 +1,173 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + + +package org.opensearch.sql.opensearch.storage.script.filter.lucene; + +import static org.junit.jupiter.api.Assertions.assertThrows; + +import com.google.common.collect.ImmutableMap; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.stream.Stream; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.DisplayNameGeneration; +import org.junit.jupiter.api.DisplayNameGenerator; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.MethodSource; +import org.opensearch.sql.data.model.ExprTupleValue; +import org.opensearch.sql.data.model.ExprValue; +import org.opensearch.sql.data.model.ExprValueUtils; +import org.opensearch.sql.data.type.ExprType; +import org.opensearch.sql.exception.SemanticCheckException; +import org.opensearch.sql.expression.DSL; +import org.opensearch.sql.expression.Expression; +import org.opensearch.sql.expression.FunctionExpression; +import org.opensearch.sql.expression.LiteralExpression; +import org.opensearch.sql.expression.NamedArgumentExpression; +import org.opensearch.sql.expression.config.ExpressionConfig; +import org.opensearch.sql.expression.env.Environment; +import org.opensearch.sql.expression.function.FunctionName; +import org.opensearch.sql.opensearch.storage.script.filter.lucene.relevance.SimpleQueryStringQuery; + +@DisplayNameGeneration(DisplayNameGenerator.ReplaceUnderscores.class) +class SimpleQueryStringTest { + private static final DSL dsl = new ExpressionConfig() + .dsl(new ExpressionConfig().functionRepository()); + private final SimpleQueryStringQuery simpleQueryStringQuery = new SimpleQueryStringQuery(); + private final FunctionName simpleQueryString = FunctionName.of("simple_query_string"); + private static final LiteralExpression fields_value = DSL.literal( + new ExprTupleValue(new LinkedHashMap<>(ImmutableMap.of( + "title", ExprValueUtils.floatValue(1.F), + "body", ExprValueUtils.floatValue(.3F))))); + private static final LiteralExpression query_value = DSL.literal("query_value"); + + static Stream> generateValidData() { + return Stream.of( + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("analyze_wildcard", DSL.literal("true")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("analyzer", DSL.literal("standard")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("auto_generate_synonyms_phrase_query", DSL.literal("true")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("flags", DSL.literal("PREFIX")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("fuzzy_max_expansions", DSL.literal("42")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("fuzzy_prefix_length", DSL.literal("42")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("fuzzy_transpositions", DSL.literal("42")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("lenient", DSL.literal("true")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("default_operator", DSL.literal("AND")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("minimum_should_match", DSL.literal("4")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("quote_field_suffix", DSL.literal(".exact")) + ), + List.of( + dsl.namedArgument("fields", fields_value), + dsl.namedArgument("query", query_value), + dsl.namedArgument("boost", DSL.literal("1")) + ) + ); + } + + @ParameterizedTest + @MethodSource("generateValidData") + public void test_valid_parameters(List validArgs) { + Assertions.assertNotNull(simpleQueryStringQuery.build( + new SimpleQueryStringExpression(validArgs))); + } + + @Test + public void test_SemanticCheckException_when_no_arguments() { + List arguments = List.of(); + assertThrows(SemanticCheckException.class, + () -> simpleQueryStringQuery.build(new SimpleQueryStringExpression(arguments))); + } + + @Test + public void test_SemanticCheckException_when_one_argument() { + List arguments = List.of(namedArgument("fields", fields_value)); + assertThrows(SemanticCheckException.class, + () -> simpleQueryStringQuery.build(new SimpleQueryStringExpression(arguments))); + } + + @Test + public void test_SemanticCheckException_when_invalid_parameter() { + List arguments = List.of( + namedArgument("fields", fields_value), + namedArgument("query", query_value), + namedArgument("unsupported", "unsupported_value")); + Assertions.assertThrows(SemanticCheckException.class, + () -> simpleQueryStringQuery.build(new SimpleQueryStringExpression(arguments))); + } + + private NamedArgumentExpression namedArgument(String name, String value) { + return dsl.namedArgument(name, DSL.literal(value)); + } + + private NamedArgumentExpression namedArgument(String name, LiteralExpression value) { + return dsl.namedArgument(name, value); + } + + private class SimpleQueryStringExpression extends FunctionExpression { + public SimpleQueryStringExpression(List arguments) { + super(SimpleQueryStringTest.this.simpleQueryString, arguments); + } + + @Override + public ExprValue valueOf(Environment valueEnv) { + throw new UnsupportedOperationException("Invalid function call, " + + "valueOf function need implementation only to support Expression interface"); + } + + @Override + public ExprType type() { + throw new UnsupportedOperationException("Invalid function call, " + + "type function need implementation only to support Expression interface"); + } + } +} diff --git a/ppl/src/main/antlr/OpenSearchPPLLexer.g4 b/ppl/src/main/antlr/OpenSearchPPLLexer.g4 index aee51d0a10..2e9f8cd9a5 100644 --- a/ppl/src/main/antlr/OpenSearchPPLLexer.g4 +++ b/ppl/src/main/antlr/OpenSearchPPLLexer.g4 @@ -141,6 +141,13 @@ SINGLE_QUOTE: '\''; DOUBLE_QUOTE: '"'; BACKTICK: '`'; +// Operators. Bit + +BIT_NOT_OP: '~'; +//BIT_OR_OP: '|'; +BIT_AND_OP: '&'; +BIT_XOR_OP: '^'; + // AGGREGATIONS AVG: 'AVG'; COUNT: 'COUNT'; @@ -264,18 +271,38 @@ IF: 'IF'; // RELEVANCE FUNCTIONS AND PARAMETERS MATCH: 'MATCH'; +SIMPLE_QUERY_STRING: 'SIMPLE_QUERY_STRING'; +ALLOW_LEADING_WILDCARD: 'ALLOW_LEADING_WILDCARD'; +ANALYZE_WILDCARD: 'ANALYZE_WILDCARD'; ANALYZER: 'ANALYZER'; -FUZZINESS: 'FUZZINESS'; AUTO_GENERATE_SYNONYMS_PHRASE_QUERY:'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'; -MAX_EXPANSIONS: 'MAX_EXPANSIONS'; -PREFIX_LENGTH: 'PREFIX_LENGTH'; +BOOST: 'BOOST'; +CUTOFF_FREQUENCY: 'CUTOFF_FREQUENCY'; +DEFAULT_FIELD: 'DEFAULT_FIELD'; +DEFAULT_OPERATOR: 'DEFAULT_OPERATOR'; +ENABLE_POSITION_INCREMENTS: 'ENABLE_POSITION_INCREMENTS'; +FLAGS: 'FLAGS'; +FUZZY_MAX_EXPANSIONS: 'FUZZY_MAX_EXPANSIONS'; +FUZZY_PREFIX_LENGTH: 'FUZZY_PREFIX_LENGTH'; FUZZY_TRANSPOSITIONS: 'FUZZY_TRANSPOSITIONS'; FUZZY_REWRITE: 'FUZZY_REWRITE'; +FUZZINESS: 'FUZZINESS'; LENIENT: 'LENIENT'; -OPERATOR: 'OPERATOR'; +LOW_FREQ_OPERATOR: 'LOW_FREQ_OPERATOR'; +MAX_DETERMINIZED_STATES: 'MAX_DETERMINIZED_STATES'; +MAX_EXPANSIONS: 'MAX_EXPANSIONS'; MINIMUM_SHOULD_MATCH: 'MINIMUM_SHOULD_MATCH'; +OPERATOR: 'OPERATOR'; +PHRASE_SLOP: 'PHRASE_SLOP'; +PREFIX_LENGTH: 'PREFIX_LENGTH'; +QUOTE_ANALYZER: 'QUOTE_ANALYZER'; +QUOTE_FIELD_SUFFIX: 'QUOTE_FIELD_SUFFIX'; +REWRITE: 'REWRITE'; +SLOP: 'SLOP'; +TIE_BREAKER: 'TIE_BREAKER'; +//TIME_ZONE: 'TIME_ZONE'; // already defined on line 63 +TYPE: 'TYPE'; ZERO_TERMS_QUERY: 'ZERO_TERMS_QUERY'; -BOOST: 'BOOST'; // SPAN KEYWORDS SPAN: 'SPAN'; diff --git a/ppl/src/main/antlr/OpenSearchPPLParser.g4 b/ppl/src/main/antlr/OpenSearchPPLParser.g4 index 100547ae7a..597cee2b94 100644 --- a/ppl/src/main/antlr/OpenSearchPPLParser.g4 +++ b/ppl/src/main/antlr/OpenSearchPPLParser.g4 @@ -215,11 +215,23 @@ booleanExpression ; relevanceExpression - : relevanceFunctionName LT_PRTHS - field=relevanceArgValue COMMA query=relevanceArgValue + : singleFieldRelevanceFunction | multiFieldRelevanceFunction + ; + +// Field is a single column +singleFieldRelevanceFunction + : singleFieldRelevanceFunctionName LT_PRTHS + field=relevanceField COMMA query=relevanceQuery (COMMA relevanceArg)* RT_PRTHS ; +// Field is a list of columns +multiFieldRelevanceFunction + : multiFieldRelevanceFunctionName LT_PRTHS + LT_SQR_PRTHS field=relevanceFieldAndWeight (COMMA field=relevanceFieldAndWeight)* RT_SQR_PRTHS + COMMA query=relevanceQuery (COMMA relevanceArg)* RT_PRTHS + ; + /** tables */ tableSource : qualifiedName @@ -303,9 +315,32 @@ relevanceArg ; relevanceArgName - : ANALYZER | FUZZINESS | AUTO_GENERATE_SYNONYMS_PHRASE_QUERY | MAX_EXPANSIONS | PREFIX_LENGTH - | FUZZY_TRANSPOSITIONS | FUZZY_REWRITE | LENIENT | OPERATOR | MINIMUM_SHOULD_MATCH | ZERO_TERMS_QUERY - | BOOST + : ALLOW_LEADING_WILDCARD | ANALYZE_WILDCARD | ANALYZER | AUTO_GENERATE_SYNONYMS_PHRASE_QUERY + | BOOST | CUTOFF_FREQUENCY | DEFAULT_FIELD | DEFAULT_OPERATOR | ENABLE_POSITION_INCREMENTS + | FLAGS | FUZZY_MAX_EXPANSIONS | FUZZY_PREFIX_LENGTH | FUZZY_TRANSPOSITIONS | FUZZY_REWRITE + | FUZZINESS | LENIENT | LOW_FREQ_OPERATOR | MAX_DETERMINIZED_STATES | MAX_EXPANSIONS + | MINIMUM_SHOULD_MATCH | OPERATOR | PHRASE_SLOP | PREFIX_LENGTH | QUOTE_ANALYZER + | QUOTE_FIELD_SUFFIX | REWRITE | SLOP | TIE_BREAKER | TIME_ZONE | TYPE | ZERO_TERMS_QUERY + ; + +relevanceFieldAndWeight + : field=relevanceField + | field=relevanceField weight=relevanceFieldWeight + | field=relevanceField BIT_XOR_OP weight=relevanceFieldWeight + ; + +relevanceFieldWeight + : integerLiteral + | decimalLiteral + ; + +relevanceField + : qualifiedName + | stringLiteral + ; + +relevanceQuery + : relevanceArgValue ; relevanceArgValue @@ -349,10 +384,15 @@ binaryOperator : PLUS | MINUS | STAR | DIVIDE | MODULE ; -relevanceFunctionName + +singleFieldRelevanceFunctionName : MATCH ; +multiFieldRelevanceFunctionName + : SIMPLE_QUERY_STRING + ; + /** literals and values*/ literalValue : intervalLiteral diff --git a/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java b/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java index 79612ff2cb..db25ce7145 100644 --- a/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java +++ b/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java @@ -69,12 +69,14 @@ import org.opensearch.sql.ast.expression.Not; import org.opensearch.sql.ast.expression.Or; import org.opensearch.sql.ast.expression.QualifiedName; +import org.opensearch.sql.ast.expression.RelevanceFieldList; import org.opensearch.sql.ast.expression.Span; import org.opensearch.sql.ast.expression.SpanUnit; import org.opensearch.sql.ast.expression.UnresolvedArgument; import org.opensearch.sql.ast.expression.UnresolvedExpression; import org.opensearch.sql.ast.expression.Xor; import org.opensearch.sql.common.utils.StringUtils; +import org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser; import org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParserBaseVisitor; import org.opensearch.sql.ppl.utils.ArgumentFactory; @@ -252,9 +254,17 @@ public UnresolvedExpression visitConvertedDataType(ConvertedDataTypeContext ctx) @Override public UnresolvedExpression visitRelevanceExpression(RelevanceExpressionContext ctx) { - return new Function( - ctx.relevanceFunctionName().getText().toLowerCase(), - relevanceArguments(ctx)); + if (ctx.singleFieldRelevanceFunction() != null) { + return new Function( + ctx.singleFieldRelevanceFunction() + .singleFieldRelevanceFunctionName().getText().toLowerCase(), + singleFieldRelevanceArguments(ctx.singleFieldRelevanceFunction())); + } else { + return new Function( + ctx.multiFieldRelevanceFunction() + .multiFieldRelevanceFunctionName().getText().toLowerCase(), + multiFieldRelevanceArguments(ctx.multiFieldRelevanceFunction())); + } } @Override @@ -328,7 +338,8 @@ private QualifiedName visitIdentifiers(List ctx) { ); } - private List relevanceArguments(RelevanceExpressionContext ctx) { + private List singleFieldRelevanceArguments( + OpenSearchPPLParser.SingleFieldRelevanceFunctionContext ctx) { // all the arguments are defaulted to string values // to skip environment resolving and function signature resolving ImmutableList.Builder builder = ImmutableList.builder(); @@ -342,4 +353,25 @@ private List relevanceArguments(RelevanceExpressionContext return builder.build(); } + private List multiFieldRelevanceArguments( + OpenSearchPPLParser.MultiFieldRelevanceFunctionContext ctx) { + // all the arguments are defaulted to string values + // to skip environment resolving and function signature resolving + ImmutableList.Builder builder = ImmutableList.builder(); + var fields = new RelevanceFieldList(ctx + .getRuleContexts(OpenSearchPPLParser.RelevanceFieldAndWeightContext.class) + .stream() + .collect(Collectors.toMap( + f -> new Literal(StringUtils.unquoteText(f.field.getText()), DataType.STRING), + f -> (f.weight == null) + ? new Literal(1F, DataType.FLOAT) + : new Literal(Float.parseFloat(f.weight.getText()), DataType.FLOAT)))); + builder.add(new UnresolvedArgument("fields", fields)); + builder.add(new UnresolvedArgument("query", + new Literal(StringUtils.unquoteText(ctx.query.getText()), DataType.STRING))); + ctx.relevanceArg().forEach(v -> builder.add(new UnresolvedArgument( + v.relevanceArgName().getText().toLowerCase(), new Literal(StringUtils.unquoteText( + v.relevanceArgValue().getText()), DataType.STRING)))); + return builder.build(); + } } diff --git a/ppl/src/test/java/org/opensearch/sql/ppl/antlr/PPLSyntaxParserTest.java b/ppl/src/test/java/org/opensearch/sql/ppl/antlr/PPLSyntaxParserTest.java index 3d5f8d453c..b3afec4dc9 100644 --- a/ppl/src/test/java/org/opensearch/sql/ppl/antlr/PPLSyntaxParserTest.java +++ b/ppl/src/test/java/org/opensearch/sql/ppl/antlr/PPLSyntaxParserTest.java @@ -79,4 +79,37 @@ public void testTopCommandWithoutNAndGroupByShouldPass() { ParseTree tree = new PPLSyntaxParser().analyzeSyntax("source=t a=1 | top a by b"); assertNotEquals(null, tree); } + + @Test + public void can_parse_simple_query_string_relevance_function() { + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address'], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address', 'notes'], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string([\"*\"], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string([\"address\"], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string([`address`], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string([address], 'query')")); + + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address' ^ 1.0, 'notes' ^ 2.2], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address' ^ 1.1, 'notes'], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address', 'notes' ^ 1.5], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address', 'notes' 3], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string(['address' ^ .3, 'notes' 3], 'query')")); + + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string([\"Tags\" ^ 1.5, Title, `Body` 4.2], 'query')")); + assertNotEquals(null, new PPLSyntaxParser().analyzeSyntax( + "SOURCE=test | WHERE simple_query_string([\"Tags\" ^ 1.5, Title, `Body` 4.2], 'query'," + + "analyzer=keyword, quote_field_suffix=\".exact\", fuzzy_prefix_length = 4)")); + } } diff --git a/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java b/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java index 809655cc24..d1b74bd82e 100644 --- a/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java +++ b/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java @@ -25,6 +25,7 @@ import static org.opensearch.sql.ast.dsl.AstDSL.exprList; import static org.opensearch.sql.ast.dsl.AstDSL.field; import static org.opensearch.sql.ast.dsl.AstDSL.filter; +import static org.opensearch.sql.ast.dsl.AstDSL.floatLiteral; import static org.opensearch.sql.ast.dsl.AstDSL.function; import static org.opensearch.sql.ast.dsl.AstDSL.in; import static org.opensearch.sql.ast.dsl.AstDSL.intLiteral; @@ -42,10 +43,12 @@ import static org.opensearch.sql.ast.dsl.AstDSL.unresolvedArg; import static org.opensearch.sql.ast.dsl.AstDSL.xor; +import com.google.common.collect.ImmutableMap; import org.junit.Ignore; import org.junit.Test; import org.opensearch.sql.ast.expression.AllFields; import org.opensearch.sql.ast.expression.DataType; +import org.opensearch.sql.ast.expression.RelevanceFieldList; public class AstExpressionBuilderTest extends AstBuilderTest { @@ -641,9 +644,9 @@ public void canBuildKeywordsAsIdentInQualifiedName() { } @Test - public void canBuildRelevanceFunctionWithArguments() { + public void canBuildMatchRelevanceFunctionWithArguments() { assertEqual( - "source=test | where match(message, 'test query', analyzer='keyword')", + "source=test | where match('message', 'test query', analyzer='keyword')", filter( relation("test"), function( @@ -655,4 +658,23 @@ public void canBuildRelevanceFunctionWithArguments() { ) ); } + + @Test + public void canBuildSimple_query_stringRelevanceFunctionWithArguments() { + assertEqual( + "source=test | where simple_query_string(['field1', 'field2' ^ 3.2]," + + "'test query', analyzer='keyword')", + filter( + relation("test"), + function( + "simple_query_string", + unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( + stringLiteral("field1"), floatLiteral(1.F), + stringLiteral("field2"), floatLiteral(3.2F)))), + unresolvedArg("query", stringLiteral("test query")), + unresolvedArg("analyzer", stringLiteral("keyword")) + ) + ) + ); + } } diff --git a/sql/src/main/antlr/OpenSearchSQLLexer.g4 b/sql/src/main/antlr/OpenSearchSQLLexer.g4 index ed2d7e8160..dcc65fa46e 100644 --- a/sql/src/main/antlr/OpenSearchSQLLexer.g4 +++ b/sql/src/main/antlr/OpenSearchSQLLexer.g4 @@ -279,6 +279,7 @@ INCLUDE: 'INCLUDE'; IN_TERMS: 'IN_TERMS'; MATCHPHRASE: 'MATCHPHRASE'; MATCH_PHRASE: 'MATCH_PHRASE'; +SIMPLE_QUERY_STRING: 'SIMPLE_QUERY_STRING'; MATCHQUERY: 'MATCHQUERY'; MATCH_QUERY: 'MATCH_QUERY'; MINUTE_OF_DAY: 'MINUTE_OF_DAY'; @@ -310,18 +311,37 @@ STRCMP: 'STRCMP'; ADDDATE: 'ADDDATE'; // RELEVANCE FUNCTIONS AND PARAMETERS +ALLOW_LEADING_WILDCARD: 'ALLOW_LEADING_WILDCARD'; +ANALYZE_WILDCARD: 'ANALYZE_WILDCARD'; ANALYZER: 'ANALYZER'; -FUZZINESS: 'FUZZINESS'; AUTO_GENERATE_SYNONYMS_PHRASE_QUERY:'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'; -MAX_EXPANSIONS: 'MAX_EXPANSIONS'; -PREFIX_LENGTH: 'PREFIX_LENGTH'; +BOOST: 'BOOST'; +CUTOFF_FREQUENCY: 'CUTOFF_FREQUENCY'; +DEFAULT_FIELD: 'DEFAULT_FIELD'; +DEFAULT_OPERATOR: 'DEFAULT_OPERATOR'; +ENABLE_POSITION_INCREMENTS: 'ENABLE_POSITION_INCREMENTS'; +FLAGS: 'FLAGS'; +FUZZY_MAX_EXPANSIONS: 'FUZZY_MAX_EXPANSIONS'; +FUZZY_PREFIX_LENGTH: 'FUZZY_PREFIX_LENGTH'; FUZZY_TRANSPOSITIONS: 'FUZZY_TRANSPOSITIONS'; FUZZY_REWRITE: 'FUZZY_REWRITE'; +FUZZINESS: 'FUZZINESS'; LENIENT: 'LENIENT'; -OPERATOR: 'OPERATOR'; +LOW_FREQ_OPERATOR: 'LOW_FREQ_OPERATOR'; +MAX_DETERMINIZED_STATES: 'MAX_DETERMINIZED_STATES'; +MAX_EXPANSIONS: 'MAX_EXPANSIONS'; MINIMUM_SHOULD_MATCH: 'MINIMUM_SHOULD_MATCH'; +OPERATOR: 'OPERATOR'; +PHRASE_SLOP: 'PHRASE_SLOP'; +PREFIX_LENGTH: 'PREFIX_LENGTH'; +QUOTE_ANALYZER: 'QUOTE_ANALYZER'; +QUOTE_FIELD_SUFFIX: 'QUOTE_FIELD_SUFFIX'; +REWRITE: 'REWRITE'; +SLOP: 'SLOP'; +TIE_BREAKER: 'TIE_BREAKER'; +TIME_ZONE: 'TIME_ZONE'; +TYPE: 'TYPE'; ZERO_TERMS_QUERY: 'ZERO_TERMS_QUERY'; -BOOST: 'BOOST'; // Operators @@ -357,6 +377,8 @@ BIT_XOR_OP: '^'; DOT: '.'; LR_BRACKET: '('; RR_BRACKET: ')'; +LT_SQR_PRTHS: '['; +RT_SQR_PRTHS: ']'; COMMA: ','; SEMI: ';'; AT_SIGN: '@'; diff --git a/sql/src/main/antlr/OpenSearchSQLParser.g4 b/sql/src/main/antlr/OpenSearchSQLParser.g4 index 0b8f3c5250..d08bcf162a 100644 --- a/sql/src/main/antlr/OpenSearchSQLParser.g4 +++ b/sql/src/main/antlr/OpenSearchSQLParser.g4 @@ -318,9 +318,20 @@ specificFunction ; relevanceFunction - : relevanceFunctionName LR_BRACKET - field=relevanceArgValue COMMA query=relevanceArgValue - (COMMA relevanceArg)* RR_BRACKET + : singleFieldRelevanceFunction | multiFieldRelevanceFunction + ; + +// Field is a single column +singleFieldRelevanceFunction + : singleFieldRelevanceFunctionName LR_BRACKET + field=relevanceField COMMA query=relevanceQuery + (COMMA relevanceArg)* RR_BRACKET; + +// Field is a list of columns +multiFieldRelevanceFunction + : multiFieldRelevanceFunctionName LR_BRACKET + LT_SQR_PRTHS field=relevanceFieldAndWeight (COMMA field=relevanceFieldAndWeight)* RT_SQR_PRTHS + COMMA query=relevanceQuery (COMMA relevanceArg)* RR_BRACKET ; convertedDataType @@ -382,10 +393,14 @@ flowControlFunctionName : IF | IFNULL | NULLIF | ISNULL ; -relevanceFunctionName +singleFieldRelevanceFunctionName : MATCH ; +multiFieldRelevanceFunctionName + : SIMPLE_QUERY_STRING + ; + legacyRelevanceFunctionName : QUERY | MATCH_QUERY | MATCHQUERY ; @@ -403,9 +418,32 @@ relevanceArg ; relevanceArgName - : ANALYZER | FUZZINESS | AUTO_GENERATE_SYNONYMS_PHRASE_QUERY | MAX_EXPANSIONS | PREFIX_LENGTH - | FUZZY_TRANSPOSITIONS | FUZZY_REWRITE | LENIENT | OPERATOR | MINIMUM_SHOULD_MATCH | ZERO_TERMS_QUERY - | BOOST + : ALLOW_LEADING_WILDCARD | ANALYZE_WILDCARD | ANALYZER | AUTO_GENERATE_SYNONYMS_PHRASE_QUERY + | BOOST | CUTOFF_FREQUENCY | DEFAULT_FIELD | DEFAULT_OPERATOR | ENABLE_POSITION_INCREMENTS + | FLAGS | FUZZY_MAX_EXPANSIONS | FUZZY_PREFIX_LENGTH | FUZZY_TRANSPOSITIONS | FUZZY_REWRITE + | FUZZINESS | LENIENT | LOW_FREQ_OPERATOR | MAX_DETERMINIZED_STATES | MAX_EXPANSIONS + | MINIMUM_SHOULD_MATCH | OPERATOR | PHRASE_SLOP | PREFIX_LENGTH | QUOTE_ANALYZER + | QUOTE_FIELD_SUFFIX | REWRITE | SLOP | TIE_BREAKER | TIME_ZONE | TYPE | ZERO_TERMS_QUERY + ; + +relevanceFieldAndWeight + : field=relevanceField + | field=relevanceField weight=relevanceFieldWeight + | field=relevanceField BIT_XOR_OP weight=relevanceFieldWeight + ; + +relevanceFieldWeight + : realLiteral + | decimalLiteral + ; + +relevanceField + : qualifiedName + | stringLiteral + ; + +relevanceQuery + : relevanceArgValue ; relevanceArgValue diff --git a/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java b/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java index 12105a7620..9975717095 100644 --- a/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java +++ b/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java @@ -68,6 +68,7 @@ import org.opensearch.sql.ast.expression.Not; import org.opensearch.sql.ast.expression.Or; import org.opensearch.sql.ast.expression.QualifiedName; +import org.opensearch.sql.ast.expression.RelevanceFieldList; import org.opensearch.sql.ast.expression.UnresolvedArgument; import org.opensearch.sql.ast.expression.UnresolvedExpression; import org.opensearch.sql.ast.expression.When; @@ -362,9 +363,17 @@ public UnresolvedExpression visitConvertedDataType( @Override public UnresolvedExpression visitRelevanceFunction(RelevanceFunctionContext ctx) { - return new Function( - ctx.relevanceFunctionName().getText().toLowerCase(), - relevanceArguments(ctx)); + if (ctx.singleFieldRelevanceFunction() != null) { + return new Function( + ctx.singleFieldRelevanceFunction() + .singleFieldRelevanceFunctionName().getText().toLowerCase(), + singleFieldRelevanceArguments(ctx.singleFieldRelevanceFunction())); + } else { + return new Function( + ctx.multiFieldRelevanceFunction() + .multiFieldRelevanceFunctionName().getText().toLowerCase(), + multiFieldRelevanceArguments(ctx.multiFieldRelevanceFunction())); + } } private Function visitFunction(String functionName, FunctionArgsContext args) { @@ -389,7 +398,8 @@ private QualifiedName visitIdentifiers(List identifiers) { ); } - private List relevanceArguments(RelevanceFunctionContext ctx) { + private List singleFieldRelevanceArguments( + OpenSearchSQLParser.SingleFieldRelevanceFunctionContext ctx) { // all the arguments are defaulted to string values // to skip environment resolving and function signature resolving ImmutableList.Builder builder = ImmutableList.builder(); @@ -403,4 +413,25 @@ private List relevanceArguments(RelevanceFunctionContext c return builder.build(); } + private List multiFieldRelevanceArguments( + OpenSearchSQLParser.MultiFieldRelevanceFunctionContext ctx) { + // all the arguments are defaulted to string values + // to skip environment resolving and function signature resolving + ImmutableList.Builder builder = ImmutableList.builder(); + var fields = new RelevanceFieldList(ctx + .getRuleContexts(OpenSearchSQLParser.RelevanceFieldAndWeightContext.class) + .stream() + .collect(Collectors.toMap( + f -> new Literal(StringUtils.unquoteText(f.field.getText()), DataType.STRING), + f -> (f.weight == null) + ? new Literal(1F, DataType.FLOAT) + : new Literal(Float.parseFloat(f.weight.getText()), DataType.FLOAT)))); + builder.add(new UnresolvedArgument("fields", fields)); + builder.add(new UnresolvedArgument("query", + new Literal(StringUtils.unquoteText(ctx.query.getText()), DataType.STRING))); + ctx.relevanceArg().forEach(v -> builder.add(new UnresolvedArgument( + v.relevanceArgName().getText().toLowerCase(), new Literal(StringUtils.unquoteText( + v.relevanceArgValue().getText()), DataType.STRING)))); + return builder.build(); + } } diff --git a/sql/src/test/java/org/opensearch/sql/sql/antlr/SQLSyntaxParserTest.java b/sql/src/test/java/org/opensearch/sql/sql/antlr/SQLSyntaxParserTest.java index e7cb22e8a2..79bfab2c83 100644 --- a/sql/src/test/java/org/opensearch/sql/sql/antlr/SQLSyntaxParserTest.java +++ b/sql/src/test/java/org/opensearch/sql/sql/antlr/SQLSyntaxParserTest.java @@ -144,4 +144,39 @@ public void canNotParseShowStatementWithoutFilterClause() { assertThrows(SyntaxCheckException.class, () -> parser.parse("SHOW TABLES")); } + @Test + public void can_parse_simple_query_string_relevance_function() { + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string(['address'], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string(['address', 'notes'], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string([\"*\"], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string([\"address\"], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string([`address`], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string([address], 'query')")); + + assertNotNull(parser.parse( + "SELECT id FROM test WHERE" + + " simple_query_string(['address' ^ 1.0, 'notes' ^ 2.2], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string(['address' ^ 1.1, 'notes'], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string(['address', 'notes' ^ 1.5], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string(['address', 'notes' 3], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE simple_query_string(['address' ^ .3, 'notes' 3], 'query')")); + + assertNotNull(parser.parse( + "SELECT id FROM test WHERE" + + " simple_query_string([\"Tags\" ^ 1.5, Title, `Body` 4.2], 'query')")); + assertNotNull(parser.parse( + "SELECT id FROM test WHERE" + + " simple_query_string([\"Tags\" ^ 1.5, Title, `Body` 4.2], 'query', analyzer=keyword," + + "flags='AND', quote_field_suffix=\".exact\", fuzzy_prefix_length = 4)")); + } } diff --git a/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java b/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java index 5112618264..ef7d779fd9 100644 --- a/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java +++ b/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java @@ -13,6 +13,7 @@ import static org.opensearch.sql.ast.dsl.AstDSL.caseWhen; import static org.opensearch.sql.ast.dsl.AstDSL.dateLiteral; import static org.opensearch.sql.ast.dsl.AstDSL.doubleLiteral; +import static org.opensearch.sql.ast.dsl.AstDSL.floatLiteral; import static org.opensearch.sql.ast.dsl.AstDSL.function; import static org.opensearch.sql.ast.dsl.AstDSL.intLiteral; import static org.opensearch.sql.ast.dsl.AstDSL.intervalLiteral; @@ -32,12 +33,14 @@ import static org.opensearch.sql.ast.tree.Sort.SortOrder.DESC; import com.google.common.collect.ImmutableList; +import com.google.common.collect.ImmutableMap; import org.antlr.v4.runtime.CommonTokenStream; import org.apache.commons.lang3.tuple.ImmutablePair; import org.junit.jupiter.api.Test; import org.opensearch.sql.ast.Node; import org.opensearch.sql.ast.dsl.AstDSL; import org.opensearch.sql.ast.expression.DataType; +import org.opensearch.sql.ast.expression.RelevanceFieldList; import org.opensearch.sql.ast.tree.Sort.SortOption; import org.opensearch.sql.common.antlr.CaseInsensitiveCharStream; import org.opensearch.sql.common.antlr.SyntaxAnalysisErrorListener; @@ -433,7 +436,7 @@ public void relevanceMatch() { assertEquals(AstDSL.function("match", unresolvedArg("field", stringLiteral("message")), unresolvedArg("query", stringLiteral("search query"))), - buildExprAst("match(message, 'search query')") + buildExprAst("match('message', 'search query')") ); assertEquals(AstDSL.function("match", @@ -441,7 +444,28 @@ public void relevanceMatch() { unresolvedArg("query", stringLiteral("search query")), unresolvedArg("analyzer", stringLiteral("keyword")), unresolvedArg("operator", stringLiteral("AND"))), - buildExprAst("match(message, 'search query', analyzer='keyword', operator='AND')")); + buildExprAst("match('message', 'search query', analyzer='keyword', operator='AND')")); + } + + @Test + public void relevanceSimple_query_string() { + assertEquals(AstDSL.function("simple_query_string", + unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( + stringLiteral("field2"), floatLiteral(3.2F), + stringLiteral("field1"), floatLiteral(1.F)))), + unresolvedArg("query", stringLiteral("search query"))), + buildExprAst("simple_query_string(['field1', 'field2' ^ 3.2], 'search query')") + ); + + assertEquals(AstDSL.function("simple_query_string", + unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( + stringLiteral("field2"), floatLiteral(3.2F), + stringLiteral("field1"), floatLiteral(1.F)))), + unresolvedArg("query", stringLiteral("search query")), + unresolvedArg("analyzer", stringLiteral("keyword")), + unresolvedArg("operator", stringLiteral("AND"))), + buildExprAst("simple_query_string(['field1', 'field2' ^ 3.2], 'search query'," + + "analyzer='keyword', operator='AND')")); } @Test @@ -467,5 +491,4 @@ private Node buildExprAst(String expr) { parser.addErrorListener(new SyntaxAnalysisErrorListener()); return parser.expression().accept(astExprBuilder); } - } From 521beca3869e9aa84f2e9111f1f8721af7625a9f Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Fri, 3 Jun 2022 19:39:46 -0700 Subject: [PATCH 2/8] Rework `SimpleQueryStringQuery` to use the `RelevanceFunction` interface. Signed-off-by: Yury Fridlyand --- .../relevance/SimpleQueryStringQuery.java | 93 ++++++++----------- 1 file changed, 40 insertions(+), 53 deletions(-) diff --git a/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java b/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java index ac927959e0..109236db8e 100644 --- a/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java +++ b/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java @@ -6,64 +6,44 @@ package org.opensearch.sql.opensearch.storage.script.filter.lucene.relevance; import com.google.common.collect.ImmutableMap; -import io.vavr.Tuple; import java.util.Iterator; -import java.util.Map; -import java.util.function.BiFunction; +import java.util.Objects; import java.util.stream.Collectors; import org.opensearch.index.query.Operator; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; import org.opensearch.index.query.SimpleQueryStringBuilder; import org.opensearch.index.query.SimpleQueryStringFlag; -import org.opensearch.sql.data.model.ExprValue; import org.opensearch.sql.exception.SemanticCheckException; import org.opensearch.sql.expression.Expression; import org.opensearch.sql.expression.FunctionExpression; import org.opensearch.sql.expression.NamedArgumentExpression; -import org.opensearch.sql.opensearch.storage.script.filter.lucene.LuceneQuery; -public class SimpleQueryStringQuery extends LuceneQuery { - private final BiFunction - analyzeWildcard = (b, v) -> b.analyzeWildcard(Boolean.parseBoolean(v.stringValue())); - private final BiFunction - analyzer = (b, v) -> b.analyzer(v.stringValue()); - private final BiFunction - autoGenerateSynonymsPhraseQuery = (b, v) -> - b.autoGenerateSynonymsPhraseQuery(Boolean.parseBoolean(v.stringValue())); - private final BiFunction - defaultOperator = (b, v) -> b.defaultOperator(Operator.fromString(v.stringValue())); - private final BiFunction - flags = (b, v) -> b.flags(SimpleQueryStringFlag.valueOf(v.stringValue())); - private final BiFunction - fuzzyMaxExpansions = (b, v) -> b.fuzzyMaxExpansions(Integer.parseInt(v.stringValue())); - private final BiFunction - fuzzyPrefixLength = (b, v) -> b.fuzzyPrefixLength(Integer.parseInt(v.stringValue())); - private final BiFunction - fuzzyTranspositions = (b, v) -> b.fuzzyTranspositions(Boolean.parseBoolean(v.stringValue())); - private final BiFunction - lenient = (b, v) -> b.lenient(Boolean.parseBoolean(v.stringValue())); - private final BiFunction - minimumShouldMatch = (b, v) -> b.minimumShouldMatch(v.stringValue()); - private final BiFunction - quoteFieldSuffix = (b, v) -> b.quoteFieldSuffix(v.stringValue()); - private final BiFunction - boost = (b, v) -> b.boost(Float.parseFloat(v.stringValue())); - - ImmutableMap argAction = ImmutableMap.builder() - .put("analyze_wildcard", analyzeWildcard) - .put("analyzer", analyzer) - .put("auto_generate_synonyms_phrase_query", autoGenerateSynonymsPhraseQuery) - .put("flags", flags) - .put("fuzzy_max_expansions", fuzzyMaxExpansions) - .put("fuzzy_prefix_length", fuzzyPrefixLength) - .put("fuzzy_transpositions", fuzzyTranspositions) - .put("lenient", lenient) - .put("default_operator", defaultOperator) - .put("minimum_should_match", minimumShouldMatch) - .put("quote_field_suffix", quoteFieldSuffix) - .put("boost", boost) - .build(); +public class SimpleQueryStringQuery extends RelevanceQuery { + /** + * Default constructor for SimpleQueryString configures how RelevanceQuery.build() handles + * named arguments. + */ + public SimpleQueryStringQuery() { + super(ImmutableMap.>builder() + .put("analyze_wildcard", (b, v) -> b.analyzeWildcard(Boolean.parseBoolean(v.stringValue()))) + .put("analyzer", (b, v) -> b.analyzer(v.stringValue())) + .put("auto_generate_synonyms_phrase_query", (b, v) -> + b.autoGenerateSynonymsPhraseQuery(Boolean.parseBoolean(v.stringValue()))) + .put("boost", (b, v) -> b.boost(Float.parseFloat(v.stringValue()))) + .put("default_operator", (b, v) -> b.defaultOperator(Operator.fromString(v.stringValue()))) + .put("flags", (b, v) -> b.flags(SimpleQueryStringFlag.valueOf(v.stringValue()))) + .put("fuzzy_max_expansions", (b, v) -> + b.fuzzyMaxExpansions(Integer.parseInt(v.stringValue()))) + .put("fuzzy_prefix_length", (b, v) -> + b.fuzzyPrefixLength(Integer.parseInt(v.stringValue()))) + .put("fuzzy_transpositions", (b, v) -> + b.fuzzyTranspositions(Boolean.parseBoolean(v.stringValue()))) + .put("lenient", (b, v) -> b.lenient(Boolean.parseBoolean(v.stringValue()))) + .put("minimum_should_match", (b, v) -> b.minimumShouldMatch(v.stringValue())) + .put("quote_field_suffix", (b, v) -> b.quoteFieldSuffix(v.stringValue())) + .build()); + } @Override public QueryBuilder build(FunctionExpression func) { @@ -82,19 +62,26 @@ public QueryBuilder build(FunctionExpression func) { .stream() .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().floatValue())); - SimpleQueryStringBuilder queryBuilder = QueryBuilders - .simpleQueryStringQuery(query.getValue().valueOf(null).stringValue()) + SimpleQueryStringBuilder queryBuilder = createQueryBuilder(null, + query.getValue().valueOf(null).stringValue()) .fields(fieldsAndWeights); while (iterator.hasNext()) { NamedArgumentExpression arg = (NamedArgumentExpression) iterator.next(); - if (!argAction.containsKey(arg.getArgName())) { - throw new SemanticCheckException(String - .format("Parameter %s is invalid for simple_query_string function.", arg.getArgName())); + if (!queryBuildActions.containsKey(arg.getArgName())) { + throw new SemanticCheckException( + String.format("Parameter %s is invalid for %s function.", + arg.getArgName(), queryBuilder.getWriteableName())); } - ((BiFunction) argAction - .get(arg.getArgName())) + (Objects.requireNonNull( + queryBuildActions + .get(arg.getArgName()))) .apply(queryBuilder, arg.getValue().valueOf(null)); } return queryBuilder; } + + @Override + protected SimpleQueryStringBuilder createQueryBuilder(String field, String query) { + return QueryBuilders.simpleQueryStringQuery(query); + } } From 0817d9e42cb3c7655eeb34cb177404d445e8e715 Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Fri, 3 Jun 2022 20:05:28 -0700 Subject: [PATCH 3/8] Optimize `AstExpressionBuilder`. Signed-off-by: Yury Fridlyand --- .../sql/ppl/parser/AstExpressionBuilder.java | 28 ++++++++++--------- .../sql/sql/parser/AstExpressionBuilder.java | 28 ++++++++++--------- 2 files changed, 30 insertions(+), 26 deletions(-) diff --git a/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java b/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java index db25ce7145..bf8148153a 100644 --- a/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java +++ b/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java @@ -31,9 +31,10 @@ import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.LogicalNotContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.LogicalOrContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.LogicalXorContext; +import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.MultiFieldRelevanceFunctionContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.ParentheticBinaryArithmeticContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.PercentileAggFunctionContext; -import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.RelevanceExpressionContext; +import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.SingleFieldRelevanceFunctionContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.SortFieldContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.SpanClauseContext; import static org.opensearch.sql.ppl.antlr.parser.OpenSearchPPLParser.StatsFunctionCallContext; @@ -253,18 +254,19 @@ public UnresolvedExpression visitConvertedDataType(ConvertedDataTypeContext ctx) } @Override - public UnresolvedExpression visitRelevanceExpression(RelevanceExpressionContext ctx) { - if (ctx.singleFieldRelevanceFunction() != null) { - return new Function( - ctx.singleFieldRelevanceFunction() - .singleFieldRelevanceFunctionName().getText().toLowerCase(), - singleFieldRelevanceArguments(ctx.singleFieldRelevanceFunction())); - } else { - return new Function( - ctx.multiFieldRelevanceFunction() - .multiFieldRelevanceFunctionName().getText().toLowerCase(), - multiFieldRelevanceArguments(ctx.multiFieldRelevanceFunction())); - } + public UnresolvedExpression visitSingleFieldRelevanceFunction( + SingleFieldRelevanceFunctionContext ctx) { + return new Function( + ctx.singleFieldRelevanceFunctionName().getText().toLowerCase(), + singleFieldRelevanceArguments(ctx)); + } + + @Override + public UnresolvedExpression visitMultiFieldRelevanceFunction( + MultiFieldRelevanceFunctionContext ctx) { + return new Function( + ctx.multiFieldRelevanceFunctionName().getText().toLowerCase(), + multiFieldRelevanceArguments(ctx)); } @Override diff --git a/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java b/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java index 9975717095..767475e624 100644 --- a/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java +++ b/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java @@ -26,18 +26,19 @@ import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.IsNullPredicateContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.LikePredicateContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.MathExpressionAtomContext; +import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.MultiFieldRelevanceFunctionContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.NotExpressionContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.NullLiteralContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.OverClauseContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.QualifiedNameContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.RegexpPredicateContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.RegularAggregateFunctionCallContext; -import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.RelevanceFunctionContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.ScalarFunctionCallContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.ScalarWindowFunctionContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.ShowDescribePatternContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.SignedDecimalContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.SignedRealContext; +import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.SingleFieldRelevanceFunctionContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.StringContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.StringLiteralContext; import static org.opensearch.sql.sql.antlr.parser.OpenSearchSQLParser.TableFilterContext; @@ -362,18 +363,19 @@ public UnresolvedExpression visitConvertedDataType( } @Override - public UnresolvedExpression visitRelevanceFunction(RelevanceFunctionContext ctx) { - if (ctx.singleFieldRelevanceFunction() != null) { - return new Function( - ctx.singleFieldRelevanceFunction() - .singleFieldRelevanceFunctionName().getText().toLowerCase(), - singleFieldRelevanceArguments(ctx.singleFieldRelevanceFunction())); - } else { - return new Function( - ctx.multiFieldRelevanceFunction() - .multiFieldRelevanceFunctionName().getText().toLowerCase(), - multiFieldRelevanceArguments(ctx.multiFieldRelevanceFunction())); - } + public UnresolvedExpression visitSingleFieldRelevanceFunction( + SingleFieldRelevanceFunctionContext ctx) { + return new Function( + ctx.singleFieldRelevanceFunctionName().getText().toLowerCase(), + singleFieldRelevanceArguments(ctx)); + } + + @Override + public UnresolvedExpression visitMultiFieldRelevanceFunction( + MultiFieldRelevanceFunctionContext ctx) { + return new Function( + ctx.multiFieldRelevanceFunctionName().getText().toLowerCase(), + multiFieldRelevanceArguments(ctx)); } private Function visitFunction(String functionName, FunctionArgsContext args) { From 015aa067fb11a4795926eb6c5d7d097e3662a871 Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Fri, 3 Jun 2022 21:51:55 -0700 Subject: [PATCH 4/8] Update `RelevanceFieldList` to store `Map` and simplify processing. Signed-off-by: Yury Fridlyand --- .../opensearch/sql/analysis/ExpressionAnalyzer.java | 11 +++-------- .../sql/ast/expression/RelevanceFieldList.java | 2 +- .../sql/analysis/ExpressionAnalyzerTest.java | 7 +++---- .../sql/ppl/parser/AstExpressionBuilder.java | 6 ++---- .../sql/ppl/parser/AstExpressionBuilderTest.java | 3 +-- .../sql/sql/parser/AstExpressionBuilder.java | 6 ++---- .../sql/sql/parser/AstExpressionBuilderTest.java | 6 ++---- 7 files changed, 14 insertions(+), 27 deletions(-) diff --git a/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java b/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java index edb95c1c77..91b964d074 100644 --- a/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java +++ b/core/src/main/java/org/opensearch/sql/analysis/ExpressionAnalyzer.java @@ -13,6 +13,7 @@ import java.util.Collections; import java.util.LinkedHashMap; import java.util.List; +import java.util.Map; import java.util.Optional; import java.util.stream.Collectors; import lombok.Getter; @@ -165,14 +166,8 @@ public Expression visitAggregateFunction(AggregateFunction node, AnalysisContext @Override public Expression visitRelevanceFieldList(RelevanceFieldList node, AnalysisContext context) { - return new LiteralExpression(new ExprTupleValue(new LinkedHashMap<>(node - .getFieldList() - .entrySet() - .stream() - .collect(ImmutableMap.toImmutableMap( - n -> n.getKey().toString(), - n -> ExprValueUtils.floatValue((Float) ((Literal) n.getValue()).getValue()) - ))))); + return new LiteralExpression(ExprValueUtils.tupleValue( + ImmutableMap.copyOf(node.getFieldList()))); } @Override diff --git a/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java b/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java index 0a789fea26..3166fe45c3 100644 --- a/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java +++ b/core/src/main/java/org/opensearch/sql/ast/expression/RelevanceFieldList.java @@ -20,7 +20,7 @@ @AllArgsConstructor public class RelevanceFieldList extends UnresolvedExpression { @Getter - private java.util.Map fieldList; + private java.util.Map fieldList; @Override public List getChild() { diff --git a/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java b/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java index a42a916bd7..ede3bf2dbe 100644 --- a/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java +++ b/core/src/test/java/org/opensearch/sql/analysis/ExpressionAnalyzerTest.java @@ -375,7 +375,7 @@ void simple_query_string_expression() { dsl.namedArgument("query", DSL.literal("sample query"))), AstDSL.function("simple_query_string", AstDSL.unresolvedArg("fields", new RelevanceFieldList(Map.of( - stringLiteral("field"), floatLiteral(1.F)))), + "field", 1.F))), AstDSL.unresolvedArg("query", stringLiteral("sample query")))); } @@ -390,7 +390,7 @@ void simple_query_string_expression_with_params() { dsl.namedArgument("analyzer", DSL.literal("keyword"))), AstDSL.function("simple_query_string", AstDSL.unresolvedArg("fields", new RelevanceFieldList(Map.of( - stringLiteral("field"), floatLiteral(1.F)))), + "field", 1.F))), AstDSL.unresolvedArg("query", stringLiteral("sample query")), AstDSL.unresolvedArg("analyzer", stringLiteral("keyword")))); } @@ -406,8 +406,7 @@ void simple_query_string_expression_two_fields() { dsl.namedArgument("query", DSL.literal("sample query"))), AstDSL.function("simple_query_string", AstDSL.unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( - stringLiteral("field1"), floatLiteral(1.F), - stringLiteral("field2"), floatLiteral(.3F)))), + "field1", 1.F, "field2", .3F))), AstDSL.unresolvedArg("query", stringLiteral("sample query")))); } diff --git a/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java b/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java index bf8148153a..6e5893d6a3 100644 --- a/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java +++ b/ppl/src/main/java/org/opensearch/sql/ppl/parser/AstExpressionBuilder.java @@ -364,10 +364,8 @@ private List multiFieldRelevanceArguments( .getRuleContexts(OpenSearchPPLParser.RelevanceFieldAndWeightContext.class) .stream() .collect(Collectors.toMap( - f -> new Literal(StringUtils.unquoteText(f.field.getText()), DataType.STRING), - f -> (f.weight == null) - ? new Literal(1F, DataType.FLOAT) - : new Literal(Float.parseFloat(f.weight.getText()), DataType.FLOAT)))); + f -> StringUtils.unquoteText(f.field.getText()), + f -> (f.weight == null) ? 1F : Float.parseFloat(f.weight.getText())))); builder.add(new UnresolvedArgument("fields", fields)); builder.add(new UnresolvedArgument("query", new Literal(StringUtils.unquoteText(ctx.query.getText()), DataType.STRING))); diff --git a/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java b/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java index d1b74bd82e..b621fe2495 100644 --- a/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java +++ b/ppl/src/test/java/org/opensearch/sql/ppl/parser/AstExpressionBuilderTest.java @@ -669,8 +669,7 @@ public void canBuildSimple_query_stringRelevanceFunctionWithArguments() { function( "simple_query_string", unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( - stringLiteral("field1"), floatLiteral(1.F), - stringLiteral("field2"), floatLiteral(3.2F)))), + "field1", 1.F, "field2", 3.2F))), unresolvedArg("query", stringLiteral("test query")), unresolvedArg("analyzer", stringLiteral("keyword")) ) diff --git a/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java b/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java index 767475e624..3c686b5e8e 100644 --- a/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java +++ b/sql/src/main/java/org/opensearch/sql/sql/parser/AstExpressionBuilder.java @@ -424,10 +424,8 @@ private List multiFieldRelevanceArguments( .getRuleContexts(OpenSearchSQLParser.RelevanceFieldAndWeightContext.class) .stream() .collect(Collectors.toMap( - f -> new Literal(StringUtils.unquoteText(f.field.getText()), DataType.STRING), - f -> (f.weight == null) - ? new Literal(1F, DataType.FLOAT) - : new Literal(Float.parseFloat(f.weight.getText()), DataType.FLOAT)))); + f -> StringUtils.unquoteText(f.field.getText()), + f -> (f.weight == null) ? 1F : Float.parseFloat(f.weight.getText())))); builder.add(new UnresolvedArgument("fields", fields)); builder.add(new UnresolvedArgument("query", new Literal(StringUtils.unquoteText(ctx.query.getText()), DataType.STRING))); diff --git a/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java b/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java index ef7d779fd9..9b6085ff49 100644 --- a/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java +++ b/sql/src/test/java/org/opensearch/sql/sql/parser/AstExpressionBuilderTest.java @@ -451,16 +451,14 @@ public void relevanceMatch() { public void relevanceSimple_query_string() { assertEquals(AstDSL.function("simple_query_string", unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( - stringLiteral("field2"), floatLiteral(3.2F), - stringLiteral("field1"), floatLiteral(1.F)))), + "field2", 3.2F, "field1", 1.F))), unresolvedArg("query", stringLiteral("search query"))), buildExprAst("simple_query_string(['field1', 'field2' ^ 3.2], 'search query')") ); assertEquals(AstDSL.function("simple_query_string", unresolvedArg("fields", new RelevanceFieldList(ImmutableMap.of( - stringLiteral("field2"), floatLiteral(3.2F), - stringLiteral("field1"), floatLiteral(1.F)))), + "field2", 3.2F, "field1", 1.F))), unresolvedArg("query", stringLiteral("search query")), unresolvedArg("analyzer", stringLiteral("keyword")), unresolvedArg("operator", stringLiteral("AND"))), From 9814fa44d7e0ca4a25f734f48360e9ced2527838 Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Mon, 6 Jun 2022 09:58:49 -0700 Subject: [PATCH 5/8] Update `SimpleQueryStringQuery` to use `ImmutableMap`. Signed-off-by: Yury Fridlyand --- .../script/filter/lucene/relevance/SimpleQueryStringQuery.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java b/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java index 109236db8e..2e75c8c178 100644 --- a/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java +++ b/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/relevance/SimpleQueryStringQuery.java @@ -8,7 +8,6 @@ import com.google.common.collect.ImmutableMap; import java.util.Iterator; import java.util.Objects; -import java.util.stream.Collectors; import org.opensearch.index.query.Operator; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; @@ -60,7 +59,7 @@ public QueryBuilder build(FunctionExpression func) { .tupleValue() .entrySet() .stream() - .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().floatValue())); + .collect(ImmutableMap.toImmutableMap(e -> e.getKey(), e -> e.getValue().floatValue())); SimpleQueryStringBuilder queryBuilder = createQueryBuilder(null, query.getValue().valueOf(null).stringValue()) From 2ac159fd12d44927ae73dd5e04f071ab5cc09f92 Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Mon, 6 Jun 2022 12:10:16 -0700 Subject: [PATCH 6/8] Rework on DSL tests. Signed-off-by: Yury Fridlyand --- .../script/filter/FilterQueryBuilderTest.java | 123 ++++++++++-------- 1 file changed, 71 insertions(+), 52 deletions(-) diff --git a/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java b/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java index af25341034..1cd47ed51f 100644 --- a/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java +++ b/opensearch/src/test/java/org/opensearch/sql/opensearch/storage/script/filter/FilterQueryBuilderTest.java @@ -33,7 +33,6 @@ import java.util.stream.Stream; import org.json.JSONObject; import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.DisplayNameGeneration; import org.junit.jupiter.api.DisplayNameGenerator; import org.junit.jupiter.api.Test; @@ -370,41 +369,6 @@ void match_invalid_parameter() { assertEquals("Parameter invalid_parameter is invalid for match function.", msg); } - @Test - // `buildQuery` calls OpenSearch's (not plugin's) `toString()` function which prints - // - fields' weights inside quotes - // - `flags` as an integer, but not as an enum - // - parameters not in alphabetical order - @Disabled - void should_build_simple_query_string_query_with_default_parameters() { - assertJsonEquals( - "{\n" - + " \"simple_query_string\" : {\n" - + " \"query\" : \"search query\",\n" - + " \"fields\" : [\n" - + " \"field1^1.0\",\n" - + " \"field2^0.3\"\n" - + " ],\n" - + " \"default_operator\" : \"OR\",\n" - + " \"analyze_wildcard\" : false,\n" - + " \"auto_generate_synonyms_phrase_query\" : true,\n" - + " \"flags\" : \"ALL\",\n" - + " \"fuzzy_max_expansions\" : 50,\n" - + " \"fuzzy_prefix_length\" : 0,\n" - + " \"fuzzy_transpositions\" : true,\n" - + " \"lenient\" : false,\n" - + " \"boost\" : 1.0\n" - + " }\n" - + "}", - buildQuery( - dsl.simple_query_string( - dsl.namedArgument("fields", DSL.literal(new ExprTupleValue( - new LinkedHashMap<>(ImmutableMap.of( - "field1", ExprValueUtils.floatValue(1.F), - "field2", ExprValueUtils.floatValue(.3F)))))), - dsl.namedArgument("query", literal("search query"))))); - } - @Test void should_build_match_phrase_query_with_default_parameters() { assertJsonEquals( @@ -425,34 +389,83 @@ void should_build_match_phrase_query_with_default_parameters() { } @Test - // Test is disabled because DSL because of: - // 1) DSL reverses order of the `fields` - // 2) `flags` are printed by OpenSearch (not by the plugin) as an integer - // 3) parameters are printed -//- not in lexicographical order - @Disabled - void should_build_simple_query_string_query_with_custom_parameters() { - assertJsonEquals( - "{\n" + // Notes for following three tests: + // 1) OpenSearch (not the plugin) might change order of fields + // 2) `flags` are printed by OpenSearch as an integer + // 3) `minimum_should_match` printed as a string + void should_build_simple_query_string_query_with_default_parameters_single_field() { + assertJsonEquals("{\n" + " \"simple_query_string\" : {\n" + " \"query\" : \"search query\",\n" + " \"fields\" : [\n" - + " \"field1^1.0\",\n" - + " \"field2^0.3\"\n" + + " \"field1^1.0\"\n" + " ],\n" + + " \"default_operator\" : \"or\",\n" + + " \"analyze_wildcard\" : false,\n" + + " \"auto_generate_synonyms_phrase_query\" : true,\n" + + " \"flags\" : -1,\n" + + " \"fuzzy_max_expansions\" : 50,\n" + + " \"fuzzy_prefix_length\" : 0,\n" + + " \"fuzzy_transpositions\" : true,\n" + + " \"boost\" : 1.0\n" + + " }\n" + + "}", + buildQuery(dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal(new ExprTupleValue( + new LinkedHashMap<>(ImmutableMap.of( + "field1", ExprValueUtils.floatValue(1.F)))))), + dsl.namedArgument("query", literal("search query"))))); + } + + void should_build_simple_query_string_query_with_default_parameters_multiple_fields() { + var expected = "{\n" + + " \"simple_query_string\" : {\n" + + " \"query\" : \"search query\",\n" + + " \"fields\" : [%s],\n" + + " \"default_operator\" : \"or\",\n" + + " \"analyze_wildcard\" : false,\n" + + " \"auto_generate_synonyms_phrase_query\" : true,\n" + + " \"flags\" : -1,\n" + + " \"fuzzy_max_expansions\" : 50,\n" + + " \"fuzzy_prefix_length\" : 0,\n" + + " \"fuzzy_transpositions\" : true,\n" + + " \"boost\" : 1.0\n" + + " }\n" + + "}"; + var actual = buildQuery(dsl.simple_query_string( + dsl.namedArgument("fields", DSL.literal(new ExprTupleValue( + new LinkedHashMap<>(ImmutableMap.of( + "field1", ExprValueUtils.floatValue(1.F), + "field2", ExprValueUtils.floatValue(.3F)))))), + dsl.namedArgument("query", literal("search query")))); + + var ex1 = String.format(expected, "\"field1^1.0\", \"field2^0.3\""); + var ex2 = String.format(expected, "\"field2^0.3\", \"field1^1.0\""); + assertTrue(new JSONObject(ex1).similar(new JSONObject(actual)) + || new JSONObject(ex2).similar(new JSONObject(actual)), + StringUtils.format("Actual %s doesn't match neither expected %s nor %s", actual, ex1, ex2)); + } + + @Test + void should_build_simple_query_string_query_with_custom_parameters() { + var expected = "{\n" + + " \"simple_query_string\" : {\n" + + " \"query\" : \"search query\",\n" + + " \"fields\" : [%s],\n" + " \"analyze_wildcard\" : true,\n" + " \"analyzer\" : \"keyword\",\n" + " \"auto_generate_synonyms_phrase_query\" : false,\n" - + " \"default_operator\" : \"AND\",\n" - + " \"flags\" : \"AND\",\n" + + " \"default_operator\" : \"and\",\n" + + " \"flags\" : 1,\n" + " \"fuzzy_max_expansions\" : 10,\n" + " \"fuzzy_prefix_length\" : 2,\n" + " \"fuzzy_transpositions\" : false,\n" + " \"lenient\" : false,\n" - + " \"minimum_should_match\" : 3,\n" + + " \"minimum_should_match\" : \"3\",\n" + " \"boost\" : 2.0\n" + " }\n" - + "}", - buildQuery( + + "}"; + var actual = buildQuery( dsl.simple_query_string( dsl.namedArgument("fields", DSL.literal( ExprValueUtils.tupleValue(ImmutableMap.of("field1", 1.F, "field2", .3F)))), @@ -467,7 +480,13 @@ void should_build_simple_query_string_query_with_custom_parameters() { dsl.namedArgument("fuzzy_transpositions", literal("false")), dsl.namedArgument("lenient", literal("false")), dsl.namedArgument("minimum_should_match", literal("3")), - dsl.namedArgument("boost", literal("2.0"))))); + dsl.namedArgument("boost", literal("2.0")))); + + var ex1 = String.format(expected, "\"field1^1.0\", \"field2^0.3\""); + var ex2 = String.format(expected, "\"field2^0.3\", \"field1^1.0\""); + assertTrue(new JSONObject(ex1).similar(new JSONObject(actual)) + || new JSONObject(ex2).similar(new JSONObject(actual)), + StringUtils.format("Actual %s doesn't match neither expected %s nor %s", actual, ex1, ex2)); } @Test From c1a91fc016e5296f7b0d1131b30cae196fcd8934 Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Mon, 6 Jun 2022 12:55:53 -0700 Subject: [PATCH 7/8] Rework on integration tests. Add tests for PPL. Signed-off-by: Yury Fridlyand --- .../sql/ppl/RelevanceFunctionIT.java | 44 +++++++++++++++++++ .../sql/sql/SimpleQueryStringIT.java | 8 ++-- 2 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java diff --git a/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java b/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java new file mode 100644 index 0000000000..323c56acaa --- /dev/null +++ b/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java @@ -0,0 +1,44 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +package org.opensearch.sql.ppl; + +import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_BEER; +import static org.opensearch.sql.util.MatcherUtils.rows; +import static org.opensearch.sql.util.MatcherUtils.schema; +import static org.opensearch.sql.util.MatcherUtils.verifyDataRows; +import static org.opensearch.sql.util.MatcherUtils.verifySchema; +import static org.opensearch.sql.util.MatcherUtils.verifySome; + +import java.io.IOException; +import org.junit.jupiter.api.Test; + +public class RelevanceFunctionIT extends PPLIntegTestCase { + @Override + public void init() throws IOException { + loadIndex(Index.BEER); + } + + @Test + public void test1() throws IOException { + String query = "SOURCE=" + TEST_INDEX_BEER + + " | WHERE simple_query_string([\\\"Tags\\\" ^ 1.5, Title, `Body` 4.2], 'taste')"; + var result = executeQuery(query); + //verifyDataRows(result, rows(32)); + + assertNotEquals(0, result.getInt("total")); + } + + @Test + public void verify_wildcard_test() throws IOException { + String query1 = "SOURCE=" + TEST_INDEX_BEER + + " | WHERE simple_query_string(['Tags'], 'taste')"; + var result1 = executeQuery(query1); + String query2 = "SOURCE=" + TEST_INDEX_BEER + + " | WHERE simple_query_string(['T*'], 'taste')"; + var result2 = executeQuery(query2); + assertNotEquals(result2.getInt("total"), result1.getInt("total")); + } +} diff --git a/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java b/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java index 9f2ed6ac33..ec1f804a43 100644 --- a/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java +++ b/integ-test/src/test/java/org/opensearch/sql/sql/SimpleQueryStringIT.java @@ -5,6 +5,8 @@ package org.opensearch.sql.sql; +import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_BEER; + import java.io.IOException; import org.json.JSONObject; import org.junit.jupiter.api.Test; @@ -27,7 +29,7 @@ public void init() throws IOException { @Test public void test1() throws IOException { String query = "SELECT count(*) FROM " - + Index.BEER.getName() + " WHERE simple_query_string([\\\"Tags\\\" ^ 1.5, Title, `Body` 4.2], 'taste')"; + + TEST_INDEX_BEER + " WHERE simple_query_string([\\\"Tags\\\" ^ 1.5, Title, `Body` 4.2], 'taste')"; var result = new JSONObject(executeQuery(query, "jdbc")); assertNotEquals(0, result.getInt("total")); } @@ -35,10 +37,10 @@ public void test1() throws IOException { @Test public void verify_wildcard_test() throws IOException { String query1 = "SELECT count(*) FROM " - + Index.BEER.getName() + " WHERE simple_query_string(['Tags'], 'taste')"; + + TEST_INDEX_BEER + " WHERE simple_query_string(['Tags'], 'taste')"; var result1 = new JSONObject(executeQuery(query1, "jdbc")); String query2 = "SELECT count(*) FROM " - + Index.BEER.getName() + " WHERE simple_query_string(['T*'], 'taste')"; + + TEST_INDEX_BEER + " WHERE simple_query_string(['T*'], 'taste')"; var result2 = new JSONObject(executeQuery(query2, "jdbc")); assertNotEquals(result2.getInt("total"), result1.getInt("total")); } From b3bca7c43f53282e780a28cd996fa57e67055efb Mon Sep 17 00:00:00 2001 From: Yury Fridlyand Date: Mon, 6 Jun 2022 16:07:19 -0700 Subject: [PATCH 8/8] Remove commented code. Signed-off-by: Yury Fridlyand --- .../test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java | 2 -- ppl/src/main/antlr/OpenSearchPPLLexer.g4 | 2 -- 2 files changed, 4 deletions(-) diff --git a/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java b/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java index 323c56acaa..6add89f637 100644 --- a/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java +++ b/integ-test/src/test/java/org/opensearch/sql/ppl/RelevanceFunctionIT.java @@ -26,8 +26,6 @@ public void test1() throws IOException { String query = "SOURCE=" + TEST_INDEX_BEER + " | WHERE simple_query_string([\\\"Tags\\\" ^ 1.5, Title, `Body` 4.2], 'taste')"; var result = executeQuery(query); - //verifyDataRows(result, rows(32)); - assertNotEquals(0, result.getInt("total")); } diff --git a/ppl/src/main/antlr/OpenSearchPPLLexer.g4 b/ppl/src/main/antlr/OpenSearchPPLLexer.g4 index 12a19fe5d2..401eec595d 100644 --- a/ppl/src/main/antlr/OpenSearchPPLLexer.g4 +++ b/ppl/src/main/antlr/OpenSearchPPLLexer.g4 @@ -144,7 +144,6 @@ BACKTICK: '`'; // Operators. Bit BIT_NOT_OP: '~'; -//BIT_OR_OP: '|'; BIT_AND_OP: '&'; BIT_XOR_OP: '^'; @@ -302,7 +301,6 @@ QUOTE_FIELD_SUFFIX: 'QUOTE_FIELD_SUFFIX'; REWRITE: 'REWRITE'; SLOP: 'SLOP'; TIE_BREAKER: 'TIE_BREAKER'; -//TIME_ZONE: 'TIME_ZONE'; // already defined on line 63 TYPE: 'TYPE'; ZERO_TERMS_QUERY: 'ZERO_TERMS_QUERY';