feat: updated some cucks

This commit is contained in:
Nick 2024-11-19 21:30:11 -06:00
parent 8b8394808c
commit 72c37b3bfb
10 changed files with 20 additions and 14 deletions

View file

@ -16,10 +16,10 @@ cuckAdamSinger =
, cuckSocial = "https://x.com/AdamSinger"
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1566491269194719232?s=20"
, dodgeDescription = NoReply
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp
, dodgeDescription = VagueGesture
, dodgeProposition = "Seed oils cause inflammation and stomach pain."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
}
]
}

View file

@ -15,7 +15,7 @@ cuckAmberOHearn =
, cuckSocial = "https://x.com/KetoCarnivore"
, cuckDodges =
[ { dodgeLink = "https://x.com/FusionProgGuy/status/1413888976281169922?s=20"
, dodgeDescription = NoReply
, dodgeDescription = VagueGesture
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp

View file

@ -16,9 +16,9 @@ cuckAustinHerbert =
, cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1663698981833277440"
, dodgeDescription = NoReply
, dodgeProposition = noProposition
, dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp
, dodgeProposition = "Seed oils make you fat and kill your body"
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
}
]
}

View file

@ -17,8 +17,8 @@ cuckBartKay =
[ { dodgeLink = "https://www.youtube.com/watch?v=M7vTJ02xxrw"
, dodgeDescription = RanAway
, dodgeProposition = "A 100% Carnivore diet is the appropriate and best health choice for all people."
, dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = VagueProp
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propEmpiricalClaimDisbelief
}
]
}

View file

@ -30,7 +30,7 @@ cuckCateShanahan =
, dodgeDescription = NoReply
, dodgeProposition = "Seed oils are toxic."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = NoProp
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReason
}
, { dodgeLink = "https://x.com/drcateshanahan/status/1516904406805057537?s=20"
, dodgeDescription = NoReply

View file

@ -18,7 +18,7 @@ cuckCliffHarvey =
, dodgeDescription = NoReply
, dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = NoProp
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSaturatedFatReason
}
, { dodgeLink = "https://x.com/The_Nutrivore/status/1500650543886204929?s=20"
, dodgeDescription = NoReply

View file

@ -22,7 +22,7 @@ cuckJosephEverett =
, dodgeDescription = NoReply
, dodgeProposition = propSeedOils
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = NoProp
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propSeedOilsReasonChronicDisease
}
, { dodgeLink = "https://x.com/TheNutrivore/status/1555138038740680704?s=20"
, dodgeDescription = NoReply

View file

@ -30,7 +30,7 @@ cuckMikeSweeney =
, dodgeDescription = NoReply
, dodgeProposition = "Cheerios cause nausea, vomiting, seizures, irregular heartbeat, liver damage, and coma."
, dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificProp "No empirical evidence was provided for the claim, but I find it incredibly implausible."
, dodgeNicksDoxasticReason = SpecificProp commonPropReasons.propEmpiricalClaimDisbelief
}
]
}

View file

@ -54,6 +54,9 @@ makeDodge dodgeEntry index =
KillScreen ->
"All further debate invitations preemptively declined"
VagueGesture ->
"Chose to gesture vaguely instead of engaging"
)
, text "." |> el [ F.color colourTheme.nonHighlightedText ]
]

View file

@ -25,6 +25,7 @@ type DodgeDescription
| OutrightNo
| InTooDeep
| KillScreen
| VagueGesture
type DoxasticState
@ -88,6 +89,7 @@ type alias PropReasons =
, propSeedOilsReasonChronicDisease : String
, propLDLCausality : String
, propEmpiricalClaim : String
, propEmpiricalClaimDisbelief : String
, propAnalyticalTruth : String
, propNutritionalEpidemiology : String
, propPlantBasedDiets : String
@ -105,6 +107,7 @@ commonPropReasons =
, propSeedOilsReasonChronicDisease = "The aggregate of the data suggests seed oils decrease the risk of chronic disease."
, propLDLCausality = "The highest tiers of evidence show an overwhelmingly consistent linear and proportional relationship between the concentration of low-density lipoproteins in the blood and coronary heart disease, regardless of population characteristics."
, propEmpiricalClaim = "This is an empirical claim that requires empirical evidence, and none was provided."
, propEmpiricalClaimDisbelief = "No empirical evidence was provided for the claim, but I find it incredibly implausible."
, propAnalyticalTruth = "The proposition is simply a trivial analytical truth."
, propNutritionalEpidemiology = "With exposures matched, nutritional epidemiology agrees with nutritional randomized controlled trials approximately 91% of the time."
, propPlantBasedDiets = "The aggregate of the data suggests that appropriately supplemented plant-based diets decrease the risk of chronic disease compared to likewise meat-inclusive diets."