mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-15 12:05:12 -05:00
feat: metadata test
This commit is contained in:
parent
9e920eb01f
commit
9541412419
75 changed files with 266 additions and 215 deletions
|
@ -17,6 +17,22 @@
|
|||
{
|
||||
"name": "viewport",
|
||||
"content": "width=device-width, initial-scale=1.0"
|
||||
},
|
||||
{
|
||||
"property": "og:title",
|
||||
"content": "upRootNutrition"
|
||||
},
|
||||
{
|
||||
"property": "og:image",
|
||||
"content": "/assets/meta.png"
|
||||
},
|
||||
{
|
||||
"property": "og:url",
|
||||
"content": "https://upRootNutrition.com"
|
||||
},
|
||||
{
|
||||
"property": "og:description",
|
||||
"content": "upRootNutrition is an open source project, created by Nick Hiebert, designed to elevate the quality of nutrition science communication in online discourse. By applying more rigorous systems of reasoning, such as formal logic and semantic analysis, upRootNutrition aims to cut through the misinformation and sophistry that are endemic on social media."
|
||||
}
|
||||
],
|
||||
"link": [
|
||||
|
|
|
@ -62,7 +62,7 @@ bodyFormat colour =
|
|||
[ F.regular
|
||||
, paragraphFontSize
|
||||
, F.color (getThemeColor colour)
|
||||
, E.width fill
|
||||
, width fill
|
||||
]
|
||||
|
||||
|
||||
|
@ -71,7 +71,7 @@ detailTitleMaker colour item =
|
|||
el
|
||||
(titleFormat colour)
|
||||
<|
|
||||
E.text item
|
||||
text item
|
||||
|
||||
|
||||
detailTitleLink : ThemeColor -> String -> Element msg
|
||||
|
@ -81,7 +81,16 @@ detailTitleLink colour item =
|
|||
++ titleFormat colour
|
||||
)
|
||||
<|
|
||||
E.text item
|
||||
text item
|
||||
|
||||
|
||||
detailTitleLinkWide : ThemeColor -> String -> Element msg
|
||||
detailTitleLinkWide colour item =
|
||||
paragraph
|
||||
(getHoverColours colour
|
||||
++ (titleFormat colour ++ [ width fill ])
|
||||
)
|
||||
[ text item ]
|
||||
|
||||
|
||||
detailBodyLink : ThemeColor -> String -> Element msg
|
||||
|
@ -91,7 +100,7 @@ detailBodyLink colour item =
|
|||
++ bodyFormat colour
|
||||
)
|
||||
<|
|
||||
E.text item
|
||||
text item
|
||||
|
||||
|
||||
getHoverColours : ThemeColor -> List (Attribute msg)
|
||||
|
|
|
@ -12,8 +12,6 @@ articleSweetDeception =
|
|||
, isNewTabLink = False
|
||||
, hasReferences = True
|
||||
, hasTableOfContents = True
|
||||
|
||||
|
||||
, articleImage = "sweetdeception"
|
||||
, articlePublished = "Apr 16, 2024"
|
||||
, articleBody = """
|
||||
|
@ -117,9 +115,9 @@ Additionally, we can also see that Ley, et al. (2004) showed an improvement in O
|
|||
|
||||
## THE TWIN CYCLES HYPOTHESIS
|
||||
|
||||
The prevailing hypothesis, or the hypothesis that has been given the most credence in this domain, is the twin cycles hypothesis (TCH), which was spearheaded by Dr. Roy Taylor. It is closely interconnected with another concept from Dr. Taylor's work, known as the personal fat threshold (PFT). So what are these things? Let's start with the TCH. The TCH postulates that there are two stages, or "cycles", to T2DM development. The TCH was first discussed in a 2011 paper by Lim, et al. (coauthored by Dr. Taylor) detailing the development of the hypothesis from previous clinical trials performed on patients with T2DM [[24](https://pubmed.ncbi.nlm.nih.gov/21656330/)]. This trial would come to be known as the Counteracting Pancreatic Inhibition by Triglyceride (CounterPoint) study, and would be reviewed in greater detail two years later by the same authors [[25](https://pubmed.ncbi.nlm.nih.gov/23075228/)].
|
||||
The prevailing hypothesis, or the hypothesis that has been given the most credence in this domain, is the twin cycles hypothesis (TCH), which was spearheaded by Prof. Roy Taylor. It is closely interconnected with another concept from Prof. Taylor's work, known as the personal fat threshold (PFT). So what are these things? Let's start with the TCH. The TCH postulates that there are two stages, or "cycles", to T2DM development. The TCH was first discussed in a 2011 paper by Lim, et al. (coauthored by Prof. Taylor) detailing the development of the hypothesis from previous clinical trials performed on patients with T2DM [[24](https://pubmed.ncbi.nlm.nih.gov/21656330/)]. This trial would come to be known as the Counteracting Pancreatic Inhibition by Triglyceride (CounterPoint) study, and would be reviewed in greater detail two years later by the same authors [[25](https://pubmed.ncbi.nlm.nih.gov/23075228/)].
|
||||
|
||||
The first cycle originates in the liver, where chronic, excess calorie intake leads to ectopic fat accumulation, causing hepatic insulin resistance. The reason for this is because tissues that are energy replete will resist the action of insulin, with is a signalling hormone responsible for facilitating energy deposition in tissues. The second cycle concerns the pancreas, where the continued excess fat spills over to the pancreas (primarily via nonesterified fatty acids (NEFA), leading to lipotoxicity and subsequently impairing β-cell function. Ultimately, this contributes to β-cell dysfunction, rather than outright β-cell death, as the pivotal event in diabetes progression.
|
||||
The first cycle originates in the liver, where chronic, excess calorie intake leads to ectopic fat accumulation, causing hepatic insulin resistance. The reason for this is because tissues that are energy replete will resist the action of insulin, which is a signalling hormone responsible for facilitating energy deposition in tissues. The second cycle concerns the pancreas, where the continued excess fat spills over to the pancreas (primarily via nonesterified fatty acids (NEFA), leading to lipotoxicity and subsequently impairing β-cell function. Ultimately, this contributes to β-cell dysfunction, rather than outright β-cell death, as the pivotal event in diabetes progression.
|
||||
|
||||
In fact, the TCH originally came about by appreciating that the assumptions typically relied upon when inferring β-cell death in T2DM patients may be faulty. Usually, we infer to β-cell death by staining pancreatic tissue for insulin; no insulin, no β-cells. However, what if the β-cells aren't really dead? What if the diabetic pancreas is just so dysfunctional that the β-cells aren't producing as much insulin? Those assumptions would have us believing that the β-cells are dead when in fact they are merely dormant due to lipotoxicity— waiting to be brought back to life upon fat mass loss. Which brings us to the next piece of the puzzle.
|
||||
|
||||
|
@ -158,7 +156,7 @@ In terms of other T2DM markers, such as plasma glucose, the response to the diet
|
|||
![][image13]
|
||||
[image13]: /blog/sweetdeception/image13.png
|
||||
|
||||
Given these results and Dr. Taylor's previous characterization of the PFT concept, the most likely hypothesis seemed clear— these people just needed to lose more weight, which we'll get to later. For now, there was enough evidence of the effectiveness of weight loss for T2DM treatment that Dr. Taylor and his colleagues decided it was time to test the efficacy of the treatment in a real-world outpatient scenario. A cluster-randomized experiment was designed and undertaken, and would come to be known as the Diabetes Remission Clinical Trial (DiRECT) [[31](https://pubmed.ncbi.nlm.nih.gov/29221645/)].
|
||||
Given these results and Prof. Taylor's previous characterization of the PFT concept, the most likely hypothesis seemed clear— these people just needed to lose more weight, which we'll get to later. For now, there was enough evidence of the effectiveness of weight loss for T2DM treatment that Prof. Taylor and his colleagues decided it was time to test the efficacy of the treatment in a real-world outpatient scenario. A cluster-randomized experiment was designed and undertaken, and would come to be known as the Diabetes Remission Clinical Trial (DiRECT) [[31](https://pubmed.ncbi.nlm.nih.gov/29221645/)].
|
||||
|
||||
![][image14]
|
||||
[image14]: /blog/sweetdeception/image14.png
|
||||
|
@ -167,15 +165,15 @@ The DiRECT trial involved 298 subjects across 49 primary care practices (or clus
|
|||
|
||||
Over the course of the trial, the treatment group lost an average of 10kg, with over 86% of them achieving T2DM remission by the end of the first year. An interesting finding was that on average, at the end of the first year, the treatment group still technically qualified as obese, despite the vast majority of them achieving T2DM remission. This would come to be the first nail in the coffin with respect to the idea that T2DM was somehow coupled to BMI. Additionally, patients experienced significant improvements to quality of life without serious side effects or complications. Altogether the treatment was successful, well-tolerated, and produced impressive rates of T2DM remission that was durable long-term.
|
||||
|
||||
However, Dr. Taylor's group published two follow-up, long term durability studies on the DiRECT trial [[32](https://pubmed.ncbi.nlm.nih.gov/30852132/)][[33](https://pubmed.ncbi.nlm.nih.gov/38423026/)]. The results of these follow-up studies was bitter-sweet. At the two-year follow-up, only 41% of the treatment group remained in remission compared to the previous year, and only 10% at five years of follow-up. These results were not promising for the treatment over time once people were reintroduced to their previous diets and left without practitioner support. Even after the two-year follow-up, 94 or the remaining 101 subjects in the treatment group were given access to extended care, which only resulted in 13% remission rates within the extended care group at five years.
|
||||
However, Prof. Taylor's group published two follow-up, long term durability studies on the DiRECT trial [[32](https://pubmed.ncbi.nlm.nih.gov/30852132/)][[33](https://pubmed.ncbi.nlm.nih.gov/38423026/)]. The results of these follow-up studies was bitter-sweet. At the two-year follow-up, only 41% of the treatment group remained in remission compared to the previous year, and only 10% at five years of follow-up. These results were not promising for the treatment over time once people were reintroduced to their previous diets and left without practitioner support. Even after the two-year follow-up, 94 or the remaining 101 subjects in the treatment group were given access to extended care, which only resulted in 13% remission rates within the extended care group at five years.
|
||||
|
||||
It sounds bleak, but let's think about it. Dr. Taylor's research was essentially testing two things at the end of the day— the conceptual model of T2DM, encompassing the TCH and the PFT, as well as the efficacy of radical weight loss in an outpatient setting. With respect to the former, Taylor's work has been a resounding success, and it buttresses the strongest model of T2DM development and progression that we currently have. In regards to the latter, radical supervised weight loss with the practitioner support did not yield terribly promising results beyond two years. All isn't lost, though.
|
||||
It sounds bleak, but let's think about it. Prof. Taylor's research was essentially testing two things at the end of the day— the conceptual model of T2DM, encompassing the TCH and the PFT, as well as the efficacy of radical weight loss in an outpatient setting. With respect to the former, Taylor's work has been a resounding success, and it buttresses the strongest model of T2DM development and progression that we currently have. In regards to the latter, radical supervised weight loss with the practitioner support did not yield terribly promising results beyond two years. All isn't lost, though.
|
||||
|
||||
The important thing is that we now have a firm grasp about what causes T2DM. It isn't sugar, seed oils, animal fat, or any other harebrained dietary boogeyman. It's just energy poisoning, with a simple, easy-to-understand etiology; if you gain more fat than your body can tolerate, you develop the phenotype of T2DM. If at that point you do indeed lose enough body fat to fall back below the maximum your body can withstand, T2DM remission follows. The last piece of the puzzle is figuring out what factors cause over-consumption, and how to durably address excessive body fat.
|
||||
|
||||
## DISCUSSION
|
||||
|
||||
In conclusion, while a myriad of hypotheses continue to circulate within nutritional and diabetic research spheres regarding the genesis and treatment of T2DM, it becomes increasingly clear that simplicity often guides the best practice. The TCH, underscored by the PFT, offers a cogent framework suggesting that T2DM is not merely a product of specific dietary components like sugars, SFA, or PUFA, but rather a complex interplay of caloric excess leading to dysfunctional energy storage and insulin response. As emerging studies, such as those by Dr. Taylor and his colleagues, indicate, interventions aiming at substantial and sustained weight loss may hold the key to reversing T2DM, provided these interventions are maintained with consistent medical oversight and support.
|
||||
In conclusion, while a myriad of hypotheses continue to circulate within nutritional and diabetic research spheres regarding the genesis and treatment of T2DM, it becomes increasingly clear that simplicity often guides the best practice. The TCH, underscored by the PFT, offers a cogent framework suggesting that T2DM is not merely a product of specific dietary components like sugars, SFA, or PUFA, but rather a complex interplay of caloric excess leading to dysfunctional energy storage and insulin response. As emerging studies, such as those by Prof. Taylor and his colleagues, indicate, interventions aiming at substantial and sustained weight loss may hold the key to reversing T2DM, provided these interventions are maintained with consistent medical oversight and support.
|
||||
|
||||
While the exploration of dietary influence on T2DM remains important, we also have to acknowledge the apparently lack of elasticity of our food culture and the stark tendency toward recidivism with dietary intervenions. Emerging pharmacological interventions, particularly GLP-1 receptor agonists, are presenting promising frontiers in the management and potential reversal of this condition. As we advance, the integration of such pharmaceutical approaches alongside dietary management could revolutionize the treatment landscape of T2DM. Emphasizing the synergy between medication and lifestyle changes will likely be pivotal in crafting effective, personalized treatment plans that address both the biochemical and lifestyle facets of diabetes care.
|
||||
|
||||
|
|
|
@ -61,6 +61,7 @@ import Config.Pages.Debate.Cuckery.Records.RobbWolf exposing (cuckRobbWolf)
|
|||
import Config.Pages.Debate.Cuckery.Records.SebastianRamirez exposing (cuckSebastianRamirez)
|
||||
import Config.Pages.Debate.Cuckery.Records.ShawnBaker exposing (cuckShawnBaker)
|
||||
import Config.Pages.Debate.Cuckery.Records.SimonGoddek exposing (cuckSimonGoddek)
|
||||
import Config.Pages.Debate.Cuckery.Records.TomDayspring exposing (cuckTomDayspring)
|
||||
import Config.Pages.Debate.Cuckery.Records.TravisStatham exposing (cuckTravisStatham)
|
||||
import Config.Pages.Debate.Cuckery.Records.TristanHaggard exposing (cuckTristanHaggard)
|
||||
import Config.Pages.Debate.Cuckery.Records.TroKalayjian exposing (cuckTroKalayjian)
|
||||
|
@ -133,6 +134,7 @@ cuckList =
|
|||
, cuckSebastianRamirez
|
||||
, cuckShawnBaker
|
||||
, cuckSimonGoddek
|
||||
, cuckTomDayspring
|
||||
, cuckTravisStatham
|
||||
, cuckTristanHaggard
|
||||
, cuckTroKalayjian
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckAnnChilders =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Diets humans thrived on in the wild, sans dentists and doctors, are correct."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckAnthonyGustin =
|
|||
, dodgeDescription = GhostedMe
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just AppealToTradition
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckAshwaniGarg =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Representing the protein content of beans by dry weight is misleading."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "It's unclear why we should care about the protein content of a dry food item if that food item is inedible in its dry state"
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckAustinHerbert =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils make you fat and kill your body."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBartKay =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "A 100% Carnivore diet is the appropriate and best health choice for all people."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaimDisbelief
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBenBikman =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "The diet-heart hypothesis is false."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBennyMalone =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Eating oysters is compatible with veganism."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "Bivalves are not likely to be sentient, and extending them the precautionary principle has hilarious entails."
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBradCampbell =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Canola oil kills you slowly."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBradCohn =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -16,11 +16,11 @@ cuckBradMarshall =
|
|||
, cuckSocial = "https://x.com/fire_bottle"
|
||||
, isNewTabLink = True
|
||||
, cuckDodges =
|
||||
[ { dodgeLink = ""
|
||||
[ { dodgeLink = "https://x.com/upRootNutrition/status/1687597276074782727"
|
||||
, dodgeDescription = InTooDeep
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBretWeinstein =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils are dangerous."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckBretWeinstein =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils are dangerous."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ cuckBretWeinstein =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils are dangerous."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckBrianKerley =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckBrianKerley =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckCarnivoreAurelius =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Vegans kill 100x more animals."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils are pro-inflammatory."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Those who defend seed oils are just regurgitating the garbage that the AHA pumps out."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "I defend seed oils and I've never even read the AHA's material on the subject."
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils are toxic."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Current levels of seed oil consumption are the main driver of the obesity and chronic disease."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Nick is just following the AHA marching orders."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just GeneticFallacy
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "I've never even read the AHA's recommendations on anything."
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -76,7 +76,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = KillScreen
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
@ -84,7 +84,7 @@ cuckCateShanahan =
|
|||
, dodgeDescription = KillScreen
|
||||
, dodgeProposition = "Current levels of seed oil consumption are the main driver of heart disease."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckChrisBoettcher =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils are making you fat, depressed, and sick."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckClaraAboel =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Polyunsaturated fatty acids are known to initiate cancer."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCancer
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckCliffHarvey =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckCliffHarvey =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckDaveFeldman =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ cuckDavidDiamond =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = statinProp
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ cuckDavidDiamond =
|
|||
, dodgeDescription = KillScreen
|
||||
, dodgeProposition = statinProp
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckDavidGornoski =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Polyunsaturated fatty acids cause obesity."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonObesity
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckDianaRodgers =
|
|||
, dodgeDescription = InTooDeep
|
||||
, dodgeProposition = "Saturated fat doesn't increase the risk of coronary heart disease."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ cuckEdwardGoeke =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ cuckEdwardGoeke =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propSeedOils
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckElieJarrouge =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Sugar, refined carbs, and seed oils are poison."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.GaryBrecka exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckGaryBrecka : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckGaryBrecka =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Linoleic acid consumption causes atherosclerosis."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.GaryFettke exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckGaryFettke : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckGaryFettke =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1460983496524980224"
|
||||
, dodgeDescription = GhostedMe
|
||||
, dodgeProposition = commonProps.propLinoleicAcid
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckGaryTaubes =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Carbohydrates cause starvation."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckGeorgeMartin =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Nick has killed more animals in his life than a mature bear."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just (SpecificFallacy "Appeal to Chatbots")
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.GuyAustin exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckGuyAustin : Cuck
|
||||
|
@ -19,16 +19,16 @@ cuckGuyAustin =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1538607434176020480"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
, { dodgeLink = "https://x.com/GuyNAustin/status/1687530045101744128"
|
||||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ cuckIvorCummins =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propLDL
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ cuckIvorCummins =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = propLDL
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.JakeMey exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckJakeMey : Cuck
|
||||
|
@ -22,24 +22,24 @@ cuckJakeMey =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1490009495581298690?s=20"
|
||||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Vegan Friday meals are unhealthy for children."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason propReason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1490060813138280450?s=20"
|
||||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Vegan Friday meals are unhealthy for children."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason propReason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1495419256737091585?s=20"
|
||||
, dodgeDescription = KillScreen
|
||||
, dodgeProposition = "Vegan Friday meals are unhealthy for children."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason propReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckJamesDiNicolantonio =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = commonProps.propLinoleicAcid
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.JosephEverett exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckJosephEverett : Cuck
|
||||
|
@ -23,16 +23,16 @@ cuckJosephEverett =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1535334822825971712?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propSeedOils
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonChronicDisease
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1555138038740680704?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propSeedOils
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonChronicDisease
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckJustinMares =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Vegetable oils drive inflammation and are causally linked to weight gain and diseases of inflammation."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonChronicDisease
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckKaitMalthaner =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Omega-6 is pro-inflammatory."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.KemMinnick exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckKemMinnick : Cuck
|
||||
|
@ -27,16 +27,16 @@ cuckKemMinnick =
|
|||
[ { dodgeLink = "https://x.com/kemminnick/status/1469336100300726273?s=20"
|
||||
, dodgeDescription = GhostedMe
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason reason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1476990862793986052?s=20"
|
||||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason reason
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.KenBerry exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckKenBerry : Cuck
|
||||
|
@ -23,32 +23,32 @@ cuckKenBerry =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1366524889067368449?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Type 2 Diabetes is chronic carbohydrate overdose."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1539720236701589504?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propAnimalFat
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1539721408372039680?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = propAnimalFat
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1813969807521300615"
|
||||
, dodgeDescription = InTooDeep
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.KevinStock exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckKevinStock : Cuck
|
||||
|
@ -19,16 +19,16 @@ cuckKevinStock =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1530140722225102848?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1534927799911317509?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Saturated fat does not cause cardiovascular disease."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckKyleMamounis =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Statins do not prevent cardiovascular events."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckMarkSisson =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckMartyKendall =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "To access your body fat, you need to deplete both glucose and fat from the blood first."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "The proposition suggests that before one can liberate their body fat, they must first experience a lethal physiological event."
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.MaxLugavere exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckMaxLugavere : Cuck
|
||||
|
@ -23,24 +23,24 @@ cuckMaxLugavere =
|
|||
[ { dodgeLink = "https://x.com/maxlugavere/status/1517683567249149953?s=20"
|
||||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonChronicDisease
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1518307089742848000?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonChronicDisease
|
||||
}
|
||||
, { dodgeLink = "https://x.com/maxlugavere/status/1518367365683064833?s=20"
|
||||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonChronicDisease
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckMichaelKummer =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Polyunsaturated fats cause cell damage, inflammation and metabolic dysfunction."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.MichaelManderville exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckMichaelManderville : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckMichaelManderville =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1503036463306489856?s=20"
|
||||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "A logically coherent position will have logically coherent answer to a logically coherent hypothetical."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propAnalyticalTruth
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.MikeMutzel exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckMikeMutzel : Cuck
|
||||
|
@ -19,16 +19,16 @@ cuckMikeMutzel =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1414457776982552576?s=20"
|
||||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "COVID is nothing more than a cold to those that are healthy."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1584645853771616256?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "There is little to no association between saturated fat and cardiovascular disease."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckMikeSweeney =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Vegan diets are nowhere near appropriate for the average person in society."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckMikeSweeney =
|
|||
, dodgeDescription = GhostedMe
|
||||
, dodgeProposition = "Statistical gymnastics don't inform on real world mechanisms and hard outcomes."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ cuckMikeSweeney =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Cheerios cause nausea, vomiting, seizures, irregular heartbeat, liver damage, and coma."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaimDisbelief
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckNickEggleton =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Polyunsaturated fats are poison."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.NinaTeicholz exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckNinaTeicholz : Cuck
|
||||
|
@ -19,24 +19,24 @@ cuckNinaTeicholz =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1556510529014882305?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "The science linking red meat to heart disease is very weak."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "The aggregate of the data suggests red meat increases the risk of heart disease."
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1467571763865210881?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "The available evidence supports limiting saturated fat intake for coronary heart disease risk reduction."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1538895943050878977?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Vegans pretend biology isn't real."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckNorstrongChris =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Government funded USDA data is untrustworthy."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckNorstrongChris =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Nutrition science as a whole is shit."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ cuckNorstrongChris =
|
|||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Nutrition science as a whole is shit."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.PaulMason exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckPaulMason : Cuck
|
||||
|
@ -19,24 +19,24 @@ cuckPaulMason =
|
|||
[ { dodgeLink = "https://x.com/Tom_Babington1/status/1361644276866830337?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
, { dodgeLink = "https://x.com/IdanOnTweeter/status/1373233980594618371?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Ancel Keys' Seven Countries Study was flawed."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1461361726943760391?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = commonProps.propLinoleicAcid
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.PaulSaladino exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckPaulSaladino : Cuck
|
||||
|
@ -23,8 +23,8 @@ cuckPaulSaladino =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1275912849999695872?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Subsidies for corn and soy are huge contributors to the chronic disease epidemic in the US."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
}
|
||||
|
@ -33,38 +33,38 @@ cuckPaulSaladino =
|
|||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
}
|
||||
, { dodgeLink = "https://x.com/FoodFirst_Ty/status/1283449495682904064?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1282851963902636032?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
}
|
||||
, { dodgeLink = "https://x.com/The_Nutrivore/status/1469136550046814219?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Nutritional epidemiology generally provides good causal estimates."
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propNutritionalEpidemiology
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1633831762509045766?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Linoleic acid wreaks havoc in your body."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.PhilipOvadia exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckPhilipOvadia : Cuck
|
||||
|
@ -19,16 +19,16 @@ cuckPhilipOvadia =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1557791520324890624?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Sugar is the problem and meat is the solution."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1558282337024180224?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "LDL doesn't cause coronary heart disease because it is just part of the arterial repair process."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.PhilippeStephenson exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckPhilippeStephenson : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckPhilippeStephenson =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1779587012120715433"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Seed oils save lives."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.RalphNapolitano exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckRalphNapolitano : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckRalphNapolitano =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1462794580848300034?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Oatmeal is one of the worst foods you can eat and has no health benefits."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "The aggregate of the data suggests whole grains are beneficial for humans."
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.RaphaelSirtoli exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckRaphaelSirtoli : Cuck
|
||||
|
@ -19,16 +19,16 @@ cuckRaphaelSirtoli =
|
|||
[ { dodgeLink = "https://x.com/raphaels7/status/1475767357188579329?s=20"
|
||||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "The diet-heart hypothesis is false."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
, { dodgeLink = "https://x.com/raphaels7/status/1783541746015654072"
|
||||
, dodgeDescription = KillScreen
|
||||
, dodgeProposition = commonProps.propSeedOils
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckRobMeijer =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckRobbWolf =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Ancestral foods are more likely to be antagonistically pleiotropic than novel foods."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propAnalyticalTruth
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckSebastianRamirez =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Vegans haven’t learnt how to live in a society."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "It's not clear what the proposition means."
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckShawnBaker =
|
|||
, dodgeDescription = GhostedMe
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.SimonGoddek exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckSimonGoddek : Cuck
|
||||
|
@ -23,24 +23,24 @@ cuckSimonGoddek =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1795673579931255233"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1795885929678196951"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
|
||||
}
|
||||
, { dodgeLink = "https://x.com/TheNutrivore/status/1795674575315112396"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just MechanisticMasturbation
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD
|
||||
}
|
||||
|
|
28
frontend/src/Config/Pages/Debate/Cuckery/Records/TomDayspring.elm
Executable file
28
frontend/src/Config/Pages/Debate/Cuckery/Records/TomDayspring.elm
Executable file
|
@ -0,0 +1,28 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.TomDayspring exposing (..)
|
||||
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckTomDayspring : Cuck
|
||||
cuckTomDayspring =
|
||||
let
|
||||
name : String
|
||||
name =
|
||||
"Thomas Dayspring"
|
||||
in
|
||||
{ cuckImage = formatName name
|
||||
, cuckName = name
|
||||
, cuckSocial = "https://x.com/Drlipid"
|
||||
, isNewTabLink = True
|
||||
, cuckDodges =
|
||||
[ { dodgeLink = "https://x.com/upRootNutrition/status/1865200631209955669"
|
||||
, dodgeDescription = EmptyHanded
|
||||
, dodgeProposition = "Reducing cholesterol in diet has no CV effect outside of those who have significant hyperabsorption of cholesterol."
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.TravisStatham exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckTravisStatham : Cuck
|
||||
|
@ -23,16 +23,16 @@ cuckTravisStatham =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1461428023207489542?s=20"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonObesity
|
||||
}
|
||||
, { dodgeLink = "https://www.reddit.com/r/StopEatingSeedOils/comments/v457tu/how_vegetable_oils_make_us_fat_zero_acre/ic9u7wu/?utm_source=share"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = prop
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonObesity
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckTristanHaggard =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Seed oils are toxic."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just Vaguemongering
|
||||
, dodgeNicksDoxasticState = Just Agnostic
|
||||
, dodgeNicksDoxasticReason = VagueProp
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckTroKalayjian =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Dr. Tro engages in shitty behaviour that causes people to dislike him."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "The proposition seems trivially true."
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckTroKalayjian =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Meat doesn’t cause cardiovascular disease"
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason "The aggregate of the data suggests that higher intakes of meat, particularly red meat, increases the risk of cardiovascular disease, especially when replacing plant-based protein sources."
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ cuckTuckerGoodrich =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = "Nutritional epidemiology is almost always wrong."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Just RedHerring
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propNutritionalEpidemiology
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ cuckTuckerGoodrich =
|
|||
, dodgeDescription = RanAway
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ cuckTuckerGoodrich =
|
|||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ cuckTuckerGoodrich =
|
|||
, dodgeDescription = KillScreen
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.ZoeHarcombe exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckZoeHarcombe : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckZoeHarcombe =
|
|||
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1418263706178310149"
|
||||
, dodgeDescription = NoReply
|
||||
, dodgeProposition = "Saturated fat doesn't increase the risk of coronary heart disease."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Nothing
|
||||
, dodgeNicksDoxasticState = Just Disbelief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module Config.Pages.Debate.Cuckery.Records.ZsofiaClemens exposing (..)
|
||||
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckZsofiaClemens : Cuck
|
||||
|
@ -19,8 +19,8 @@ cuckZsofiaClemens =
|
|||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1528377198180290561?s=20"
|
||||
, dodgeDescription = OutrightNo
|
||||
, dodgeProposition = "Well-planned, plant-based diets are healthy."
|
||||
, dodgeReceipts = [ {receipt = "receipt1"}]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeReceipts = [ { receipt = "receipt1" } ]
|
||||
, dodgeFallacy = Just AppealToNature
|
||||
, dodgeNicksDoxasticState = Just Belief
|
||||
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propPlantBasedDiets
|
||||
}
|
||||
|
|
|
@ -36,6 +36,7 @@ type DodgeDescription
|
|||
| InTooDeep
|
||||
| KillScreen
|
||||
| VagueGesture
|
||||
| EmptyHanded
|
||||
|
||||
|
||||
type DodgeFallacies
|
||||
|
@ -49,6 +50,8 @@ type DodgeFallacies
|
|||
| AppealFromIncredulity
|
||||
| GeneticFallacy
|
||||
| MotteAndBailey
|
||||
| MechanisticMasturbation
|
||||
| Vaguemongering
|
||||
| SpecificFallacy String
|
||||
|
||||
|
||||
|
|
|
@ -278,6 +278,9 @@ circumstance cuck dodge =
|
|||
|
||||
VagueGesture ->
|
||||
"Chose to gesture vaguely instead of engaging"
|
||||
|
||||
EmptyHanded ->
|
||||
"Engaged in written debate and ran away when pressed for specifics"
|
||||
)
|
||||
, el [ F.color colourTheme.textLightGrey ] <|
|
||||
text "."
|
||||
|
@ -402,11 +405,7 @@ reductioMaker device dodge =
|
|||
Just fallacy ->
|
||||
case fallacy of
|
||||
SpecificFallacy str ->
|
||||
if String.isEmpty str then
|
||||
none
|
||||
|
||||
else
|
||||
displayFallacy str
|
||||
displayFallacy str
|
||||
|
||||
AppealToNature ->
|
||||
displayFallacy "Appeal to Nature"
|
||||
|
@ -438,6 +437,11 @@ reductioMaker device dodge =
|
|||
MotteAndBailey ->
|
||||
displayFallacy "Motte and Bailey"
|
||||
|
||||
MechanisticMasturbation ->
|
||||
displayFallacy "Mechanistic Masturbation"
|
||||
Vaguemongering ->
|
||||
displayFallacy "Vaguemongering"
|
||||
|
||||
|
||||
reasonMaker : Device -> Dodge -> Element msg
|
||||
reasonMaker device dodge =
|
||||
|
|
|
@ -192,16 +192,7 @@ contentList shared interview =
|
|||
_ ->
|
||||
image "Fatty"
|
||||
in
|
||||
[ row
|
||||
[ paddingEach
|
||||
{ top = 3
|
||||
, right = 0
|
||||
, bottom = 0
|
||||
, left = 0
|
||||
}
|
||||
, detailSpacing
|
||||
, width fill
|
||||
]
|
||||
[ detailFormat row
|
||||
[ imageMaker
|
||||
, detailFormat column
|
||||
[ socialMaker interview.interviewSocial interview.interviewSocial
|
||||
|
@ -214,7 +205,7 @@ contentList shared interview =
|
|||
|
||||
appearanceMaker : Shared.Model -> Interview -> Element msg
|
||||
appearanceMaker shared interview =
|
||||
detailFormat paragraph
|
||||
detailFormat column
|
||||
[ listMaker2 (makeAppearance shared) interview.interviewAppearances ]
|
||||
|
||||
|
||||
|
@ -234,9 +225,9 @@ makeAppearance shared appearanceEntry index =
|
|||
episodeMaker : Appearance -> Element msg
|
||||
episodeMaker appearanceEntry =
|
||||
newTabLink
|
||||
[]
|
||||
[ width fill ]
|
||||
{ url = appearanceEntry.appearanceLink
|
||||
, label = detailTitleMaker TextLightOrange ("#" ++ appearanceEntry.appearanceEpisode ++ ": " ++ appearanceEntry.appearanceTitle)
|
||||
, label = detailTitleLinkWide TextLightOrange ("#" ++ appearanceEntry.appearanceEpisode ++ ": " ++ appearanceEntry.appearanceTitle)
|
||||
}
|
||||
|
||||
|
||||
|
|
BIN
frontend/static/assets/meta.png
Executable file
BIN
frontend/static/assets/meta.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
BIN
frontend/static/cucks/thomasdayspring/thomasdayspring.png
Executable file
BIN
frontend/static/cucks/thomasdayspring/thomasdayspring.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Loading…
Add table
Add a link
Reference in a new issue