mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
37 lines
1.3 KiB
Elm
37 lines
1.3 KiB
Elm
![]() |
module Cuckery.CuckList.PaulMason exposing (..)
|
||
|
|
||
|
import Cuckery.Types exposing (..)
|
||
|
|
||
|
|
||
|
cuckPaulMason : Cuck
|
||
|
cuckPaulMason =
|
||
|
let
|
||
|
name : String
|
||
|
name =
|
||
|
"Paul Mason"
|
||
|
in
|
||
|
{ cuckImage = formatCuckName name
|
||
|
, cuckName = name
|
||
|
, cuckSocial = "https://twitter.com/DrPaulMason"
|
||
|
, cuckDodges =
|
||
|
[ { dodgeLink = "https://twitter.com/Tom_Babington1/status/1361644276866830337?s=20"
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = noProposition
|
||
|
, dodgeNicksDoxasticState = Nothing
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
, { dodgeLink = "https://twitter.com/IdanOnTweeter/status/1373233980594618371?s=20"
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = "Ancel Keys' Seven Countries Study was flawed."
|
||
|
, dodgeNicksDoxasticState = Just Agnostic
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
, { dodgeLink = "https://twitter.com/The_Nutrivore/status/1461361726943760391?s=20"
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = "dietary linoleic acid is not a significant, independent concern for the development of chronic diseases."
|
||
|
, dodgeNicksDoxasticState = Just Agnostic
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
]
|
||
|
}
|