feat: still need to remake headers

This commit is contained in:
Nick 2024-12-21 23:23:59 -06:00
parent 4686c14667
commit f9af0e1941
209 changed files with 1057 additions and 953 deletions

View file

@ -2,9 +2,10 @@ module Config.Helpers.Articles.Article exposing (..)
import Config.Data.Identity exposing (pageNames) import Config.Data.Identity exposing (pageNames)
import Config.Helpers.Articles.Types exposing (References) import Config.Helpers.Articles.Types exposing (References)
import Config.Helpers.CardFormat exposing (cardMaker) import Config.Helpers.Cardables.Helpers exposing (cardMaker)
import Config.Helpers.Cardables.Types as C
import Config.Helpers.Format exposing (..) import Config.Helpers.Format exposing (..)
import Config.Helpers.Headers.Header exposing (headerMaker) import Config.Helpers.Headers.Header exposing (..)
import Config.Helpers.Headers.Types exposing (Header) import Config.Helpers.Headers.Types exposing (Header)
import Config.Helpers.Markdown exposing (..) import Config.Helpers.Markdown exposing (..)
import Config.Helpers.Response import Config.Helpers.Response
@ -44,11 +45,6 @@ import Shared exposing (..)
import View exposing (View) import View exposing (View)
articleMaker : Device -> BlogArticle -> Element msg
articleMaker device article =
cardMaker device article.articleName (contentList article) { description = "", src = "String" } article.articleLink
contentList : BlogArticle -> List (Element msg) contentList : BlogArticle -> List (Element msg)
contentList article = contentList article =
[ articleImage article.articleImage [ articleImage article.articleImage

View file

@ -1,240 +0,0 @@
module Config.Helpers.CardFormat exposing (..)
import Config.Data.Identity
exposing
( pageNames
)
import Config.Helpers.Converters exposing (formatName)
import Config.Helpers.Format
exposing
( headerFontSizeMedium
, paragraphFontSize
, paragraphSpacing
)
import Config.Style.Colour exposing (colourTheme)
import Config.Style.Glow
exposing
( glowDeepDarkGrey
, glowDeepDarkOrange
)
import Config.Style.Icons.Icons exposing (construction)
import Config.Style.Transitions
exposing
( hoverCircleButtonDarkOrange
, transitionStyleMedium
, transitionStyleSlow
)
import Element as E exposing (..)
import Element.Background as B
import Element.Border as D
import Element.Font as F
import Html.Attributes as H
import Route.Path as Path exposing (..)
import Shared
cardMaker : Device -> String -> List (Element msg) -> { description : String, src : String } -> String -> Element msg
cardMaker device title content image url =
el
[ width (fill |> minimum 100)
, width (fill |> maximum 875)
, padding 10
, centerX
]
<|
if
url
== Path.toString Path.Home_
|| url
== Path.toString Path.Contact
|| url
== Path.toString Path.Debate
|| url
== Path.toString Path.Debate_Arguments
|| url
== Path.toString Path.Debate_Cucklist
|| url
== Path.toString Path.Debate_Gibberish
|| url
== Path.toString Path.Donate
|| url
== Path.toString Path.Blog
|| url
== Path.toString Path.Blog_Seedoils
|| url
== Path.toString Path.Blog_Huntergatherers
|| url
== Path.toString Path.Blog_Sapiendiet
|| url
== Path.toString Path.Blog_Nagragoodrich
|| url
== Path.toString Path.Blog_Quacksmashing
|| url
== Path.toString Path.Blog_Bigfatsurprise
|| url
== Path.toString Path.Blog_Everettvegans
|| url
== Path.toString Path.Blog_Meatapologetics
|| url
== Path.toString Path.Blog_Plantbasedmeta
|| url
== Path.toString Path.Blog_Shenanigans
|| url
== Path.toString Path.Blog_Sweetdeception
|| url
== Path.toString Path.Interviews
|| url
== Path.toString Path.Nutridex
|| url
== Path.toString Path.Services
|| url
== Path.toString Path.Services_Analysis
|| url
== Path.toString Path.Services_Coaching
|| url
== Path.toString Path.Services_Elm
|| url
== Path.toString Path.Services_Nix
|| url
== Path.toString Path.Services_Nutrition
then
el
[ E.width fill
, D.width 5
, D.color colourTheme.backgroundDarkGrey
, D.rounded 32
, glowDeepDarkGrey
, mouseOver
[ D.color colourTheme.textDarkOrange
, B.color colourTheme.textDarkOrange
, glowDeepDarkOrange
]
, transitionStyleSlow
]
<|
link [ width fill ]
{ url = url
, label = cardStructure device title content image
}
else
el
[ E.width fill
, D.width 5
, D.color colourTheme.backgroundDarkGrey
, D.rounded 32
, glowDeepDarkGrey
, mouseOver
[ D.color colourTheme.textDarkOrange
, B.color colourTheme.textDarkOrange
, glowDeepDarkOrange
]
, transitionStyleSlow
]
<|
newTabLink []
{ url = url
, label = cardStructure device title content image
}
cardStructure : Device -> String -> List (Element msg) -> { description : String, src : String } -> Element msg
cardStructure device title content image =
column
[ width fill
]
[ el
[ headerFontSizeMedium
, F.bold
, F.color colourTheme.textLightGrey
, B.color colourTheme.textDarkOrange
, paddingEach
{ top = 6
, bottom = 3
, left = 20
, right = 20
}
, width fill
, F.center
, D.roundEach
{ topLeft = 26
, topRight = 26
, bottomRight = 0
, bottomLeft = 0
}
]
<|
paragraph [] [ text title ]
, el
[ E.height fill
, E.width fill
, centerX
, B.color colourTheme.backgroundDarkGrey
, padding 10
, D.roundEach
{ topLeft = 0
, topRight = 0
, bottomRight = 26
, bottomLeft = 26
}
, spacing 8
]
<|
el
[ paddingEach
{ top = 0
, bottom = 0
, left = 15
, right = 15
}
, spacing 8
, width fill
]
<|
row
[ width fill ]
[ column
[ spacing 8
, width fill
]
content
, el
[ alignRight
, alignTop
, paddingXY 20 20
]
<|
el
[ D.rounded 100
, D.width 5
, glowDeepDarkGrey
, D.color colourTheme.backgroundDarkGrey
, B.color colourTheme.backgroundDarkGrey
]
<|
E.image
([ alignRight
, alignTop
, D.rounded 100
, clip
]
++ (case ( device.class, device.orientation ) of
( Phone, Portrait ) ->
[ E.width <| px 45
, E.height <| px 45
]
( Tablet, Portrait ) ->
[ E.width <| px 45
, E.height <| px 45
]
_ ->
[ E.width <| px 90
, E.height <| px 90
]
)
)
image
]
]

View file

@ -0,0 +1,307 @@
module Config.Helpers.Cardables.Helpers exposing (..)
import Config.Data.Identity
exposing
( pageNames
)
import Config.Helpers.Cardables.Types as C exposing (..)
import Config.Helpers.Converters exposing (formatName)
import Config.Helpers.Format
exposing
( headerFontSizeMedium
, paragraphFontSize
, paragraphSpacing
)
import Config.Pages.Debate.Arguments.Records.Template exposing (argument)
import Config.Style.Colour exposing (colourTheme)
import Config.Style.Glow
exposing
( glowDeepDarkGrey
, glowDeepDarkOrange
)
import Config.Style.Icons.Icons exposing (construction)
import Config.Style.Transitions
exposing
( hoverCircleButtonDarkOrange
, transitionStyleMedium
, transitionStyleSlow
)
import Element as E exposing (..)
import Element.Background as B
import Element.Border as D
import Element.Font as F
import Html.Attributes as H
import Route.Path as Path exposing (..)
import Shared
cardMaker : Device -> Cardable msg -> List (Element msg) -> Element msg
cardMaker device cardable contents =
let
cardTitleMaker : String -> Element msg
cardTitleMaker title =
el
[ headerFontSizeMedium
, F.bold
, F.color colourTheme.textLightGrey
, B.color colourTheme.textDarkOrange
, paddingEach
{ top = 6
, bottom = 3
, left = 20
, right = 20
}
, width fill
, F.center
, D.roundEach
{ topLeft = 26
, topRight = 26
, bottomRight = 0
, bottomLeft = 0
}
]
<|
paragraph [] [ text title ]
cardImageMaker : String -> Element msg
cardImageMaker image =
el
[ alignRight
, alignTop
, paddingXY 20 20
]
<|
el
[ D.rounded 100
, D.width 5
, glowDeepDarkGrey
, D.color colourTheme.backgroundDarkGrey
, B.color colourTheme.backgroundDarkGrey
]
<|
E.image
([ alignRight
, alignTop
, D.rounded 100
, clip
]
++ (case ( device.class, device.orientation ) of
( Phone, Portrait ) ->
[ E.width <| px 45
, E.height <| px 45
]
( Tablet, Portrait ) ->
[ E.width <| px 45
, E.height <| px 45
]
_ ->
[ E.width <| px 90
, E.height <| px 90
]
)
)
{ src = image
, description = ""
}
cardInner : String -> List (Element msg) -> Element msg
cardInner title elements =
column
[ width fill ]
[ cardTitleMaker title
, cardStuff <|
row
[ width fill ]
elements
]
cardOuter : Element msg -> Element msg
cardOuter elements =
el
[ width (fill |> minimum 100)
, width (fill |> maximum 875)
, padding 10
, centerX
]
<|
el
[ E.width fill
, D.width 5
, D.color colourTheme.backgroundDarkGrey
, D.rounded 32
, glowDeepDarkGrey
, mouseOver
[ D.color colourTheme.textDarkOrange
, B.color colourTheme.textDarkOrange
, glowDeepDarkOrange
]
, transitionStyleSlow
]
elements
cardWithImageWithLink : Bool -> String -> String -> String -> List (Element msg) -> Element msg
cardWithImageWithLink linkBool title image url content =
linkChooser
linkBool
(cardInner title
[ cardContentMaker content
, cardImageMaker image
]
)
url
cardWithNoImageWithLink : Bool -> String -> String -> List (Element msg) -> Element msg
cardWithNoImageWithLink linkBool title url content =
linkChooser
linkBool
(cardInner title
[ cardContentMaker content
]
)
url
cardWithImage : String -> String -> List (Element msg) -> Element msg
cardWithImage title image content =
cardOuter <|
cardInner title
[ cardContentMaker content
, cardImageMaker image
]
cardWithNoImage : String -> List (Element msg) -> Element msg
cardWithNoImage title content =
cardOuter <|
cardInner title
[ cardContentMaker content
]
linkChooser : Bool -> Element msg -> String -> Element msg
linkChooser linkBool element url =
cardOuter <|
(if linkBool then
newTabLink
else
link
)
[ width fill ]
{ url = url
, label = element
}
in
case cardable of
C.Contact contact ->
el [] <| cardTitleMaker contact.contactName
C.Cuck cuck ->
cardWithImageWithLink
cuck.isNewTabLink
cuck.cuckName
("/cucks/" ++ cuck.cuckImage ++ ".png")
cuck.cuckSocial
contents
C.BlogArticle blogArticle ->
cardWithNoImage
blogArticle.articleName
contents
C.BlogCard blogArticle ->
cardWithImageWithLink
blogArticle.isNewTabLink
blogArticle.articleName
("/blog/" ++ blogArticle.articleImage ++ "thumb.png")
blogArticle.articleLink
contents
C.Argument argument ->
cardWithImageWithLink
argument.isNewTabLink
argument.argumentTitle
("/arguments/" ++ argument.argumentImage ++ ".png")
argument.proofLink
contents
C.Gibberish gibberish ->
cardWithImageWithLink
gibberish.isNewTabLink
gibberish.gibberishTitle
("/gibberish/" ++ gibberish.gibberishImage ++ ".png")
gibberish.gibberishLink
contents
C.Service service ->
cardWithImageWithLink
service.isNewTabLink
service.serviceName
("/services/" ++ service.serviceImage ++ ".png")
service.serviceLink
contents
C.Debate debate ->
cardWithImageWithLink
debate.isNewTabLink
debate.debateTitle
("/debate/" ++ debate.debateImage ++ ".png")
debate.debateLink
contents
C.Donate donate ->
cardWithImageWithLink
donate.isNewTabLink
donate.donateName
("/donate/" ++ donate.donateImage ++ ".png")
donate.donateLink
contents
C.Interview interview ->
cardWithImage
interview.interviewName
("/interviews/" ++ interview.interviewImage ++ ".png")
contents
C.NutriDex nutriDex ->
cardWithNoImage
nutriDex.nutriDexTitle
contents
cardContentMaker : List (Element msg) -> Element msg
cardContentMaker content =
column
[ spacing 8
, width fill
]
content
cardStuff : Element msg -> Element msg
cardStuff content =
el
[ E.height fill
, E.width fill
, centerX
, B.color colourTheme.backgroundDarkGrey
, padding 10
, D.roundEach
{ topLeft = 0
, topRight = 0
, bottomRight = 26
, bottomLeft = 26
}
, spacing 8
]
<|
el
[ paddingEach
{ top = 0
, bottom = 0
, left = 15
, right = 15
}
, spacing 8
, width fill
]
content

View file

@ -0,0 +1,26 @@
module Config.Helpers.Cardables.Types exposing (..)
import Config.Pages.Blog.Types exposing (BlogArticle)
import Config.Pages.Contact.Types exposing (Contact)
import Config.Pages.Debate.Arguments.Types exposing (Argument)
import Config.Pages.Debate.Cuckery.Types exposing (Cuck)
import Config.Pages.Debate.Gibberish.Types exposing (Gibberish)
import Config.Pages.Debate.Types exposing (Debate)
import Config.Pages.Donate.Types exposing (Donate)
import Config.Pages.Interviews.Types exposing (Interview)
import Config.Pages.Products.Types exposing (NutriDex)
import Config.Pages.Services.Types exposing (Service, ServicePage)
type Cardable msg
= Contact Contact
| Cuck Cuck
| BlogArticle BlogArticle
| BlogCard BlogArticle
| Argument Argument
| Gibberish Gibberish
| Service (Service msg)
| Debate Debate
| Donate Donate
| Interview Interview
| NutriDex NutriDex

View file

@ -1,6 +1,7 @@
module Config.Helpers.Headers.Header exposing (headerMaker) module Config.Helpers.Headers.Header exposing (..)
import Config.Helpers.CardFormat exposing (..) import Config.Helpers.Cardables.Helpers exposing (cardMaker)
import Config.Helpers.Cardables.Types as C
import Config.Helpers.Headers.Types exposing (Header) import Config.Helpers.Headers.Types exposing (Header)
import Config.Pages.Contact.Types exposing (Contact) import Config.Pages.Contact.Types exposing (Contact)
import Element as E import Element as E
@ -14,11 +15,23 @@ import Element as E
import Shared exposing (..) import Shared exposing (..)
headerMaker : Device -> Header -> Element msg
headerMaker device header = -- headerMaker : Device -> Header -> Element msg
cardMaker device header.headerTitle (contentList header) { description = "", src = "" } "" -- headerMaker device header =
-- cardMaker device header.headerTitle (contentList header) { description = "", src = "" } ""
contentList : Header -> List (Element msg) contentList : Header -> List (Element msg)
contentList header = contentList header =
[ text header.headerBody ] [ text header.headerBody ]
servicesHeader : Header
servicesHeader =
let
name =
"Services"
in
{ headerTitle = String.toUpper name
, headerBody = "Bundle any of the services below to receive a $10 discount per hour. For example, two Debate Analysis sessions would cost $140 total, instead of $80/hr. All prices are in CAD."
}

View file

@ -4,6 +4,4 @@ module Config.Helpers.Headers.Types exposing (..)
type alias Header = type alias Header =
{ headerTitle : String { headerTitle : String
, headerBody : String , headerBody : String
, hasLink : Bool
, hasImage : Bool
} }

View file

@ -12,8 +12,6 @@ articleBigFatSurprise =
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasTableOfContents = True , hasTableOfContents = True
, hasImage = False
, hasLink = False
, articleImage = "bigfatsurprise" , articleImage = "bigfatsurprise"
, articlePublished = "Aug 10, 2014" , articlePublished = "Aug 10, 2014"
, articleBody = """ , articleBody = """

View file

@ -11,8 +11,8 @@ articleEverettVegans =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "everettvegans" , articleImage = "everettvegans"
, articlePublished = "May 1, 2023" , articlePublished = "May 1, 2023"

View file

@ -11,8 +11,8 @@ articleHunterGatherers =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "huntergatherers" , articleImage = "huntergatherers"
, articlePublished = "May 14, 2021" , articlePublished = "May 14, 2021"

View file

@ -11,8 +11,8 @@ articleMeatApologetics =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "meatapologetics" , articleImage = "meatapologetics"
, articlePublished = "Apr 13, 2022" , articlePublished = "Apr 13, 2022"

View file

@ -11,8 +11,8 @@ articleNagraGoodrich =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = False , hasReferences = False
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "nagragoodrich" , articleImage = "nagragoodrich"
, articlePublished = "May 12, 2022" , articlePublished = "May 12, 2022"

View file

@ -11,8 +11,8 @@ articlePlantBasedMeta =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "plantbasedmeta" , articleImage = "plantbasedmeta"
, articlePublished = "Feb 5, 2021" , articlePublished = "Feb 5, 2021"

View file

@ -11,8 +11,8 @@ articleQuackSmashing =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "quacksmashing" , articleImage = "quacksmashing"
, articlePublished = "Dec 24, 2022" , articlePublished = "Dec 24, 2022"

View file

@ -11,8 +11,8 @@ articleSapienDiet =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "sapiendiet" , articleImage = "sapiendiet"
, articlePublished = "Aug 24, 2022" , articlePublished = "Aug 24, 2022"

View file

@ -11,8 +11,8 @@ articleSeedOils =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "seedoils" , articleImage = "seedoils"
, articlePublished = "Oct 31, 2021" , articlePublished = "Oct 31, 2021"

View file

@ -11,8 +11,8 @@ articleShenanigans =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = False , hasReferences = False
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "shenanigans" , articleImage = "shenanigans"
, articlePublished = "Jun 6, 2024" , articlePublished = "Jun 6, 2024"

View file

@ -12,8 +12,8 @@ articleSweetDeception =
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasTableOfContents = True , hasTableOfContents = True
, hasImage = False
, hasLink = False
, articleImage = "sweetdeception" , articleImage = "sweetdeception"
, articlePublished = "Apr 16, 2024" , articlePublished = "Apr 16, 2024"
, articleBody = """ , articleBody = """

View file

@ -11,8 +11,6 @@ article =
, articleAuthor = "Nick Hiebert" , articleAuthor = "Nick Hiebert"
, isNewTabLink = False , isNewTabLink = False
, hasReferences = True , hasReferences = True
, hasImage = False
, hasLink = False
, hasTableOfContents = True , hasTableOfContents = True
, articleImage = "" , articleImage = ""
, articlePublished = "" , articlePublished = ""

View file

@ -10,8 +10,6 @@ type alias BlogArticle =
, articleLink : String , articleLink : String
, articleAuthor : String , articleAuthor : String
, isNewTabLink : Bool , isNewTabLink : Bool
, hasLink : Bool
, hasImage : Bool
, hasReferences : Bool , hasReferences : Bool
, hasTableOfContents : Bool , hasTableOfContents : Bool
, articlePublished : String , articlePublished : String

View file

@ -1,12 +1,10 @@
module Config.Pages.Contact.Types exposing (..) module Config.Pages.Contact.Types exposing (..)
type alias Contact = type alias Contact =
{ contactName : String { contactName : String
, contactImage : String , contactImage : String
, contactLink : String , contactLink : String
, hasLink : Bool , isNewTabLink : Bool
, hasImage : Bool
, contactLinkLabel : String , contactLinkLabel : String
, contactEntry : List Method , contactEntry : List Method
} }
@ -15,3 +13,5 @@ type alias Contact =
type alias Method = type alias Method =
{ contactInstructions : String { contactInstructions : String
} }

View file

@ -15,8 +15,7 @@ argumentAbortion =
, argumentCertainty = 6 , argumentCertainty = 6
, argumentImage = "abortion" , argumentImage = "abortion"
, argumentHashtags = [ PoliticsAbortion, PhilosophySentience, PhilosophyEthics ] , argumentHashtags = [ PoliticsAbortion, PhilosophySentience, PhilosophyEthics ]
, hasImage = True , isNewTabLink = False
, hasLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "one consents to becoming pregnant" , definiens = "one consents to becoming pregnant"

View file

@ -14,8 +14,9 @@ argumentAgnosticism =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "agnostic" , argumentImage = "agnostic"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x,y)" [ { definiendum = "P(x,y)"
, definiens = "(x) can unpack what evidence would lead them to change their doxastic attitude on (y)" , definiens = "(x) can unpack what evidence would lead them to change their doxastic attitude on (y)"

View file

@ -14,8 +14,9 @@ argumentAgriculturalPredation =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "predatoragriculture" , argumentImage = "predatoragriculture"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) counts as predation" , definiens = "(x) counts as predation"

View file

@ -14,8 +14,9 @@ argumentAnabolicKeto =
, argumentCertainty = 5 , argumentCertainty = 5
, argumentImage = "anabolicketo" , argumentImage = "anabolicketo"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets" , definiens = "a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets"

View file

@ -14,8 +14,9 @@ argumentAnimalRights =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "animalrights" , argumentImage = "animalrights"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has moral worth" , definiens = "(x) has moral worth"

View file

@ -14,8 +14,9 @@ argumentAntagonisticPleiotropy =
, argumentCertainty = 6 , argumentCertainty = 6
, argumentImage = "antagonisticpleiotropy" , argumentImage = "antagonisticpleiotropy"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "humans have more genetic adaptations to ancestral foods than novel foods" , definiens = "humans have more genetic adaptations to ancestral foods than novel foods"

View file

@ -14,8 +14,9 @@ argumentAntiRewilding =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "rewilding" , argumentImage = "rewilding"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has negative rights" , definiens = "(x) has negative rights"

View file

@ -14,8 +14,9 @@ argumentAntiVandalism =
, argumentCertainty = 8 , argumentCertainty = 8
, argumentImage = "antivandalism" , argumentImage = "antivandalism"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "zoos must spend extra money cleaning graffiti" , definiens = "zoos must spend extra money cleaning graffiti"

View file

@ -14,8 +14,9 @@ argumentApoBCVD =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "lipoprotein" , argumentImage = "lipoprotein"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) dose-dependently causes atherosclerosis" , definiens = "(x) dose-dependently causes atherosclerosis"

View file

@ -14,8 +14,9 @@ argumentBoobyTrapPagers =
, argumentCertainty = 4 , argumentCertainty = 4
, argumentImage = "pagers" , argumentImage = "pagers"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is a booby-trap" , definiens = "(x) is a booby-trap"

View file

@ -15,8 +15,9 @@ argumentCarbsObesity =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "carbobesity" , argumentImage = "carbobesity"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "carbs uniquely cause fat accumulation or obesity" , definiens = "carbs uniquely cause fat accumulation or obesity"

View file

@ -14,8 +14,9 @@ argumentCateUpfReductio =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "cateupfreductio" , argumentImage = "cateupfreductio"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is an ingredient in ultraprocessed foods" , definiens = "(x) is an ingredient in ultraprocessed foods"

View file

@ -15,8 +15,9 @@ argumentColonizingNature =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "colonizingnature" , argumentImage = "colonizingnature"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "the natural world contains intolerable rights violations" , definiens = "the natural world contains intolerable rights violations"

View file

@ -15,8 +15,9 @@ argumentCropDeaths =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "cropdeaths" , argumentImage = "cropdeaths"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "it is known that cropland leads to more animal death than wildland" , definiens = "it is known that cropland leads to more animal death than wildland"

View file

@ -14,8 +14,9 @@ argumentDairyCowRape =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "cowrape" , argumentImage = "cowrape"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) qualifies as rape" , definiens = "(x) qualifies as rape"

View file

@ -14,8 +14,9 @@ argumentDietaryCholesterol =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "dietarycholesterol" , argumentImage = "dietarycholesterol"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "consuming high amounts of (x) increases LDL" , definiens = "consuming high amounts of (x) increases LDL"

View file

@ -15,8 +15,9 @@ argumentDummy =
, argumentCertainty = 6 , argumentCertainty = 6
, argumentImage = "" , argumentImage = ""
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "" [ { definiendum = ""
, definiens = "" , definiens = ""

View file

@ -14,8 +14,9 @@ argumentEfilismPatrolSquad =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "efilism" , argumentImage = "efilism"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "humans abstaining from procreation maximally reduces rights violations" , definiens = "humans abstaining from procreation maximally reduces rights violations"

View file

@ -15,8 +15,9 @@ argumentEpidemiologyCausality =
, argumentCertainty = 8 , argumentCertainty = 8
, argumentImage = "epidemiologycausality" , argumentImage = "epidemiologycausality"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) consistently identifies associations that are later confirmed by randomized controlled trials" , definiens = "(x) consistently identifies associations that are later confirmed by randomized controlled trials"

View file

@ -14,8 +14,9 @@ argumentEthicalSlurs =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "ethicalslurs" , argumentImage = "ethicalslurs"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x)'s negative connotations have been neutralised" , definiens = "(x)'s negative connotations have been neutralised"

View file

@ -14,8 +14,9 @@ argumentFineTuning =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "finetuning" , argumentImage = "finetuning"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is finely tuned" , definiens = "(x) is finely tuned"

View file

@ -14,8 +14,9 @@ argumentFlatEarthDebunk =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "flatearth" , argumentImage = "flatearth"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x,y)" [ { definiendum = "P(x,y)"
, definiens = "(x) is perceived as rotating counter-clockwise from point (y)" , definiens = "(x) is perceived as rotating counter-clockwise from point (y)"

View file

@ -14,8 +14,9 @@ argumentFructoseNAFLD =
, argumentCertainty = 8 , argumentCertainty = 8
, argumentImage = "fructosenafld" , argumentImage = "fructosenafld"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "experimental investigations into fructose overfeeding consistently fail to recreate a fatty liver phenotype in humans" , definiens = "experimental investigations into fructose overfeeding consistently fail to recreate a fatty liver phenotype in humans"

View file

@ -14,8 +14,9 @@ argumentHealthPromotingFoods =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "healthfoods" , argumentImage = "healthfoods"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy" , definiens = "food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy"

View file

@ -15,8 +15,9 @@ argumentHealthSeeker =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "healthseeker" , argumentImage = "healthseeker"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) favours consuming ancestral foods to the exclusion of (y) because they value reducing disease risk" , definiens = "(x) favours consuming ancestral foods to the exclusion of (y) because they value reducing disease risk"

View file

@ -14,8 +14,9 @@ argumentHealthyChocolate =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "chocolate" , argumentImage = "chocolate"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentHealthyDairy =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "dairy" , argumentImage = "dairy"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) causes atherosclerosis" , definiens = "(x) causes atherosclerosis"

View file

@ -14,8 +14,9 @@ argumentHealthyFattyFish =
, argumentCertainty = 8 , argumentCertainty = 8
, argumentImage = "fattyfish" , argumentImage = "fattyfish"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -15,8 +15,9 @@ argumentHealthyFibre =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "fibre" , argumentImage = "fibre"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -15,8 +15,9 @@ argumentHealthyFood =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "foodsubstitution" , argumentImage = "foodsubstitution"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x,y,w)" [ { definiendum = "P(x,y,w)"
, definiens = "(x) is healthy compared to (w) when in (y)" , definiens = "(x) is healthy compared to (w) when in (y)"

View file

@ -14,8 +14,9 @@ argumentHealthyPlantFoods =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "plantfoods" , argumentImage = "plantfoods"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentHealthySeedOils =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "seedoils" , argumentImage = "seedoils"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentHealthySoy =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "soyproducts" , argumentImage = "soyproducts"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentImmortalityReductio =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "immortality" , argumentImage = "immortality"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "humans undergo (x)" , definiens = "humans undergo (x)"

View file

@ -14,8 +14,9 @@ argumentLuigiTerrorist =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "luigiterrorist" , argumentImage = "luigiterrorist"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) commits violent, criminal acts to further ideological goals stemming from domestic influence" , definiens = "(x) commits violent, criminal acts to further ideological goals stemming from domestic influence"

View file

@ -14,8 +14,9 @@ argumentMalondialdehyde =
, argumentCertainty = 6 , argumentCertainty = 6
, argumentImage = "mda" , argumentImage = "mda"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) increases the risk of atherosclerosis" , definiens = "(x) increases the risk of atherosclerosis"

View file

@ -14,8 +14,9 @@ argumentOddOrderPredators =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "oddorderpredators" , argumentImage = "oddorderpredators"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has negative rights" , definiens = "(x) has negative rights"

View file

@ -14,8 +14,9 @@ argumentOmega3Omega6Ratio =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "omega6omega3ratio" , argumentImage = "omega6omega3ratio"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone" , definiens = "increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone"

View file

@ -14,8 +14,9 @@ argumentOstroveganism =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "ostroveganism" , argumentImage = "ostroveganism"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) counts as a brain" , definiens = "(x) counts as a brain"

View file

@ -15,8 +15,9 @@ argumentPlantBasedCVDReversal =
, argumentCertainty = 8 , argumentCertainty = 8
, argumentImage = "plantbasedcvd" , argumentImage = "plantbasedcvd"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "there are established definitions for atherosclerosis reversal in the domain of cardiology" , definiens = "there are established definitions for atherosclerosis reversal in the domain of cardiology"

View file

@ -14,8 +14,9 @@ argumentPollinationReductio =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "pollinationreductio" , argumentImage = "pollinationreductio"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is vegan" , definiens = "(x) is vegan"

View file

@ -14,8 +14,9 @@ argumentPolyphenolReductio =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "polyphenolreductio" , argumentImage = "polyphenolreductio"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is harmful" , definiens = "(x) is harmful"

View file

@ -14,8 +14,9 @@ argumentScratcherPioneers =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "tattooscratchers" , argumentImage = "tattooscratchers"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is a scratcher" , definiens = "(x) is a scratcher"

View file

@ -14,8 +14,9 @@ argumentSodiumCVD =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "sodiumcvd" , argumentImage = "sodiumcvd"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) consistently raises blood pressure in controlled studies" , definiens = "(x) consistently raises blood pressure in controlled studies"

View file

@ -15,8 +15,9 @@ argumentTMAOCausality =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "tmaocausality" , argumentImage = "tmaocausality"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) is likely to be causative of heart diseas" , definiens = "(x) is likely to be causative of heart diseas"

View file

@ -14,8 +14,9 @@ argument =
, argumentCertainty = 1 , argumentCertainty = 1
, argumentImage = "" , argumentImage = ""
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "" [ { definiendum = ""
, definiens = "" , definiens = ""

View file

@ -14,8 +14,9 @@ argumentTransPeople =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "transpeople" , argumentImage = "transpeople"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "Male" [ { definiendum = "Male"
, definiens = "the cluster of traits that associate with small, but not large, gametes." , definiens = "the cluster of traits that associate with small, but not large, gametes."

View file

@ -14,8 +14,9 @@ argumentTruncatedMeta =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "truncatedmetas" , argumentImage = "truncatedmetas"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "underpowered studies provide weaker causal estimates than adequately powered studies" , definiens = "underpowered studies provide weaker causal estimates than adequately powered studies"

View file

@ -14,8 +14,9 @@ argumentUnhealthyCoconutOil =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "coconutoil" , argumentImage = "coconutoil"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "a given (x) increases LDL-C at a similar rate to other saturated fat sources" , definiens = "a given (x) increases LDL-C at a similar rate to other saturated fat sources"

View file

@ -14,8 +14,9 @@ argumentUnhealthyProcessedMeat =
, argumentCertainty = 8 , argumentCertainty = 8
, argumentImage = "processedmeat" , argumentImage = "processedmeat"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with an increased risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with an increased risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentUnhealthyRedMeat =
, argumentCertainty = 7 , argumentCertainty = 7
, argumentImage = "redmeat" , argumentImage = "redmeat"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with an increased risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with an increased risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentUnhealthySaturatedFat =
, argumentCertainty = 9 , argumentCertainty = 9
, argumentImage = "saturatedfat" , argumentImage = "saturatedfat"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "(x) has a strong tendency to associate with an increased risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables." , definiens = "(x) has a strong tendency to associate with an increased risk of morbidity and/or mortality after adjusting and/or controlling for relevant variables."

View file

@ -14,8 +14,9 @@ argumentVeganSocietyReductio =
, argumentCertainty = 10 , argumentCertainty = 10
, argumentImage = "vegansociety" , argumentImage = "vegansociety"
, argumentHashtags = [] , argumentHashtags = []
, hasImage = True
, hasLink = False
, isNewTabLink = False
, definitionTable = , definitionTable =
[ { definiendum = "P(x)" [ { definiendum = "P(x)"
, definiens = "it is vegan to do (x)" , definiens = "it is vegan to do (x)"

View file

@ -13,8 +13,7 @@ type alias Argument =
, argumentCertainty : Int , argumentCertainty : Int
, argumentImage : String , argumentImage : String
, argumentHashtags : List Hashtags , argumentHashtags : List Hashtags
, hasLink : Bool , isNewTabLink : Bool
, hasImage : Bool
, argumentFormalization : List ArgumentEntry , argumentFormalization : List ArgumentEntry
} }

View file

@ -14,8 +14,7 @@ cuckAdamSinger =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/AdamSinger" , cuckSocial = "https://x.com/AdamSinger"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1566491269194719232?s=20" [ { dodgeLink = "https://x.com/TheNutrivore/status/1566491269194719232?s=20"
, dodgeDescription = VagueGesture , dodgeDescription = VagueGesture

View file

@ -14,8 +14,7 @@ cuckAmberOHearn =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/KetoCarnivore" , cuckSocial = "https://x.com/KetoCarnivore"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/FusionProgGuy/status/1413888976281169922?s=20" [ { dodgeLink = "https://x.com/FusionProgGuy/status/1413888976281169922?s=20"
, dodgeDescription = VagueGesture , dodgeDescription = VagueGesture

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.AnnChilders exposing (..) module Config.Pages.Debate.Cuckery.Records.AnnChilders exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckAnnChilders : Cuck cuckAnnChilders : Cuck
@ -14,13 +14,12 @@ cuckAnnChilders =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/AnnChildersMD" , cuckSocial = "https://x.com/AnnChildersMD"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1447245484356108292?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1447245484356108292?s=20"
, dodgeDescription = RanAway , dodgeDescription = RanAway
, dodgeProposition = "Diets humans thrived on in the wild, sans dentists and doctors, are correct." , dodgeProposition = "Diets humans thrived on in the wild, sans dentists and doctors, are correct."
, dodgeReceipts = [{receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Agnostic , dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = VagueProp , dodgeNicksDoxasticReason = VagueProp

View file

@ -14,13 +14,12 @@ cuckAnthonyGustin =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/dranthonygustin" , cuckSocial = "https://x.com/dranthonygustin"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1482502242632552449?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1482502242632552449?s=20"
, dodgeDescription = GhostedMe , dodgeDescription = GhostedMe
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"} ] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.AshwaniGarg exposing (..) module Config.Pages.Debate.Cuckery.Records.AshwaniGarg exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckAshwaniGarg : Cuck cuckAshwaniGarg : Cuck
@ -14,13 +14,12 @@ cuckAshwaniGarg =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/agargmd" , cuckSocial = "https://x.com/agargmd"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1443328350982967303?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1443328350982967303?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Representing the protein content of beans by dry weight is misleading." , dodgeProposition = "Representing the protein content of beans by dry weight is misleading."
, dodgeReceipts = [{receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , 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" , 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"

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.AustinHerbert exposing (..) module Config.Pages.Debate.Cuckery.Records.AustinHerbert exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckAustinHerbert : Cuck cuckAustinHerbert : Cuck
@ -14,13 +14,12 @@ cuckAustinHerbert =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/_AustinHerbert" , cuckSocial = "https://x.com/_AustinHerbert"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1663698981833277440" [ { dodgeLink = "https://x.com/TheNutrivore/status/1663698981833277440"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils make you fat and kill your body." , dodgeProposition = "Seed oils make you fat and kill your body."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BartKay exposing (..) module Config.Pages.Debate.Cuckery.Records.BartKay exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBartKay : Cuck cuckBartKay : Cuck
@ -14,13 +14,12 @@ cuckBartKay =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/Bart_WT_Kay" , cuckSocial = "https://x.com/Bart_WT_Kay"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://www.youtube.com/watch?v=M7vTJ02xxrw" [ { dodgeLink = "https://www.youtube.com/watch?v=M7vTJ02xxrw"
, dodgeDescription = RanAway , dodgeDescription = RanAway
, dodgeProposition = "A 100% Carnivore diet is the appropriate and best health choice for all people." , dodgeProposition = "A 100% Carnivore diet is the appropriate and best health choice for all people."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaimDisbelief , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaimDisbelief

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BenBikman exposing (..) module Config.Pages.Debate.Cuckery.Records.BenBikman exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBenBikman : Cuck cuckBenBikman : Cuck
@ -14,13 +14,12 @@ cuckBenBikman =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/BenBikmanPhD" , cuckSocial = "https://x.com/BenBikmanPhD"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1587547250074746880?s=19" [ { dodgeLink = "https://x.com/TheNutrivore/status/1587547250074746880?s=19"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "The diet-heart hypothesis is false." , dodgeProposition = "The diet-heart hypothesis is false."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason

View file

@ -14,13 +14,12 @@ cuckBennyMalone =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/bennymaloneUK" , cuckSocial = "https://x.com/bennymaloneUK"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1569046576609300489" [ { dodgeLink = "https://x.com/TheNutrivore/status/1569046576609300489"
, dodgeDescription = RanAway , dodgeDescription = RanAway
, dodgeProposition = "Eating oysters is compatible with veganism." , dodgeProposition = "Eating oysters is compatible with veganism."
, dodgeReceipts = [ {receipt = "receipt1"} ] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason "Bivalves are not likely to be sentient, and extending them the precautionary principle has hilarious entails." , dodgeNicksDoxasticReason = SpecificPropReason "Bivalves are not likely to be sentient, and extending them the precautionary principle has hilarious entails."

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BradCampbell exposing (..) module Config.Pages.Debate.Cuckery.Records.BradCampbell exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBradCampbell : Cuck cuckBradCampbell : Cuck
@ -14,13 +14,12 @@ cuckBradCampbell =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/DrBradCampbell" , cuckSocial = "https://x.com/DrBradCampbell"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1530933999610171392?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1530933999610171392?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Canola oil kills you slowly." , dodgeProposition = "Canola oil kills you slowly."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BradCohn exposing (..) module Config.Pages.Debate.Cuckery.Records.BradCohn exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBradCohn : Cuck cuckBradCohn : Cuck
@ -14,13 +14,12 @@ cuckBradCohn =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/BradCohn" , cuckSocial = "https://x.com/BradCohn"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1687535030862831616" [ { dodgeLink = "https://x.com/TheNutrivore/status/1687535030862831616"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BradMarshall exposing (..) module Config.Pages.Debate.Cuckery.Records.BradMarshall exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBradMarshall : Cuck cuckBradMarshall : Cuck
@ -14,13 +14,12 @@ cuckBradMarshall =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/fire_bottle" , cuckSocial = "https://x.com/fire_bottle"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "" [ { dodgeLink = ""
, dodgeDescription = InTooDeep , dodgeDescription = InTooDeep
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BretWeinstein exposing (..) module Config.Pages.Debate.Cuckery.Records.BretWeinstein exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBretWeinstein : Cuck cuckBretWeinstein : Cuck
@ -14,13 +14,12 @@ cuckBretWeinstein =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/BretWeinstein" , cuckSocial = "https://x.com/BretWeinstein"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1858356347332374597" [ { dodgeLink = "https://x.com/TheNutrivore/status/1858356347332374597"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils are dangerous." , dodgeProposition = "Seed oils are dangerous."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -28,7 +27,7 @@ cuckBretWeinstein =
, { dodgeLink = "https://x.com/TheNutrivore/status/1858745910701777229" , { dodgeLink = "https://x.com/TheNutrivore/status/1858745910701777229"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils are dangerous." , dodgeProposition = "Seed oils are dangerous."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -36,7 +35,7 @@ cuckBretWeinstein =
, { dodgeLink = "https://x.com/TheNutrivore/status/1858746414882263256" , { dodgeLink = "https://x.com/TheNutrivore/status/1858746414882263256"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils are dangerous." , dodgeProposition = "Seed oils are dangerous."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.BrianKerley exposing (..) module Config.Pages.Debate.Cuckery.Records.BrianKerley exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckBrianKerley : Cuck cuckBrianKerley : Cuck
@ -14,13 +14,12 @@ cuckBrianKerley =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/SeedOilDsrspctr" , cuckSocial = "https://x.com/SeedOilDsrspctr"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1483889771134926849?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1483889771134926849?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -28,7 +27,7 @@ cuckBrianKerley =
, { dodgeLink = "https://x.com/TheNutrivore/status/1783200352646619227" , { dodgeLink = "https://x.com/TheNutrivore/status/1783200352646619227"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.CarnivoreAurelius exposing (..) module Config.Pages.Debate.Cuckery.Records.CarnivoreAurelius exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckCarnivoreAurelius : Cuck cuckCarnivoreAurelius : Cuck
@ -14,13 +14,12 @@ cuckCarnivoreAurelius =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/AlpacaAurelius" , cuckSocial = "https://x.com/AlpacaAurelius"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1538272143061815299?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1538272143061815299?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Vegans kill 100x more animals." , dodgeProposition = "Vegans kill 100x more animals."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Agnostic , dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propEmpiricalClaim

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.CateShanahan exposing (..) module Config.Pages.Debate.Cuckery.Records.CateShanahan exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckCateShanahan : Cuck cuckCateShanahan : Cuck
@ -14,13 +14,12 @@ cuckCateShanahan =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/drcateshanahan" , cuckSocial = "https://x.com/drcateshanahan"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1266438463634632709?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1266438463634632709?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils are pro-inflammatory." , dodgeProposition = "Seed oils are pro-inflammatory."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
@ -28,7 +27,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/The_Nutrivore/status/1479497980570857474?s=20" , { dodgeLink = "https://x.com/The_Nutrivore/status/1479497980570857474?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Those who defend seed oils are just regurgitating the garbage that the AHA pumps out." , dodgeProposition = "Those who defend seed oils are just regurgitating the garbage that the AHA pumps out."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason "I defend seed oils and I've never even read the AHA's material on the subject." , dodgeNicksDoxasticReason = SpecificPropReason "I defend seed oils and I've never even read the AHA's material on the subject."
@ -36,7 +35,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/The_Nutrivore/status/1487215337116508162?s=20" , { dodgeLink = "https://x.com/The_Nutrivore/status/1487215337116508162?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils are toxic." , dodgeProposition = "Seed oils are toxic."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -44,7 +43,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/drcateshanahan/status/1516904406805057537?s=20" , { dodgeLink = "https://x.com/drcateshanahan/status/1516904406805057537?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Current levels of seed oil consumption are the main driver of the obesity and chronic disease." , dodgeProposition = "Current levels of seed oil consumption are the main driver of the obesity and chronic disease."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -52,7 +51,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/The_Nutrivore/status/1537544882532716544?s=20" , { dodgeLink = "https://x.com/The_Nutrivore/status/1537544882532716544?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Nick is just following the AHA marching orders." , dodgeProposition = "Nick is just following the AHA marching orders."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason "I've never even read the AHA's recommendations on anything." , dodgeNicksDoxasticReason = SpecificPropReason "I've never even read the AHA's recommendations on anything."
@ -60,7 +59,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/TheNutrivore/status/1778616438116483102" , { dodgeLink = "https://x.com/TheNutrivore/status/1778616438116483102"
, dodgeDescription = RanAway , dodgeDescription = RanAway
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -68,7 +67,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/TheNutrivore/status/1779185488521310601" , { dodgeLink = "https://x.com/TheNutrivore/status/1779185488521310601"
, dodgeDescription = OutrightNo , dodgeDescription = OutrightNo
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -76,7 +75,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/TheNutrivore/status/1778616438116483102" , { dodgeLink = "https://x.com/TheNutrivore/status/1778616438116483102"
, dodgeDescription = KillScreen , dodgeDescription = KillScreen
, dodgeProposition = commonProps.propSeedOils , dodgeProposition = commonProps.propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Belief , dodgeNicksDoxasticState = Just Belief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason
@ -84,7 +83,7 @@ cuckCateShanahan =
, { dodgeLink = "https://x.com/TheNutrivore/status/1798766450255253987" , { dodgeLink = "https://x.com/TheNutrivore/status/1798766450255253987"
, dodgeDescription = KillScreen , dodgeDescription = KillScreen
, dodgeProposition = "Current levels of seed oil consumption are the main driver of heart disease." , dodgeProposition = "Current levels of seed oil consumption are the main driver of heart disease."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCVD

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.ChrisBoettcher exposing (..) module Config.Pages.Debate.Cuckery.Records.ChrisBoettcher exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckChrisBoettcher : Cuck cuckChrisBoettcher : Cuck
@ -14,13 +14,12 @@ cuckChrisBoettcher =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/chrisboettcher9" , cuckSocial = "https://x.com/chrisboettcher9"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/MeggGawat/status/1669691841682210822" [ { dodgeLink = "https://x.com/MeggGawat/status/1669691841682210822"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Seed oils are making you fat, depressed, and sick." , dodgeProposition = "Seed oils are making you fat, depressed, and sick."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.ClaraAboel exposing (..) module Config.Pages.Debate.Cuckery.Records.ClaraAboel exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckClaraAboel : Cuck cuckClaraAboel : Cuck
@ -14,13 +14,12 @@ cuckClaraAboel =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/AIWellnessCoach" , cuckSocial = "https://x.com/AIWellnessCoach"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1727510906655969736" [ { dodgeLink = "https://x.com/TheNutrivore/status/1727510906655969736"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Polyunsaturated fatty acids are known to initiate cancer." , dodgeProposition = "Polyunsaturated fatty acids are known to initiate cancer."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCancer , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonCancer

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.CliffHarvey exposing (..) module Config.Pages.Debate.Cuckery.Records.CliffHarvey exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckCliffHarvey : Cuck cuckCliffHarvey : Cuck
@ -14,13 +14,12 @@ cuckCliffHarvey =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/CarbAppropriate" , cuckSocial = "https://x.com/CarbAppropriate"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/CarbAppropriate/status/1372281626206507010?s=20" [ { dodgeLink = "https://x.com/CarbAppropriate/status/1372281626206507010?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality." , dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason
@ -28,7 +27,7 @@ cuckCliffHarvey =
, { dodgeLink = "https://x.com/The_Nutrivore/status/1500650543886204929?s=20" , { dodgeLink = "https://x.com/The_Nutrivore/status/1500650543886204929?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality." , dodgeProposition = "Saturated fat in the diet does not independently increase the risk of mortality."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.DaveFeldman exposing (..) module Config.Pages.Debate.Cuckery.Records.DaveFeldman exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckDaveFeldman : Cuck cuckDaveFeldman : Cuck
@ -14,13 +14,12 @@ cuckDaveFeldman =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/realDaveFeldman" , cuckSocial = "https://x.com/realDaveFeldman"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1306625219440730118?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1306625219440730118?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = noProposition , dodgeProposition = noProposition
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Nothing , dodgeNicksDoxasticState = Nothing
, dodgeNicksDoxasticReason = NoProp , dodgeNicksDoxasticReason = NoProp

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.DavidDiamond exposing (..) module Config.Pages.Debate.Cuckery.Records.DavidDiamond exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckDavidDiamond : Cuck cuckDavidDiamond : Cuck
@ -18,13 +18,12 @@ cuckDavidDiamond =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/LDLSkeptic" , cuckSocial = "https://x.com/LDLSkeptic"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/LDLSkeptic/status/1583471298306375681?s=20" [ { dodgeLink = "https://x.com/LDLSkeptic/status/1583471298306375681?s=20"
, dodgeDescription = OutrightNo , dodgeDescription = OutrightNo
, dodgeProposition = statinProp , dodgeProposition = statinProp
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality
@ -32,7 +31,7 @@ cuckDavidDiamond =
, { dodgeLink = "https://x.com/LDLSkeptic/status/1583481964840902656?s=20" , { dodgeLink = "https://x.com/LDLSkeptic/status/1583481964840902656?s=20"
, dodgeDescription = KillScreen , dodgeDescription = KillScreen
, dodgeProposition = statinProp , dodgeProposition = statinProp
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propLDLCausality

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.DavidGornoski exposing (..) module Config.Pages.Debate.Cuckery.Records.DavidGornoski exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckDavidGornoski : Cuck cuckDavidGornoski : Cuck
@ -14,13 +14,12 @@ cuckDavidGornoski =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/DavidGornoski" , cuckSocial = "https://x.com/DavidGornoski"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1525474063044550657?s=20" [ { dodgeLink = "https://x.com/TheNutrivore/status/1525474063044550657?s=20"
, dodgeDescription = OutrightNo , dodgeDescription = OutrightNo
, dodgeProposition = "Polyunsaturated fatty acids cause obesity." , dodgeProposition = "Polyunsaturated fatty acids cause obesity."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonObesity , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonObesity

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.DianaRodgers exposing (..) module Config.Pages.Debate.Cuckery.Records.DianaRodgers exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckDianaRodgers : Cuck cuckDianaRodgers : Cuck
@ -14,13 +14,12 @@ cuckDianaRodgers =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/sustainabledish" , cuckSocial = "https://x.com/sustainabledish"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/The_Nutrivore/status/1365857401786814465?s=20" [ { dodgeLink = "https://x.com/The_Nutrivore/status/1365857401786814465?s=20"
, dodgeDescription = InTooDeep , dodgeDescription = InTooDeep
, dodgeProposition = "Saturated fat doesn't increase the risk of coronary heart disease." , dodgeProposition = "Saturated fat doesn't increase the risk of coronary heart disease."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSaturatedFatReason

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.EdwardGoeke exposing (..) module Config.Pages.Debate.Cuckery.Records.EdwardGoeke exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckEdwardGoeke : Cuck cuckEdwardGoeke : Cuck
@ -17,13 +17,12 @@ cuckEdwardGoeke =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/GoekeEddie" , cuckSocial = "https://x.com/GoekeEddie"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20" [ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = propSeedOils , dodgeProposition = propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation
@ -31,7 +30,7 @@ cuckEdwardGoeke =
, { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20" , { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = propSeedOils , dodgeProposition = propSeedOils
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Disbelief , dodgeNicksDoxasticState = Just Disbelief
, dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation , dodgeNicksDoxasticReason = SpecificPropReason commonPropReasons.propSeedOilsReasonInflammation

View file

@ -1,7 +1,7 @@
module Config.Pages.Debate.Cuckery.Records.ElieJarrouge exposing (..) module Config.Pages.Debate.Cuckery.Records.ElieJarrouge exposing (..)
import Config.Pages.Debate.Cuckery.Types exposing (..)
import Config.Helpers.Converters exposing (formatName) import Config.Helpers.Converters exposing (formatName)
import Config.Pages.Debate.Cuckery.Types exposing (..)
cuckElieJarrouge : Cuck cuckElieJarrouge : Cuck
@ -14,13 +14,12 @@ cuckElieJarrouge =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/ElieJarrougeMD" , cuckSocial = "https://x.com/ElieJarrougeMD"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1506845469980315648?s=20" [ { dodgeLink = "https://x.com/TheNutrivore/status/1506845469980315648?s=20"
, dodgeDescription = NoReply , dodgeDescription = NoReply
, dodgeProposition = "Sugar, refined carbs, and seed oils are poison." , dodgeProposition = "Sugar, refined carbs, and seed oils are poison."
, dodgeReceipts = [ {receipt = "receipt1"}] , dodgeReceipts = [ { receipt = "receipt1" } ]
, dodgeFallacy = Just (SpecificFallacy "") , dodgeFallacy = Just (SpecificFallacy "")
, dodgeNicksDoxasticState = Just Agnostic , dodgeNicksDoxasticState = Just Agnostic
, dodgeNicksDoxasticReason = VagueProp , dodgeNicksDoxasticReason = VagueProp

View file

@ -14,8 +14,7 @@ cuckGaryBrecka =
{ cuckImage = formatName name { cuckImage = formatName name
, cuckName = name , cuckName = name
, cuckSocial = "https://x.com/garybrecka1" , cuckSocial = "https://x.com/garybrecka1"
, hasLink = True , isNewTabLink = True
, hasImage = True
, cuckDodges = , cuckDodges =
[ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125" [ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125"
, dodgeDescription = NoReply , dodgeDescription = NoReply

Some files were not shown because too many files have changed in this diff Show more