feat: added gibberish
0
frontend/src/Contact/Helpers.elm
Normal file → Executable file
0
frontend/src/Contact/Methods/Discord.elm
Normal file → Executable file
0
frontend/src/Contact/Types.elm
Normal file → Executable file
41
frontend/src/Debate/Gibberish/Domains/Epistemology.elm
Normal file
|
@ -0,0 +1,41 @@
|
|||
module Debate.Gibberish.Domains.Epistemology exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
epistemologyGibberish : Domain
|
||||
epistemologyGibberish =
|
||||
{ gibberishDomainName = "Epistemology"
|
||||
, gibberishTerms =
|
||||
[ { term = "abductive arguments"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "content internalism"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "direct reference"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "externalist epistemology"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "inductive arguments"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "non-entailing explanations"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "non-inferential justification"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "phenomenal conservatism"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "synthetic a priori"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "ultimate grounding"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
35
frontend/src/Debate/Gibberish/Domains/Metaphysics.elm
Normal file
|
@ -0,0 +1,35 @@
|
|||
module Debate.Gibberish.Domains.Metaphysics exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
metaphysicsGibberish : Domain
|
||||
metaphysicsGibberish =
|
||||
{ gibberishDomainName = "Metaphysics"
|
||||
, gibberishTerms =
|
||||
[ { term = "correspondence theory of truth"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "libertarian free will"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "metaphysical essence"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "metaphysical modality"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "non-physical mental entities"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "ontological modality"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "subjective idealism"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "warrant"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
23
frontend/src/Debate/Gibberish/Domains/Normativity.elm
Normal file
|
@ -0,0 +1,23 @@
|
|||
module Debate.Gibberish.Domains.Normativity exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
normativityGibberish : Domain
|
||||
normativityGibberish =
|
||||
{ gibberishDomainName = "Normativity"
|
||||
, gibberishTerms =
|
||||
[ { term = "externalist value"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "irreducible normativity"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "moral particles"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "stance-independent normativity"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
23
frontend/src/Debate/Gibberish/Domains/Ontology.elm
Normal file
|
@ -0,0 +1,23 @@
|
|||
module Debate.Gibberish.Domains.Ontology exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
ontologyGibberish : Domain
|
||||
ontologyGibberish =
|
||||
{ gibberishDomainName = "Normativity"
|
||||
, gibberishTerms =
|
||||
[ { term = "externalist value"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "irreducible normativity"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "moral particles"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "stance-independent normativity"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
14
frontend/src/Debate/Gibberish/Domains/PhilOfLanguage.elm
Normal file
|
@ -0,0 +1,14 @@
|
|||
module Debate.Gibberish.Domains.PhilOfLanguage exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
philOfLanguageGibberish : Domain
|
||||
philOfLanguageGibberish =
|
||||
{ gibberishDomainName = "Philosophy of Language"
|
||||
, gibberishTerms =
|
||||
[ { term = "semantic primitive"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
26
frontend/src/Debate/Gibberish/Domains/PhilOfMind.elm
Normal file
|
@ -0,0 +1,26 @@
|
|||
module Debate.Gibberish.Domains.PhilOfMind exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
philOfMindGibberish : Domain
|
||||
philOfMindGibberish =
|
||||
{ gibberishDomainName = "Philosophy of Mind"
|
||||
, gibberishTerms =
|
||||
[ { term = "epiphenomenalism"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "mind-heart connection"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "parallelism"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "pre-established harmony"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "private language"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
29
frontend/src/Debate/Gibberish/Domains/Theology.elm
Normal file
|
@ -0,0 +1,29 @@
|
|||
module Debate.Gibberish.Domains.Theology exposing (..)
|
||||
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
|
||||
|
||||
theologyGibberish : Domain
|
||||
theologyGibberish =
|
||||
{ gibberishDomainName = "Theology"
|
||||
, gibberishTerms =
|
||||
[ { term = "divine simplicity"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "equal ultimacy"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "fine tuning"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "theism"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "transcendental oneness"
|
||||
, explanation = ""
|
||||
}
|
||||
, { term = "transcendental realism"
|
||||
, explanation = ""
|
||||
}
|
||||
]
|
||||
}
|
149
frontend/src/Debate/Gibberish/Helpers.elm
Normal file
|
@ -0,0 +1,149 @@
|
|||
module Debate.Gibberish.Helpers exposing (..)
|
||||
|
||||
import Config.CardFormat exposing (..)
|
||||
import Config.Colour as T exposing (..)
|
||||
import Config.Format as O exposing (..)
|
||||
import Config.StrengthBar exposing (..)
|
||||
import Config.ToolTip exposing (..)
|
||||
import Debate.Gibberish.Domains.Epistemology exposing (..)
|
||||
import Debate.Gibberish.Domains.Metaphysics exposing (..)
|
||||
import Debate.Gibberish.Domains.Normativity exposing (..)
|
||||
import Debate.Gibberish.Domains.Ontology exposing (..)
|
||||
import Debate.Gibberish.Domains.PhilOfLanguage exposing (..)
|
||||
import Debate.Gibberish.Domains.PhilOfMind exposing (..)
|
||||
import Debate.Gibberish.Domains.Theology exposing (..)
|
||||
import Debate.Gibberish.Types exposing (..)
|
||||
import Debate.Types exposing (..)
|
||||
import Effect exposing (Effect)
|
||||
import Element as E exposing (..)
|
||||
import Element.Background as B exposing (..)
|
||||
import Element.Border as D exposing (..)
|
||||
import Element.Events as V exposing (..)
|
||||
import Element.Font as F exposing (..)
|
||||
import Html exposing (div, hr)
|
||||
import Html.Attributes as H exposing (style, title, wrap)
|
||||
import Json.Decode exposing (field)
|
||||
import Layouts
|
||||
import Page exposing (Page)
|
||||
import Route exposing (Route)
|
||||
import Shared
|
||||
import View exposing (View)
|
||||
|
||||
|
||||
gibberishMaker : Gibberish -> Element msg
|
||||
gibberishMaker gibberish =
|
||||
row
|
||||
topLevelBox
|
||||
[ cardImageMaker (gibberishImage gibberish)
|
||||
, cardMaker
|
||||
[ cardTitleMaker (gibberishTitle gibberish)
|
||||
, cardFormatter
|
||||
[ cardContentSpacing
|
||||
[ column
|
||||
fieldSpacer
|
||||
[ domainList gibberish ]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
|
||||
|
||||
gibberishImage : Gibberish -> { src : String, description : String }
|
||||
gibberishImage gibberish =
|
||||
{ src = "gibberish/" ++ gibberish.gibberishImage ++ ".png"
|
||||
, description = gibberish.gibberishTitle
|
||||
}
|
||||
|
||||
|
||||
gibberishTitle : Gibberish -> String
|
||||
gibberishTitle gibberish =
|
||||
gibberish.gibberishTitle
|
||||
|
||||
|
||||
domainList : Gibberish -> Element msg
|
||||
domainList gibberish =
|
||||
column
|
||||
[ spacing 8
|
||||
, E.width fill
|
||||
]
|
||||
<|
|
||||
List.map2 (\x y -> makeDomain x)
|
||||
gibberish.gibberishDomain
|
||||
(List.range 1 (List.length gibberish.gibberishDomain))
|
||||
|
||||
|
||||
makeDomain : Domain -> Element msg
|
||||
makeDomain domain =
|
||||
column
|
||||
(paragraphAlignLeft
|
||||
++ [ spacing 8
|
||||
, E.width fill
|
||||
]
|
||||
)
|
||||
[ column
|
||||
(paragraphBoldFormat
|
||||
++ [ F.size 18
|
||||
, alignTop
|
||||
, E.alignLeft
|
||||
, F.alignLeft
|
||||
, F.color colourTheme.textLightOrange
|
||||
]
|
||||
)
|
||||
[ text domain.gibberishDomainName ]
|
||||
, column
|
||||
[ spacing 8
|
||||
, E.width fill
|
||||
]
|
||||
<|
|
||||
List.map2 (\x y -> makeTerms x)
|
||||
domain.gibberishTerms
|
||||
(List.range 1 (List.length domain.gibberishTerms))
|
||||
]
|
||||
|
||||
|
||||
makeTerms : Terms -> Element msg
|
||||
makeTerms terms =
|
||||
column
|
||||
(paragraphAlignLeft
|
||||
++ [ spacing 8
|
||||
, E.width fill
|
||||
]
|
||||
)
|
||||
[ paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.regular
|
||||
, F.size 16
|
||||
]
|
||||
[ text ("\"" ++ terms.term ++ "\"") ]
|
||||
, paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.regular
|
||||
, F.size 16
|
||||
]
|
||||
[ paragraph
|
||||
[ paddingEach
|
||||
{ top = 0
|
||||
, bottom = 0
|
||||
, left = 35
|
||||
, right = 0
|
||||
}
|
||||
]
|
||||
[ text terms.explanation ]
|
||||
]
|
||||
]
|
||||
|
||||
|
||||
gibberishList : Gibberish
|
||||
gibberishList =
|
||||
{ gibberishTitle = "Philosobabble"
|
||||
, gibberishImage = "gibberish"
|
||||
, gibberishDomain =
|
||||
[ epistemologyGibberish
|
||||
, theologyGibberish
|
||||
, metaphysicsGibberish
|
||||
, normativityGibberish
|
||||
, ontologyGibberish
|
||||
, philOfMindGibberish
|
||||
, philOfLanguageGibberish
|
||||
]
|
||||
}
|
22
frontend/src/Debate/Gibberish/Types.elm
Normal file
|
@ -0,0 +1,22 @@
|
|||
module Debate.Gibberish.Types exposing (..)
|
||||
|
||||
-- GIBBERISH
|
||||
|
||||
|
||||
type alias Gibberish =
|
||||
{ gibberishTitle : String
|
||||
, gibberishImage : String
|
||||
, gibberishDomain : List Domain
|
||||
}
|
||||
|
||||
|
||||
type alias Domain =
|
||||
{ gibberishTerms : List Terms
|
||||
, gibberishDomainName : String
|
||||
}
|
||||
|
||||
|
||||
type alias Terms =
|
||||
{ term : String
|
||||
, explanation : String
|
||||
}
|
|
@ -246,7 +246,7 @@ tableMaker : Argument -> Element msg
|
|||
tableMaker argument =
|
||||
column
|
||||
[ centerX
|
||||
, E.width fill
|
||||
, E.width fill
|
||||
]
|
||||
([ wrappedRow
|
||||
(paragraphBoldFormat
|
||||
|
@ -465,6 +465,7 @@ proofTreeMaker argument =
|
|||
]
|
||||
|
||||
|
||||
basicDivider : Element msg
|
||||
basicDivider =
|
||||
el
|
||||
[ E.width fill
|
||||
|
|
|
@ -32,25 +32,4 @@ type alias PremiseWithNotation =
|
|||
type alias Definition =
|
||||
{ definiendum : String
|
||||
, definiens : String
|
||||
}
|
||||
|
||||
|
||||
|
||||
-- GIBBERISH
|
||||
|
||||
|
||||
type alias GibberishEntry =
|
||||
{ gibberishEntry : List GibDomain
|
||||
}
|
||||
|
||||
|
||||
type alias GibDomain =
|
||||
{ gibberishTerms : List GibTerms
|
||||
, gibberishDomain : String
|
||||
}
|
||||
|
||||
|
||||
type alias GibTerms =
|
||||
{ term : String
|
||||
, explanation : String
|
||||
}
|
||||
}
|
0
frontend/src/Donate/Helpers.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/Cardano.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/KoFi.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/LiberaPay.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/Merch.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/Patreon.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/PayPal.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/Template.elm
Normal file → Executable file
0
frontend/src/Donate/Methods/YouTube.elm
Normal file → Executable file
0
frontend/src/Donate/Types.elm
Normal file → Executable file
0
frontend/src/Interviews/Episodes/DrShawnBakerPodcast.elm
Normal file → Executable file
0
frontend/src/Interviews/Episodes/Template.elm
Normal file → Executable file
|
@ -53,6 +53,7 @@ import Debate.Arguments.UnhealthyProcessedMeat exposing (..)
|
|||
import Debate.Arguments.UnhealthyRedMeat exposing (..)
|
||||
import Debate.Arguments.UnhealthySaturatedFat exposing (..)
|
||||
import Debate.Arguments.VeganSocietyReductio exposing (..)
|
||||
import Debate.Gibberish.Helpers exposing (..)
|
||||
import Debate.Helpers exposing (..)
|
||||
import Debate.Types exposing (..)
|
||||
import Effect exposing (Effect)
|
||||
|
@ -146,57 +147,64 @@ debateContainer =
|
|||
|
||||
debateList : Element msg
|
||||
debateList =
|
||||
column
|
||||
pageList
|
||||
<|
|
||||
List.map argumentMaker
|
||||
[ argumentApoBCVD
|
||||
, argumentAnabolicKeto
|
||||
, argumentAntagonisticPleiotropy
|
||||
, argumentCarbsObesity
|
||||
, argumentDietaryCholesterol
|
||||
, argumentFructoseNAFLD
|
||||
, argumentHealthPromotingFoods
|
||||
, argumentHealthSeeker
|
||||
, argumentHealthyChocolate
|
||||
, argumentHealthyDairy
|
||||
, argumentHealthyFattyFish
|
||||
, argumentHealthyFibre
|
||||
, argumentHealthyFood
|
||||
, argumentHealthyPlantFoods
|
||||
, argumentHealthySeedOils
|
||||
, argumentHealthySoy
|
||||
, argumentMalondialdehyde
|
||||
, argumentOmega3Omega6Ratio
|
||||
, argumentPlantBasedCVDReversal
|
||||
, argumentPolyphenolReductio
|
||||
, argumentSodiumCVD
|
||||
, argumentTMAOCausality
|
||||
, argumentUnhealthyCoconutOil
|
||||
, argumentUnhealthyProcessedMeat
|
||||
, argumentUnhealthyRedMeat
|
||||
, argumentUnhealthySaturatedFat
|
||||
, argumentAbortion
|
||||
, argumentAgnosticism
|
||||
, argumentAgriculturalPredation
|
||||
, argumentAnimalRights
|
||||
, argumentAntiRewilding
|
||||
, argumentAntiVandalism
|
||||
, argumentColonizingNature
|
||||
, argumentCropDeaths
|
||||
, argumentDairyCowRape
|
||||
, argumentEfilismPatrolSquad
|
||||
, argumentEthicalSlurs
|
||||
, argumentFineTuning
|
||||
, argumentImmortalityReductio
|
||||
, argumentOddOrderPredators
|
||||
, argumentOstroveganism
|
||||
, argumentPollinationReductio
|
||||
, argumentScratcherPioneers
|
||||
, argumentTransPeople
|
||||
, argumentVeganSocietyReductio
|
||||
, argumentBoobyTrapPagers
|
||||
, argumentEpidemiologyCausality
|
||||
, argumentFlatEarthDebunk
|
||||
, argumentTruncatedMeta
|
||||
]
|
||||
column [ centerX ]
|
||||
[ column
|
||||
pageList
|
||||
<|
|
||||
List.map argumentMaker
|
||||
[ argumentApoBCVD
|
||||
, argumentAnabolicKeto
|
||||
, argumentAntagonisticPleiotropy
|
||||
, argumentCarbsObesity
|
||||
, argumentDietaryCholesterol
|
||||
, argumentFructoseNAFLD
|
||||
, argumentHealthPromotingFoods
|
||||
, argumentHealthSeeker
|
||||
, argumentHealthyChocolate
|
||||
, argumentHealthyDairy
|
||||
, argumentHealthyFattyFish
|
||||
, argumentHealthyFibre
|
||||
, argumentHealthyFood
|
||||
, argumentHealthyPlantFoods
|
||||
, argumentHealthySeedOils
|
||||
, argumentHealthySoy
|
||||
, argumentMalondialdehyde
|
||||
, argumentOmega3Omega6Ratio
|
||||
, argumentPlantBasedCVDReversal
|
||||
, argumentPolyphenolReductio
|
||||
, argumentSodiumCVD
|
||||
, argumentTMAOCausality
|
||||
, argumentUnhealthyCoconutOil
|
||||
, argumentUnhealthyProcessedMeat
|
||||
, argumentUnhealthyRedMeat
|
||||
, argumentUnhealthySaturatedFat
|
||||
, argumentAbortion
|
||||
, argumentAgnosticism
|
||||
, argumentAgriculturalPredation
|
||||
, argumentAnimalRights
|
||||
, argumentAntiRewilding
|
||||
, argumentAntiVandalism
|
||||
, argumentColonizingNature
|
||||
, argumentCropDeaths
|
||||
, argumentDairyCowRape
|
||||
, argumentEfilismPatrolSquad
|
||||
, argumentEthicalSlurs
|
||||
, argumentFineTuning
|
||||
, argumentImmortalityReductio
|
||||
, argumentOddOrderPredators
|
||||
, argumentOstroveganism
|
||||
, argumentPollinationReductio
|
||||
, argumentScratcherPioneers
|
||||
, argumentTransPeople
|
||||
, argumentVeganSocietyReductio
|
||||
, argumentBoobyTrapPagers
|
||||
, argumentEpidemiologyCausality
|
||||
, argumentFlatEarthDebunk
|
||||
, argumentTruncatedMeta
|
||||
]
|
||||
, column
|
||||
pageList
|
||||
<|
|
||||
List.map gibberishMaker
|
||||
[ gibberishList ]
|
||||
]
|
||||
|
|
0
frontend/src/Pages/Contact.elm
Normal file → Executable file
0
frontend/src/Pages/Donate.elm
Normal file → Executable file
0
frontend/static/arguments/coconutoil.png
Normal file → Executable file
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 234 KiB |
0
frontend/static/arguments/foodsubstitution.png
Normal file → Executable file
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
0
frontend/static/arguments/healthseeker.png
Normal file → Executable file
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
0
frontend/static/arguments/oddorderpredators.png
Normal file → Executable file
Before Width: | Height: | Size: 681 KiB After Width: | Height: | Size: 681 KiB |
0
frontend/static/arguments/omega6omega3ratio.png
Normal file → Executable file
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
0
frontend/static/arguments/ostroveganism.png
Normal file → Executable file
Before Width: | Height: | Size: 472 KiB After Width: | Height: | Size: 472 KiB |
0
frontend/static/arguments/plantbasedcvd.png
Normal file → Executable file
Before Width: | Height: | Size: 679 KiB After Width: | Height: | Size: 679 KiB |
0
frontend/static/arguments/plantfoods.png
Normal file → Executable file
Before Width: | Height: | Size: 418 KiB After Width: | Height: | Size: 418 KiB |
0
frontend/static/arguments/pollinationreductio.png
Normal file → Executable file
Before Width: | Height: | Size: 430 KiB After Width: | Height: | Size: 430 KiB |
0
frontend/static/arguments/polyphenolreductio.png
Normal file → Executable file
Before Width: | Height: | Size: 415 KiB After Width: | Height: | Size: 415 KiB |
0
frontend/static/arguments/processedmeat.png
Normal file → Executable file
Before Width: | Height: | Size: 319 KiB After Width: | Height: | Size: 319 KiB |
0
frontend/static/arguments/redmeat.png
Normal file → Executable file
Before Width: | Height: | Size: 352 KiB After Width: | Height: | Size: 352 KiB |
0
frontend/static/arguments/saturatedfat.png
Normal file → Executable file
Before Width: | Height: | Size: 368 KiB After Width: | Height: | Size: 368 KiB |
0
frontend/static/arguments/seedoils.png
Normal file → Executable file
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
0
frontend/static/arguments/sodiumcvd.png
Normal file → Executable file
Before Width: | Height: | Size: 207 KiB After Width: | Height: | Size: 207 KiB |
0
frontend/static/arguments/soyproducts.png
Normal file → Executable file
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 294 KiB |
0
frontend/static/arguments/tattooscratchers.png
Normal file → Executable file
Before Width: | Height: | Size: 352 KiB After Width: | Height: | Size: 352 KiB |
0
frontend/static/arguments/tmaocausality.png
Normal file → Executable file
Before Width: | Height: | Size: 249 KiB After Width: | Height: | Size: 249 KiB |
0
frontend/static/arguments/transpeople.png
Normal file → Executable file
Before Width: | Height: | Size: 166 KiB After Width: | Height: | Size: 166 KiB |
0
frontend/static/arguments/truncatedmetas.png
Normal file → Executable file
Before Width: | Height: | Size: 406 KiB After Width: | Height: | Size: 406 KiB |
0
frontend/static/arguments/vegansociety.png
Normal file → Executable file
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 213 KiB |
0
frontend/static/cucks/ninateicholz/ninateicholz.png
Normal file → Executable file
Before Width: | Height: | Size: 196 KiB After Width: | Height: | Size: 196 KiB |
0
frontend/static/donate/cardano.png
Normal file → Executable file
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
0
frontend/static/donate/checkmark.png
Normal file → Executable file
Before Width: | Height: | Size: 950 B After Width: | Height: | Size: 950 B |
0
frontend/static/donate/ex.png
Normal file → Executable file
Before Width: | Height: | Size: 973 B After Width: | Height: | Size: 973 B |
BIN
frontend/static/donate/gibberish.gif
Normal file
After Width: | Height: | Size: 192 KiB |
0
frontend/static/donate/kofi.png
Normal file → Executable file
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
0
frontend/static/donate/liberapay.png
Normal file → Executable file
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
0
frontend/static/donate/merchandise.png
Normal file → Executable file
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
0
frontend/static/donate/patreon.png
Normal file → Executable file
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
0
frontend/static/donate/paypal.png
Normal file → Executable file
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
0
frontend/static/donate/question.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
0
frontend/static/donate/youtube.png
Normal file → Executable file
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
BIN
frontend/static/gibberish/gibberish.png
Normal file
After Width: | Height: | Size: 162 KiB |
0
frontend/static/interviews/drshawnbakerpodcast.png
Normal file → Executable file
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |