mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-15 12:05:12 -05:00
feat: refactored and added some stuff
This commit is contained in:
parent
38892eb748
commit
c619757eff
27 changed files with 58 additions and 25 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
backend/dist-newstyle/cache/compiler
vendored
BIN
backend/dist-newstyle/cache/compiler
vendored
Binary file not shown.
BIN
backend/dist-newstyle/cache/config
vendored
BIN
backend/dist-newstyle/cache/config
vendored
Binary file not shown.
BIN
backend/dist-newstyle/cache/elaborated-plan
vendored
BIN
backend/dist-newstyle/cache/elaborated-plan
vendored
Binary file not shown.
BIN
backend/dist-newstyle/cache/improved-plan
vendored
BIN
backend/dist-newstyle/cache/improved-plan
vendored
Binary file not shown.
2
backend/dist-newstyle/cache/plan.json
vendored
2
backend/dist-newstyle/cache/plan.json
vendored
File diff suppressed because one or more lines are too long
BIN
backend/dist-newstyle/cache/solver-plan
vendored
BIN
backend/dist-newstyle/cache/solver-plan
vendored
Binary file not shown.
BIN
backend/dist-newstyle/cache/source-hashes
vendored
BIN
backend/dist-newstyle/cache/source-hashes
vendored
Binary file not shown.
BIN
backend/dist-newstyle/cache/up-to-date
vendored
BIN
backend/dist-newstyle/cache/up-to-date
vendored
Binary file not shown.
|
@ -8,18 +8,20 @@ argumentHealthySeedOils =
|
|||
{ argumentTitle = "Argument for Overwhelmingly Healthy Seed Oils"
|
||||
, propositionTitle = "Non-hydrogenated vegetable oils are overwhelmingly healthy."
|
||||
, propositionReductio = ""
|
||||
, propositionSummary = "Even when you account for factors that could plausibly influence the results, non-hydrogenated vegetable oils have been shown to consistently reduce the risk of morbidity and mortality, strongly suggesting that they directly contribute to better health outcomes."
|
||||
, propositionSummary = "Even when you account for known factors, or model a reasonable accounting of unknown factors, that could plausibly influence the results (such as with adjustment models in prospective cohort studies or randomization in controlled trials), non-hydrogenated vegetable oils have been shown to consistently reduce the risk of morbidity and mortality in both prospective cohort studies and randomized controlled trials, strongly suggesting that they directly contribute to better health outcomes."
|
||||
, proofLink = "https://www.umsu.de/trees/#(~6x(Px~5Qx)),(Pv)|=(Qv)"
|
||||
|
||||
, argumentCertainty = 9
|
||||
, argumentImage = "seedoils"
|
||||
, argumentHashtags = []
|
||||
, definitionTable =
|
||||
[ { definiendum = "P(x)"
|
||||
, definiens = "(x) is overwhelmingly healthy"
|
||||
, 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."
|
||||
}
|
||||
, { definiendum = "Q(x)"
|
||||
, definiens = "(x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates"
|
||||
, definiens = "there is a dearth of epistemically countervailing data on (x)."
|
||||
}
|
||||
, { definiendum = "R(x)"
|
||||
, definiens = "it is more reasonable to believe that (x) is overwhelmingly healthy than it is to believe the opposite."
|
||||
}
|
||||
, { definiendum = "x"
|
||||
, definiens = "a food"
|
||||
|
@ -30,15 +32,18 @@ argumentHealthySeedOils =
|
|||
]
|
||||
, argumentFormalization =
|
||||
[ { premises =
|
||||
[ { premise = "For all things, a food is overwhelmingly healthy if, and only if, the food consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
||||
, notation = "∀x(Px↔Qx)"
|
||||
[ { premise = "For all things, if a food has a strong tendency to associate with a reduced risk of morbidity and/or mortality after adjusting and/or controling for relevant variables and there is a dearth of epistemically countervailing data on that food, then it is more reasonable to believe that the food is healthy than it is to believe the opposite."
|
||||
, notation = "∀x((Px∧Qx)→Rx)"
|
||||
}
|
||||
, { premise = "Non-hydrogenated vegetable oils consistently associate with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates."
|
||||
, { premise = "Non-hydrogenated vegetable oils consistently associate with a reduced risk of morbidity and mortality after adjustmenting and/or controlling for relevant variables."
|
||||
, notation = "Pv"
|
||||
}
|
||||
, { premise = "There is a dearth of epistemically countervailing data on non-hydrogenated vegetable oils."
|
||||
, notation = "Qv"
|
||||
}
|
||||
]
|
||||
, conclusion = "Therefore, non-hydrogenated vegetable oils are overwhelmingly healthy."
|
||||
, conclusionNotation = "Qv"
|
||||
, conclusion = "Therefore, it is more reasonable to believe that non-hydrogenated vegetable oils are healthy than it is to believe the opposite."
|
||||
, conclusionNotation = "Rv"
|
||||
}
|
||||
]
|
||||
}
|
27
frontend/src/Config/Pages/Debate/Cuckery/CuckList/ShawnBaker.elm
Executable file
27
frontend/src/Config/Pages/Debate/Cuckery/CuckList/ShawnBaker.elm
Executable file
|
@ -0,0 +1,27 @@
|
|||
module Config.Pages.Debate.Cuckery.CuckList.ShawnBaker exposing (..)
|
||||
|
||||
import Config.Helpers.Converters exposing (formatName)
|
||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||
|
||||
|
||||
cuckShawnBaker : Cuck
|
||||
cuckShawnBaker =
|
||||
let
|
||||
name : String
|
||||
name =
|
||||
"Shawn Baker"
|
||||
in
|
||||
{ cuckImage = formatName name
|
||||
, cuckName = name
|
||||
, cuckSocial = "https://x.com/SBakerMD"
|
||||
, cuckDodges =
|
||||
[ { dodgeLink = "https://x.com/TheNutrivore/status/1868037979807346738"
|
||||
, dodgeDescription = GhostedMe
|
||||
, dodgeProposition = noProposition
|
||||
, dodgeReceipts = [ ]
|
||||
, dodgeFallacy = Just (SpecificFallacy "")
|
||||
, dodgeNicksDoxasticState = Nothing
|
||||
, dodgeNicksDoxasticReason = NoProp
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
module Config.Pages.Debate.Cuckery.Helpers exposing (..)
|
||||
|
||||
import Config.Helpers.CardFormat exposing (..)
|
||||
import Config.Helpers.Converters exposing (formatSocial)
|
||||
import Config.Helpers.Format
|
||||
exposing
|
||||
( paragraphFontSize
|
||||
, paragraphSpacing
|
||||
)
|
||||
import Config.Helpers.Converters exposing (formatSocial)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.AdamSinger exposing (cuckAdamSinger)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.AmberOHearn exposing (cuckAmberOHearn)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.AnnChilders exposing (cuckAnnChilders)
|
||||
|
@ -66,6 +66,7 @@ import Config.Pages.Debate.Cuckery.CuckList.RaphaelSirtoli exposing (cuckRaphael
|
|||
import Config.Pages.Debate.Cuckery.CuckList.RobMeijer exposing (cuckRobMeijer)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.RobbWolf exposing (cuckRobbWolf)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.SebastianRamirez exposing (cuckSebastianRamirez)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.ShawnBaker exposing (cuckShawnBaker)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.SimonGoddek exposing (cuckSimonGoddek)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.TravisStatham exposing (cuckTravisStatham)
|
||||
import Config.Pages.Debate.Cuckery.CuckList.TristanHaggard exposing (cuckTristanHaggard)
|
||||
|
@ -594,6 +595,7 @@ cuckList =
|
|||
, cuckRobbWolf
|
||||
, cuckRobMeijer
|
||||
, cuckSebastianRamirez
|
||||
, cuckShawnBaker
|
||||
, cuckSimonGoddek
|
||||
, cuckTravisStatham
|
||||
, cuckTristanHaggard
|
||||
|
|
|
@ -856,10 +856,9 @@ circleDots inner =
|
|||
]
|
||||
, svg =
|
||||
[ path
|
||||
[ SvgAttr.d "M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z"
|
||||
]
|
||||
[]
|
||||
[ SvgAttr.d "M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"
|
||||
]
|
||||
[] ]
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageContact ++ " ( )"
|
||||
{ title = pageNames.pageContact
|
||||
, attributes = []
|
||||
, element = contactContainer shared.device
|
||||
}
|
||||
|
|
|
@ -88,7 +88,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageDebate ++ " ( )"
|
||||
{ title = pageNames.pageDebate
|
||||
, attributes = []
|
||||
, element = debateContainer shared.device
|
||||
}
|
||||
|
|
|
@ -95,7 +95,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageDonate ++ " ( )"
|
||||
{ title = pageNames.pageDonate
|
||||
, attributes = []
|
||||
, element = donateContainer shared.device
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageHome ++ " ( )"
|
||||
{ title = pageNames.pageHome
|
||||
, attributes = []
|
||||
, element = homeContainer shared.device
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageHyperBlog ++ " ( )"
|
||||
{ title = pageNames.pageHyperBlog
|
||||
, attributes = []
|
||||
, element = hyperBlogContainer shared.device
|
||||
}
|
||||
|
|
|
@ -93,7 +93,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageInterviews ++ " ( )"
|
||||
{ title = pageNames.pageInterviews
|
||||
, attributes = []
|
||||
, element = interviewContainer shared.device
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageNutriDex ++ " ( )"
|
||||
{ title = pageNames.pageNutriDex
|
||||
, attributes = []
|
||||
, element = nutriDexContainer shared.device
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@ subscriptions model =
|
|||
|
||||
view : Shared.Model -> Model -> View Msg
|
||||
view shared model =
|
||||
{ title = pageNames.pageServices ++ " ( )"
|
||||
{ title = pageNames.pageServices
|
||||
, attributes = []
|
||||
, element = servicesContainer shared.device
|
||||
}
|
||||
|
|
BIN
frontend/static/cucks/shawnbaker/shawnbaker.png
Executable file
BIN
frontend/static/cucks/shawnbaker/shawnbaker.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 108 KiB |
Loading…
Add table
Add a link
Reference in a new issue