mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
feat: some stuff
This commit is contained in:
parent
31e9d1cef2
commit
bdd63d8494
15 changed files with 181 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
||||||
module Cuckery.CuckList.AdamSinger exposing (..)
|
module Cuckery.CuckList.AdamSinger.AdamSinger exposing (..)
|
||||||
|
|
||||||
|
import Cuckery.Helpers exposing (..)
|
||||||
import Cuckery.Types exposing (..)
|
import Cuckery.Types exposing (..)
|
||||||
import Cuckery.Helpers exposing(..)
|
|
||||||
|
|
||||||
|
|
||||||
cuckAdamSinger : Cuck
|
cuckAdamSinger : Cuck
|
|
@ -38,7 +38,7 @@ makeDodge dodgeEntry index =
|
||||||
text
|
text
|
||||||
(case dodgeEntry.dodgeDescription of
|
(case dodgeEntry.dodgeDescription of
|
||||||
NoReply ->
|
NoReply ->
|
||||||
"Invitation extended with no response"
|
"Debate invitation extended with no response"
|
||||||
|
|
||||||
RanAway ->
|
RanAway ->
|
||||||
"Engaged in written debate and ran away when cornered"
|
"Engaged in written debate and ran away when cornered"
|
||||||
|
|
0
frontend/src/Debate/Arguments/Ancestry/AncestralDiets.elm
Normal file → Executable file
0
frontend/src/Debate/Arguments/Ancestry/AncestralDiets.elm
Normal file → Executable file
|
@ -0,0 +1 @@
|
||||||
|
module Debate.Arguments.Ancestry.AntagonisticPleiotropy exposing (..)
|
|
@ -0,0 +1 @@
|
||||||
|
module Debate.Arguments.Ancestry.ArtificialManipulation exposing (..)
|
53
frontend/src/Debate/Arguments/Ancestry/HeathSeeker.elm
Executable file
53
frontend/src/Debate/Arguments/Ancestry/HeathSeeker.elm
Executable file
|
@ -0,0 +1,53 @@
|
||||||
|
module Debate.Arguments.Ancestry.HeathSeeker exposing (..)
|
||||||
|
|
||||||
|
import Debate.Types exposing (..)
|
||||||
|
|
||||||
|
|
||||||
|
argumentHealthSeeker : Argument
|
||||||
|
argumentHealthSeeker =
|
||||||
|
{ argumentTitle = "Title"
|
||||||
|
, propositionTitle = "Proposition"
|
||||||
|
, propositionSummary = "Summary"
|
||||||
|
, definitionTable =
|
||||||
|
[ { definiendum = ""
|
||||||
|
, definiens = "prop 1"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 2"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 3"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 4"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 5"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "variable 1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, argumentFormalization =
|
||||||
|
[ { premises =
|
||||||
|
[ { premise = "premise 1"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 2"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 3"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 4"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 5"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, conclusion = "conclusion"
|
||||||
|
, conclusionNotation = "(∴)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
module Debate.Arguments.Ancestry.ImmortalityReductio exposing (..)
|
|
@ -0,0 +1 @@
|
||||||
|
module Debate.Arguments.Ancestry.PolyphenolReductio exposing (..)
|
1
frontend/src/Debate/Arguments/Ethics/Abortion.elm
Normal file
1
frontend/src/Debate/Arguments/Ethics/Abortion.elm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module Debate.Arguments.Ethics.Abortion exposing (..)
|
|
@ -0,0 +1 @@
|
||||||
|
module Debate.Arguments.Ethics.EfilismPatrolSquad exposing (..)
|
0
frontend/src/Debate/Arguments/Ethics/EthicalSlurs.elm
Normal file → Executable file
0
frontend/src/Debate/Arguments/Ethics/EthicalSlurs.elm
Normal file → Executable file
53
frontend/src/Debate/Arguments/Nutrition/AnabolicKeto.elm
Executable file
53
frontend/src/Debate/Arguments/Nutrition/AnabolicKeto.elm
Executable file
|
@ -0,0 +1,53 @@
|
||||||
|
module Debate.Arguments.Nutrition.AnabolicKeto exposing (..)
|
||||||
|
|
||||||
|
import Debate.Types exposing (..)
|
||||||
|
|
||||||
|
|
||||||
|
argumentAnabolicKeto : Argument
|
||||||
|
argumentAnabolicKeto =
|
||||||
|
{ argumentTitle = "Title"
|
||||||
|
, propositionTitle = "Proposition"
|
||||||
|
, propositionSummary = "Summary"
|
||||||
|
, definitionTable =
|
||||||
|
[ { definiendum = ""
|
||||||
|
, definiens = "prop 1"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 2"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 3"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 4"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 5"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "variable 1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, argumentFormalization =
|
||||||
|
[ { premises =
|
||||||
|
[ { premise = "premise 1"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 2"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 3"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 4"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 5"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, conclusion = "conclusion"
|
||||||
|
, conclusionNotation = "(∴)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
24
frontend/src/Debate/Arguments/Nutrition/Malondialdehyde.elm
Normal file → Executable file
24
frontend/src/Debate/Arguments/Nutrition/Malondialdehyde.elm
Normal file → Executable file
|
@ -9,45 +9,45 @@ argumentMalondialdehyde =
|
||||||
, propositionTitle = "Proposition"
|
, propositionTitle = "Proposition"
|
||||||
, propositionSummary = "Summary"
|
, propositionSummary = "Summary"
|
||||||
, definitionTable =
|
, definitionTable =
|
||||||
[ { definiendum = "C(x)"
|
[ { definiendum = ""
|
||||||
, definiens = "prop 1"
|
, definiens = "prop 1"
|
||||||
}
|
}
|
||||||
, { definiendum = "B(x)"
|
, { definiendum = ""
|
||||||
, definiens = "prop 2"
|
, definiens = "prop 2"
|
||||||
}
|
}
|
||||||
, { definiendum = "D(x)"
|
, { definiendum = ""
|
||||||
, definiens = "prop 3"
|
, definiens = "prop 3"
|
||||||
}
|
}
|
||||||
, { definiendum = "S(x)"
|
, { definiendum = ""
|
||||||
, definiens = "prop 4"
|
, definiens = "prop 4"
|
||||||
}
|
}
|
||||||
, { definiendum = "A(x)"
|
, { definiendum = ""
|
||||||
, definiens = "prop 5"
|
, definiens = "prop 5"
|
||||||
}
|
}
|
||||||
, { definiendum = "r"
|
, { definiendum = ""
|
||||||
, definiens = "variable 1"
|
, definiens = "variable 1"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
, argumentFormalization =
|
, argumentFormalization =
|
||||||
[ { premises =
|
[ { premises =
|
||||||
[ { premise = "premise 1"
|
[ { premise = "premise 1"
|
||||||
, notation = "(∀x(Cx↔Bx))"
|
, notation = ""
|
||||||
}
|
}
|
||||||
, { premise = "premise 2"
|
, { premise = "premise 2"
|
||||||
, notation = "(∀x(¬Cx→Dx))"
|
, notation = ""
|
||||||
}
|
}
|
||||||
, { premise = "premise 3"
|
, { premise = "premise 3"
|
||||||
, notation = "(¬Cr)"
|
, notation = ""
|
||||||
}
|
}
|
||||||
, { premise = "premise 4"
|
, { premise = "premise 4"
|
||||||
, notation = "(¬Br∧Dr→Sr)"
|
, notation = ""
|
||||||
}
|
}
|
||||||
, { premise = "premise 5"
|
, { premise = "premise 5"
|
||||||
, notation = "(Sr→Ar)"
|
, notation = ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
, conclusion = "conclusion"
|
, conclusion = "conclusion"
|
||||||
, conclusionNotation = "(∴Ar)"
|
, conclusionNotation = "(∴)"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
53
frontend/src/Debate/Arguments/Template.elm
Executable file
53
frontend/src/Debate/Arguments/Template.elm
Executable file
|
@ -0,0 +1,53 @@
|
||||||
|
module Debate.Arguments.Template exposing (..)
|
||||||
|
|
||||||
|
import Debate.Types exposing (..)
|
||||||
|
|
||||||
|
|
||||||
|
argumentTemplate : Argument
|
||||||
|
argumentTemplate =
|
||||||
|
{ argumentTitle = "Title"
|
||||||
|
, propositionTitle = "Proposition"
|
||||||
|
, propositionSummary = "Summary"
|
||||||
|
, definitionTable =
|
||||||
|
[ { definiendum = ""
|
||||||
|
, definiens = "prop 1"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 2"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 3"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 4"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "prop 5"
|
||||||
|
}
|
||||||
|
, { definiendum = ""
|
||||||
|
, definiens = "variable 1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, argumentFormalization =
|
||||||
|
[ { premises =
|
||||||
|
[ { premise = "premise 1"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 2"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 3"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 4"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
, { premise = "premise 5"
|
||||||
|
, notation = ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
, conclusion = "conclusion"
|
||||||
|
, conclusionNotation = "(∴)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -3,7 +3,7 @@ module Pages.Dodgers 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 Cuckery.CuckList.AdamSinger exposing (cuckAdamSinger)
|
import Cuckery.CuckList.AdamSinger.AdamSinger exposing (cuckAdamSinger)
|
||||||
import Cuckery.CuckList.AmberOHearn exposing (cuckAmberOHearn)
|
import Cuckery.CuckList.AmberOHearn exposing (cuckAmberOHearn)
|
||||||
import Cuckery.CuckList.AnnChilders exposing (cuckAnnChilders)
|
import Cuckery.CuckList.AnnChilders exposing (cuckAnnChilders)
|
||||||
import Cuckery.CuckList.AnthonyGustin exposing (cuckAnthonyGustin)
|
import Cuckery.CuckList.AnthonyGustin exposing (cuckAnthonyGustin)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue