feat: changed some stuff around

This commit is contained in:
Nick 2024-11-19 13:17:57 -06:00
parent d03e4d23ee
commit 5afff4a0e4
9 changed files with 25 additions and 24 deletions

View file

@ -26,12 +26,12 @@ argumentAnabolicKeto =
[ { premise = "If a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets, then a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets." [ { premise = "If a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets, then a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets."
, notation = "(PQ)" , notation = "(PQ)"
} }
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
, notation = "(P)"
}
, { premise = "If a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets, then ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets." , { premise = "If a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets, then ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, notation = "(QR)" , notation = "(QR)"
} }
, { premise = "A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets."
, notation = "(P)"
}
] ]
, conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets." , conclusion = "Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets."
, conclusionNotation = "(R)" , conclusionNotation = "(R)"

View file

@ -9,7 +9,7 @@ argumentAntiVandalism =
, propositionTitle = "Vandalizing zoos increases the probability of harming the animals they keep." , propositionTitle = "Vandalizing zoos increases the probability of harming the animals they keep."
, propositionReductio = "" , propositionReductio = ""
, propositionSummary = "Summary" , propositionSummary = "Summary"
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)%7C=(R)" , proofLink = "https://www.umsu.de/trees/#(P~5Q),(P),(Q~5R)%7C=(R)"
, definitionTable = , definitionTable =
[ { definiendum = "P" [ { definiendum = "P"
, definiens = "zoos must spend extra money cleaning graffiti" , definiens = "zoos must spend extra money cleaning graffiti"
@ -26,12 +26,12 @@ argumentAntiVandalism =
[ { premise = "If zoos must spend extra money cleaning graffiti, then zoos will have less money to devote to animal care." [ { premise = "If zoos must spend extra money cleaning graffiti, then zoos will have less money to devote to animal care."
, notation = "(PQ)" , notation = "(PQ)"
} }
, { premise = "If zoos will have less money to devote to animal care, then vandalizing zoos increases the probability of harming the animals they keep."
, notation = "(QR)"
}
, { premise = "Zoos must spend extra money cleaning graffiti." , { premise = "Zoos must spend extra money cleaning graffiti."
, notation = "(P)" , notation = "(P)"
} }
, { premise = "If zoos will have less money to devote to animal care, then vandalizing zoos increases the probability of harming the animals they keep."
, notation = "(QR)"
}
] ]
, conclusion = "Therefore, vandalizing zoos increases the probability of harming the animals they keep." , conclusion = "Therefore, vandalizing zoos increases the probability of harming the animals they keep."
, conclusionNotation = "(R)" , conclusionNotation = "(R)"

View file

@ -6,6 +6,7 @@ import Debate.Types exposing (..)
import Effect exposing (Effect) import Effect exposing (Effect)
import Element exposing (..) import Element exposing (..)
import Element.Border as D exposing (..) import Element.Border as D exposing (..)
import Element.Events as V exposing (..)
import Element.Font as F import Element.Font as F
import Html import Html
import Html.Attributes as H exposing (style, title, wrap) import Html.Attributes as H exposing (style, title, wrap)
@ -67,7 +68,7 @@ argumentMaker argument =
reductio -> reductio ->
paragraph (paragraphBoldFormat ++ [ F.size 18 ]) paragraph (paragraphBoldFormat ++ [ F.size 18 ])
[ text "Reductio: " |> el [ F.color colourTheme.highlightText ] [ text "Reductio: " |> el [ F.color colourTheme.highlightText ]
, text reductio |> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 16 ] , text reductio |> el [ F.color colourTheme.nonHighlightedText, F.regular, F.size 16 ], text " " -- create a tooltip for this in the future
] ]
in in
column column
@ -76,7 +77,7 @@ argumentMaker argument =
[ newTabLink [] [ newTabLink []
{ url = argument.proofLink { url = argument.proofLink
, label = transitionNonHighlightedLinkHover <| text argument.argumentTitle , label = transitionNonHighlightedLinkHover <| text argument.argumentTitle
} } --create expandable text for this in the future
] ]
, paragraph (paragraphBoldFormat ++ [ F.size 18 ]) , paragraph (paragraphBoldFormat ++ [ F.size 18 ])
[ text "Proposition: " |> el [ F.color colourTheme.highlightText ] [ text "Proposition: " |> el [ F.color colourTheme.highlightText ]

View file

@ -3,7 +3,6 @@ module Pages.Arguments exposing (Model, Msg, page)
import Config.Colour as T exposing (..) import Config.Colour as T exposing (..)
import Config.Format as O exposing (..) import Config.Format as O exposing (..)
import Config.Identity as I exposing (..) import Config.Identity as I exposing (..)
import Debate.Helpers exposing (..)
import Debate.Arguments.Medicine.ApoBCVD exposing (..) import Debate.Arguments.Medicine.ApoBCVD exposing (..)
import Debate.Arguments.Nutrition.AnabolicKeto exposing (..) import Debate.Arguments.Nutrition.AnabolicKeto exposing (..)
import Debate.Arguments.Nutrition.AntagonisticPleiotropy exposing (..) import Debate.Arguments.Nutrition.AntagonisticPleiotropy exposing (..)
@ -53,6 +52,7 @@ import Debate.Arguments.Politics.BoobyTrapPagers exposing (..)
import Debate.Arguments.Science.EpidemiologyCausality exposing (..) import Debate.Arguments.Science.EpidemiologyCausality exposing (..)
import Debate.Arguments.Science.FlatEarthDebunk exposing (..) import Debate.Arguments.Science.FlatEarthDebunk exposing (..)
import Debate.Arguments.Science.TruncatedMeta exposing (..) import Debate.Arguments.Science.TruncatedMeta exposing (..)
import Debate.Helpers exposing (..)
import Effect exposing (Effect) import Effect exposing (Effect)
import Element exposing (..) import Element exposing (..)
import Element.Border as D exposing (..) import Element.Border as D exposing (..)
@ -178,11 +178,11 @@ debateList =
, argumentOmega3Omega6Ratio , argumentOmega3Omega6Ratio
, argumentPlantBasedCVDReversal , argumentPlantBasedCVDReversal
, argumentPolyphenolReductio , argumentPolyphenolReductio
, argumentUnhealthyCoconutOil
, argumentSodiumCVD , argumentSodiumCVD
, argumentTMAOCausality , argumentTMAOCausality
, argumentUnhealthyRedMeat , argumentUnhealthyCoconutOil
, argumentUnhealthyProcessedMeat , argumentUnhealthyProcessedMeat
, argumentUnhealthyRedMeat
, argumentUnhealthySaturatedFat , argumentUnhealthySaturatedFat
] ]
} }
@ -201,12 +201,12 @@ debateList =
, argumentEthicalSlurs , argumentEthicalSlurs
, argumentFineTuning , argumentFineTuning
, argumentImmortalityReductio , argumentImmortalityReductio
, argumentVeganSocietyReductio
, argumentOddOrderPredators , argumentOddOrderPredators
, argumentOstroveganism , argumentOstroveganism
, argumentPollinationReductio , argumentPollinationReductio
, argumentScratcherPioneers , argumentScratcherPioneers
, argumentTransPeople , argumentTransPeople
, argumentVeganSocietyReductio
] ]
} }
, { categoryName = "Politics" , { categoryName = "Politics"
@ -216,9 +216,9 @@ debateList =
} }
, { categoryName = "Science" , { categoryName = "Science"
, arguments = , arguments =
[ argumentFlatEarthDebunk [ argumentEpidemiologyCausality
, argumentFlatEarthDebunk
, argumentTruncatedMeta , argumentTruncatedMeta
, argumentEpidemiologyCausality
] ]
} }
] ]

View file

@ -10,10 +10,10 @@ import Html.Attributes as H exposing (style)
import Layouts import Layouts
import Page exposing (Page) import Page exposing (Page)
import Route exposing (Route) import Route exposing (Route)
import Services.Coaching.DebateAnalysis exposing (..) import Services.ServiceList.Coaching.DebateAnalysis exposing (..)
import Services.Coaching.DebateTutoring exposing (..) import Services.ServiceList.Coaching.DebateTutoring exposing (..)
import Services.Coaching.NutritionScience exposing (..) import Services.ServiceList.Coaching.NutritionScience exposing (..)
import Services.Creative.NixBuilds exposing (..) import Services.ServiceList.Creative.NixBuilds exposing (..)
import Services.Helpers exposing (..) import Services.Helpers exposing (..)
import Shared exposing (..) import Shared exposing (..)
import View exposing (View) import View exposing (View)

View file

@ -1,4 +1,4 @@
module Services.Coaching.DebateAnalysis exposing (..) module Services.ServiceList.Coaching.DebateAnalysis exposing (..)
import Services.Types exposing (..) import Services.Types exposing (..)

View file

@ -1,4 +1,4 @@
module Services.Coaching.DebateTutoring exposing (..) module Services.ServiceList.Coaching.DebateTutoring exposing (..)
import Services.Types exposing (..) import Services.Types exposing (..)

View file

@ -1,4 +1,4 @@
module Services.Coaching.NutritionScience exposing (..) module Services.ServiceList.Coaching.NutritionScience exposing (..)
import Services.Types exposing (..) import Services.Types exposing (..)

View file

@ -1,4 +1,4 @@
module Services.Creative.NixBuilds exposing (..) module Services.ServiceList.Creative.NixBuilds exposing (..)
import Services.Types exposing (..) import Services.Types exposing (..)