mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
31 lines
1,012 B
Elm
31 lines
1,012 B
Elm
![]() |
module Cuckery.CuckList.RaphaelSirtoli exposing (..)
|
||
|
|
||
|
import Cuckery.Types exposing (..)
|
||
|
|
||
|
|
||
|
cuckRaphaelSirtoli : Cuck
|
||
|
cuckRaphaelSirtoli =
|
||
|
let
|
||
|
name : String
|
||
|
name =
|
||
|
"Raphael Sirtoli"
|
||
|
in
|
||
|
{ cuckImage = formatCuckName name
|
||
|
, cuckName = name
|
||
|
, cuckSocial = "https://twitter.com/raphaels7"
|
||
|
, cuckDodges =
|
||
|
[ { dodgeLink = "https://twitter.com/raphaels7/status/1475767357188579329?s=20"
|
||
|
, dodgeDescription = OutrightNo
|
||
|
, dodgeProposition = "the diet-heart hypothesis is false."
|
||
|
, dodgeNicksDoxasticState = Just Disbelief
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
, { dodgeLink = "https://x.com/raphaels7/status/1783541746015654072"
|
||
|
, dodgeDescription = KillScreen
|
||
|
, dodgeProposition = "seed oils are not a significant, independent risk factor for public health."
|
||
|
, dodgeNicksDoxasticState = Just Belief
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
]
|
||
|
}
|