2024-11-30 21:15:49 -06:00
|
|
|
module Debate.Gibberish.Domains.Metaphysics exposing (..)
|
|
|
|
|
|
|
|
import Debate.Gibberish.Types exposing (..)
|
|
|
|
|
|
|
|
|
2024-12-03 21:17:17 -06:00
|
|
|
metaphysicsGibberish : Gibberish
|
2024-11-30 21:15:49 -06:00
|
|
|
metaphysicsGibberish =
|
2024-12-03 21:17:17 -06:00
|
|
|
let
|
|
|
|
name =
|
|
|
|
"Metaphysics"
|
|
|
|
in
|
|
|
|
{ gibberishTitle = name
|
|
|
|
, gibberishImage = formatName name
|
2024-11-30 21:15:49 -06:00
|
|
|
, gibberishTerms =
|
|
|
|
[ { term = "correspondence theory of truth"
|
2024-12-03 21:17:17 -06:00
|
|
|
, explanation = SpecificExplanation "While I do take there to be a world outside my perception, and I do believe that the correspondence between my perceptions and the world outside of my perceptions would be a good way to infer the relative truth value of a proposition, this doesn't seem a definition of truth that is in any way actionable. This, to me, makes the correspondence theory of truth to be practically useless."
|
2024-11-30 21:15:49 -06:00
|
|
|
}
|
|
|
|
, { term = "metaphysical essence"
|
2024-12-03 21:17:17 -06:00
|
|
|
, explanation = NoClue
|
2024-11-30 21:15:49 -06:00
|
|
|
}
|
|
|
|
, { term = "metaphysical modality"
|
2024-12-03 21:17:17 -06:00
|
|
|
, explanation = SpecificExplanation "Any attempt at unpacking this that I've heard has more or less cashed out into a logical modality, but it seems to be taken as distinct from logical modality. As a non-logical modality, I have no idea what it's supposed to be."
|
2024-11-30 21:15:49 -06:00
|
|
|
}
|
|
|
|
, { term = "non-physical mental entities"
|
2024-12-03 21:17:17 -06:00
|
|
|
, explanation = NoClue
|
2024-11-30 21:15:49 -06:00
|
|
|
}
|
|
|
|
, { term = "subjective idealism"
|
2024-12-03 21:17:17 -06:00
|
|
|
, explanation = NoClue
|
2024-11-30 21:15:49 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|