http://alexanderpruss.blogspot.com/2022/02/game-boy-wordle-how-to-compress-12972.html Alexander Pruss's Blog Wednesday, February 9, 2022 Game Boy Fiver [Wordle clone]: How to compress 12972 five-letter words to 17871 bytes Update: You can play an updated version online here in the binjgb Game Boy emulator. This is the version with the frequency-based answer list rather than the official Wordle list, for copyright reasons. There is a Game Boy version of Wordle, using a bloom filter, a reduced vocabulary and a reduced list of guess words, all fitting on one 32K cartridge. I decided to challenge myself and see if I could fit in the whole 12972 word Wordle vocabulary, with the whole 2315 word answer list. So the challenge is: * Compress 12972 five-letter words (Vocabulary) * Compress a distinguished 2315 word subset (Answers). I managed it (download ROM here), and it works in a Game Boy emulator. There is more than one way, and what I did may be excessively complicated, but I don't have a good feel for how fast the Game Boy runs, so I did a bit of speed optimization. Step 0: We start with 12972 x 5 = 64860 bytes of uncompressed data. Step 1: Divide the 12972 word list into 26 lists, based on the first letter of the word. Since in each list, the first letter is the same, we now need only store four letters per word, along with some overhead for each list. (The overhead in the final analysis will be 108 bytes.) If we stop here, Step 2: Each four letter "word" (or tail of a word) can be stored with 5 bits per letter, thereby yielding a 20 bit unsigned integer. If we stop here, we can store each word in 2.5 bytes, for a total of 32430. That would fit on the cartridge if there was no code, but it is some progress. Step 3: Here was my one clever idea. Each of the lists of four letter "words", is in alphabetical order, and encoded the natural way as 20 bit numbers, the numbers will be in ascending order. Instead of storing these numbers, we need only store their arithmetical differences, starting with an initial (invalid) 0. Step 4: Since the differences are always at least 1, we can subtract one from each difference to make the numbers slightly smaller. (This is a needless complication, but I had it, and don't feel like removing it.) Step 5: Store a stream of bytes encoding the difference-minus-ones. Each number is encoded as one, two or three bytes, seven-bits in each byte, with the high bit of each byte being 1 if it's the last 7-bit sequence and 0 if it's not. It turns out that the result is 17763 bytes, plus 108 bytes of overhead, for a total of 17871 bytes, or 28% of the original list, with very, very simple decompression. Step 6: Now we replace each word in the alphabetically-sorted Answers list with an index into the vocabulary list. Since each index fits into 2 bytes, this would let us store the 2315 words of the Answers as 2315 x 2 = 4630 bytes. Step 7: However, it turns out that the difference between two successive indexes is never bigger than 62. So we can re-use the trick of storing successive differences, and store the Answers in 2315 bytes. (In fact, since we only need 6 bits for the differences, we could go down to 1737 bytes, but it would complicate the code significantly.) Result: Vocabulary plus Answers goes down to 108+17763+2315=20186 bytes. This was too big to fit on a 32K cartridge using the existing code. But it turns out that most of the existing code was library support code for gprintf(), and replacing the single gprintf() call, which was just being used to format a string containing a single-digit integer variable, with gprint(), seemed to get everything to fit in 32K. Example of the Vocabulary compression: * The first six words are: aahed, aalii, aargh, aarti, abaca, abaci. * Dropping the initial "a", we get ahed, alii, argh, arti, baca, baci. * Encoding as 20-bit integers and adding an initial zero, we get 0, 7299, 11528, 17607, 18024, 32832, 32840. * The differences-minus-one are 7298, 4228, 6078, 416, 14807, 7. * Each of these fits in 14-bits (two bytes, given the high-bit usage), with the last one in 7-bits. In practice, there are a lot of differences that fit in 7-bits, so this ends up being more efficient than it looks--the first six words are not representative. Notes: * With the code as described above, there are 250 bytes to spare in the cartridge. * One might wonder whether making up the compression algorithm saves much memory over using a standard general purpose compressor. Yes. gzip run on the 64860 bytes of uncompressed Vocabulary yields 30338 bytes, which is rather worse than my 17871 byte compression of the Vocabulary. Plus the decompression code would, I expect, be quite a bit more complex. * One could save a little memory by encoding the four-letter "words" in Step 2 in base-26 instead of four 5-bit sequences. But it would save only about 0.5K of memory, and the code would be much nastier (the Game Boy uses library functions for division!). * The Answers could be stored as a bitmap of length 12972, which would be 1622 bytes. But this would make the code for generating a random word more complicated and slower. Posted by Alexander R Pruss at 4:59 PM # # Labels: games, programming 11 comments: [blo] Alexander R Pruss said... Looks like I'm not the first one to have done this, though probably my algorithm is different: https://github.com/ stacksmashing/gb-wordle/pull/8 February 9, 2022 at 9:35 PM [icon_delet] [blo] Alexander R Pruss said... The 2315 Answer word list looks like it may have had some creative selection behind it, so there could be copyright problems, and thus I replaced it with a subset of the Vocabulary generated using a frequency-sorted corpus of English. I also changed the name of the ROM. :-) February 9, 2022 at 10:15 PM [icon_delet] [blo] Alexander R Pruss said... Interestingly one saves about 0.5K by reversing the letters in the words (and resorting), and almost 1K by combining that with the base-26 encoding. Not sure there is much of a need to do this. February 10, 2022 at 12:59 PM [icon_delet] [blo] Unknown said... I ran it through a simple arithmetic compressor and reduced it to 4368 bytes total. I used a compressor I wrote at https:// github.com/ChrisLomont/ArithmeticCompression This was with a zero order model. An order 1 or 2 model should compress a lot more. Chris Lomont February 11, 2022 at 5:03 PM [icon_delet] [blo] Alexander R Pruss said... Nice! I don't know much about arithmetic compression. What kind of memory and time usage could one expect for decompression? Decompression needs to run on a 4MHz device with 8K RAM whose CPU has no multiplication or division primitives. February 12, 2022 at 8:45 PM [icon_delet] [blo] Alexander R Pruss said... I added a link to a version playable in the browser in a Game Boy emulator to the post. That version uses my own list of answer words, and I did eventually move to a bitmap for storing the answer words. February 15, 2022 at 9:35 AM [icon_delet] [blo] pauli said... Did you try a TRIE representation? Or more specifically a TRIE reduced to a DAWG? I'd expect to see a similar level of compress (if not better) and very rapid access. Because all words are five letters in length, there should be some additional compression possible -- no need to store which sequences are words e.g. February 19, 2022 at 9:01 PM [icon_delet] [blo] RW said... When using a 6-bit byte instead of a 7-bit one, I got a size of 16686.75 bytes. I didn't use your method from step 1-2, it seems to have almost no effect on the result size in my case. February 20, 2022 at 7:10 AM [icon_delet] [blo] Tero Keski-Valkama said... It seems to me the main bottleneck here is the number of bits needed to encode the difference from the previous 4-letter postfix word to the next one when the words are alphabetized. It might be that alphabetic order is bad because it has strong correlations, so the small differences accumulate to the common symbol regions, and large differences require reserving more bits for all differences. It might be that simply creating a random XOR mask across 4-letters and then using a numerical ordering for the XOR'ed postfix representations would make the sequential numerical differences between words more uniformly distributed and thus the worst case bits needed lower, thus lowering the total required space needed. Adding more words to the vocabulary can also reduce the total space needed if you can get up to a sweet spot where the number of bits needed for the differences steps down for that number of words in the vocabulary. February 20, 2022 at 8:58 AM [icon_delet] [blo] Tero Keski-Valkama said... This comment has been removed by the author. February 20, 2022 at 9:02 AM [icon_delet] [blo] RW said... Now I got 16197 bytes with using 6-bit byte and conversation words to base-26 numbers February 20, 2022 at 10:37 AM [icon_delet] Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) About Me Alexander R Pruss I am a philosopher at Baylor University. This blog, however, does not purport to express in any way the opinions of Baylor University. Amateur science and technology work should not be taken to be approved by Baylor University. Use all information at your own risk. View my complete profile My Books * Norms, Natures, and God (in progress) * Infinity, Causation and Paradox * Necessary Existence (with Josh Rasmussen) * One Body: An Essay in Christian Sexual Ethics * Actuality, Possibility and Worlds * The Principle of Sufficient Reason: A Reassessment * The Existence of God (coedited with R. M. Gale) Other Stuff By Me * Amateur astronomy blog * Instructables * Right Reason posts (archived) * Thingiverse designs Recent Comments Blog Archive * V 2022 (23) + V February (12) o Dominance and infinite lotteries o How not to value wagers o Domination and uniform spinners o A cosmological argument from the Hume-Edwards Prin... o Aquinas on drunkenness and sleep o It can be rational to act as if one's beliefs were... o Animalist functionalism o Game Boy Fiver [Wordle clone]: How to compress 129... o Sports injuries and the problem of evil o Fixing an earlier regress argument about intentions o Divine hiddenness and divine command ethics o Intentional acts that produce their own intentions + > January (11) * > 2021 (234) + > December (12) + > November (32) + > October (29) + > September (30) + > August (19) + > July (17) + > June (17) + > May (17) + > April (22) + > March (17) + > February (6) + > January (16) * > 2020 (250) + > December (7) + > November (25) + > October (17) + > September (25) + > August (31) + > July (22) + > June (17) + > May (28) + > April (25) + > March (17) + > February (19) + > January (17) * > 2019 (228) + > December (11) + > November (19) + > October (19) + > September (28) + > August (20) + > July (16) + > June (7) + > May (22) + > April (27) + > March (16) + > February (17) + > January (26) * > 2018 (235) + > December (6) + > November (18) + > October (25) + > September (15) + > August (29) + > July (15) + > June (16) + > May (13) + > April (23) + > March (17) + > February (30) + > January (28) * > 2017 (261) + > December (12) + > November (32) + > October (25) + > September (28) + > August (21) + > July (17) + > June (14) + > May (19) + > April (21) + > March (25) + > February (23) + > January (24) * > 2016 (271) + > December (17) + > November (16) + > October (23) + > September (28) + > August (27) + > July (18) + > June (21) + > May (22) + > April (27) + > March (21) + > February (29) + > January (22) * > 2015 (245) + > December (16) + > November (21) + > October (23) + > September (23) + > August (17) + > July (16) + > June (14) + > May (25) + > April (28) + > March (22) + > February (21) + > January (19) * > 2014 (247) + > December (14) + > November (16) + > October (24) + > September (17) + > August (22) + > July (18) + > June (24) + > May (18) + > April (26) + > March (31) + > February (18) + > January (19) * > 2013 (276) + > December (21) + > November (22) + > October (27) + > September (20) + > August (22) + > July (24) + > June (22) + > May (16) + > April (30) + > March (29) + > February (24) + > January (19) * > 2012 (254) + > December (19) + > November (24) + > October (23) + > September (22) + > August (25) + > July (16) + > June (14) + > May (19) + > April (22) + > March (22) + > February (24) + > January (24) * > 2011 (275) + > December (22) + > November (31) + > October (25) + > September (21) + > August (28) + > July (19) + > June (18) + > May (19) + > April (18) + > March (23) + > February (29) + > January (22) * > 2010 (298) + > December (24) + > November (24) + > October (29) + > September (27) + > August (22) + > July (23) + > June (26) + > May (32) + > April (27) + > March (21) + > February (20) + > January (23) * > 2009 (297) + > December (19) + > November (25) + > October (28) + > September (22) + > August (27) + > July (27) + > June (23) + > May (19) + > April (30) + > March (30) + > February (26) + > January (21) * > 2008 (323) + > December (26) + > November (24) + > October (24) + > September (28) + > August (22) + > July (22) + > June (28) + > May (30) + > April (29) + > March (30) + > February (26) + > January (34) * > 2007 (72) + > December (32) + > November (24) + > October (16) Blogs and Links * Disputations * First Things * Foster's Theological Reflections * Library of Historical Apologetics * Matters of Substance * metaphysical values * Philosophia Perennis * Philosophical Orthodoxy * Philosophy of Cosmology * Prosblogion * Return to Rome * wo's weblog Labels * God (472) * probability (410) * time (339) * infinity (216) * language (194) * causation (170) * morality (170) * free will (166) * love (138) * mind (136) * evil (130) * naturalism (119) * knowledge (117) * presentism (117) * truth (114) * explanation (95) * modality (94) * mathematics (89) * Bayesianism (86) * decision theory (86) * humor (84) * science (84) * consciousness (81) * ethics (78) * paradox (77) * belief (76) * lying (76) * determinism (75) * epistemology (74) * sex (72) * action (71) * logic (70) * Principle of Sufficient Reason (68) * evolution (67) * reasons (67) * Christianity (65) * Aristotle (61) * intention (61) * Principle of Double Effect (60) * laws of nature (60) * ontology (60) * Aristotelianism (59) * virtue (58) * assertion (57) * Platonism (56) * dualism (56) * problem of evil (56) * quantum mechanics (55) * space (54) * St. Thomas Aquinas (53) * functionalism (52) * pain (52) * physicalism (52) * mereology (51) * vagueness (51) * causal finitism (50) * programming (49) * A-theory (48) * Natural Law (48) * materialism (48) * rationality (48) * responsibility (48) * substance (48) * compatibilism (46) * cosmological argument (46) * normativity (46) * death (45) * ontological argument (45) * killing (44) * liar paradox (44) * promises (44) * change (43) * existence (43) * freedom (43) * grounding (43) * multiverse (43) * personal identity (43) * Deep Thoughts (42) * books (42) * creation (42) * desire (42) * physics (42) * value (42) * beauty (41) * punishment (41) * set theory (41) * teleology (41) * abortion (40) * counterfactuals (40) * eternalism (40) * propositions (40) * Leibniz (39) * good (39) * marriage (39) * qualia (39) * murder (38) * DIY (37) * credence (37) * divine simplicity (37) * justice (37) * Axiom of Choice (36) * faith (36) * perception (36) * properties (36) * tautology (36) * evidence (35) * choice (34) * conditionals (34) * parts (34) * sin (34) * Molinism (33) * artificial intelligence (33) * heaven (33) * persons (33) * B-theory (32) * Kant (32) * afterlife (32) * incarnation (31) * infinitesimals (31) * life (31) * omniscience (31) * Relativity Theory (30) * conditional probability (30) * fundamentality (29) * art (28) * computers (28) * scepticism (27) * simplicity (27) * theodicy (27) * Trinity (26) * astronomy (26) * possibility (26) * Catholicism (25) * deontology (25) * four-dimensionalism (25) * induction (25) * matter (25) * scoring rules (25) * time travel (25) * animals (24) * games (24) * metaphysics (24) * necessity (24) * spacetime (24) * utilitarianism (24) * utility (24) * Hume (23) * identity (23) * nonmeasurable sets (23) * norms (23) * reduction (23) * theism (23) * Goedel (22) * St. Augustine (22) * artifacts (22) * biology (22) * education (22) * parthood (22) * reproduction (22) * trust (22) * chance (21) * composition (21) * hell (21) * open future (21) * well-being (21) * Christ (20) * consequentialism (20) * double effect (20) * ebooks (20) * internal time (20) * libertarianism (20) * pleasure (20) * python (20) * Eucharist (19) * Spinoza (19) * amateur astronomy (19) * authority (19) * cardinality (19) * contraception (19) * essentiality of origins (19) * eternity (19) * justification (19) * law (19) * memory (19) * necessary being (19) * conscience (18) * consent (18) * existence of God (18) * friendship (18) * growing block (18) * human nature (18) * incompatibilism (18) * metaethics (18) * miracles (18) * perfection (18) * philosophy (18) * privation (18) * resurrection (18) * soul (18) * tropes (18) * vice (18) * welfare (18) * Descartes (17) * Minecraft (17) * St Thomas Aquinas (17) * accidents (17) * commands (17) * forms (17) * infinite regress (17) * location (17) * personhood (17) * quantifiers (17) * regularity (17) * religion (17) * sports (17) * symmetry (17) * Plato (16) * Special Relativity (16) * atheism (16) * body (16) * disagreement (16) * homosexuality (16) * independence (16) * intentions (16) * social epistemology (16) * suffering (16) * war (16) * 3D printing (15) * causal powers (15) * circularity (15) * culpability (15) * divine command theory (15) * forgiveness (15) * hyperreals (15) * obligation (15) * possible worlds (15) * probability theory (15) * sets (15) * truthmakers (15) * wrongdoing (15) * Socrates (14) * counting (14) * design (14) * design argument (14) * hiddenness (14) * meaning (14) * music (14) * naturalness (14) * open theism (14) * particles (14) * randomness (14) * retribution (14) * semantics (14) * worlds (14) * Bible (13) * Kalaam argument (13) * Pascal's Wager (13) * ability (13) * aesthetics (13) * analogy (13) * arguments (13) * deliberation (13) * divine command metaethics (13) * epistemic utility (13) * euthanasia (13) * form (13) * incommensurability (13) * incompleteness (13) * omnipotence (13) * thought (13) * Scripture (12) * abstracta (12) * angels (12) * conjunction (12) * desires (12) * dignity (12) * discrimination (12) * duty (12) * ends (12) * fiction (12) * happiness (12) * humanity (12) * means (12) * mystery (12) * perdurantism (12) * prayer (12) * procreation (12) * proper function (12) * risk (12) * teaching (12) * transsubstantiation (12) * union (12) * virtue ethics (12) * Intelligent Design (11) * Newtonian physics (11) * Popper functions (11) * Tarski (11) * amateur science (11) * animalism (11) * discreteness (11) * expected utility (11) * haecceities (11) * hylomorphism (11) * medicine (11) * mereological universalism (11) * nature (11) * priors (11) * proof (11) * realism (11) * relations (11) * sentences (11) * simultaneous causation (11) * supervenience (11) * Android (10) * David Lewis (10) * a priori (10) * atonement (10) * character (10) * charity (10) * emotions (10) * error (10) * fields (10) * indeterminism (10) * indicative conditionals (10) * laws (10) * motion (10) * natural kinds (10) * nominalism (10) * philosophy of science (10) * potentiality (10) * predication (10) * relativism (10) * sacrifice (10) * sincerity (10) * supererogation (10) * the Fall (10) * theology (10) * understanding (10) * Arduino (9) * Banach-Tarski Paradox (9) * COVID-19 (9) * Frankfurt (9) * Kierkegaard (9) * agency (9) * agent causation (9) * being (9) * brain (9) * brains (9) * comparative probability (9) * confirmation (9) * contrastive explanation (9) * diachronic identity (9) * disability (9) * disjunction (9) * electronics (9) * eternal life (9) * fine-tuning (9) * finitude (9) * flourishing (9) * foreknowledge (9) * grace (9) * gratitude (9) * harm (9) * hope (9) * infinite lotteries (9) * jobs (9) * literature (9) * material conditionals (9) * modes (9) * numbers (9) * peer disagreement (9) * perdurance (9) * permissibility (9) * persistence (9) * political philosophy (9) * proportionality (9) * quantification (9) * self-sacrifice (9) * Bohm (8) * Gettier (8) * Satan (8) * autonomy (8) * certainty (8) * cooperation (8) * extended simples (8) * film (8) * fission (8) * future (8) * human beings (8) * implicature (8) * indexicals (8) * intentionality (8) * just war (8) * modal logic (8) * monads (8) * nonsense (8) * normalcy (8) * ought (8) * praise (8) * provability (8) * prudence (8) * regress (8) * requests (8) * revelation (8) * salvation (8) * testimony (8) * trying (8) * voting (8) * wellbeing (8) * Calvinism (7) * Jesus (7) * Mass (7) * Principle of Alternate Possibilities (7) * Thomism (7) * Thomson's lamp (7) * Wittgenstein (7) * Zeno (7) * actuality (7) * aliens (7) * appreciation (7) * attempts (7) * benevolence (7) * collapse (7) * complexity (7) * context (7) * contingency (7) * contradiction (7) * cross (7) * decisions (7) * democracy (7) * dispositions (7) * epistemicism (7) * evidentialism (7) * ex nihilo nihil fit (7) * experience (7) * fine-tuning argument (7) * frequentism (7) * gender (7) * guilt (7) * idealism (7) * infinite lottery (7) * intuition (7) * meaning of life (7) * measurement (7) * multilocation (7) * natures (7) * pacifism (7) * racism (7) * rape (7) * reference (7) * religious experience (7) * sceptical theism (7) * sexual ethics (7) * species (7) * substances (7) * suicide (7) * teleological argument (7) * temporary intrinsics (7) * transcendental unity of apperception (7) * transubstantiation (7) * trolley problem (7) * will (7) * Adam (6) * Baylor (6) * Catholic (6) * Euthyphro (6) * Eve (6) * Inference to Best Explanation (6) * Judaism (6) * Mary (6) * Pelagianism (6) * S5 (6) * Star Trek (6) * a posteriori (6) * applied ethics (6) * approximation (6) * attempted murder (6) * beliefs (6) * children (6) * computation (6) * concepts (6) * consistency (6) * content (6) * continuum (6) * counterexamples (6) * creationism (6) * credences (6) * deception (6) * definitions (6) * despair (6) * disjunctions (6) * equality (6) * essential properties (6) * events (6) * external time (6) * false belief (6) * fetus (6) * free will defense (6) * grammar (6) * groups (6) * holiness (6) * humans (6) * inconsistency (6) * motivation (6) * names (6) * natural numbers (6) * novels (6) * obedience (6) * observation (6) * omnirationality (6) * parenthood (6) * phenomenology (6) * predicates (6) * premarital sex (6) * prevision (6) * principle of indifference (6) * privacy (6) * property (6) * real numbers (6) * reason (6) * relativity (6) * representation (6) * reward (6) * roles (6) * sacredness (6) * simultaneity (6) * syntax (6) * tense (6) * torture (6) * velocity (6) * Causal Principle (5) * Doomsday Argument (5) * Dutch books (5) * Humeanism (5) * Internet (5) * Islam (5) * Newcomb Paradox (5) * Ockham's razor (5) * Sleeping Beauty (5) * St. Anselm (5) * accomplishment (5) * administrative (5) * bad (5) * beatitude (5) * blame (5) * bundle theory (5) * causal closure (5) * choices (5) * closure (5) * colocation (5) * color (5) * commitment (5) * community (5) * conglomerability (5) * conservation (5) * dilemmas (5) * distance (5) * empathy (5) * entailment (5) * eschatology (5) * externalism (5) * fallacy (5) * fatalism (5) * fetuses (5) * graph theory (5) * grim reaper paradox (5) * health (5) * hedonism (5) * identity of indiscernibles (5) * immutability (5) * impairment (5) * in vitro fertilization (5) * inerrance (5) * infallibility (5) * inference (5) * lotteries (5) * lottery (5) * masks (5) * measure (5) * mortal sin (5) * multiple realizability (5) * now (5) * occasionalism (5) * panpsychism (5) * pantheism (5) * participation (5) * past (5) * per impossibile conditionals (5) * photography (5) * polygamy (5) * preference (5) * primary causation (5) * purgatory (5) * refraining (5) * self-defense (5) * shape (5) * software (5) * spirituality (5) * subjunctive conditionals (5) * supertask (5) * supervaluationism (5) * topology (5) * transitivity (5) * translation (5) * vegetarianism (5) * water (5) * women (5) * writing (5) * Brouwer axiom (4) * C. S. Lewis (4) * Dutch Book (4) * Easter (4) * Frege (4) * General Relativity (4) * Isaac (4) * Kalaam (4) * Mersenne (4) * Natural Family Planning (4) * New Testament (4) * Rescher (4) * St Augustine (4) * Tradition (4) * akrasia (4) * algorithms (4) * analysis (4) * antinatalism (4) * apologetics (4) * artefacts (4) * asymmetry of time (4) * attributes (4) * axioms (4) * beatific vision (4) * betting (4) * bilocation (4) * blogs (4) * chaos (4) * chess (4) * command (4) * communication (4) * conferences (4) * continuity (4) * cosmology (4) * counterpossibles (4) * crime (4) * damnation (4) * demons (4) * dependence (4) * devil (4) * divine command (4) * divine commands (4) * divine ideas (4) * divorce (4) * ecology (4) * eliminativism (4) * embodiment (4) * embryo (4) * endurantism (4) * epistemic reasons (4) * esse (4) * estrangement (4) * evolutionary psychology (4) * excluded middle (4) * expected value (4) * extension (4) * fear (4) * feelings (4) * fractals (4) * fun (4) * fungibility (4) * gravity (4) * holes (4) * honesty (4) * human being (4) * humility (4) * hyperintensionality (4) * ideas (4) * illusion (4) * imagination (4) * in the right way (4) * in-vitro fertilization (4) * individuation (4) * informed consent (4) * instrumentality (4) * intercourse (4) * knowledge how (4) * knowledge that (4) * liturgy (4) * lottery paradox (4) * magic (4) * material objects (4) * metametaphysics (4) * metaphilosophy (4) * metaphor (4) * modeling (4) * monotheism (4) * moral perfection (4) * moral risk (4) * multiple worlds (4) * overdetermination (4) * paradoxes (4) * penal substitution (4) * per impossibile counterfactuals (4) * physicians (4) * politics (4) * priesthood (4) * proofs (4) * prostheses (4) * questions (4) * redemption (4) * relationalism (4) * resentment (4) * robots (4) * rule utilitarianism (4) * sainthood (4) * same-sex marriage (4) * science fiction (4) * scientific realism (4) * self-reference (4) * size (4) * slavery (4) * sleep (4) * social constitution (4) * stipulation (4) * stochastic processes (4) * substantivalism (4) * teleportation (4) * the good (4) * theft (4) * timelessness (4) * times (4) * tokens (4) * transcendence (4) * ugliness (4) * values (4) * violence (4) * virtues (4) * vision (4) * vows (4) * wish (4) * worship (4) * zombies (4) * Big Bang (3) * Cantor (3) * Central Limit Theorem (3) * Church (3) * Curry's Paradox (3) * Einstein (3) * Epicurus (3) * Everett (3) * Freud (3) * Genesis (3) * Hausdorff Paradox (3) * Kripke (3) * Law of Large Numbers (3) * McTaggart (3) * Palm (3) * Plantinga (3) * Prisoner's Dilemma (3) * Rawls (3) * S4 (3) * St Anselm (3) * St. John of the Cross (3) * Stoicism (3) * Windows (3) * Wodehouse (3) * abstraction (3) * additivity (3) * adultery (3) * advertising (3) * age (3) * amnesia (3) * anthropomorphism (3) * anti-realism (3) * arranged marriage (3) * axiology (3) * baptism (3) * bare particulars (3) * basic goods (3) * becoming (3) * benefit (3) * bivalence (3) * bodies (3) * brainwashing (3) * category theory (3) * charge (3) * civic duty (3) * classical theism (3) * clocks (3) * closeness of description (3) * coauthorship (3) * coercion (3) * colors (3) * common good (3) * compositional universalism (3) * condoms (3) * conservatism (3) * constitution (3) * cooperation with evil (3) * crucifixion (3) * culture (3) * curiosity (3) * death penalty (3) * deceit (3) * defeaters (3) * defeating evil (3) * deflation (3) * deontic logic (3) * determinables (3) * domination (3) * dreams (3) * eating (3) * ecumenism (3) * effort (3) * egoism (3) * elections (3) * elegance (3) * emotion (3) * energy (3) * ennui (3) * epiphenomenalism (3) * epistemic normativity (3) * estimates (3) * etiquette (3) * eudaimonia (3) * exegesis (3) * expertise (3) * final causation (3) * focal meaning (3) * folk psychology (3) * fornication (3) * generosity (3) * geology (3) * gesture (3) * goodness (3) * government (3) * graduate school (3) * greatness (3) * gunk (3) * habits (3) * history (3) * idolatry (3) * ignorance (3) * illocutionary acts (3) * illocutionary force (3) * imitation (3) * immaculate conception (3) * impossibility (3) * incest (3) * individualism (3) * individuality (3) * inductive reasoning (3) * ineffability (3) * injustice (3) * institutions (3) * insurance (3) * intrinsicness (3) * intuitions (3) * invariance (3) * irrationality (3) * javascript (3) * joy (3) * knowledge argument (3) * laughter (3) * legislation (3) * letting die (3) * light (3) * lust (3) * mammals (3) * materiality (3) * meat (3) * men (3) * metaphysical possibility (3) * misleadingness (3) * momentum (3) * moon (3) * natural selection (3) * necessary truths (3) * negation (3) * nonmeasurable set (3) * normative power (3) * nothing (3) * objectification (3) * objectivity (3) * objects (3) * omnipresence (3) * optimality (3) * ordinary objects (3) * organisms (3) * original sin (3) * paper (3) * paradoxical sets (3) * parents (3) * partial causation (3) * plagiarism (3) * plants (3) * plurality (3) * practical reason (3) * pregnancy (3) * prevention (3) * promise (3) * propensities (3) * property dualism (3) * prophecy (3) * propositional attitudes (3) * providence (3) * puzzle (3) * qua (3) * quiz (3) * quotation (3) * reality (3) * reincarnation (3) * relationships (3) * reliabilism (3) * repentance (3) * romance (3) * sacraments (3) * secrets (3) * seeing (3) * self-love (3) * semantic externalism (3) * souls (3) * special sciences (3) * sport (3) * statues (3) * striving (3) * structuralism (3) * subjective obligation (3) * subjective time (3) * subjectivism (3) * success (3) * sun (3) * threats (3) * trans-world depravity (3) * transgender (3) * transsubstantation (3) * triple effect (3) * triviality (3) * truthteller paradox (3) * types (3) * ultrafilters (3) * uniform distribution (3) * uniformity of nature (3) * use (3) * vaccines (3) * vanity (3) * venial sin (3) * victory (3) * virtual reality (3) * vocation (3) * Abraham (2) * Anscombe (2) * Apostles (2) * Boethius (2) * Boolean algebra (2) * Christmas (2) * Christology (2) * Curry paradox (2) * Doomsday (2) * Fifth Way (2) * Fourth Way (2) * Goodman (2) * Grotius (2) * Hilbert's Hotel (2) * IUD (2) * John Paul II (2) * KN95 (2) * Kantianism (2) * Kindle (2) * Knobe effect (2) * LaTeX (2) * Latin (2) * Maimonedes (2) * Marx (2) * Mormonism (2) * Newton (2) * Ockham (2) * Otto (2) * Popper function (2) * Principal Principle (2) * Protestantism (2) * Reformed theology (2) * Reid (2) * Russell Paradox (2) * Schellenberg (2) * Scotus (2) * Sola Scriptura (2) * St. Paul (2) * Stalin (2) * Surprise Exam paradox (2) * Torah (2) * William James (2) * Wojtyla (2) * Zeno's paradox (2) * `Aqedah (2) * absurdity (2) * abundance (2) * act utilitarianism (2) * actions (2) * actualism (2) * adoption (2) * adverbs (2) * agape (2) * agreement (2) * alcohol (2) * alternate possibilities (2) * analytic philosophy (2) * anomaly (2) * anonymous Christianity (2) * anthropocentrism (2) * antiexplanation (2) * arbitrariness (2) * argument (2) * argumentation (2) * arrow (2) * aseity (2) * awareness (2) * betrayal (2) * bioethics (2) * birth (2) * blowgun (2) * brains in vats (2) * breathing (2) * can (2) * capacity (2) * capital punishment (2) * cellular automata (2) * chemistry (2) * circular time (2) * cogito (2) * cohabitation (2) * coherence (2) * collective action (2) * common sense (2) * communion (2) * communities (2) * compassion (2) * complicity (2) * compression (2) * conceivability (2) * concreta (2) * concurrence (2) * conditional intentions (2) * confidentiality (2) * confusion (2) * consequences (2) * consummation (2) * contemplation (2) * contingent being (2) * continuous creation (2) * copying (2) * cosmos (2) * criticism (2) * danger (2) * definition (2) * deflationism (2) * desert (2) * design arguments (2) * despite (2) * difference (2) * direction of time (2) * disjunctivism (2) * disposition (2) * disvalue (2) * dogs (2) * eccentricity (2) * economy of salvation (2) * embarrassment (2) * emergence (2) * endorsement (2) * endurance (2) * enemies (2) * ensuring (2) * entropy (2) * environment (2) * epistemic authority (2) * epistemic humility (2) * epistemic rationality (2) * error theory (2) * estimation (2) * evilmaking (2) * exclusionary reasons (2) * exdurantism (2) Subscribe * existential inertia (2) * expectation (2) [feed-icon1] Subscribe in a * explanatory priority (2) reader * expressivism (2) * extinction (2) * facts (2) * fairies (2) * fairness (2) * falsity (2) * family (2) * fantasies (2) * fantasy (2) * finitism (2) * first sin (2) * first-order facts (2) * food (2) * force (2) * forgetting (2) * funniness (2) * fusion (2) * fusions (2) * future individuals (2) * gift (2) * glory (2) * goals (2) * grading (2) * gratuitous evil (2) * hair (2) * heterosexuality (2) * hidden variables (2) * higher education (2) * history of philosophy (2) * hobbies (2) * identification (2) * identity theory (2) * ill-being (2) * imago Dei (2) * imperfect duty (2) * implicit desire (2) * incomprehensibility (2) * indignity (2) * individuals (2) * inequality (2) * infants (2) * insects (2) * inspiration (2) * integration (2) * intellectual life (2) * intellectual property (2) * interaction problem (2) * interests (2) * internalism (2) * intersubjectivity (2) * intrinsic good (2) * intrinsic properties (2) * introspection (2) * judgment (2) * knowability paradox (2) * languages (2) * literalism (2) * love for God (2) * love of truth (2) * martingales (2) * material beings (2) * material constitution (2) * measure of confirmation (2) * medical ethics (2) * medical experiments (2) * mention (2) * mercy (2) * merit (2) * meteorites (2) * methodology (2) * minds (2) * minimalism (2) * model theory (2) * money (2) * monism (2) * moral development (2) * moral intuition (2) * moral reasons (2) * moral status (2) * movement (2) * moving spotlight (2) * multigrade (2) * mysterianism (2) * mysterium tremendum et fascinans (2) * naming (2) * needs (2) * neighbor (2) * neuroscience (2) * non-identity problem (2) * nonmeasurable functions (2) * nostalgia (2) * nuclear war (2) * numerosity (2) * numinousity (2) * oath (2) * oaths (2) * objective obligation (2) * obligations (2) * optimism (2) * ordering (2) * other minds (2) * ownership (2) * painting (2) * patristics (2) * performatives (2) * permission (2) * phone (2) * physical possibility (2) * physicality (2) * platypus (2) * pluralism (2) * points (2) * police (2) * policy (2) * positivism (2) * power (2) * pragmatism (2) * prediction (2) * preface paradox (2) * present (2) * pride (2) * prior probabilities (2) * probabilism (2) * professions (2) * proper classes (2) * propositional logic (2) * prostitution (2) * psychology (2) * publication (2) * quantum Zeno effect (2) * quasi-causation (2) * question-begging (2) * racquet sports (2) * reductionism (2) * reference magnetism (2) * reflection principle (2) * relative identity (2) * reliability (2) * repair (2) * reporting (2) * respect (2) * right (2) * rights (2) * risability (2) * role obligation (2) * rule-utilitarianism (2) * sacrament (2) * sameness (2) * sanctification (2) * saving a life (2) * secondary qualities (2) * self-causation (2) * sexes (2) * sexual orientation (2) * siblings (2) * skeptical theism (2) * social animals (2) * social ontology (2) * solipsism (2) * space-time (2) * split brains (2) * states of affairs (2) * sterilization (2) * stories (2) * strangeness (2) * strivings (2) * substance causation (2) * substance dualism (2) * substitutionary sacrifice (2) * sundial (2) * supernatural (2) * surprisingness (2) * synchronization (2) * tautologies (2) * taxation (2) * taxes (2) * telepathy (2) * telescope (2) * telos (2) * temptation (2) * tennis (2) * theistic arguments (2) * theories (2) * thoughts (2) * threshold (2) * time-travel (2) * tools (2) * transplants (2) * trees (2) * truth value (2) * truthtelling (2) * unconditional love (2) * unconscious thought (2) * unicorns (2) * unity (2) * universal quantification (2) * universalism (2) * universals (2) * unpleasantness (2) * vague identity (2) * vengeance (2) * veridicality (2) * verifiability (2) * verificationism (2) * vices (2) * vicious circularity (2) * video (2) * wronging (2) * wrongness (2) * 1 John (1) * All Souls (1) * Anglican (1) * Apple (1) * Archimedean ordering (1) * Aristotelian (1) * Ayer (1) * BS (1) * Babette's Feast (1) * Bach (1) * Bathsheba (1) * Benacerraf problem (1) * Bergson (1) * Berkeley (1) * Boccaccio (1) * Brahman (1) * Bucephalus (1) * CFP (1) * Cambridge change (1) * Canada (1) * Cantor Paradox (1) * Carnap (1) * Categorical Imperative (1) * Chesterton (1) * Chinese room (1) * Clarke (1) * Continuum Hypothesis (1) * Copernicus (1) * Council of Chalcedon (1) * Council of Ephesus (1) * Dark Night of the Soul (1) * David (1) * Dedekind infinity (1) * Discworld (1) * Dr. Seuss (1) * Eddington (1) * Elijah (1) * English (1) * Exemplify (1) * FPGA (1) * Faust (1) * Five Ways (1) * Galileo (1) * Gaunilo (1) * Gavagai (1) * Geach (1) * Gethsemane (1) * God's will (1) * Good Samaritan (1) * Gorgias (1) * Grandfather Paradox (1) * Grim Reapers (1) * Guernica (1) * Hamiltonian mechanics (1) * Holocaust (1) * Holy Spirit (1) * Horton (1) * I (1) * Israel (1) * James (1) * Judas (1) * Kane (1) * Lateran IV (1) * Lebesgue measure (1) * Leibniz's Law (1) * Leslie (1) * Leviticus (1) * Lewis (1) * London/Londres (1) * Lord's Prayer (1) * Lumen Gentium (1) * Lysis (1) * M13 (1) * Macintosh (1) * Maxwell's Demon (1) * Meditations (1) * Meinong (1) * Mill (1) * Minetest (1) * Moses (1) * Mother Teresa (1) * Mothere Teresa (1) * Napoleon (1) * Nestorianism (1) * Newcomb's Paradox (1) * Old Testament (1) * PAP (1) * PDF (1) * Parfit (1) * Parmenides (1) * Phaedo (1) * Polish language (1) * Principle of Suffiicient Reason (1) * Putnam (1) * Pythagoras (1) * Repugnant Conclusion (1) * Russell (1) * Samkara (1) * Sarah (1) * Satan's Apple (1) * Schadenfreude (1) * Searle (1) * Shogi (1) * Skolem Paradox (1) * Solomonoff priors (1) * Sorites paradox (1) * Spanish (1) * Spock (1) * St. Athanasius (1) * St. Catherine of Siena (1) * St. Gregory of Nyssa (1) * St. Jerome (1) * St. Petersburg Paradox (1) * Symposium (1) * T-schema (1) * Tertullian (1) * Thales (1) * Thomson (1) * Tolkien (1) * Turing machine (1) * Unger (1) * Uriah (1) * Vatican II (1) * Verne (1) * Vulcans (1) * Waco (1) * Weil (1) * Wilde lectures (1) * William Lane Craig (1) * Wycliffe (1) * Xenophanes (1) * Zeus (1) * a prioricity (1) * absence (1) * absolute prohibitions (1) * academia (1) * accident (1) * accidental generalizations (1) * accretion (1) * activity (1) * actors (1) * actual world (1) * addition (1) * adelphopoiesis (1) * adequacy (1) * adults (1) * advent (1) * adverbialism (1) * advice (1) * aesthetic (1) * affixes (1) * aim (1) * alienation (1) * alphabets (1) * altruism (1) * ambiguity (1) * anaesthesia (1) * anarchism (1) * anecdotal reasoning (1) * anisotropy (1) * annihilation (1) * anthropic principle (1) * antipresentism (1) * antireductionism (1) * appetite (1) * appropriateness (1) * appropriation (1) * archival (1) * argument by example (1) * argument from evil (1) * argumentum ex convenientia (1) * arithmetic (1) * arity (1) * aritycurrying (1) * arrogance (1) * art history (1) * aspect ratio (1) * assertions (1) * associations (1) * assumption (1) * asymmetry (1) * asymptotic approach (1) * ataraxia (1) * atlatl (1) * attitudes (1) * aufhebung (1) * authors (1) * autographic art (1) * avarice (1) * bacteria (1) * baking (1) * baldness (1) * base rate fallacy (1) * battery (1) * beginnings (1) * believe (1) * bigotry (1) * binary (1) * birthdays (1) * blindness (1) * blogging (1) * bribery (1) * bringing about (1) * butterflies (1) * canon law (1) * care (1) * caring (1) * carpentry (1) * castigation (1) * cats (1) * causa sui (1) * causal decision theory (1) * causal loops (1) * causality (1) * caves (1) * celibacy (1) * cells (1) * central limit theory (1) * cerebrums (1) * chain of being (1) * chains (1) * chairs (1) * cheating (1) * civic friendship (1) * civility (1) * class (1) * classical physics (1) * classification (1) * clergy (1) * clericalism (1) * cloning (1) * clothes (1) * clouds (1) * clumps (1) * coffee (1) * cognitive sophistication (1) * coherentism (1) * coincidence (1) * coinstantiation (1) * cold war (1) * common descent (1) * communication boards (1) * communion of the saints (1) * compactness (1) * companionship (1) * comparison (1) * compatibility (1) * compensation (1) * compositionality (1) * compulsion (1) * conciliationism (1) * concreteness (1) * condemnation (1) * conditionals of free will (1) * conditions (1) * conflict of interest (1) * conscious (1) * consecration (1) * consequence argument (1) * construal (1) * construction (1) * contest (1) * contextualism (1) * continental philosophy (1) * contracts (1) * contrast (1) * control (1) * convenience (1) * conventionalism (1) * conversion (1) * convexity (1) * convincing (1) * corals (1) * corporations (1) * correspondence (1) * counseling (1) * countable additivity (1) * counterparts (1) * courage (1) * court (1) * creativity (1) * dark nebula (1) * dark night (1) * darkness (1) * data (1) * data consolidation (1) * de re (1) * debunking arguments (1) * degrees of freedom (1) * denial (1) * denotation (1) * dependancy (1) * deposit of faith (1) * depression (1) * depth (1) * dereliction (1) * derivative value (1) * derivatives (1) * detraction (1) * deviant logic (1) * devils (1) * devotion (1) * devotions (1) * diagonal lemma (1) * dialogue (1) * dictionaries (1) * differential equations (1) * dimension (1) * disbelief (1) * disclosure (1) * discovery (1) * disgust (1) * dishonesty (1) * disliking (1) * disquotation (1) * dissent (1) * dithering (1) * divinity (1) * doctrine (1) * doxastic goods (1) * doxins (1) * draft (1) * drama (1) * driving (1) * drunkenness (1) * duck-rabbit (1) * duct tape (1) * duelling (1) * duration (1) * duress (1) * earth (1) * eclipse (1) * economics (1) * ectopic pregnancy (1) * efficient causation (1) * egalitarianism (1) * embedding (1) * embryos (1) * emergentism (1) * emotivism (1) * emphasis (1) * encryption (1) * end (1) * endangerment (1) * enforcement (1) * engagement (1) * enhancement (1) * enlightenment (1) * ens rationis (1) * entanglement (1) * entities (1) * environmental ethics (1) * envy (1) * epistemic harm (1) * epistemic injustice (1) * equivalence classes (1) * eros (1) * erotetics (1) * essence (1) * essences (1) * essentialism (1) * evagelicalism (1) * evangelicalism (1) * evangelization (1) * exceptions (1) * exclude middle (1) * exdurance (1) * exobiology (1) * experiment philosophy (1) * experimental philosophy (1) * expressing (1) * factory farming (1) * failure (1) * faithfulness (1) * fallibilism (1) * falsemakers (1) * familiarity (1) * fertility (1) * fictional characters (1) * figurative speech (1) * fine-tune (1) * finking (1) * five-dimensionalism (1) * followership (1) * football (1) * foresight (1) * forgery (1) * four causes (1) * function (1) * functions (1) * fundamentalism (1) * future selves (1) * galaxies (1) * gardening (1) * genera (1) * generalizations (1) * genetic fallacy (1) * genetic manipulation (1) * genocide (1) * genre (1) * gerrymandering (1) * giving (1) * glorification (1) * gods (1) * grasp (1) * greed (1) * grief (1) * grit (1) * group rights (1) * group theory (1) * guises (1) * guns (1) * hacks (1) * haeecceities (1) * haeeceities (1) * half-life (1) * harmony (1) * hate (1) * hatred (1) * heirlooms (1) * heroism (1) * heuristics (1) * hierarchy (1) * hindsight (1) * history of science (1) * holodeck (1) * homonym (1) * homophobia (1) * homosexual activity (1) * horrors (1) * household hints (1) * html (1) * humor? (1) * hunger (1) * hypnosis (1) * hypochondria (1) * icons (1) * illucutionary force (1) * immorality (1) * immortality (1) * impanation (1) * imperatives (1) * imposition (1) * impossible attempts (1) * impressiveness (1) * in virtue of (1) * incompatibility (1) * inconstency (1) * index (1) * indicative conditions (1) * indicatives (1) * indirect communication (1) * inerrancy (1) * inerrantism (1) * inertia (1) * infima species (1) * infiniity (1) * infinite utility (1) * influenza (1) * information (1) * initialism (1) * initiation (1) * inside (1) * insinuation (1) * instantiation (1) * intellect (1) * intellectual failure (1) * intension (1) * intensity (1) * internal space (1) * interpretation (1) * intimacy (1) * intrinsic evil (1) * introversion (1) * intuitionism (1) * irrealism (1) * is-ought gap (1) * islands (1) * isotropy (1) * java (1) * jokes (1) * just-so stories (1) * kenosis (1) * kinds (1) * kingdom of God (1) * knowledge what (1) * lack (1) * laity (1) * langauge (1) * lannguage (1) * law enforcement (1) * leadership (1) * learning (1) * lesser evil (1) * letters of recommendation (1) * liar (1) * liberal theology (1) * liberalism (1) * libido (1) * libraries (1) * light spots (1) * liking (1) * limbo (1) * limits (1) * links (1) * liver (1) * livers (1) * locality (1) * logicism (1) * looking down (1) * luck (1) * lunch (1) * luxury (1) * machines (1) * manipulation (1) * manners (1) * many (1) * mathematical (1) * mattering (1) * maximalism (1) * maxims (1) * meditation (1) * memes (1) * mental (1) * mental powers (1) * mental states (1) * meta-ontology (1) * metaepistemology (1) * metametaethics (1) * metaphysical (1) * metaphysical seriousness (1) * microphysics (1) * microscope (1) * military ethics (1) * minimum (1) * minimum wage (1) * misfortune (1) * mispronunciation (1) * misspeaking (1) * mistakes (1) * modal realism (1) * molecules (1) * monoid (1) * monophysitism (1) * moral error (1) * moral evil (1) * moral excellence (1) * moral particularism (1) * moral philosophy (1) * moral responsibility (1) * moral standing (1) * morals (1) * multiplication (1) * multitasking (1) * mysticism (1) * narrative (1) * nationalism (1) * naturaism (1) * natural theology (1) * naturalist (1) * necessitism (1) * need (1) * negand (1) * newborns (1) * noises (1) * non-cognitivism (1) * non-deductive reasoning (1) * non-realism (1) * nonlocality (1) * normative status (1) * nothingness (1) * nuclear weapons (1) * number (1) * numinous (1) * numinousness (1) * objectivism (1) * observable universe (1) * off topic (1) * offers (1) * oligonism (1) * omnipresence. (1) * operationalism (1) * optimalism (1) * optimization (1) * oral contraception (1) * order (1) * order of experience (1) * ordinary language (1) * orektins (1) * organ sales (1) * organicism (1) * organizations (1) * organs (1) * orientation (1) * original value (1) * originalsim (1) * origins (1) * orphans (1) * orthodoxy (1) * outside (1) * overridingness (1) * oxygen (1) * pairs (1) * panentheism (1) * panexperientialism (1) * papal infallibility (1) * parable (1) * paradise (1) * parallel processing (1) * paramecia (1) * particulars (1) * paternalism (1) * people (1) * per se causal sequences (1) * perfect being (1) * perjury (1) * persistent vegetative state (1) * person (1) * personal qualitative identity (1) * personality identity (1) * perverse rewards (1) * perversion (1) * pessimism (1) * pets (1) * phenomena (1) * philosophical theology (1) * pieces (1) * play (1) * plays (1) * plenitude (1) * pocket oracle (1) * pointing (1) * pollution (1) * polytheism (1) * pornography (1) * position (1) * positive psychology (1) * possessions (1) * potato chips (1) * poverty (1) * powers (1) * practices (1) * pragmatic contradiction (1) * pragmatic encroachment (1) * pragmatics (1) * preemptions (1) * preestablished harmony (1) * presenitsm (1) * presentisml (1) * preservation (1) * presocratics (1) * presupposition (1) * prevision.probability (1) * printing (1) * pro tanto reasons (1) * probabilities (1) * prodigal son (1) * profession (1) * professional philosophy (1) * professionals (1) * progress (1) * projection (1) * promulgation (1) * pronouns (1) * pronunciation (1) * propensity (1) * properites (1) * proposition (1) * propriety (1) * protest (1) * protocol (1) * proverbs (1) * proxies (1) * proxy (1) * prudential reasons (1) * pseudonymity (1) * pseudoscience (1) * public domain (1) * public good (1) * public square (1) * purity of heart (1) * purpose (1) * qualitative difference (1) * quantifier (1) * quantities (1) * quasi-substance (1) * question (1) * race (1) * radical translation (1) * rain (1) * random walk (1) * rather than (1) * rationalism (1) * reasoning (1) * receiving (1) * reciprocity (1) * recombination (1) * red (1) * reductio ad absurdum (1) * reference class (1) * reference frame (1) * reflection (1) * refutation (1) * religious disagreement (1) * repairs (1) * repetition (1) * representationalism (1) * reptiles (1) * reputation (1) * request (1) * resistance (1) * retinal images (1) * reverse enngineering (1) * rhetoric (1) * riddles (1) * riots (1) * risk compensation (1) * rock climbing (1) * rockets (1) * running (1) * sacerdotality (1) * same sex marriage (1) * same-sex relations (1) * same-sex sexual activity (1) * saying (1) * scattered objects (1) * sceptics (1) * scientism (1) * scrupulosity (1) * sculpture (1) * second order desire (1) * second order quantification (1) * second-order perception (1) * secularism (1) * seduction (1) * seeming (1) * selection effect (1) * self (1) * self-consciousness (1) * self-defeat (1) * self-interest (1) * self-knowledge (1) * self-locating belief (1) * self-organization (1) * selves (1) * sensation (1) * sentence types (1) * serial (1) * seriousness (1) * sermons (1) * sexism (1) * sexual ethis (1) * sexuality (1) * shallowness (1) * shame (1) * shaving (1) * sickness (1) * side-effects (1) * silencing (1) * simony (1) * simulation (1) * skill (1) * skills (1) * small government (1) * snowflake (1) * social interactions (1) * society (1) * solid objects (1) * sophistry (1) * soulmates (1) * sound (1) * sovereignty (1) * speech (1) * speech acts (1) * speed (1) * sperm donation (1) * spies (1) * splitting (1) * spookiness (1) * stars (1) * states (1) * strings (1) * struggle (1) * stubbornness (1) * stupidity (1) * subjunctives (1) * sublime (1) * subsists in (1) * substantial change (1) * subtraction (1) * suggestion (1) * supernormalcy (1) * superposition (1) * surprise exam (1) * swampman (1) * swarms (1) * symbolism (1) * sympathy (1) * synecdoche (1) * synonym (1) * tables (1) * taming (1) * tasks (1) * taste (1) * taxa (1) * telekinesis (1) * television (1) * temporal parts (1) * tendency (1) * tensism (1) * tenure (1) * textualism (1) * theater (1) * theistic Platonism (1) * theistic determinism (1) * theological virtues (1) * theorems (1) * theoretical reason (1) * theoria (1) * theory (1) * theory choice (1) * theosis (1) * though (1) * throwing a match (1) * tolerance (1) * top-down causation (1) * traces (1) * tradeoffs (1) * tragedy of the commons (1) * transition (1) * transworld depravity (1) * transworld identity (1) * treatment (1) * truth paradox (1) * turthmaking (1) * twinning (1) * typology (1) * uncertainty (1) * units (1) * universe (1) * upbringing (1) * usefulness (1) * usury (1) * utility monsters (1) * utopia (1) * utterances (1) * vampires (1) * van Inwagen (1) * variety (1) * vectors (1) * vegetaranism (1) * vicious circle (1) * virtual parts (1) * virtue epistemology (1) * visibility (1) * von Balthasar (1) * voyeurism (1) * waiting (1) * walls (1) * wave-particle duality (1) * wavefunction (1) * ways of being (1) * weak transitivity (1) * weirdness (1) * well-foundedness (1) * white lies (1) * wholes (1) * wickedness (1) * winning (1) * wishful thinking (1) * word (1) * work (1) * works (1) * wrong (1) * xiangqi (1) * zebras (1) * zero probability (1) More Things by Me * My Instructables * My home page, with papers * Old posts on RightReason * Prosblogion philosophy of religion group blog Simple theme. Powered by Blogger.