From 671195480b3670b57bf4909e886b7168bf022555 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 14 Nov 2024 01:37:19 -0600 Subject: [PATCH] feat: garnished the cuck salad --- .../src/Cuckery/CuckList/DavidDiamond.elm | 30 +++ .../src/Cuckery/CuckList/DavidGornoski.elm | 24 +++ .../src/Cuckery/CuckList/DianaRodgers.elm | 24 +++ frontend/src/Cuckery/CuckList/EdwardGoeke.elm | 30 +++ .../src/Cuckery/CuckList/ElieJarrouge.elm | 24 +++ frontend/src/Cuckery/CuckList/GaryBrecka.elm | 24 +++ frontend/src/Cuckery/CuckList/GaryFettke.elm | 24 +++ frontend/src/Cuckery/CuckList/GaryTaubes.elm | 24 +++ .../src/Cuckery/CuckList/GeorgeMartin.elm | 24 +++ frontend/src/Cuckery/CuckList/GuyAustin.elm | 30 +++ frontend/src/Cuckery/CuckList/IvorCummins.elm | 30 +++ frontend/src/Cuckery/CuckList/JakeMey.elm | 36 ++++ .../Cuckery/CuckList/JamesDiNicolantonio.elm | 24 +++ .../src/Cuckery/CuckList/Template copy 10.elm | 24 --- .../src/Cuckery/CuckList/Template copy 11.elm | 24 --- .../src/Cuckery/CuckList/Template copy 12.elm | 24 --- .../src/Cuckery/CuckList/Template copy 13.elm | 24 --- .../src/Cuckery/CuckList/Template copy 14.elm | 24 --- .../src/Cuckery/CuckList/Template copy 15.elm | 24 --- .../src/Cuckery/CuckList/Template copy 16.elm | 24 --- .../src/Cuckery/CuckList/Template copy 4.elm | 24 --- .../src/Cuckery/CuckList/Template copy 5.elm | 24 --- .../src/Cuckery/CuckList/Template copy 6.elm | 24 --- .../src/Cuckery/CuckList/Template copy 7.elm | 24 --- .../src/Cuckery/CuckList/Template copy 8.elm | 24 --- .../src/Cuckery/CuckList/Template copy 9.elm | 24 --- frontend/src/Cuckery/CuckList/Template.elm | 6 +- frontend/src/Pages/Dodgers.elm | 173 ------------------ 28 files changed, 351 insertions(+), 488 deletions(-) create mode 100644 frontend/src/Cuckery/CuckList/DavidDiamond.elm create mode 100644 frontend/src/Cuckery/CuckList/DavidGornoski.elm create mode 100644 frontend/src/Cuckery/CuckList/DianaRodgers.elm create mode 100644 frontend/src/Cuckery/CuckList/EdwardGoeke.elm create mode 100644 frontend/src/Cuckery/CuckList/ElieJarrouge.elm create mode 100644 frontend/src/Cuckery/CuckList/GaryBrecka.elm create mode 100644 frontend/src/Cuckery/CuckList/GaryFettke.elm create mode 100644 frontend/src/Cuckery/CuckList/GaryTaubes.elm create mode 100644 frontend/src/Cuckery/CuckList/GeorgeMartin.elm create mode 100644 frontend/src/Cuckery/CuckList/GuyAustin.elm create mode 100644 frontend/src/Cuckery/CuckList/IvorCummins.elm create mode 100644 frontend/src/Cuckery/CuckList/JakeMey.elm create mode 100644 frontend/src/Cuckery/CuckList/JamesDiNicolantonio.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 10.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 11.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 12.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 13.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 14.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 15.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 16.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 4.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 5.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 6.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 7.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 8.elm delete mode 100644 frontend/src/Cuckery/CuckList/Template copy 9.elm diff --git a/frontend/src/Cuckery/CuckList/DavidDiamond.elm b/frontend/src/Cuckery/CuckList/DavidDiamond.elm new file mode 100644 index 0000000..27e55ff --- /dev/null +++ b/frontend/src/Cuckery/CuckList/DavidDiamond.elm @@ -0,0 +1,30 @@ +module Cuckery.CuckList.DavidDiamond exposing (..) + +import Cuckery.Types exposing (..) + + +cuckDavidDiamond : Cuck +cuckDavidDiamond = + let + name : String + name = + "David Diamond" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/LDLSkeptic" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/LDLSkeptic/status/1583471298306375681?s=20" + , dodgeDescription = OutrightNo + , dodgeProposition = "statin therapy is not warranted for a person high LDL-C on a low-carb diet." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + , { dodgeLink = "https://twitter.com/LDLSkeptic/status/1583481964840902656?s=20" + , dodgeDescription = KillScreen + , dodgeProposition = "statin therapy is not warranted for a person high LDL-C on a low-carb diet." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/DavidGornoski.elm b/frontend/src/Cuckery/CuckList/DavidGornoski.elm new file mode 100644 index 0000000..d89b2b0 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/DavidGornoski.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.DavidGornoski exposing (..) + +import Cuckery.Types exposing (..) + + +cuckDavidGornoski : Cuck +cuckDavidGornoski = + let + name : String + name = + "David Gornoski" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/DavidGornoski" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/TheNutrivore/status/1525474063044550657?s=20" + , dodgeDescription = OutrightNo + , dodgeProposition = "polyunsaturated fatty acids cause obesity." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/DianaRodgers.elm b/frontend/src/Cuckery/CuckList/DianaRodgers.elm new file mode 100644 index 0000000..2de8e93 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/DianaRodgers.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.DianaRodgers exposing (..) + +import Cuckery.Types exposing (..) + + +cuckDianaRodgers : Cuck +cuckDianaRodgers = + let + name : String + name = + "Diana Rodgers" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/sustainabledish" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1365857401786814465?s=20" + , dodgeDescription = InTooDeep + , dodgeProposition = "saturated fat doesn't increase the risk of coronary heart disease." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/EdwardGoeke.elm b/frontend/src/Cuckery/CuckList/EdwardGoeke.elm new file mode 100644 index 0000000..47c492d --- /dev/null +++ b/frontend/src/Cuckery/CuckList/EdwardGoeke.elm @@ -0,0 +1,30 @@ +module Cuckery.CuckList.EdwardGoeke exposing (..) + +import Cuckery.Types exposing (..) + + +cuckEdwardGoeke : Cuck +cuckEdwardGoeke = + let + name : String + name = + "Edward Goeke" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/GoekeEddie" + , cuckDodges = + [ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20" + , dodgeDescription = NoReply + , dodgeProposition = "seed oils are inflammatory." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + , { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20" + , dodgeDescription = NoReply + , dodgeProposition = "seed oils are inflammatory." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/ElieJarrouge.elm b/frontend/src/Cuckery/CuckList/ElieJarrouge.elm new file mode 100644 index 0000000..1b970b7 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/ElieJarrouge.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.ElieJarrouge exposing (..) + +import Cuckery.Types exposing (..) + + +cuckElieJarrouge : Cuck +cuckElieJarrouge = + let + name : String + name = + "Elie Jarrouge" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/ElieJarrougeMD" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/TheNutrivore/status/1506845469980315648?s=20" + , dodgeDescription = NoReply + , dodgeProposition = "sugar, refined carbs, and seed oils are poison." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/GaryBrecka.elm b/frontend/src/Cuckery/CuckList/GaryBrecka.elm new file mode 100644 index 0000000..77636d1 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/GaryBrecka.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.GaryBrecka exposing (..) + +import Cuckery.Types exposing (..) + + +cuckGaryBrecka : Cuck +cuckGaryBrecka = + let + name : String + name = + "Gary Brecka" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/garybrecka1" + , cuckDodges = + [ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125" + , dodgeDescription = NoReply + , dodgeProposition = "linoleic acid consumption causes atherosclerosis." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/GaryFettke.elm b/frontend/src/Cuckery/CuckList/GaryFettke.elm new file mode 100644 index 0000000..63273d6 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/GaryFettke.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.GaryFettke exposing (..) + +import Cuckery.Types exposing (..) + + +cuckGaryFettke : Cuck +cuckGaryFettke = + let + name : String + name = + "Gary Fettke" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://x.com/FructoseNo" + , cuckDodges = + [ { dodgeLink = "https://x.com/TheNutrivore/status/1460983496524980224" + , dodgeDescription = GhostedMe + , dodgeProposition = "at current Western levels of intake, dietary linoleic acid is not a significant, independent concern for the development of chronic diseases." + , dodgeNicksDoxasticState = Just Belief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/GaryTaubes.elm b/frontend/src/Cuckery/CuckList/GaryTaubes.elm new file mode 100644 index 0000000..52398ca --- /dev/null +++ b/frontend/src/Cuckery/CuckList/GaryTaubes.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.GaryTaubes exposing (..) + +import Cuckery.Types exposing (..) + + +cuckGaryTaubes : Cuck +cuckGaryTaubes = + let + name : String + name = + "Gary Taubes" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/garytaubes" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/garytaubes/status/1595180467552018432?s=20" + , dodgeDescription = OutrightNo + , dodgeProposition = "carbohydrates cause starvation." + , dodgeNicksDoxasticState = Just Agnostic + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/GeorgeMartin.elm b/frontend/src/Cuckery/CuckList/GeorgeMartin.elm new file mode 100644 index 0000000..3277028 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/GeorgeMartin.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.GeorgeMartin exposing (..) + +import Cuckery.Types exposing (..) + + +templateCuck : Cuck +templateCuck = + let + name : String + name = + "George Martin" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://x.com/CarnismDebunked" + , cuckDodges = + [ { dodgeLink = "https://x.com/TheNutrivore/status/1815098730141651021" + , dodgeDescription = RanAway + , dodgeProposition = "Nick has killed more animals in his life than a mature bear." + , dodgeNicksDoxasticState = Just Agnostic + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/GuyAustin.elm b/frontend/src/Cuckery/CuckList/GuyAustin.elm new file mode 100644 index 0000000..28d1996 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/GuyAustin.elm @@ -0,0 +1,30 @@ +module Cuckery.CuckList.GuyAustin exposing (..) + +import Cuckery.Types exposing (..) + + +templateCuck : Cuck +templateCuck = + let + name : String + name = + "Guy Austin" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://x.com/GuyNAustin" + , cuckDodges = + [ { dodgeLink = "https://x.com/TheNutrivore/status/1538607434176020480" + , dodgeDescription = NoReply + , dodgeProposition = noProposition + , dodgeNicksDoxasticState = Nothing + , dodgeNicksDoxasticReason = NoProp + } + , { dodgeLink = "https://x.com/GuyNAustin/status/1687530045101744128" + , dodgeDescription = OutrightNo + , dodgeProposition = "." + , dodgeNicksDoxasticState = Just Belief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/IvorCummins.elm b/frontend/src/Cuckery/CuckList/IvorCummins.elm new file mode 100644 index 0000000..6d43e35 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/IvorCummins.elm @@ -0,0 +1,30 @@ +module Cuckery.CuckList.IvorCummins exposing (..) + +import Cuckery.Types exposing (..) + + +cuckIvorCummins : Cuck +cuckIvorCummins = + let + name : String + name = + "Ivor Cummins" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/FatEmperor" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1268600451693494273?s=20" + , dodgeDescription = NoReply + , dodgeProposition = "LDL does not cause coronary heart disease." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + , { dodgeLink = "https://twitter.com/FatEmperor/status/1636920650156724226?s=20" + , dodgeDescription = OutrightNo + , dodgeProposition = "LDL does not cause coronary heart disease." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/JakeMey.elm b/frontend/src/Cuckery/CuckList/JakeMey.elm new file mode 100644 index 0000000..70ec675 --- /dev/null +++ b/frontend/src/Cuckery/CuckList/JakeMey.elm @@ -0,0 +1,36 @@ +module Cuckery.CuckList.JakeMey exposing (..) + +import Cuckery.Types exposing (..) + + +cuckJakeMey : Cuck +cuckJakeMey = + let + name : String + name = + "Jake Mey" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1490009495581298690?s=20" + , dodgeDescription = RanAway + , dodgeProposition = "Vegan Friday meals are unhealthy for children." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + , { dodgeLink = "https://twitter.com/The_Nutrivore/status/1490060813138280450?s=20" + , dodgeDescription = OutrightNo + , dodgeProposition = "Vegan Friday meals are unhealthy for children." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + , { dodgeLink = "https://twitter.com/The_Nutrivore/status/1495419256737091585?s=20" + , dodgeDescription = KillScreen + , dodgeProposition = "Vegan Friday meals are unhealthy for children." + , dodgeNicksDoxasticState = Just Disbelief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/JamesDiNicolantonio.elm b/frontend/src/Cuckery/CuckList/JamesDiNicolantonio.elm new file mode 100644 index 0000000..840c65f --- /dev/null +++ b/frontend/src/Cuckery/CuckList/JamesDiNicolantonio.elm @@ -0,0 +1,24 @@ +module Cuckery.CuckList.JamesDiNicolantonio exposing (..) + +import Cuckery.Types exposing (..) + + +cuckJamesDiNicolantonio : Cuck +cuckJamesDiNicolantonio = + let + name : String + name = + "James DiNicolantonio" + in + { cuckImage = formatCuckName name + , cuckName = name + , cuckSocial = "https://twitter.com/drjamesdinic" + , cuckDodges = + [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1460788569388171268?s=20" + , dodgeDescription = NoReply + , dodgeProposition = "dietary linoleic acid is not a significant, independent concern for the development of chronic diseases." + , dodgeNicksDoxasticState = Just Belief + , dodgeNicksDoxasticReason = NoProp + } + ] + } diff --git a/frontend/src/Cuckery/CuckList/Template copy 10.elm b/frontend/src/Cuckery/CuckList/Template copy 10.elm deleted file mode 100644 index 09e7a4f..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 10.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2010 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 11.elm b/frontend/src/Cuckery/CuckList/Template copy 11.elm deleted file mode 100644 index 90aba0f..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 11.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2011 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 12.elm b/frontend/src/Cuckery/CuckList/Template copy 12.elm deleted file mode 100644 index e2c6124..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 12.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2012 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 13.elm b/frontend/src/Cuckery/CuckList/Template copy 13.elm deleted file mode 100644 index 2966cab..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 13.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2013 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 14.elm b/frontend/src/Cuckery/CuckList/Template copy 14.elm deleted file mode 100644 index b46b62f..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 14.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2014 exposing (..)module Cuckery.CuckList.Template%20copy%2014 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 15.elm b/frontend/src/Cuckery/CuckList/Template copy 15.elm deleted file mode 100644 index 0da1713..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 15.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2015 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 16.elm b/frontend/src/Cuckery/CuckList/Template copy 16.elm deleted file mode 100644 index aa6479d..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 16.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%2016 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 4.elm b/frontend/src/Cuckery/CuckList/Template copy 4.elm deleted file mode 100644 index f4658de..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 4.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%204 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 5.elm b/frontend/src/Cuckery/CuckList/Template copy 5.elm deleted file mode 100644 index 4885da6..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 5.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%205 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 6.elm b/frontend/src/Cuckery/CuckList/Template copy 6.elm deleted file mode 100644 index a22ba87..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 6.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%206 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 7.elm b/frontend/src/Cuckery/CuckList/Template copy 7.elm deleted file mode 100644 index cce6779..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 7.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%207 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 8.elm b/frontend/src/Cuckery/CuckList/Template copy 8.elm deleted file mode 100644 index 3f68f52..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 8.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%208 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template copy 9.elm b/frontend/src/Cuckery/CuckList/Template copy 9.elm deleted file mode 100644 index f8d8665..0000000 --- a/frontend/src/Cuckery/CuckList/Template copy 9.elm +++ /dev/null @@ -1,24 +0,0 @@ -module Cuckery.CuckList.Template%20copy%209 exposing (..)module Cuckery.CuckList.Template exposing (..) - -import Cuckery.Types exposing (..) - - -templateCuck : Cuck -templateCuck = - let - name : String - name = - "" - in - { cuckImage = formatCuckName name - , cuckName = name - , cuckSocial = "" - , cuckDodges = - [ { dodgeLink = "" - , dodgeDescription = NoReply - , dodgeProposition = "." - , dodgeNicksDoxasticState = Just Agnostic - , dodgeNicksDoxasticReason = NoProp - } - ] - } diff --git a/frontend/src/Cuckery/CuckList/Template.elm b/frontend/src/Cuckery/CuckList/Template.elm index 1cc973a..92f0795 100644 --- a/frontend/src/Cuckery/CuckList/Template.elm +++ b/frontend/src/Cuckery/CuckList/Template.elm @@ -3,8 +3,8 @@ module Cuckery.CuckList.Template exposing (..) import Cuckery.Types exposing (..) -templateCuck : Cuck -templateCuck = +cuck : Cuck +cuck = let name : String name = @@ -16,7 +16,7 @@ templateCuck = , cuckDodges = [ { dodgeLink = "" , dodgeDescription = NoReply - , dodgeProposition = "." + , dodgeProposition = "" , dodgeNicksDoxasticState = Just Agnostic , dodgeNicksDoxasticReason = NoProp } diff --git a/frontend/src/Pages/Dodgers.elm b/frontend/src/Pages/Dodgers.elm index 85c7194..1aeeabf 100755 --- a/frontend/src/Pages/Dodgers.elm +++ b/frontend/src/Pages/Dodgers.elm @@ -110,179 +110,6 @@ dodgersList = -- cucks = --- , { cuckImage = "cucks/daviddiamond.png" --- , cuckName = "David Diamond" --- , cuckSocial = "https://twitter.com/LDLSkeptic" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/LDLSkeptic/status/1583471298306375681?s=20" --- , dodgeDescription = dodgeType.outrightNo --- , dodgeProposition = "statin therapy is not warranted for a person high LDL-C on a low-carb diet." --- , dodgeNicksPosition = doxasticType.falseState --- } --- , { dodgeLink = "https://twitter.com/LDLSkeptic/status/1583481964840902656?s=20" --- , dodgeDescription = dodgeType.killScreen --- , dodgeProposition = "statin therapy is not warranted for a person high LDL-C on a low-carb diet." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/davidgornoski.png" --- , cuckName = "David Gornoski" --- , cuckSocial = "https://twitter.com/DavidGornoski" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/TheNutrivore/status/1525474063044550657?s=20" --- , dodgeDescription = dodgeType.outrightNo --- , dodgeProposition = "polyunsaturated fatty acids cause obesity." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/dianarodgers.png" --- , cuckName = "Diana Rodgers" --- , cuckSocial = "https://twitter.com/sustainabledish" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1365857401786814465?s=20" --- , dodgeDescription = dodgeType.inTooDeep --- , dodgeProposition = "saturated fat doesn't increase the risk of coronary heart disease." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/edwardgoeke.png" --- , cuckName = "Edward Goeke" --- , cuckSocial = "https://twitter.com/GoekeEddie" --- , cuckDodges = --- [ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = "seed oils are inflammatory." --- , dodgeNicksPosition = doxasticType.falseState --- } --- , { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = "seed oils are inflammatory." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/eliejarrouge.png" --- , cuckName = "Elie Jarrouge" --- , cuckSocial = "https://twitter.com/ElieJarrougeMD" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/TheNutrivore/status/1506845469980315648?s=20" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = "sugar, refined carbs, and seed oils are poison." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/garybrecka.png" --- , cuckName = "Gary Brecka" --- , cuckSocial = "https://twitter.com/garybrecka1" --- , cuckDodges = --- [ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = "linoleic acid consumption causes atherosclerosis." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/garyfettke.png" --- , cuckName = "Gary Fettke" --- , cuckSocial = "https://x.com/FructoseNo" --- , cuckDodges = --- [ { dodgeLink = "https://x.com/TheNutrivore/status/1460983496524980224" --- , dodgeDescription = dodgeType.ghostedMe --- , dodgeProposition = "at current Western levels of intake, dietary linoleic acid is not a significant, independent concern for the development of chronic diseases." --- , dodgeNicksPosition = doxasticType.trueState --- } --- ] --- } --- , { cuckImage = "cucks/garytaubes.png" --- , cuckName = "Gary Taubes" --- , cuckSocial = "https://twitter.com/garytaubes" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/garytaubes/status/1595180467552018432?s=20" --- , dodgeDescription = dodgeType.outrightNo --- , dodgeProposition = "carbohydrates cause starvation." --- , dodgeNicksPosition = doxasticType.agnosticState --- } --- ] --- } --- , { cuckImage = "cucks/georgemartin.png" --- , cuckName = "George Martin" --- , cuckSocial = "https://x.com/CarnismDebunked" --- , cuckDodges = --- [ { dodgeLink = "https://x.com/TheNutrivore/status/1815098730141651021" --- , dodgeDescription = dodgeType.ranAway --- , dodgeProposition = "Nick has killed more animals in his life than a mature bear." --- , dodgeNicksPosition = doxasticType.agnosticState --- } --- ] --- } --- , { cuckImage = "cucks/guyaustin.png" --- , cuckName = "Guy Austin" --- , cuckSocial = "https://x.com/GuyNAustin" --- , cuckDodges = --- [ { dodgeLink = "https://x.com/TheNutrivore/status/1538607434176020480" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = propType.noClearProp --- , dodgeNicksPosition = doxasticType.agnosticState --- } --- , { dodgeLink = "https://x.com/GuyNAustin/status/1687530045101744128" --- , dodgeDescription = dodgeType.outrightNo --- , dodgeProposition = "seed oils are not a significant, independent concern for public health." --- , dodgeNicksPosition = doxasticType.trueState --- } --- ] --- } --- , { cuckImage = "cucks/ivorcummins.png" --- , cuckName = "Ivor Cummins" --- , cuckSocial = "https://twitter.com/FatEmperor" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1268600451693494273?s=20" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = "LDL does not cause coronary heart disease." --- , dodgeNicksPosition = doxasticType.falseState --- } --- , { dodgeLink = "https://twitter.com/FatEmperor/status/1636920650156724226?s=20" --- , dodgeDescription = dodgeType.outrightNo --- , dodgeProposition = "LDL does not cause coronary heart disease." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/jakemey.png" --- , cuckName = "Jake Mey" --- , cuckSocial = "https://twitter.com/CakeNutrition" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1490009495581298690?s=20" --- , dodgeDescription = dodgeType.ranAway --- , dodgeProposition = "Vegan Friday meals are unhealthy for children." --- , dodgeNicksPosition = doxasticType.falseState --- } --- , { dodgeLink = "https://twitter.com/The_Nutrivore/status/1490060813138280450?s=20" --- , dodgeDescription = dodgeType.outrightNo --- , dodgeProposition = "Vegan Friday meals are unhealthy for children." --- , dodgeNicksPosition = doxasticType.falseState --- } --- , { dodgeLink = "https://twitter.com/The_Nutrivore/status/1495419256737091585?s=20" --- , dodgeDescription = dodgeType.killScreen --- , dodgeProposition = "Vegan Friday meals are unhealthy for children." --- , dodgeNicksPosition = doxasticType.falseState --- } --- ] --- } --- , { cuckImage = "cucks/jamesdinicolantonio.png" --- , cuckName = "James DiNicolantonio" --- , cuckSocial = "https://twitter.com/drjamesdinic" --- , cuckDodges = --- [ { dodgeLink = "https://twitter.com/The_Nutrivore/status/1460788569388171268?s=20" --- , dodgeDescription = dodgeType.noReply --- , dodgeProposition = "dietary linoleic acid is not a significant, independent concern for the development of chronic diseases." --- , dodgeNicksPosition = doxasticType.trueState --- } --- ] --- } -- , { cuckImage = "cucks/justinmares.png" -- , cuckName = "Justin Mares" -- , cuckSocial = "https://twitter.com/jwmares"